summaryrefslogtreecommitdiff
path: root/svtools/source/uno/unocontroltablemodel.cxx
blob: e4711daf33d26042a7ea2afae4a0d43899234bbe (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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include "unocontroltablemodel.hxx"
#include "unogridcolumnfacade.hxx"

#include <table/defaultinputhandler.hxx>
#include <table/gridtablerenderer.hxx>

#include <com/sun/star/util/Color.hpp>
#include <o3tl/safeint.hxx>
#include <sal/log.hxx>
#include <cppuhelper/weakref.hxx>
#include <tools/debug.hxx>
#include <tools/diagnose_ex.h>


namespace svt::table
{


    using css::uno::Reference;
    using css::uno::Sequence;
    using css::uno::UNO_QUERY_THROW;
    using css::uno::UNO_QUERY;
    using css::awt::grid::XGridColumn;
    using css::uno::Exception;
    using css::awt::grid::XGridDataModel;
    using css::awt::grid::XGridColumnModel;
    using css::uno::Any;
    using css::style::VerticalAlignment_TOP;
    using css::style::VerticalAlignment;
    using css::uno::WeakReference;
    using css::awt::grid::GridDataEvent;
    using css::awt::grid::XSortableGridData;
    using css::beans::Pair;


    //= UnoControlTableModel
#define DBG_CHECK_ME() \
    DBG_TESTSOLARMUTEX(); \

    UnoControlTableModel::UnoControlTableModel()
        :aColumns                       ( )
        ,bHasColumnHeaders              ( true      )
        ,bHasRowHeaders                 ( false     )
        ,eVScrollMode                   ( ScrollbarShowNever )
        ,eHScrollMode                   ( ScrollbarShowNever )
        ,pRenderer                      ( )
        ,pInputHandler                  ( )
        ,nRowHeight                     ( 10 )
        ,nColumnHeaderHeight            ( 10 )
        ,nRowHeaderWidth                ( 10 )
        ,m_aGridLineColor               ( )
        ,m_aHeaderBackgroundColor       ( )
        ,m_aHeaderTextColor             ( )
        ,m_aActiveSelectionBackColor    ( )
        ,m_aInactiveSelectionBackColor  ( )
        ,m_aActiveSelectionTextColor    ( )
        ,m_aInactiveSelectionTextColor  ( )
        ,m_aTextColor                   ( )
        ,m_aTextLineColor               ( )
        ,m_aRowColors                   ( )
        ,m_eVerticalAlign               ( VerticalAlignment_TOP )
        ,bEnabled                       ( true )
    {
        pRenderer = std::make_shared<GridTableRenderer>( *this );
        pInputHandler = std::make_shared<DefaultInputHandler>();
    }


    UnoControlTableModel::~UnoControlTableModel()
    {
    }


    TableSize UnoControlTableModel::getColumnCount() const
    {
        DBG_CHECK_ME();
        return static_cast<TableSize>(aColumns.size());
    }


    TableSize UnoControlTableModel::getRowCount() const
    {
        DBG_CHECK_ME();

        TableSize nRowCount = 0;
        try
        {
            Reference< XGridDataModel > const xDataModel( m_aDataModel );
            ENSURE_OR_THROW( xDataModel.is(), "no data model anymore!" );
            nRowCount = xDataModel->getRowCount();
        }
        catch( const Exception& )
        {
            DBG_UNHANDLED_EXCEPTION("svtools.uno");
        }
        return nRowCount;
    }


    bool UnoControlTableModel::hasColumnHeaders() const
    {
        DBG_CHECK_ME();
        return bHasColumnHeaders;
    }


    bool UnoControlTableModel::hasRowHeaders() const
    {
        DBG_CHECK_ME();
        return bHasRowHeaders;
    }


    void UnoControlTableModel::setRowHeaders(bool _bRowHeaders)
    {
        DBG_CHECK_ME();
        if ( bHasRowHeaders == _bRowHeaders )
            return;

        bHasRowHeaders = _bRowHeaders;
        impl_notifyTableMetricsChanged();
    }


    void UnoControlTableModel::setColumnHeaders(bool _bColumnHeaders)
    {
        DBG_CHECK_ME();
        if ( bHasColumnHeaders == _bColumnHeaders )
            return;

        bHasColumnHeaders = _bColumnHeaders;
        impl_notifyTableMetricsChanged();
    }


    PColumnModel UnoControlTableModel::getColumnModel( ColPos column )
    {
        DBG_CHECK_ME();
        ENSURE_OR_RETURN( ( column >= 0 ) && ( column < getColumnCount() ),
            "DefaultTableModel::getColumnModel: invalid index!", PColumnModel() );
        return aColumns[ column ];
    }


    void UnoControlTableModel::appendColumn( Reference< XGridColumn > const & i_column )
    {
        DBG_CHECK_ME();
        insertColumn( aColumns.size(), i_column );
    }


    void UnoControlTableModel::insertColumn( ColPos const i_position, Reference< XGridColumn > const & i_column )
    {
        DBG_CHECK_ME();
        ENSURE_OR_RETURN_VOID( ( i_position >= 0 ) && ( o3tl::make_unsigned( i_position ) <= aColumns.size() ),
            "UnoControlTableModel::insertColumn: illegal position!" );

        const PColumnModel pColumn = std::make_shared<UnoGridColumnFacade>( *this, i_column );
        aColumns.insert( aColumns.begin() + i_position, pColumn );

        // notify listeners
        ModellListeners aListeners( m_aListeners );
        for (auto const& listener : aListeners)
        {
            listener->columnInserted();
        }
    }


    void UnoControlTableModel::removeColumn( ColPos const i_position )
    {
        DBG_CHECK_ME();
        ENSURE_OR_RETURN_VOID( ( i_position >= 0 ) && ( o3tl::make_unsigned( i_position ) <= aColumns.size() ),
            "UnoControlTableModel::removeColumn: illegal position!" );

        // remove the column
        ColumnModels::iterator pos = aColumns.begin() + i_position;
        const PColumnModel pColumn = *pos;
        aColumns.erase( pos );

        // notify listeners
        ModellListeners aListeners( m_aListeners );
        for (auto const& listener : aListeners)
        {
            listener->columnRemoved();
        }

        // dispose the column
        UnoGridColumnFacade* pColumnImpl = dynamic_cast< UnoGridColumnFacade* >( pColumn.get() );
        OSL_ENSURE( pColumnImpl != nullptr, "UnoControlTableModel::removeColumn: illegal column implementation!" );
        if ( pColumnImpl )
            pColumnImpl->dispose();
    }


    void UnoControlTableModel::removeAllColumns()
    {
        DBG_CHECK_ME();
        if ( aColumns.empty() )
            return;

        // dispose the column instances
        for (auto const& col : aColumns)
        {
            UnoGridColumnFacade* pColumn = dynamic_cast< UnoGridColumnFacade* >( col.get() );
            if ( !pColumn )
            {
                SAL_WARN( "svtools.uno", "UnoControlTableModel::removeAllColumns: illegal column implementation!" );
                continue;
            }

            pColumn->dispose();
        }
        aColumns.clear();

        // notify listeners
        ModellListeners aListeners( m_aListeners );
        for (auto const& listener : aListeners)
        {
            listener->allColumnsRemoved();
        }
    }


    void UnoControlTableModel::impl_notifyTableMetricsChanged() const
    {
        ModellListeners aListeners( m_aListeners );
        for (auto const& listener : aListeners)
        {
            listener->tableMetricsChanged();
        }
    }


    PTableRenderer UnoControlTableModel::getRenderer() const
    {
        DBG_CHECK_ME();
        return pRenderer;
    }


    PTableInputHandler UnoControlTableModel::getInputHandler() const
    {
        DBG_CHECK_ME();
        return pInputHandler;
    }


    TableMetrics UnoControlTableModel::getRowHeight() const
    {
        DBG_CHECK_ME();
        return nRowHeight;
    }


    void UnoControlTableModel::setRowHeight(TableMetrics _nRowHeight)
    {
        DBG_CHECK_ME();
        if ( nRowHeight == _nRowHeight )
            return;

        nRowHeight = _nRowHeight;
        impl_notifyTableMetricsChanged();
    }


    TableMetrics UnoControlTableModel::getColumnHeaderHeight() const
    {
        DBG_CHECK_ME();
        DBG_ASSERT( hasColumnHeaders(), "DefaultTableModel::getColumnHeaderHeight: invalid call!" );
        return nColumnHeaderHeight;
    }


    TableMetrics UnoControlTableModel::getRowHeaderWidth() const
    {
        DBG_CHECK_ME();
        DBG_ASSERT( hasRowHeaders(), "DefaultTableModel::getRowHeaderWidth: invalid call!" );
        return nRowHeaderWidth;
    }

    void UnoControlTableModel::setColumnHeaderHeight(TableMetrics _nHeight)
    {
        DBG_CHECK_ME();
        if ( nColumnHeaderHeight == _nHeight )
            return;

        nColumnHeaderHeight = _nHeight;
        impl_notifyTableMetricsChanged();
    }


    void UnoControlTableModel::setRowHeaderWidth(TableMetrics _nWidth)
    {
        DBG_CHECK_ME();
        if ( nRowHeaderWidth == _nWidth )
            return;

        nRowHeaderWidth = _nWidth;
        impl_notifyTableMetricsChanged();
    }


    ScrollbarVisibility UnoControlTableModel::getVerticalScrollbarVisibility() const
    {
        DBG_CHECK_ME();
        return eVScrollMode;
    }


    ScrollbarVisibility UnoControlTableModel::getHorizontalScrollbarVisibility() const
    {
        DBG_CHECK_ME();
        return eHScrollMode;
    }


    void UnoControlTableModel::addTableModelListener( const PTableModelListener& i_listener )
    {
        DBG_CHECK_ME();
        ENSURE_OR_RETURN_VOID( !!i_listener, "illegal NULL listener" );
        m_aListeners.push_back( i_listener );
    }


    void UnoControlTableModel::removeTableModelListener( const PTableModelListener& i_listener )
    {
        DBG_CHECK_ME();
        auto lookup = std::find(m_aListeners.begin(), m_aListeners.end(), i_listener);
        if (lookup != m_aListeners.end())
        {
            m_aListeners.erase( lookup );
            return;
        }
        OSL_ENSURE( false, "UnoControlTableModel::removeTableModelListener: listener is not registered - sure you're doing the right thing here?" );
    }


    void UnoControlTableModel::setVerticalScrollbarVisibility( ScrollbarVisibility const i_visibility )
    {
        DBG_CHECK_ME();
        eVScrollMode = i_visibility;
    }


    void UnoControlTableModel::setHorizontalScrollbarVisibility( ScrollbarVisibility const i_visibility )
    {
        DBG_CHECK_ME();
        eHScrollMode = i_visibility;
    }


    void UnoControlTableModel::setDataModel( Reference< XGridDataModel > const & i_gridDataModel )
    {
        DBG_CHECK_ME();
        m_aDataModel = i_gridDataModel;
        // TODO: register as listener, so we're notified of row/data changes, and can multiplex them to our
        // own listeners
    }


    Reference< XGridDataModel > UnoControlTableModel::getDataModel() const
    {
        Reference< XGridDataModel > const xDataModel( m_aDataModel );
        return xDataModel;
    }


    bool UnoControlTableModel::hasDataModel() const
    {
        return getDataModel().is();
    }


    void UnoControlTableModel::setColumnModel( Reference< XGridColumnModel > const & i_gridColumnModel )
    {
        DBG_CHECK_ME();
        m_aColumnModel = i_gridColumnModel;
    }


    Reference< XGridColumnModel > UnoControlTableModel::getColumnModel() const
    {
        Reference< XGridColumnModel > const xColumnModel( m_aColumnModel );
        return xColumnModel;
    }


    bool UnoControlTableModel::hasColumnModel() const
    {
        return getColumnModel().is();
    }


    void UnoControlTableModel::getCellContent( ColPos const i_col, RowPos const i_row, Any& o_cellContent )
    {
        DBG_CHECK_ME();

        o_cellContent.clear();
        try
        {
            Reference< XGridDataModel > const xDataModel( m_aDataModel );
            ENSURE_OR_RETURN_VOID( xDataModel.is(), "UnoControlTableModel::getCellContent: no data model anymore!" );

            PColumnModel const pColumn = getColumnModel( i_col );
            UnoGridColumnFacade* pColumnImpl = dynamic_cast< UnoGridColumnFacade* >( pColumn.get() );
            ENSURE_OR_RETURN_VOID( pColumnImpl != nullptr, "UnoControlTableModel::getCellContent: no (valid) column at this position!" );
            sal_Int32 const nDataColumnIndex = pColumnImpl->getDataColumnIndex() >= 0 ? pColumnImpl->getDataColumnIndex() : i_col;

            if ( nDataColumnIndex >= xDataModel->getColumnCount() )
            {
                // this is allowed, in case the column model has been dynamically extended, but the data model does
                // not (yet?) know about it.
                // So, handle it gracefully.
            #if OSL_DEBUG_LEVEL > 0
                Reference< XGridColumnModel > const xColumnModel( m_aColumnModel );
                OSL_ENSURE( xColumnModel.is() && i_col < xColumnModel->getColumnCount(),
                    "UnoControlTableModel::getCellContent: request a column's value which the ColumnModel doesn't know about!" );
            #endif
            }
            else
            {
                o_cellContent = xDataModel->getCellData( nDataColumnIndex, i_row );
            }
        }
        catch( const Exception& )
        {
            DBG_UNHANDLED_EXCEPTION("svtools.uno");
        }
    }


    void UnoControlTableModel::getCellToolTip( ColPos const i_col, RowPos const i_row, Any& o_cellToolTip )
    {
        DBG_CHECK_ME();
        try
        {
            Reference< XGridDataModel > const xDataModel( m_aDataModel );
            ENSURE_OR_THROW( xDataModel.is(), "no data model anymore!" );

            o_cellToolTip = xDataModel->getCellToolTip( i_col, i_row );
        }
        catch( const Exception& )
        {
            DBG_UNHANDLED_EXCEPTION("svtools.uno");
        }
    }


    Any UnoControlTableModel::getRowHeading( RowPos const i_rowPos ) const
    {
        DBG_CHECK_ME();

        Any aRowHeading;

        Reference< XGridDataModel > const xDataModel( m_aDataModel );
        ENSURE_OR_RETURN( xDataModel.is(), "UnoControlTableModel::getRowHeading: no data model anymore!", aRowHeading );

        try
        {
            aRowHeading = xDataModel->getRowHeading( i_rowPos );
        }
        catch( const Exception& )
        {
            DBG_UNHANDLED_EXCEPTION("svtools.uno");
        }
        return aRowHeading;
    }


    namespace
    {
        void lcl_setColor( Any const & i_color, ::std::optional< ::Color > & o_convertedColor )
        {
            if ( !i_color.hasValue() )
                o_convertedColor.reset();
            else
            {
                Color nColor = COL_TRANSPARENT;
                if ( i_color >>= nColor )
                {
                    o_convertedColor = nColor;
                }
                else
                {
                    OSL_ENSURE( false, "lcl_setColor: could not extract color value!" );
                }
            }
        }
    }


    ::std::optional< ::Color > UnoControlTableModel::getLineColor() const
    {
        DBG_CHECK_ME();
        return m_aGridLineColor;
    }


    void UnoControlTableModel::setLineColor( Any const & i_color )
    {
        DBG_CHECK_ME();
        lcl_setColor( i_color, m_aGridLineColor );
    }


    ::std::optional< ::Color > UnoControlTableModel::getHeaderBackgroundColor() const
    {
        DBG_CHECK_ME();
        return m_aHeaderBackgroundColor;
    }


    void UnoControlTableModel::setHeaderBackgroundColor( Any const & i_color )
    {
        DBG_CHECK_ME();
        lcl_setColor( i_color, m_aHeaderBackgroundColor );
    }


    ::std::optional< ::Color > UnoControlTableModel::getHeaderTextColor() const
    {
        DBG_CHECK_ME();
        return m_aHeaderTextColor;
    }


    ::std::optional< ::Color > UnoControlTableModel::getActiveSelectionBackColor() const
    {
        DBG_CHECK_ME();
        return m_aActiveSelectionBackColor;
    }


    ::std::optional< ::Color > UnoControlTableModel::getInactiveSelectionBackColor() const
    {
        DBG_CHECK_ME();
        return m_aInactiveSelectionBackColor;
    }


    ::std::optional< ::Color > UnoControlTableModel::getActiveSelectionTextColor() const
    {
        DBG_CHECK_ME();
        return m_aActiveSelectionTextColor;
    }


    ::std::optional< ::Color > UnoControlTableModel::getInactiveSelectionTextColor() const
    {
        DBG_CHECK_ME();
        return m_aInactiveSelectionTextColor;
    }


    void UnoControlTableModel::setHeaderTextColor( Any const & i_color )
    {
        DBG_CHECK_ME();
        lcl_setColor( i_color, m_aHeaderTextColor );
    }


    void UnoControlTableModel::setActiveSelectionBackColor( Any const & i_color )
    {
        DBG_CHECK_ME();
        lcl_setColor( i_color, m_aActiveSelectionBackColor );
    }


    void UnoControlTableModel::setInactiveSelectionBackColor( Any const & i_color )
    {
        DBG_CHECK_ME();
        lcl_setColor( i_color, m_aInactiveSelectionBackColor );
    }


    void UnoControlTableModel::setActiveSelectionTextColor( Any const & i_color )
    {
        DBG_CHECK_ME();
        lcl_setColor( i_color, m_aActiveSelectionTextColor );
    }


    void UnoControlTableModel::setInactiveSelectionTextColor( Any const & i_color )
    {
        DBG_CHECK_ME();
        lcl_setColor( i_color, m_aInactiveSelectionTextColor );
    }


    ::std::optional< ::Color > UnoControlTableModel::getTextColor() const
    {
        DBG_CHECK_ME();
        return m_aTextColor;
    }


    void UnoControlTableModel::setTextColor( Any const & i_color )
    {
        DBG_CHECK_ME();
        lcl_setColor( i_color, m_aTextColor );
    }


    ::std::optional< ::Color > UnoControlTableModel::getTextLineColor() const
    {
        DBG_CHECK_ME();
        return m_aTextColor;
    }


    void UnoControlTableModel::setTextLineColor( Any const & i_color )
    {
        DBG_CHECK_ME();
        lcl_setColor( i_color, m_aTextLineColor );
    }


    ::std::optional< ::std::vector< ::Color > > UnoControlTableModel::getRowBackgroundColors() const
    {
        DBG_CHECK_ME();
        return m_aRowColors;
    }


    void UnoControlTableModel::setRowBackgroundColors( css::uno::Any const & i_APIValue )
    {
        DBG_CHECK_ME();
        Sequence< css::util::Color > aAPIColors;
        if ( !( i_APIValue >>= aAPIColors ) )
            m_aRowColors.reset();
        else
        {
            ::std::vector< ::Color > aColors( aAPIColors.getLength() );
            std::transform(aAPIColors.begin(), aAPIColors.end(), aColors.begin(),
                [](const css::util::Color& rAPIColor) -> ::Color { return Color(rAPIColor); });
            m_aRowColors = aColors;
        }
    }


    VerticalAlignment UnoControlTableModel::getVerticalAlign() const
    {
        DBG_CHECK_ME();
        return  m_eVerticalAlign;
    }


    void UnoControlTableModel::setVerticalAlign( VerticalAlignment _xAlign )
    {
        DBG_CHECK_ME();
        m_eVerticalAlign = _xAlign;
    }


    ColPos UnoControlTableModel::getColumnPos( UnoGridColumnFacade const & i_column ) const
    {
        DBG_CHECK_ME();
        ColPos nPos = 0;
        for (auto const& col : aColumns)
        {
            if ( &i_column == col.get() )
                return nPos;
            ++nPos;
        }
        OSL_ENSURE( false, "UnoControlTableModel::getColumnPos: column not found!" );
        return COL_INVALID;
    }


    ITableDataSort* UnoControlTableModel::getSortAdapter()
    {
        DBG_CHECK_ME();

        Reference< XSortableGridData > const xSortAccess( getDataModel(), UNO_QUERY );
        if ( xSortAccess.is() )
            return this;
        return nullptr;
    }


    bool UnoControlTableModel::isEnabled() const
    {
        DBG_CHECK_ME();
        return bEnabled;
    }


    void UnoControlTableModel::setEnabled( bool _bEnabled )
    {
        DBG_CHECK_ME();
        bEnabled = _bEnabled;
    }


    void UnoControlTableModel::sortByColumn( ColPos const i_column, ColumnSortDirection const i_sortDirection )
    {
        DBG_CHECK_ME();

        try
        {
            Reference< XSortableGridData > const xSortAccess( getDataModel(), UNO_QUERY_THROW );
            xSortAccess->sortByColumn( i_column, i_sortDirection == ColumnSortAscending );
        }
        catch( const Exception& )
        {
            DBG_UNHANDLED_EXCEPTION("svtools.uno");
        }
    }


    ColumnSort UnoControlTableModel::getCurrentSortOrder() const
    {
        DBG_CHECK_ME();

        ColumnSort currentSort;
        try
        {
            Reference< XSortableGridData > const xSortAccess( getDataModel(), UNO_QUERY_THROW );
            Pair< ::sal_Int32, sal_Bool > const aCurrentSortOrder( xSortAccess->getCurrentSortOrder() );
            currentSort.nColumnPos = aCurrentSortOrder.First;
            currentSort.eSortDirection = aCurrentSortOrder.Second ? ColumnSortAscending : ColumnSortDescending;
        }
        catch( const Exception& )
        {
            DBG_UNHANDLED_EXCEPTION("svtools.uno");
        }
        return currentSort;
    }


    void UnoControlTableModel::notifyColumnChange( ColPos const i_columnPos, ColumnAttributeGroup const i_attributeGroup ) const
    {
        DBG_CHECK_ME();
        ENSURE_OR_RETURN_VOID( ( i_columnPos >= 0 ) && ( i_columnPos < getColumnCount() ),
            "UnoControlTableModel::notifyColumnChange: invalid column index!" );

        ModellListeners aListeners( m_aListeners );
        for (auto const& listener : aListeners)
        {
            listener->columnChanged( i_columnPos, i_attributeGroup );
        }
    }


    void UnoControlTableModel::notifyRowsInserted( GridDataEvent const & i_event ) const
    {
        // check sanity of the event
        ENSURE_OR_RETURN_VOID( i_event.FirstRow >= 0, "UnoControlTableModel::notifyRowsInserted: invalid first row!" );
        ENSURE_OR_RETURN_VOID( i_event.LastRow >= i_event.FirstRow, "UnoControlTableModel::notifyRowsInserted: invalid row indexes!" );

        // check own sanity
        Reference< XGridColumnModel > const xColumnModel( m_aColumnModel );
        ENSURE_OR_RETURN_VOID( xColumnModel.is(), "UnoControlTableModel::notifyRowsInserted: no column model anymore!" );

        Reference< XGridDataModel > const xDataModel( m_aDataModel );
        ENSURE_OR_RETURN_VOID( xDataModel.is(), "UnoControlTableModel::notifyRowsInserted: no data model anymore!" );

        // implicitly add columns to the column model
        // TODO: is this really a good idea?
        sal_Int32 const dataColumnCount = xDataModel->getColumnCount();
        OSL_ENSURE( dataColumnCount > 0, "UnoControlTableModel::notifyRowsInserted: no columns at all?" );

        sal_Int32 const modelColumnCount = xColumnModel->getColumnCount();
        if ( ( modelColumnCount == 0 ) && ( dataColumnCount > 0 ) )
        {
            // TODO: shouldn't we clear the mutexes guard for this call?
            xColumnModel->setDefaultColumns( dataColumnCount );
        }

        // multiplex the event to our own listeners
        ModellListeners aListeners( m_aListeners );
        for (auto const& listener : aListeners)
        {
            listener->rowsInserted( i_event.FirstRow, i_event.LastRow );
        }
    }


    void UnoControlTableModel::notifyRowsRemoved( GridDataEvent const & i_event ) const
    {
        ModellListeners aListeners( m_aListeners );
        for (auto const& listener : aListeners)
        {
            listener->rowsRemoved( i_event.FirstRow, i_event.LastRow );
        }
    }


    void UnoControlTableModel::notifyDataChanged( css::awt::grid::GridDataEvent const & i_event ) const
    {
        RowPos const firstRow = i_event.FirstRow == -1 ? 0 : i_event.FirstRow;
        RowPos const lastRow = i_event.FirstRow == -1 ? getRowCount() - 1 : i_event.LastRow;

        ModellListeners aListeners( m_aListeners );
        for (auto const& listener : aListeners)
        {
            listener->cellsUpdated( firstRow, lastRow );
        }
    }


    void UnoControlTableModel::notifyAllDataChanged() const
    {
        ModellListeners aListeners( m_aListeners );
        for (auto const& listener : aListeners)
        {
            listener->cellsUpdated( 0, getRowCount() - 1 );
        }
    }


} // svt::table

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ss='graph'>
-rw-r--r--source/ast/editeng/messages.po6
-rw-r--r--source/ast/extensions/messages.po18
-rw-r--r--source/ast/formula/messages.po4
-rw-r--r--source/ast/fpicker/messages.po30
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared.po254
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared/03.po212
-rw-r--r--source/ast/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ast/helpcontent2/source/text/scalc/01.po241
-rw-r--r--source/ast/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/ast/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--source/ast/helpcontent2/source/text/sdatabase.po6
-rw-r--r--source/ast/helpcontent2/source/text/sdraw/01.po14
-rw-r--r--source/ast/helpcontent2/source/text/shared.po275
-rw-r--r--source/ast/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/ast/helpcontent2/source/text/shared/01.po132
-rw-r--r--source/ast/helpcontent2/source/text/shared/02.po889
-rw-r--r--source/ast/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ast/helpcontent2/source/text/shared/autopi.po44
-rw-r--r--source/ast/helpcontent2/source/text/shared/guide.po87
-rw-r--r--source/ast/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/ast/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/ast/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/ast/helpcontent2/source/text/smath/guide.po10
-rw-r--r--source/ast/helpcontent2/source/text/swriter.po406
-rw-r--r--source/ast/helpcontent2/source/text/swriter/01.po240
-rw-r--r--source/ast/helpcontent2/source/text/swriter/guide.po42
-rw-r--r--source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po17
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po310
-rw-r--r--source/ast/sc/messages.po376
-rw-r--r--source/ast/sd/messages.po14
-rw-r--r--source/ast/setup_native/source/mac.po10
-rw-r--r--source/ast/sfx2/messages.po224
-rw-r--r--source/ast/starmath/messages.po166
-rw-r--r--source/ast/svtools/messages.po870
-rw-r--r--source/ast/svx/messages.po4082
-rw-r--r--source/ast/sw/messages.po975
-rw-r--r--source/ast/uui/messages.po11
-rw-r--r--source/ast/vcl/messages.po216
-rw-r--r--source/ast/wizards/messages.po8
-rw-r--r--source/az/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/az/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/az/cui/messages.po214
-rw-r--r--source/az/dbaccess/messages.po54
-rw-r--r--source/az/fpicker/messages.po26
-rw-r--r--source/az/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/az/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/az/sc/messages.po318
-rw-r--r--source/az/sd/messages.po6
-rw-r--r--source/az/sfx2/messages.po220
-rw-r--r--source/az/starmath/messages.po138
-rw-r--r--source/az/svtools/messages.po864
-rw-r--r--source/az/svx/messages.po4072
-rw-r--r--source/az/sw/messages.po922
-rw-r--r--source/az/uui/messages.po6
-rw-r--r--source/az/vcl/messages.po217
-rw-r--r--source/be/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/be/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/be/cui/messages.po214
-rw-r--r--source/be/dbaccess/messages.po80
-rw-r--r--source/be/fpicker/messages.po26
-rw-r--r--source/be/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/be/sc/messages.po332
-rw-r--r--source/be/sd/messages.po6
-rw-r--r--source/be/sfx2/messages.po220
-rw-r--r--source/be/starmath/messages.po138
-rw-r--r--source/be/svtools/messages.po864
-rw-r--r--source/be/svx/messages.po4072
-rw-r--r--source/be/sw/messages.po922
-rw-r--r--source/be/uui/messages.po9
-rw-r--r--source/be/vcl/messages.po213
-rw-r--r--source/bg/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/bg/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/bg/cui/messages.po226
-rw-r--r--source/bg/dbaccess/messages.po90
-rw-r--r--source/bg/fpicker/messages.po30
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po566
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared/03.po204
-rw-r--r--source/bg/helpcontent2/source/text/scalc/00.po57
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po559
-rw-r--r--source/bg/helpcontent2/source/text/sdatabase.po1900
-rw-r--r--source/bg/helpcontent2/source/text/shared.po271
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po232
-rw-r--r--source/bg/helpcontent2/source/text/shared/02.po915
-rw-r--r--source/bg/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/bg/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/bg/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/bg/helpcontent2/source/text/shared/help.po8
-rw-r--r--source/bg/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/bg/helpcontent2/source/text/smath/00.po22
-rw-r--r--source/bg/helpcontent2/source/text/smath/guide.po114
-rw-r--r--source/bg/helpcontent2/source/text/swriter.po412
-rw-r--r--source/bg/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po298
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po52
-rw-r--r--source/bg/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po300
-rw-r--r--source/bg/sc/messages.po320
-rw-r--r--source/bg/sd/messages.po10
-rw-r--r--source/bg/sfx2/messages.po224
-rw-r--r--source/bg/starmath/messages.po146
-rw-r--r--source/bg/svtools/messages.po866
-rw-r--r--source/bg/svx/messages.po4076
-rw-r--r--source/bg/sw/messages.po926
-rw-r--r--source/bg/uui/messages.po14
-rw-r--r--source/bg/vcl/messages.po213
-rw-r--r--source/bn-IN/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/bn-IN/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/bn-IN/cui/messages.po216
-rw-r--r--source/bn-IN/dbaccess/messages.po82
-rw-r--r--source/bn-IN/fpicker/messages.po26
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared.po261
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po90
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/02.po871
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter.po402
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/bn-IN/sc/messages.po332
-rw-r--r--source/bn-IN/sd/messages.po6
-rw-r--r--source/bn-IN/sfx2/messages.po220
-rw-r--r--source/bn-IN/starmath/messages.po138
-rw-r--r--source/bn-IN/svtools/messages.po864
-rw-r--r--source/bn-IN/svx/messages.po4072
-rw-r--r--source/bn-IN/sw/messages.po922
-rw-r--r--source/bn-IN/uui/messages.po9
-rw-r--r--source/bn-IN/vcl/messages.po218
-rw-r--r--source/bn/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/bn/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/bn/cui/messages.po215
-rw-r--r--source/bn/dbaccess/messages.po87
-rw-r--r--source/bn/fpicker/messages.po26
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/bn/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/bn/helpcontent2/source/text/shared.po261
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po90
-rw-r--r--source/bn/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/bn/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/bn/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/bn/helpcontent2/source/text/swriter.po402
-rw-r--r--source/bn/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/bn/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/bn/sc/messages.po336
-rw-r--r--source/bn/sd/messages.po6
-rw-r--r--source/bn/sfx2/messages.po220
-rw-r--r--source/bn/starmath/messages.po138
-rw-r--r--source/bn/svtools/messages.po864
-rw-r--r--source/bn/svx/messages.po4072
-rw-r--r--source/bn/sw/messages.po922
-rw-r--r--source/bn/uui/messages.po9
-rw-r--r--source/bn/vcl/messages.po216
-rw-r--r--source/bo/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/bo/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/bo/cui/messages.po215
-rw-r--r--source/bo/dbaccess/messages.po82
-rw-r--r--source/bo/fpicker/messages.po26
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/bo/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/bo/helpcontent2/source/text/shared.po261
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po90
-rw-r--r--source/bo/helpcontent2/source/text/shared/02.po867
-rw-r--r--source/bo/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/bo/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/bo/helpcontent2/source/text/swriter.po402
-rw-r--r--source/bo/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/bo/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/bo/sc/messages.po336
-rw-r--r--source/bo/sd/messages.po6
-rw-r--r--source/bo/sfx2/messages.po220
-rw-r--r--source/bo/starmath/messages.po138
-rw-r--r--source/bo/svtools/messages.po864
-rw-r--r--source/bo/svx/messages.po4072
-rw-r--r--source/bo/sw/messages.po922
-rw-r--r--source/bo/uui/messages.po8
-rw-r--r--source/bo/vcl/messages.po219
-rw-r--r--source/br/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/br/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/br/cui/messages.po214
-rw-r--r--source/br/dbaccess/messages.po80
-rw-r--r--source/br/fpicker/messages.po26
-rw-r--r--source/br/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/br/sc/messages.po332
-rw-r--r--source/br/sd/messages.po6
-rw-r--r--source/br/sfx2/messages.po220
-rw-r--r--source/br/starmath/messages.po138
-rw-r--r--source/br/svtools/messages.po864
-rw-r--r--source/br/svx/messages.po4072
-rw-r--r--source/br/sw/messages.po922
-rw-r--r--source/br/uui/messages.po9
-rw-r--r--source/br/vcl/messages.po213
-rw-r--r--source/brx/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/brx/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/brx/cui/messages.po215
-rw-r--r--source/brx/dbaccess/messages.po79
-rw-r--r--source/brx/fpicker/messages.po26
-rw-r--r--source/brx/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po295
-rw-r--r--source/brx/sc/messages.po336
-rw-r--r--source/brx/sd/messages.po6
-rw-r--r--source/brx/sfx2/messages.po220
-rw-r--r--source/brx/starmath/messages.po138
-rw-r--r--source/brx/svtools/messages.po864
-rw-r--r--source/brx/svx/messages.po4072
-rw-r--r--source/brx/sw/messages.po922
-rw-r--r--source/brx/uui/messages.po6
-rw-r--r--source/brx/vcl/messages.po217
-rw-r--r--source/bs/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/bs/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/bs/cui/messages.po216
-rw-r--r--source/bs/dbaccess/messages.po87
-rw-r--r--source/bs/fpicker/messages.po26
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/bs/helpcontent2/source/text/scalc/00.po51
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/bs/helpcontent2/source/text/shared.po235
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/bs/helpcontent2/source/text/shared/02.po789
-rw-r--r--source/bs/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/bs/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/bs/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/bs/helpcontent2/source/text/swriter.po402
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po20
-rw-r--r--source/bs/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/bs/sc/messages.po333
-rw-r--r--source/bs/sd/messages.po6
-rw-r--r--source/bs/sfx2/messages.po220
-rw-r--r--source/bs/starmath/messages.po138
-rw-r--r--source/bs/svtools/messages.po864
-rw-r--r--source/bs/svx/messages.po4072
-rw-r--r--source/bs/sw/messages.po922
-rw-r--r--source/bs/uui/messages.po9
-rw-r--r--source/bs/vcl/messages.po214
-rw-r--r--source/ca-valencia/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/ca-valencia/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/ca-valencia/cui/messages.po220
-rw-r--r--source/ca-valencia/dbaccess/messages.po80
-rw-r--r--source/ca-valencia/fpicker/messages.po26
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po232
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po221
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared.po269
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/02.po883
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter.po404
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/ca-valencia/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/ca-valencia/sc/messages.po332
-rw-r--r--source/ca-valencia/sd/messages.po6
-rw-r--r--source/ca-valencia/sfx2/messages.po220
-rw-r--r--source/ca-valencia/starmath/messages.po138
-rw-r--r--source/ca-valencia/svtools/messages.po864
-rw-r--r--source/ca-valencia/svx/messages.po4072
-rw-r--r--source/ca-valencia/sw/messages.po922
-rw-r--r--source/ca-valencia/uui/messages.po9
-rw-r--r--source/ca-valencia/vcl/messages.po213
-rw-r--r--source/ca/basctl/messages.po12
-rw-r--r--source/ca/chart2/messages.po10
-rw-r--r--source/ca/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ca/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/ca/cui/messages.po252
-rw-r--r--source/ca/dbaccess/messages.po86
-rw-r--r--source/ca/dictionaries/ckb.po12
-rw-r--r--source/ca/dictionaries/en/dialog/registry/data/org/openoffice/Office.po12
-rw-r--r--source/ca/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po12
-rw-r--r--source/ca/dictionaries/pt_BR/dialog.po6
-rw-r--r--source/ca/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po12
-rw-r--r--source/ca/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po12
-rw-r--r--source/ca/extensions/messages.po8
-rw-r--r--source/ca/fpicker/messages.po32
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po284
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/01.po8
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po218
-rw-r--r--source/ca/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po257
-rw-r--r--source/ca/helpcontent2/source/text/scalc/04.po8
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ca/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/ca/helpcontent2/source/text/sdatabase.po8
-rw-r--r--source/ca/helpcontent2/source/text/shared.po277
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po51
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po140
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po916
-rw-r--r--source/ca/helpcontent2/source/text/shared/04.po16
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po93
-rw-r--r--source/ca/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po39
-rw-r--r--source/ca/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/ca/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/ca/helpcontent2/source/text/simpress/02.po10
-rw-r--r--source/ca/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ca/helpcontent2/source/text/smath/guide.po6
-rw-r--r--source/ca/helpcontent2/source/text/swriter.po410
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po259
-rw-r--r--source/ca/helpcontent2/source/text/swriter/02.po12
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po66
-rw-r--r--source/ca/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/ca/instsetoo_native/inc_openoffice/windows/msi_languages.po19
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po312
-rw-r--r--source/ca/readlicense_oo/docs.po8
-rw-r--r--source/ca/reportdesign/messages.po6
-rw-r--r--source/ca/sc/messages.po376
-rw-r--r--source/ca/scp2/source/ooo.po10
-rw-r--r--source/ca/sd/messages.po18
-rw-r--r--source/ca/sfx2/messages.po228
-rw-r--r--source/ca/starmath/messages.po140
-rw-r--r--source/ca/svtools/messages.po870
-rw-r--r--source/ca/svx/messages.po4080
-rw-r--r--source/ca/sw/messages.po992
-rw-r--r--source/ca/uui/messages.po11
-rw-r--r--source/ca/vcl/messages.po213
-rw-r--r--source/ckb/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/ckb/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/ckb/cui/messages.po214
-rw-r--r--source/ckb/dbaccess/messages.po54
-rw-r--r--source/ckb/fpicker/messages.po26
-rw-r--r--source/ckb/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/ckb/sc/messages.po332
-rw-r--r--source/ckb/sd/messages.po6
-rw-r--r--source/ckb/sfx2/messages.po220
-rw-r--r--source/ckb/starmath/messages.po138
-rw-r--r--source/ckb/svtools/messages.po864
-rw-r--r--source/ckb/svx/messages.po4072
-rw-r--r--source/ckb/sw/messages.po924
-rw-r--r--source/ckb/uui/messages.po6
-rw-r--r--source/ckb/vcl/messages.po213
-rw-r--r--source/cs/chart2/messages.po12
-rw-r--r--source/cs/connectivity/messages.po16
-rw-r--r--source/cs/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/cs/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/cs/cui/messages.po270
-rw-r--r--source/cs/dbaccess/messages.po128
-rw-r--r--source/cs/desktop/messages.po18
-rw-r--r--source/cs/extensions/messages.po6
-rw-r--r--source/cs/fpicker/messages.po32
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po268
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/01.po12
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/03.po230
-rw-r--r--source/cs/helpcontent2/source/text/scalc/00.po59
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po233
-rw-r--r--source/cs/helpcontent2/source/text/sdatabase.po6
-rw-r--r--source/cs/helpcontent2/source/text/shared.po275
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po104
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po919
-rw-r--r--source/cs/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/cs/helpcontent2/source/text/shared/07.po10
-rw-r--r--source/cs/helpcontent2/source/text/shared/autokorr.po10
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po69
-rw-r--r--source/cs/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/cs/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/cs/helpcontent2/source/text/simpress/guide.po18
-rw-r--r--source/cs/helpcontent2/source/text/smath/guide.po8
-rw-r--r--source/cs/helpcontent2/source/text/swriter.po408
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po230
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po206
-rw-r--r--source/cs/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po298
-rw-r--r--source/cs/readlicense_oo/docs.po26
-rw-r--r--source/cs/sc/messages.po324
-rw-r--r--source/cs/sd/messages.po12
-rw-r--r--source/cs/sfx2/messages.po230
-rw-r--r--source/cs/starmath/messages.po140
-rw-r--r--source/cs/svtools/messages.po866
-rw-r--r--source/cs/svx/messages.po4092
-rw-r--r--source/cs/sw/messages.po992
-rw-r--r--source/cs/uui/messages.po14
-rw-r--r--source/cs/vcl/messages.po217
-rw-r--r--source/cy/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/cy/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/cy/cui/messages.po224
-rw-r--r--source/cy/dbaccess/messages.po86
-rw-r--r--source/cy/fpicker/messages.po30
-rw-r--r--source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po296
-rw-r--r--source/cy/sc/messages.po362
-rw-r--r--source/cy/sd/messages.po12
-rw-r--r--source/cy/sfx2/messages.po224
-rw-r--r--source/cy/starmath/messages.po140
-rw-r--r--source/cy/svtools/messages.po866
-rw-r--r--source/cy/svx/messages.po4076
-rw-r--r--source/cy/sw/messages.po926
-rw-r--r--source/cy/uui/messages.po10
-rw-r--r--source/cy/vcl/messages.po213
-rw-r--r--source/da/basctl/messages.po28
-rw-r--r--source/da/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/da/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/da/cui/messages.po390
-rw-r--r--source/da/dbaccess/messages.po82
-rw-r--r--source/da/desktop/messages.po6
-rw-r--r--source/da/dictionaries/ckb.po12
-rw-r--r--source/da/extensions/messages.po12
-rw-r--r--source/da/filter/messages.po6
-rw-r--r--source/da/filter/source/config/fragments/filters.po16
-rw-r--r--source/da/filter/source/config/fragments/internalgraphicfilters.po8
-rw-r--r--source/da/fpicker/messages.po26
-rw-r--r--source/da/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/da/helpcontent2/source/text/sbasic/python.po12
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po546
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/03.po320
-rw-r--r--source/da/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po448
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/da/helpcontent2/source/text/sdatabase.po566
-rw-r--r--source/da/helpcontent2/source/text/shared.po347
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po236
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po915
-rw-r--r--source/da/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/da/helpcontent2/source/text/shared/autopi.po6
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po151
-rw-r--r--source/da/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/da/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/da/helpcontent2/source/text/smath/00.po22
-rw-r--r--source/da/helpcontent2/source/text/smath/guide.po108
-rw-r--r--source/da/helpcontent2/source/text/swriter.po406
-rw-r--r--source/da/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po290
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po50
-rw-r--r--source/da/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po338
-rw-r--r--source/da/sc/messages.po426
-rw-r--r--source/da/scp2/source/ooo.po8
-rw-r--r--source/da/sd/messages.po36
-rw-r--r--source/da/sfx2/messages.po234
-rw-r--r--source/da/starmath/messages.po140
-rw-r--r--source/da/svl/messages.po12
-rw-r--r--source/da/svtools/messages.po880
-rw-r--r--source/da/svx/messages.po4134
-rw-r--r--source/da/sw/messages.po996
-rw-r--r--source/da/uui/messages.po9
-rw-r--r--source/da/vcl/messages.po225
-rw-r--r--source/de/chart2/messages.po16
-rw-r--r--source/de/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/de/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/de/cui/messages.po374
-rw-r--r--source/de/dbaccess/messages.po108
-rw-r--r--source/de/desktop/messages.po6
-rw-r--r--source/de/dictionaries/ckb.po12
-rw-r--r--source/de/dictionaries/en/dialog.po6
-rw-r--r--source/de/editeng/messages.po8
-rw-r--r--source/de/extensions/messages.po14
-rw-r--r--source/de/filter/messages.po6
-rw-r--r--source/de/fpicker/messages.po32
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po256
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po580
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po55
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po237
-rw-r--r--source/de/helpcontent2/source/text/shared.po269
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po456
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po889
-rw-r--r--source/de/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po111
-rw-r--r--source/de/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/de/helpcontent2/source/text/swriter.po406
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po224
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/de/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po6
-rw-r--r--source/de/nlpsolver/src/locale.po4
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po316
-rw-r--r--source/de/readlicense_oo/docs.po6
-rw-r--r--source/de/reportdesign/messages.po8
-rw-r--r--source/de/sc/messages.po394
-rw-r--r--source/de/scaddins/messages.po8
-rw-r--r--source/de/scp2/source/ooo.po12
-rw-r--r--source/de/sd/messages.po30
-rw-r--r--source/de/sfx2/messages.po238
-rw-r--r--source/de/starmath/messages.po140
-rw-r--r--source/de/svtools/messages.po866
-rw-r--r--source/de/svx/messages.po4094
-rw-r--r--source/de/sw/messages.po986
-rw-r--r--source/de/swext/mediawiki/help.po12
-rw-r--r--source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--source/de/uui/messages.po14
-rw-r--r--source/de/vcl/messages.po219
-rw-r--r--source/de/wizards/messages.po10
-rw-r--r--source/de/xmlsecurity/messages.po10
-rw-r--r--source/dgo/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/dgo/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/dgo/cui/messages.po214
-rw-r--r--source/dgo/dbaccess/messages.po87
-rw-r--r--source/dgo/fpicker/messages.po26
-rw-r--r--source/dgo/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po295
-rw-r--r--source/dgo/sc/messages.po336
-rw-r--r--source/dgo/sd/messages.po6
-rw-r--r--source/dgo/sfx2/messages.po220
-rw-r--r--source/dgo/starmath/messages.po138
-rw-r--r--source/dgo/svtools/messages.po864
-rw-r--r--source/dgo/svx/messages.po4072
-rw-r--r--source/dgo/sw/messages.po922
-rw-r--r--source/dgo/uui/messages.po9
-rw-r--r--source/dgo/vcl/messages.po219
-rw-r--r--source/dsb/basctl/messages.po26
-rw-r--r--source/dsb/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po9
-rw-r--r--source/dsb/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/dsb/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po15
-rw-r--r--source/dsb/cui/messages.po262
-rw-r--r--source/dsb/dbaccess/messages.po142
-rw-r--r--source/dsb/desktop/messages.po6
-rw-r--r--source/dsb/dictionaries/ckb.po12
-rw-r--r--source/dsb/dictionaries/pt_BR.po9
-rw-r--r--source/dsb/dictionaries/pt_BR/dialog.po117
-rw-r--r--source/dsb/extensions/messages.po38
-rw-r--r--source/dsb/filter/messages.po10
-rw-r--r--source/dsb/filter/source/config/fragments/filters.po28
-rw-r--r--source/dsb/filter/source/config/fragments/internalgraphicfilters.po15
-rw-r--r--source/dsb/fpicker/messages.po30
-rw-r--r--source/dsb/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po456
-rw-r--r--source/dsb/sc/messages.po676
-rw-r--r--source/dsb/scp2/source/ooo.po8
-rw-r--r--source/dsb/sd/messages.po96
-rw-r--r--source/dsb/sfx2/messages.po284
-rw-r--r--source/dsb/starmath/messages.po140
-rw-r--r--source/dsb/svl/messages.po12
-rw-r--r--source/dsb/svtools/messages.po888
-rw-r--r--source/dsb/svx/messages.po4292
-rw-r--r--source/dsb/sw/messages.po968
-rw-r--r--source/dsb/uui/messages.po10
-rw-r--r--source/dsb/vcl/messages.po225
-rw-r--r--source/dz/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/dz/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/dz/cui/messages.po215
-rw-r--r--source/dz/dbaccess/messages.po82
-rw-r--r--source/dz/fpicker/messages.po26
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/dz/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/dz/helpcontent2/source/text/shared.po261
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/dz/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/dz/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/dz/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/dz/helpcontent2/source/text/swriter.po402
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/dz/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/dz/sc/messages.po336
-rw-r--r--source/dz/sd/messages.po6
-rw-r--r--source/dz/sfx2/messages.po220
-rw-r--r--source/dz/starmath/messages.po138
-rw-r--r--source/dz/svtools/messages.po864
-rw-r--r--source/dz/svx/messages.po4072
-rw-r--r--source/dz/sw/messages.po922
-rw-r--r--source/dz/uui/messages.po9
-rw-r--r--source/dz/vcl/messages.po220
-rw-r--r--source/el/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/el/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/el/cui/messages.po230
-rw-r--r--source/el/dbaccess/messages.po86
-rw-r--r--source/el/dictionaries/ckb.po12
-rw-r--r--source/el/extras/source/gallery/share.po8
-rw-r--r--source/el/fpicker/messages.po30
-rw-r--r--source/el/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/el/helpcontent2/source/text/sbasic/python.po14
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po576
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared/03.po1838
-rw-r--r--source/el/helpcontent2/source/text/scalc/00.po55
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po423
-rw-r--r--source/el/helpcontent2/source/text/sdatabase.po884
-rw-r--r--source/el/helpcontent2/source/text/shared.po281
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po104
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po939
-rw-r--r--source/el/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/el/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po83
-rw-r--r--source/el/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/el/helpcontent2/source/text/smath/guide.po118
-rw-r--r--source/el/helpcontent2/source/text/swriter.po406
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po226
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po28
-rw-r--r--source/el/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po302
-rw-r--r--source/el/sc/messages.po368
-rw-r--r--source/el/scp2/source/ooo.po8
-rw-r--r--source/el/sd/messages.po14
-rw-r--r--source/el/sfx2/messages.po224
-rw-r--r--source/el/starmath/messages.po140
-rw-r--r--source/el/svtools/messages.po866
-rw-r--r--source/el/svx/messages.po4080
-rw-r--r--source/el/sw/messages.po926
-rw-r--r--source/el/uui/messages.po14
-rw-r--r--source/el/vcl/messages.po213
-rw-r--r--source/en-GB/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/en-GB/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/en-GB/cui/messages.po222
-rw-r--r--source/en-GB/dbaccess/messages.po80
-rw-r--r--source/en-GB/fpicker/messages.po26
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po240
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/00.po55
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po225
-rw-r--r--source/en-GB/helpcontent2/source/text/shared.po281
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po883
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter.po406
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/en-GB/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/en-GB/sc/messages.po360
-rw-r--r--source/en-GB/sd/messages.po8
-rw-r--r--source/en-GB/sfx2/messages.po220
-rw-r--r--source/en-GB/starmath/messages.po140
-rw-r--r--source/en-GB/svtools/messages.po866
-rw-r--r--source/en-GB/svx/messages.po4072
-rw-r--r--source/en-GB/sw/messages.po922
-rw-r--r--source/en-GB/uui/messages.po9
-rw-r--r--source/en-GB/vcl/messages.po215
-rw-r--r--source/en-ZA/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/en-ZA/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/en-ZA/cui/messages.po217
-rw-r--r--source/en-ZA/dbaccess/messages.po87
-rw-r--r--source/en-ZA/fpicker/messages.po26
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared.po261
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter.po402
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/en-ZA/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/en-ZA/sc/messages.po336
-rw-r--r--source/en-ZA/sd/messages.po6
-rw-r--r--source/en-ZA/sfx2/messages.po220
-rw-r--r--source/en-ZA/starmath/messages.po138
-rw-r--r--source/en-ZA/svtools/messages.po864
-rw-r--r--source/en-ZA/svx/messages.po4072
-rw-r--r--source/en-ZA/sw/messages.po922
-rw-r--r--source/en-ZA/uui/messages.po9
-rw-r--r--source/en-ZA/vcl/messages.po220
-rw-r--r--source/eo/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/eo/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/eo/cui/messages.po226
-rw-r--r--source/eo/dbaccess/messages.po80
-rw-r--r--source/eo/fpicker/messages.po26
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared/03.po202
-rw-r--r--source/eo/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/eo/helpcontent2/source/text/shared.po269
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/eo/helpcontent2/source/text/shared/02.po775
-rw-r--r--source/eo/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/eo/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/eo/helpcontent2/source/text/swriter.po404
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/eo/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/eo/librelogo/source/pythonpath.po8
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/eo/sc/messages.po362
-rw-r--r--source/eo/sd/messages.po8
-rw-r--r--source/eo/sfx2/messages.po222
-rw-r--r--source/eo/starmath/messages.po140
-rw-r--r--source/eo/svtools/messages.po866
-rw-r--r--source/eo/svx/messages.po4078
-rw-r--r--source/eo/sw/messages.po924
-rw-r--r--source/eo/uui/messages.po9
-rw-r--r--source/eo/vcl/messages.po215
-rw-r--r--source/es/basctl/messages.po14
-rw-r--r--source/es/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/es/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/es/cui/messages.po335
-rw-r--r--source/es/dbaccess/messages.po84
-rw-r--r--source/es/extensions/messages.po6
-rw-r--r--source/es/filter/messages.po22
-rw-r--r--source/es/formula/messages.po12
-rw-r--r--source/es/fpicker/messages.po30
-rw-r--r--source/es/helpcontent2/source/auxiliary.po6
-rw-r--r--source/es/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po264
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/01.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po218
-rw-r--r--source/es/helpcontent2/source/text/scalc.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po61
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po501
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po14
-rw-r--r--source/es/helpcontent2/source/text/sdraw.po4
-rw-r--r--source/es/helpcontent2/source/text/shared.po281
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po182
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po919
-rw-r--r--source/es/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po135
-rw-r--r--source/es/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po54
-rw-r--r--source/es/helpcontent2/source/text/simpress.po4
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po4
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/es/helpcontent2/source/text/smath/guide.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter.po418
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po276
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po34
-rw-r--r--source/es/helpcontent2/source/text/swriter/librelogo.po40
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po19
-rw-r--r--source/es/librelogo/source/pythonpath.po8
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po418
-rw-r--r--source/es/readlicense_oo/docs.po4
-rw-r--r--source/es/sc/messages.po455
-rw-r--r--source/es/scp2/source/ooo.po8
-rw-r--r--source/es/sd/messages.po52
-rw-r--r--source/es/sfx2/messages.po260
-rw-r--r--source/es/starmath/messages.po150
-rw-r--r--source/es/svl/messages.po6
-rw-r--r--source/es/svtools/messages.po874
-rw-r--r--source/es/svx/messages.po4112
-rw-r--r--source/es/sw/messages.po1017
-rw-r--r--source/es/uui/messages.po16
-rw-r--r--source/es/vcl/messages.po230
-rw-r--r--source/et/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/et/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/et/cui/messages.po220
-rw-r--r--source/et/dbaccess/messages.po80
-rw-r--r--source/et/dictionaries/ckb.po12
-rw-r--r--source/et/fpicker/messages.po26
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po226
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/et/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po221
-rw-r--r--source/et/helpcontent2/source/text/shared.po269
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/et/helpcontent2/source/text/shared/02.po873
-rw-r--r--source/et/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/et/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/et/helpcontent2/source/text/swriter.po404
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/et/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/et/sc/messages.po360
-rw-r--r--source/et/sd/messages.po6
-rw-r--r--source/et/sfx2/messages.po220
-rw-r--r--source/et/starmath/messages.po140
-rw-r--r--source/et/svtools/messages.po864
-rw-r--r--source/et/svx/messages.po4072
-rw-r--r--source/et/sw/messages.po922
-rw-r--r--source/et/uui/messages.po9
-rw-r--r--source/et/vcl/messages.po213
-rw-r--r--source/eu/basctl/messages.po8
-rw-r--r--source/eu/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/eu/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/eu/cui/messages.po380
-rw-r--r--source/eu/dbaccess/messages.po86
-rw-r--r--source/eu/dictionaries/ckb.po12
-rw-r--r--source/eu/editeng/messages.po6
-rw-r--r--source/eu/extensions/messages.po6
-rw-r--r--source/eu/filter/messages.po4
-rw-r--r--source/eu/fpicker/messages.po30
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po250
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po222
-rw-r--r--source/eu/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po237
-rw-r--r--source/eu/helpcontent2/source/text/shared.po283
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po915
-rw-r--r--source/eu/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po65
-rw-r--r--source/eu/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/eu/helpcontent2/source/text/smath/00.po16
-rw-r--r--source/eu/helpcontent2/source/text/smath/guide.po6
-rw-r--r--source/eu/helpcontent2/source/text/swriter.po404
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po224
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po21
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po328
-rw-r--r--source/eu/readlicense_oo/docs.po6
-rw-r--r--source/eu/sc/messages.po426
-rw-r--r--source/eu/scp2/source/ooo.po8
-rw-r--r--source/eu/sd/messages.po20
-rw-r--r--source/eu/sfx2/messages.po230
-rw-r--r--source/eu/starmath/messages.po140
-rw-r--r--source/eu/svl/messages.po12
-rw-r--r--source/eu/svtools/messages.po874
-rw-r--r--source/eu/svx/messages.po4108
-rw-r--r--source/eu/sw/messages.po990
-rw-r--r--source/eu/uui/messages.po16
-rw-r--r--source/eu/vcl/messages.po219
-rw-r--r--source/eu/wizards/source/resources.po8
-rw-r--r--source/fa/basic/messages.po8
-rw-r--r--source/fa/connectivity/messages.po44
-rw-r--r--source/fa/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/fa/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/fa/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/fa/cui/messages.po225
-rw-r--r--source/fa/dbaccess/messages.po86
-rw-r--r--source/fa/dictionaries/eo.po12
-rw-r--r--source/fa/dictionaries/ko_KR.po8
-rw-r--r--source/fa/dictionaries/mn_MN.po12
-rw-r--r--source/fa/extras/source/gallery/share.po8
-rw-r--r--source/fa/filter/source/config/fragments/types.po14
-rw-r--r--source/fa/formula/messages.po10
-rw-r--r--source/fa/fpicker/messages.po26
-rw-r--r--source/fa/framework/messages.po8
-rw-r--r--source/fa/instsetoo_native/inc_openoffice/windows/msi_languages.po23
-rw-r--r--source/fa/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po317
-rw-r--r--source/fa/sc/messages.po338
-rw-r--r--source/fa/scp2/source/ooo.po10
-rw-r--r--source/fa/sd/messages.po6
-rw-r--r--source/fa/sfx2/messages.po220
-rw-r--r--source/fa/starmath/messages.po138
-rw-r--r--source/fa/svtools/messages.po864
-rw-r--r--source/fa/svx/messages.po4072
-rw-r--r--source/fa/sw/messages.po922
-rw-r--r--source/fa/uui/messages.po6
-rw-r--r--source/fa/vcl/messages.po215
-rw-r--r--source/fa/wizards/source/resources.po8
-rw-r--r--source/fi/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/fi/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/fi/cui/messages.po229
-rw-r--r--source/fi/dbaccess/messages.po86
-rw-r--r--source/fi/fpicker/messages.po26
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/fi/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/fi/helpcontent2/source/text/shared.po261
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/fi/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po59
-rw-r--r--source/fi/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/fi/helpcontent2/source/text/swriter.po402
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/fi/sc/messages.po356
-rw-r--r--source/fi/sd/messages.po14
-rw-r--r--source/fi/sfx2/messages.po242
-rw-r--r--source/fi/starmath/messages.po140
-rw-r--r--source/fi/svtools/messages.po866
-rw-r--r--source/fi/svx/messages.po4120
-rw-r--r--source/fi/sw/messages.po964
-rw-r--r--source/fi/uui/messages.po11
-rw-r--r--source/fi/vcl/messages.po217
-rw-r--r--source/fr/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/fr/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/fr/cui/messages.po228
-rw-r--r--source/fr/dbaccess/messages.po80
-rw-r--r--source/fr/fpicker/messages.po26
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po250
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared/03.po204
-rw-r--r--source/fr/helpcontent2/source/text/scalc/00.po61
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po235
-rw-r--r--source/fr/helpcontent2/source/text/scalc/05.po10
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/fr/helpcontent2/source/text/shared.po269
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po33
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po915
-rw-r--r--source/fr/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/fr/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po163
-rw-r--r--source/fr/helpcontent2/source/text/shared/help.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/fr/helpcontent2/source/text/smath/00.po20
-rw-r--r--source/fr/helpcontent2/source/text/smath/guide.po38
-rw-r--r--source/fr/helpcontent2/source/text/swriter.po414
-rw-r--r--source/fr/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po292
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po52
-rw-r--r--source/fr/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/fr/sc/messages.po360
-rw-r--r--source/fr/sd/messages.po8
-rw-r--r--source/fr/sfx2/messages.po224
-rw-r--r--source/fr/starmath/messages.po140
-rw-r--r--source/fr/svtools/messages.po864
-rw-r--r--source/fr/svx/messages.po4072
-rw-r--r--source/fr/sw/messages.po922
-rw-r--r--source/fr/uui/messages.po9
-rw-r--r--source/fr/vcl/messages.po213
-rw-r--r--source/fur/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/fur/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/fur/cui/messages.po220
-rw-r--r--source/fur/dbaccess/messages.po54
-rw-r--r--source/fur/fpicker/messages.po26
-rw-r--r--source/fur/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/fur/officecfg/registry/data/org/openoffice/Office/UI.po288
-rw-r--r--source/fur/sc/messages.po312
-rw-r--r--source/fur/sd/messages.po6
-rw-r--r--source/fur/sfx2/messages.po220
-rw-r--r--source/fur/starmath/messages.po138
-rw-r--r--source/fur/svtools/messages.po864
-rw-r--r--source/fur/svx/messages.po4072
-rw-r--r--source/fur/sw/messages.po922
-rw-r--r--source/fur/uui/messages.po9
-rw-r--r--source/fur/vcl/messages.po214
-rw-r--r--source/fy/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/fy/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/fy/cui/messages.po222
-rw-r--r--source/fy/dbaccess/messages.po80
-rw-r--r--source/fy/fpicker/messages.po26
-rw-r--r--source/fy/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/fy/sc/messages.po332
-rw-r--r--source/fy/sd/messages.po6
-rw-r--r--source/fy/sfx2/messages.po220
-rw-r--r--source/fy/starmath/messages.po140
-rw-r--r--source/fy/svtools/messages.po864
-rw-r--r--source/fy/svx/messages.po4072
-rw-r--r--source/fy/sw/messages.po922
-rw-r--r--source/fy/uui/messages.po11
-rw-r--r--source/fy/vcl/messages.po213
-rw-r--r--source/ga/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ga/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ga/cui/messages.po214
-rw-r--r--source/ga/dbaccess/messages.po80
-rw-r--r--source/ga/fpicker/messages.po26
-rw-r--r--source/ga/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/ga/sc/messages.po332
-rw-r--r--source/ga/sd/messages.po6
-rw-r--r--source/ga/sfx2/messages.po220
-rw-r--r--source/ga/starmath/messages.po138
-rw-r--r--source/ga/svtools/messages.po864
-rw-r--r--source/ga/svx/messages.po4072
-rw-r--r--source/ga/sw/messages.po922
-rw-r--r--source/ga/uui/messages.po9
-rw-r--r--source/ga/vcl/messages.po213
-rw-r--r--source/gd/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/gd/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/gd/cui/messages.po214
-rw-r--r--source/gd/dbaccess/messages.po80
-rw-r--r--source/gd/fpicker/messages.po26
-rw-r--r--source/gd/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/gd/sc/messages.po332
-rw-r--r--source/gd/sd/messages.po6
-rw-r--r--source/gd/sfx2/messages.po220
-rw-r--r--source/gd/starmath/messages.po138
-rw-r--r--source/gd/svtools/messages.po864
-rw-r--r--source/gd/svx/messages.po4072
-rw-r--r--source/gd/sw/messages.po922
-rw-r--r--source/gd/uui/messages.po9
-rw-r--r--source/gd/vcl/messages.po213
-rw-r--r--source/gl/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/gl/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/gl/cui/messages.po252
-rw-r--r--source/gl/dbaccess/messages.po84
-rw-r--r--source/gl/desktop/messages.po6
-rw-r--r--source/gl/fpicker/messages.po30
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po242
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/gl/helpcontent2/source/text/scalc/00.po61
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po351
-rw-r--r--source/gl/helpcontent2/source/text/scalc/04.po28
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po44
-rw-r--r--source/gl/helpcontent2/source/text/shared.po269
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po39
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po110
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po879
-rw-r--r--source/gl/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/gl/helpcontent2/source/text/shared/autopi.po30
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po57
-rw-r--r--source/gl/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po28
-rw-r--r--source/gl/helpcontent2/source/text/simpress/01.po12
-rw-r--r--source/gl/helpcontent2/source/text/simpress/02.po12
-rw-r--r--source/gl/helpcontent2/source/text/smath/01.po22
-rw-r--r--source/gl/helpcontent2/source/text/swriter.po408
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po240
-rw-r--r--source/gl/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/gl/helpcontent2/source/text/swriter/librelogo.po26
-rw-r--r--source/gl/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po296
-rw-r--r--source/gl/sc/messages.po364
-rw-r--r--source/gl/scp2/source/ooo.po8
-rw-r--r--source/gl/sd/messages.po14
-rw-r--r--source/gl/sfx2/messages.po220
-rw-r--r--source/gl/starmath/messages.po140
-rw-r--r--source/gl/svtools/messages.po866
-rw-r--r--source/gl/svx/messages.po4080
-rw-r--r--source/gl/sw/messages.po948
-rw-r--r--source/gl/uui/messages.po14
-rw-r--r--source/gl/vcl/messages.po213
-rw-r--r--source/gu/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/gu/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/gu/cui/messages.po215
-rw-r--r--source/gu/dbaccess/messages.po87
-rw-r--r--source/gu/fpicker/messages.po26
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/gu/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/gu/helpcontent2/source/text/shared.po261
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po92
-rw-r--r--source/gu/helpcontent2/source/text/shared/02.po857
-rw-r--r--source/gu/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/gu/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/gu/helpcontent2/source/text/swriter.po402
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/gu/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/gu/sc/messages.po332
-rw-r--r--source/gu/sd/messages.po6
-rw-r--r--source/gu/sfx2/messages.po220
-rw-r--r--source/gu/starmath/messages.po138
-rw-r--r--source/gu/svtools/messages.po864
-rw-r--r--source/gu/svx/messages.po4072
-rw-r--r--source/gu/sw/messages.po922
-rw-r--r--source/gu/uui/messages.po9
-rw-r--r--source/gu/vcl/messages.po213
-rw-r--r--source/gug/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/gug/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/gug/cui/messages.po214
-rw-r--r--source/gug/dbaccess/messages.po58
-rw-r--r--source/gug/fpicker/messages.po26
-rw-r--r--source/gug/helpcontent2/source/auxiliary.po6
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po264
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/01.po8
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po218
-rw-r--r--source/gug/helpcontent2/source/text/scalc.po6
-rw-r--r--source/gug/helpcontent2/source/text/scalc/00.po61
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po501
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po14
-rw-r--r--source/gug/helpcontent2/source/text/sdraw.po4
-rw-r--r--source/gug/helpcontent2/source/text/shared.po281
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po182
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po919
-rw-r--r--source/gug/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po135
-rw-r--r--source/gug/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po54
-rw-r--r--source/gug/helpcontent2/source/text/simpress.po4
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po4
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/gug/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/gug/helpcontent2/source/text/smath/guide.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po418
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po276
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po34
-rw-r--r--source/gug/helpcontent2/source/text/swriter/librelogo.po40
-rw-r--r--source/gug/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/gug/sc/messages.po332
-rw-r--r--source/gug/sd/messages.po6
-rw-r--r--source/gug/sfx2/messages.po220
-rw-r--r--source/gug/starmath/messages.po138
-rw-r--r--source/gug/svtools/messages.po864
-rw-r--r--source/gug/svx/messages.po4072
-rw-r--r--source/gug/sw/messages.po922
-rw-r--r--source/gug/uui/messages.po6
-rw-r--r--source/gug/vcl/messages.po213
-rw-r--r--source/he/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/he/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/he/cui/messages.po216
-rw-r--r--source/he/dbaccess/messages.po83
-rw-r--r--source/he/fpicker/messages.po26
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/he/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/he/helpcontent2/source/text/shared.po229
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/he/helpcontent2/source/text/shared/02.po827
-rw-r--r--source/he/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/he/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/he/helpcontent2/source/text/swriter.po402
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/he/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/he/sc/messages.po334
-rw-r--r--source/he/sd/messages.po6
-rw-r--r--source/he/sfx2/messages.po220
-rw-r--r--source/he/starmath/messages.po138
-rw-r--r--source/he/svtools/messages.po864
-rw-r--r--source/he/svx/messages.po4072
-rw-r--r--source/he/sw/messages.po955
-rw-r--r--source/he/uui/messages.po9
-rw-r--r--source/he/vcl/messages.po213
-rw-r--r--source/hi/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/hi/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/hi/cui/messages.po216
-rw-r--r--source/hi/dbaccess/messages.po87
-rw-r--r--source/hi/fpicker/messages.po26
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/hi/helpcontent2/source/text/scalc/00.po51
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/hi/helpcontent2/source/text/shared.po229
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po92
-rw-r--r--source/hi/helpcontent2/source/text/shared/02.po787
-rw-r--r--source/hi/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/hi/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/hi/helpcontent2/source/text/swriter.po402
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/hi/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/hi/sc/messages.po335
-rw-r--r--source/hi/sd/messages.po6
-rw-r--r--source/hi/sfx2/messages.po220
-rw-r--r--source/hi/starmath/messages.po138
-rw-r--r--source/hi/svtools/messages.po864
-rw-r--r--source/hi/svx/messages.po4072
-rw-r--r--source/hi/sw/messages.po922
-rw-r--r--source/hi/uui/messages.po9
-rw-r--r--source/hi/vcl/messages.po219
-rw-r--r--source/hr/basic/messages.po8
-rw-r--r--source/hr/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/hr/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/hr/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/hr/cui/messages.po218
-rw-r--r--source/hr/dbaccess/messages.po80
-rw-r--r--source/hr/extras/source/gallery/share.po10
-rw-r--r--source/hr/filter/source/config/fragments/filters.po128
-rw-r--r--source/hr/filter/source/config/fragments/internalgraphicfilters.po82
-rw-r--r--source/hr/formula/messages.po24
-rw-r--r--source/hr/fpicker/messages.po34
-rw-r--r--source/hr/framework/messages.po12
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/hr/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/hr/helpcontent2/source/text/shared.po265
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po775
-rw-r--r--source/hr/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/hr/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/hr/helpcontent2/source/text/swriter.po402
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/hr/nlpsolver/src/locale.po8
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/hr/readlicense_oo/docs.po14
-rw-r--r--source/hr/sc/messages.po332
-rw-r--r--source/hr/scp2/source/impress.po14
-rw-r--r--source/hr/scp2/source/ooo.po22
-rw-r--r--source/hr/sd/messages.po6
-rw-r--r--source/hr/sfx2/classification.po20
-rw-r--r--source/hr/sfx2/messages.po232
-rw-r--r--source/hr/starmath/messages.po138
-rw-r--r--source/hr/svtools/messages.po864
-rw-r--r--source/hr/svx/messages.po4072
-rw-r--r--source/hr/sw/messages.po922
-rw-r--r--source/hr/sysui/desktop/share.po10
-rw-r--r--source/hr/uui/messages.po48
-rw-r--r--source/hr/vcl/messages.po213
-rw-r--r--source/hr/xmlsecurity/messages.po8
-rw-r--r--source/hsb/basctl/messages.po26
-rw-r--r--source/hsb/chart2/messages.po8
-rw-r--r--source/hsb/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po9
-rw-r--r--source/hsb/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/hsb/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po15
-rw-r--r--source/hsb/cui/messages.po1980
-rw-r--r--source/hsb/dbaccess/messages.po126
-rw-r--r--source/hsb/desktop/messages.po6
-rw-r--r--source/hsb/dictionaries/ckb.po12
-rw-r--r--source/hsb/dictionaries/pt_BR.po9
-rw-r--r--source/hsb/dictionaries/pt_BR/dialog.po117
-rw-r--r--source/hsb/extensions/messages.po38
-rw-r--r--source/hsb/extras/source/autocorr/emoji.po9
-rw-r--r--source/hsb/filter/messages.po10
-rw-r--r--source/hsb/filter/source/config/fragments/filters.po28
-rw-r--r--source/hsb/filter/source/config/fragments/internalgraphicfilters.po15
-rw-r--r--source/hsb/fpicker/messages.po30
-rw-r--r--source/hsb/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office.po12
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po448
-rw-r--r--source/hsb/readlicense_oo/docs.po12
-rw-r--r--source/hsb/sc/messages.po670
-rw-r--r--source/hsb/scp2/source/ooo.po10
-rw-r--r--source/hsb/sd/messages.po44
-rw-r--r--source/hsb/sfx2/messages.po238
-rw-r--r--source/hsb/starmath/messages.po140
-rw-r--r--source/hsb/svl/messages.po12
-rw-r--r--source/hsb/svtools/messages.po888
-rw-r--r--source/hsb/svx/messages.po4266
-rw-r--r--source/hsb/sw/messages.po3612
-rw-r--r--source/hsb/swext/mediawiki/help.po9
-rw-r--r--source/hsb/uui/messages.po10
-rw-r--r--source/hsb/vcl/messages.po225
-rw-r--r--source/hsb/wizards/source/resources.po10
-rw-r--r--source/hu/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/hu/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/hu/cui/messages.po222
-rw-r--r--source/hu/dbaccess/messages.po80
-rw-r--r--source/hu/formula/messages.po8
-rw-r--r--source/hu/fpicker/messages.po26
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po226
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/hu/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/hu/helpcontent2/source/text/shared.po269
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po887
-rw-r--r--source/hu/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/hu/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/hu/helpcontent2/source/text/swriter.po402
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/hu/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/hu/sc/messages.po360
-rw-r--r--source/hu/sd/messages.po8
-rw-r--r--source/hu/sfx2/messages.po220
-rw-r--r--source/hu/starmath/messages.po140
-rw-r--r--source/hu/svtools/messages.po864
-rw-r--r--source/hu/svx/messages.po4072
-rw-r--r--source/hu/sw/messages.po922
-rw-r--r--source/hu/uui/messages.po9
-rw-r--r--source/hu/vcl/messages.po213
-rw-r--r--source/id/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/id/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/id/cui/messages.po228
-rw-r--r--source/id/dbaccess/messages.po82
-rw-r--r--source/id/fpicker/messages.po26
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po226
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/id/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po227
-rw-r--r--source/id/helpcontent2/source/text/shared.po269
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po885
-rw-r--r--source/id/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po53
-rw-r--r--source/id/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/id/helpcontent2/source/text/swriter.po406
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po224
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/id/instsetoo_native/inc_openoffice/windows/msi_languages.po19
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po302
-rw-r--r--source/id/sc/messages.po368
-rw-r--r--source/id/sd/messages.po8
-rw-r--r--source/id/sfx2/messages.po220
-rw-r--r--source/id/starmath/messages.po140
-rw-r--r--source/id/svtools/messages.po866
-rw-r--r--source/id/svx/messages.po4072
-rw-r--r--source/id/sw/messages.po922
-rw-r--r--source/id/uui/messages.po9
-rw-r--r--source/id/vcl/messages.po213
-rw-r--r--source/is/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/is/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/is/cui/messages.po218
-rw-r--r--source/is/dbaccess/messages.po82
-rw-r--r--source/is/fpicker/messages.po30
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/is/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/is/helpcontent2/source/text/shared.po269
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/is/helpcontent2/source/text/shared/02.po789
-rw-r--r--source/is/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/is/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/is/helpcontent2/source/text/swriter.po402
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/is/sc/messages.po332
-rw-r--r--source/is/sd/messages.po8
-rw-r--r--source/is/sfx2/messages.po220
-rw-r--r--source/is/starmath/messages.po140
-rw-r--r--source/is/svtools/messages.po866
-rw-r--r--source/is/svx/messages.po4072
-rw-r--r--source/is/sw/messages.po922
-rw-r--r--source/is/uui/messages.po13
-rw-r--r--source/is/vcl/messages.po213
-rw-r--r--source/it/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/it/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/it/cui/messages.po222
-rw-r--r--source/it/dbaccess/messages.po80
-rw-r--r--source/it/fpicker/messages.po26
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po250
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po218
-rw-r--r--source/it/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po231
-rw-r--r--source/it/helpcontent2/source/text/shared.po269
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po915
-rw-r--r--source/it/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po59
-rw-r--r--source/it/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/it/helpcontent2/source/text/swriter.po404
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po224
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/it/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po308
-rw-r--r--source/it/sc/messages.po360
-rw-r--r--source/it/sd/messages.po8
-rw-r--r--source/it/sfx2/messages.po220
-rw-r--r--source/it/starmath/messages.po140
-rw-r--r--source/it/svtools/messages.po864
-rw-r--r--source/it/svx/messages.po4072
-rw-r--r--source/it/sw/messages.po922
-rw-r--r--source/it/uui/messages.po9
-rw-r--r--source/it/vcl/messages.po213
-rw-r--r--source/ja/basctl/messages.po24
-rw-r--r--source/ja/chart2/messages.po22
-rw-r--r--source/ja/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ja/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/ja/cui/messages.po348
-rw-r--r--source/ja/dbaccess/messages.po152
-rw-r--r--source/ja/desktop/messages.po18
-rw-r--r--source/ja/dictionaries/en/dialog.po32
-rw-r--r--source/ja/dictionaries/hu_HU/dialog.po6
-rw-r--r--source/ja/dictionaries/pt_BR/dialog.po60
-rw-r--r--source/ja/dictionaries/ru_RU/dialog.po10
-rw-r--r--source/ja/extensions/messages.po18
-rw-r--r--source/ja/filter/messages.po20
-rw-r--r--source/ja/filter/source/config/fragments/filters.po74
-rw-r--r--source/ja/filter/source/config/fragments/internalgraphicfilters.po34
-rw-r--r--source/ja/fpicker/messages.po26
-rw-r--r--source/ja/framework/messages.po11
-rw-r--r--source/ja/helpcontent2/source/auxiliary.po50
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po230
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/ja/helpcontent2/source/text/scalc.po18
-rw-r--r--source/ja/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po285
-rw-r--r--source/ja/helpcontent2/source/text/scalc/02.po10
-rw-r--r--source/ja/helpcontent2/source/text/scalc/guide.po58
-rw-r--r--source/ja/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/ja/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/ja/helpcontent2/source/text/sdraw/guide.po10
-rw-r--r--source/ja/helpcontent2/source/text/shared.po267
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po172
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po903
-rw-r--r--source/ja/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/06.po12
-rw-r--r--source/ja/helpcontent2/source/text/shared/autokorr.po14
-rw-r--r--source/ja/helpcontent2/source/text/shared/autopi.po18
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po61
-rw-r--r--source/ja/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po88
-rw-r--r--source/ja/helpcontent2/source/text/simpress.po6
-rw-r--r--source/ja/helpcontent2/source/text/simpress/01.po12
-rw-r--r--source/ja/helpcontent2/source/text/smath.po10
-rw-r--r--source/ja/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/ja/helpcontent2/source/text/smath/guide.po6
-rw-r--r--source/ja/helpcontent2/source/text/swriter.po422
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po266
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po56
-rw-r--r--source/ja/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/ja/helpcontent2/source/text/swriter/menu.po12
-rw-r--r--source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po83
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office.po28
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po344
-rw-r--r--source/ja/readlicense_oo/docs.po70
-rw-r--r--source/ja/sc/messages.po430
-rw-r--r--source/ja/scaddins/messages.po12
-rw-r--r--source/ja/sccomp/messages.po8
-rw-r--r--source/ja/scp2/source/base.po14
-rw-r--r--source/ja/scp2/source/calc.po20
-rw-r--r--source/ja/scp2/source/draw.po24
-rw-r--r--source/ja/scp2/source/extensions.po8
-rw-r--r--source/ja/scp2/source/graphicfilter.po18
-rw-r--r--source/ja/scp2/source/impress.po18
-rw-r--r--source/ja/scp2/source/math.po14
-rw-r--r--source/ja/scp2/source/onlineupdate.po10
-rw-r--r--source/ja/scp2/source/ooo.po288
-rw-r--r--source/ja/scp2/source/quickstart.po10
-rw-r--r--source/ja/scp2/source/writer.po24
-rw-r--r--source/ja/sd/messages.po82
-rw-r--r--source/ja/setup_native/source/mac.po14
-rw-r--r--source/ja/sfx2/classification.po10
-rw-r--r--source/ja/sfx2/messages.po266
-rw-r--r--source/ja/starmath/messages.po150
-rw-r--r--source/ja/svtools/messages.po948
-rw-r--r--source/ja/svx/messages.po4222
-rw-r--r--source/ja/sw/messages.po1009
-rw-r--r--source/ja/swext/mediawiki/help.po18
-rw-r--r--source/ja/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--source/ja/sysui/desktop/share.po56
-rw-r--r--source/ja/uui/messages.po21
-rw-r--r--source/ja/vcl/messages.po227
-rw-r--r--source/ja/wizards/messages.po14
-rw-r--r--source/ja/wizards/source/resources.po8
-rw-r--r--source/ja/xmlsecurity/messages.po8
-rw-r--r--source/jv/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/jv/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/jv/cui/messages.po214
-rw-r--r--source/jv/dbaccess/messages.po54
-rw-r--r--source/jv/fpicker/messages.po26
-rw-r--r--source/jv/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/jv/sc/messages.po321
-rw-r--r--source/jv/sd/messages.po6
-rw-r--r--source/jv/sfx2/messages.po220
-rw-r--r--source/jv/starmath/messages.po138
-rw-r--r--source/jv/svtools/messages.po864
-rw-r--r--source/jv/svx/messages.po4072
-rw-r--r--source/jv/sw/messages.po922
-rw-r--r--source/jv/uui/messages.po6
-rw-r--r--source/jv/vcl/messages.po218
-rw-r--r--source/ka/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ka/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ka/cui/messages.po214
-rw-r--r--source/ka/dbaccess/messages.po79
-rw-r--r--source/ka/fpicker/messages.po26
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/ka/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/ka/helpcontent2/source/text/shared.po261
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po92
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po835
-rw-r--r--source/ka/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/ka/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ka/helpcontent2/source/text/swriter.po402
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/ka/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/ka/sc/messages.po333
-rw-r--r--source/ka/sd/messages.po6
-rw-r--r--source/ka/sfx2/messages.po220
-rw-r--r--source/ka/starmath/messages.po138
-rw-r--r--source/ka/svtools/messages.po864
-rw-r--r--source/ka/svx/messages.po4072
-rw-r--r--source/ka/sw/messages.po922
-rw-r--r--source/ka/uui/messages.po9
-rw-r--r--source/ka/vcl/messages.po218
-rw-r--r--source/kab/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/kab/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/kab/cui/messages.po214
-rw-r--r--source/kab/dbaccess/messages.po80
-rw-r--r--source/kab/fpicker/messages.po26
-rw-r--r--source/kab/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/kab/sc/messages.po330
-rw-r--r--source/kab/sd/messages.po6
-rw-r--r--source/kab/sfx2/messages.po220
-rw-r--r--source/kab/starmath/messages.po138
-rw-r--r--source/kab/svtools/messages.po864
-rw-r--r--source/kab/svx/messages.po4072
-rw-r--r--source/kab/sw/messages.po922
-rw-r--r--source/kab/uui/messages.po9
-rw-r--r--source/kab/vcl/messages.po213
-rw-r--r--source/kk/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/kk/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/kk/cui/messages.po218
-rw-r--r--source/kk/dbaccess/messages.po80
-rw-r--r--source/kk/fpicker/messages.po26
-rw-r--r--source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/kk/sc/messages.po334
-rw-r--r--source/kk/sd/messages.po6
-rw-r--r--source/kk/sfx2/messages.po220
-rw-r--r--source/kk/starmath/messages.po140
-rw-r--r--source/kk/svtools/messages.po864
-rw-r--r--source/kk/svx/messages.po4072
-rw-r--r--source/kk/sw/messages.po924
-rw-r--r--source/kk/uui/messages.po9
-rw-r--r--source/kk/vcl/messages.po213
-rw-r--r--source/kl/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/kl/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/kl/cui/messages.po214
-rw-r--r--source/kl/dbaccess/messages.po54
-rw-r--r--source/kl/fpicker/messages.po26
-rw-r--r--source/kl/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/kl/sc/messages.po318
-rw-r--r--source/kl/sd/messages.po6
-rw-r--r--source/kl/sfx2/messages.po220
-rw-r--r--source/kl/starmath/messages.po138
-rw-r--r--source/kl/svtools/messages.po864
-rw-r--r--source/kl/svx/messages.po4072
-rw-r--r--source/kl/sw/messages.po922
-rw-r--r--source/kl/uui/messages.po6
-rw-r--r--source/kl/vcl/messages.po216
-rw-r--r--source/km/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/km/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/km/cui/messages.po218
-rw-r--r--source/km/dbaccess/messages.po87
-rw-r--r--source/km/fpicker/messages.po26
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/km/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/km/helpcontent2/source/text/shared.po261
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/km/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/km/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/km/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/km/helpcontent2/source/text/swriter.po402
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/km/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/km/sc/messages.po333
-rw-r--r--source/km/sd/messages.po6
-rw-r--r--source/km/sfx2/messages.po220
-rw-r--r--source/km/starmath/messages.po138
-rw-r--r--source/km/svtools/messages.po864
-rw-r--r--source/km/svx/messages.po4072
-rw-r--r--source/km/sw/messages.po922
-rw-r--r--source/km/uui/messages.po9
-rw-r--r--source/km/vcl/messages.po214
-rw-r--r--source/kmr-Latn/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/kmr-Latn/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/kmr-Latn/cui/messages.po215
-rw-r--r--source/kmr-Latn/dbaccess/messages.po87
-rw-r--r--source/kmr-Latn/fpicker/messages.po26
-rw-r--r--source/kmr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po295
-rw-r--r--source/kmr-Latn/sc/messages.po336
-rw-r--r--source/kmr-Latn/sd/messages.po6
-rw-r--r--source/kmr-Latn/sfx2/messages.po220
-rw-r--r--source/kmr-Latn/starmath/messages.po138
-rw-r--r--source/kmr-Latn/svtools/messages.po864
-rw-r--r--source/kmr-Latn/svx/messages.po4072
-rw-r--r--source/kmr-Latn/sw/messages.po922
-rw-r--r--source/kmr-Latn/uui/messages.po9
-rw-r--r--source/kmr-Latn/vcl/messages.po223
-rw-r--r--source/kn/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/kn/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/kn/cui/messages.po216
-rw-r--r--source/kn/dbaccess/messages.po91
-rw-r--r--source/kn/fpicker/messages.po26
-rw-r--r--source/kn/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/kn/sc/messages.po332
-rw-r--r--source/kn/sd/messages.po6
-rw-r--r--source/kn/sfx2/messages.po220
-rw-r--r--source/kn/starmath/messages.po138
-rw-r--r--source/kn/svtools/messages.po864
-rw-r--r--source/kn/svx/messages.po4072
-rw-r--r--source/kn/sw/messages.po922
-rw-r--r--source/kn/uui/messages.po9
-rw-r--r--source/kn/vcl/messages.po214
-rw-r--r--source/ko/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ko/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ko/cui/messages.po216
-rw-r--r--source/ko/dbaccess/messages.po80
-rw-r--r--source/ko/fpicker/messages.po26
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/ko/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/ko/helpcontent2/source/text/shared.po269
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/ko/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/ko/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/ko/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ko/helpcontent2/source/text/swriter.po402
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/ko/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/ko/sc/messages.po332
-rw-r--r--source/ko/sd/messages.po6
-rw-r--r--source/ko/sfx2/messages.po220
-rw-r--r--source/ko/starmath/messages.po138
-rw-r--r--source/ko/svtools/messages.po864
-rw-r--r--source/ko/svx/messages.po4072
-rw-r--r--source/ko/sw/messages.po922
-rw-r--r--source/ko/uui/messages.po9
-rw-r--r--source/ko/vcl/messages.po213
-rw-r--r--source/kok/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/kok/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/kok/cui/messages.po215
-rw-r--r--source/kok/dbaccess/messages.po79
-rw-r--r--source/kok/fpicker/messages.po26
-rw-r--r--source/kok/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po295
-rw-r--r--source/kok/sc/messages.po336
-rw-r--r--source/kok/sd/messages.po6
-rw-r--r--source/kok/sfx2/messages.po220
-rw-r--r--source/kok/starmath/messages.po138
-rw-r--r--source/kok/svtools/messages.po864
-rw-r--r--source/kok/svx/messages.po4072
-rw-r--r--source/kok/sw/messages.po922
-rw-r--r--source/kok/uui/messages.po9
-rw-r--r--source/kok/vcl/messages.po216
-rw-r--r--source/ks/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ks/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ks/cui/messages.po215
-rw-r--r--source/ks/dbaccess/messages.po79
-rw-r--r--source/ks/fpicker/messages.po26
-rw-r--r--source/ks/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po295
-rw-r--r--source/ks/sc/messages.po336
-rw-r--r--source/ks/sd/messages.po6
-rw-r--r--source/ks/sfx2/messages.po220
-rw-r--r--source/ks/starmath/messages.po138
-rw-r--r--source/ks/svtools/messages.po864
-rw-r--r--source/ks/svx/messages.po4072
-rw-r--r--source/ks/sw/messages.po922
-rw-r--r--source/ks/uui/messages.po6
-rw-r--r--source/ks/vcl/messages.po220
-rw-r--r--source/ky/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ky/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ky/cui/messages.po214
-rw-r--r--source/ky/dbaccess/messages.po54
-rw-r--r--source/ky/fpicker/messages.po26
-rw-r--r--source/ky/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po288
-rw-r--r--source/ky/sc/messages.po312
-rw-r--r--source/ky/sd/messages.po6
-rw-r--r--source/ky/sfx2/messages.po220
-rw-r--r--source/ky/starmath/messages.po138
-rw-r--r--source/ky/svtools/messages.po864
-rw-r--r--source/ky/svx/messages.po4072
-rw-r--r--source/ky/sw/messages.po922
-rw-r--r--source/ky/uui/messages.po6
-rw-r--r--source/ky/vcl/messages.po215
-rw-r--r--source/lb/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/lb/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/lb/cui/messages.po214
-rw-r--r--source/lb/dbaccess/messages.po54
-rw-r--r--source/lb/fpicker/messages.po26
-rw-r--r--source/lb/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po303
-rw-r--r--source/lb/sc/messages.po333
-rw-r--r--source/lb/sd/messages.po6
-rw-r--r--source/lb/sfx2/messages.po220
-rw-r--r--source/lb/starmath/messages.po138
-rw-r--r--source/lb/svtools/messages.po864
-rw-r--r--source/lb/svx/messages.po4072
-rw-r--r--source/lb/sw/messages.po922
-rw-r--r--source/lb/uui/messages.po6
-rw-r--r--source/lb/vcl/messages.po216
-rw-r--r--source/lo/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/lo/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/lo/cui/messages.po215
-rw-r--r--source/lo/dbaccess/messages.po79
-rw-r--r--source/lo/fpicker/messages.po26
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/lo/helpcontent2/source/text/scalc/00.po51
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/lo/helpcontent2/source/text/shared.po223
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po90
-rw-r--r--source/lo/helpcontent2/source/text/shared/02.po699
-rw-r--r--source/lo/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/lo/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/lo/helpcontent2/source/text/swriter.po402
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/lo/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po298
-rw-r--r--source/lo/sc/messages.po336
-rw-r--r--source/lo/sd/messages.po6
-rw-r--r--source/lo/sfx2/messages.po220
-rw-r--r--source/lo/starmath/messages.po138
-rw-r--r--source/lo/svtools/messages.po864
-rw-r--r--source/lo/svx/messages.po4072
-rw-r--r--source/lo/sw/messages.po922
-rw-r--r--source/lo/uui/messages.po6
-rw-r--r--source/lo/vcl/messages.po217
-rw-r--r--source/lt/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/lt/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/lt/cui/messages.po220
-rw-r--r--source/lt/dbaccess/messages.po80
-rw-r--r--source/lt/fpicker/messages.po26
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po250
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/lt/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po231
-rw-r--r--source/lt/helpcontent2/source/text/shared.po269
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/lt/helpcontent2/source/text/shared/02.po885
-rw-r--r--source/lt/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/lt/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/lt/helpcontent2/source/text/swriter.po404
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po224
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/lt/sc/messages.po332
-rw-r--r--source/lt/sd/messages.po6
-rw-r--r--source/lt/sfx2/messages.po220
-rw-r--r--source/lt/starmath/messages.po138
-rw-r--r--source/lt/svtools/messages.po864
-rw-r--r--source/lt/svx/messages.po4072
-rw-r--r--source/lt/sw/messages.po922
-rw-r--r--source/lt/uui/messages.po9
-rw-r--r--source/lt/vcl/messages.po213
-rw-r--r--source/lv/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/lv/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/lv/cui/messages.po216
-rw-r--r--source/lv/dbaccess/messages.po80
-rw-r--r--source/lv/fpicker/messages.po26
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/lv/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/lv/helpcontent2/source/text/shared.po245
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/lv/helpcontent2/source/text/shared/02.po793
-rw-r--r--source/lv/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/lv/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/lv/helpcontent2/source/text/swriter.po402
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/lv/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/lv/sc/messages.po332
-rw-r--r--source/lv/sd/messages.po6
-rw-r--r--source/lv/sfx2/messages.po220
-rw-r--r--source/lv/starmath/messages.po140
-rw-r--r--source/lv/svtools/messages.po864
-rw-r--r--source/lv/svx/messages.po4072
-rw-r--r--source/lv/sw/messages.po924
-rw-r--r--source/lv/uui/messages.po9
-rw-r--r--source/lv/vcl/messages.po213
-rw-r--r--source/mai/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/mai/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/mai/cui/messages.po215
-rw-r--r--source/mai/dbaccess/messages.po79
-rw-r--r--source/mai/fpicker/messages.po26
-rw-r--r--source/mai/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po297
-rw-r--r--source/mai/sc/messages.po336
-rw-r--r--source/mai/sd/messages.po6
-rw-r--r--source/mai/sfx2/messages.po220
-rw-r--r--source/mai/starmath/messages.po138
-rw-r--r--source/mai/svtools/messages.po864
-rw-r--r--source/mai/svx/messages.po4072
-rw-r--r--source/mai/sw/messages.po922
-rw-r--r--source/mai/uui/messages.po6
-rw-r--r--source/mai/vcl/messages.po219
-rw-r--r--source/mk/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/mk/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/mk/cui/messages.po215
-rw-r--r--source/mk/dbaccess/messages.po82
-rw-r--r--source/mk/fpicker/messages.po26
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/mk/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/mk/helpcontent2/source/text/shared.po261
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/mk/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/mk/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/mk/helpcontent2/source/text/swriter.po402
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/mk/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po296
-rw-r--r--source/mk/sc/messages.po336
-rw-r--r--source/mk/sd/messages.po6
-rw-r--r--source/mk/sfx2/messages.po220
-rw-r--r--source/mk/starmath/messages.po138
-rw-r--r--source/mk/svtools/messages.po864
-rw-r--r--source/mk/svx/messages.po4072
-rw-r--r--source/mk/sw/messages.po922
-rw-r--r--source/mk/uui/messages.po9
-rw-r--r--source/mk/vcl/messages.po220
-rw-r--r--source/ml/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ml/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ml/cui/messages.po215
-rw-r--r--source/ml/dbaccess/messages.po87
-rw-r--r--source/ml/fpicker/messages.po26
-rw-r--r--source/ml/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/ml/sc/messages.po334
-rw-r--r--source/ml/sd/messages.po6
-rw-r--r--source/ml/sfx2/messages.po220
-rw-r--r--source/ml/starmath/messages.po138
-rw-r--r--source/ml/svtools/messages.po864
-rw-r--r--source/ml/svx/messages.po4072
-rw-r--r--source/ml/sw/messages.po922
-rw-r--r--source/ml/uui/messages.po9
-rw-r--r--source/ml/vcl/messages.po213
-rw-r--r--source/mn/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/mn/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/mn/cui/messages.po218
-rw-r--r--source/mn/dbaccess/messages.po81
-rw-r--r--source/mn/fpicker/messages.po28
-rw-r--r--source/mn/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/mn/sc/messages.po334
-rw-r--r--source/mn/sd/messages.po6
-rw-r--r--source/mn/sfx2/messages.po220
-rw-r--r--source/mn/starmath/messages.po140
-rw-r--r--source/mn/svtools/messages.po864
-rw-r--r--source/mn/svx/messages.po4072
-rw-r--r--source/mn/sw/messages.po924
-rw-r--r--source/mn/uui/messages.po11
-rw-r--r--source/mn/vcl/messages.po213
-rw-r--r--source/mni/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/mni/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/mni/cui/messages.po214
-rw-r--r--source/mni/dbaccess/messages.po87
-rw-r--r--source/mni/fpicker/messages.po26
-rw-r--r--source/mni/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po295
-rw-r--r--source/mni/sc/messages.po336
-rw-r--r--source/mni/sd/messages.po6
-rw-r--r--source/mni/sfx2/messages.po220
-rw-r--r--source/mni/starmath/messages.po138
-rw-r--r--source/mni/svtools/messages.po864
-rw-r--r--source/mni/svx/messages.po4072
-rw-r--r--source/mni/sw/messages.po922
-rw-r--r--source/mni/uui/messages.po9
-rw-r--r--source/mni/vcl/messages.po218
-rw-r--r--source/mr/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/mr/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/mr/cui/messages.po216
-rw-r--r--source/mr/dbaccess/messages.po87
-rw-r--r--source/mr/fpicker/messages.po26
-rw-r--r--source/mr/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/mr/sc/messages.po332
-rw-r--r--source/mr/sd/messages.po6
-rw-r--r--source/mr/sfx2/messages.po220
-rw-r--r--source/mr/starmath/messages.po138
-rw-r--r--source/mr/svtools/messages.po864
-rw-r--r--source/mr/svx/messages.po4072
-rw-r--r--source/mr/sw/messages.po922
-rw-r--r--source/mr/uui/messages.po9
-rw-r--r--source/mr/vcl/messages.po218
-rw-r--r--source/my/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/my/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/my/cui/messages.po216
-rw-r--r--source/my/dbaccess/messages.po87
-rw-r--r--source/my/fpicker/messages.po26
-rw-r--r--source/my/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/my/sc/messages.po335
-rw-r--r--source/my/sd/messages.po6
-rw-r--r--source/my/sfx2/messages.po220
-rw-r--r--source/my/starmath/messages.po138
-rw-r--r--source/my/svtools/messages.po864
-rw-r--r--source/my/svx/messages.po4072
-rw-r--r--source/my/sw/messages.po922
-rw-r--r--source/my/uui/messages.po9
-rw-r--r--source/my/vcl/messages.po218
-rw-r--r--source/nb/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/nb/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/nb/cui/messages.po222
-rw-r--r--source/nb/dbaccess/messages.po80
-rw-r--r--source/nb/dictionaries/ckb.po12
-rw-r--r--source/nb/fpicker/messages.po30
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po256
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/03.po410
-rw-r--r--source/nb/helpcontent2/source/text/scalc/00.po55
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po239
-rw-r--r--source/nb/helpcontent2/source/text/sdatabase.po12
-rw-r--r--source/nb/helpcontent2/source/text/shared.po279
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po915
-rw-r--r--source/nb/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/nb/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po83
-rw-r--r--source/nb/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/nb/helpcontent2/source/text/swriter.po406
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po226
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po28
-rw-r--r--source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/nb/sc/messages.po360
-rw-r--r--source/nb/scp2/source/ooo.po8
-rw-r--r--source/nb/sd/messages.po12
-rw-r--r--source/nb/sfx2/messages.po220
-rw-r--r--source/nb/starmath/messages.po140
-rw-r--r--source/nb/svtools/messages.po866
-rw-r--r--source/nb/svx/messages.po4072
-rw-r--r--source/nb/sw/messages.po930
-rw-r--r--source/nb/uui/messages.po16
-rw-r--r--source/nb/vcl/messages.po213
-rw-r--r--source/ne/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ne/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ne/cui/messages.po215
-rw-r--r--source/ne/dbaccess/messages.po78
-rw-r--r--source/ne/fpicker/messages.po26
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/ne/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/ne/helpcontent2/source/text/shared.po261
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po867
-rw-r--r--source/ne/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/ne/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ne/helpcontent2/source/text/swriter.po402
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/ne/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/ne/sc/messages.po335
-rw-r--r--source/ne/sd/messages.po6
-rw-r--r--source/ne/sfx2/messages.po220
-rw-r--r--source/ne/starmath/messages.po138
-rw-r--r--source/ne/svtools/messages.po864
-rw-r--r--source/ne/svx/messages.po4072
-rw-r--r--source/ne/sw/messages.po922
-rw-r--r--source/ne/uui/messages.po9
-rw-r--r--source/ne/vcl/messages.po215
-rw-r--r--source/nl/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/nl/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/nl/cui/messages.po236
-rw-r--r--source/nl/dbaccess/messages.po86
-rw-r--r--source/nl/formula/messages.po78
-rw-r--r--source/nl/fpicker/messages.po32
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po228
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po202
-rw-r--r--source/nl/helpcontent2/source/text/scalc/00.po55
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po561
-rw-r--r--source/nl/helpcontent2/source/text/scalc/02.po4
-rw-r--r--source/nl/helpcontent2/source/text/sdatabase.po16
-rw-r--r--source/nl/helpcontent2/source/text/shared.po279
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po19
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po104
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po915
-rw-r--r--source/nl/helpcontent2/source/text/shared/04.po11
-rw-r--r--source/nl/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po83
-rw-r--r--source/nl/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/nl/helpcontent2/source/text/swriter.po406
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po226
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po28
-rw-r--r--source/nl/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po324
-rw-r--r--source/nl/sc/messages.po370
-rw-r--r--source/nl/scaddins/messages.po8
-rw-r--r--source/nl/sd/messages.po14
-rw-r--r--source/nl/sfx2/messages.po224
-rw-r--r--source/nl/starmath/messages.po140
-rw-r--r--source/nl/svtools/messages.po866
-rw-r--r--source/nl/svx/messages.po4076
-rw-r--r--source/nl/sw/messages.po926
-rw-r--r--source/nl/uui/messages.po14
-rw-r--r--source/nl/vcl/messages.po213
-rw-r--r--source/nn/basctl/messages.po10
-rw-r--r--source/nn/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/nn/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/nn/cui/messages.po222
-rw-r--r--source/nn/dbaccess/messages.po80
-rw-r--r--source/nn/dictionaries/ckb.po12
-rw-r--r--source/nn/editeng/messages.po6
-rw-r--r--source/nn/filter/source/config/fragments/internalgraphicfilters.po8
-rw-r--r--source/nn/fpicker/messages.po26
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po250
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po212
-rw-r--r--source/nn/helpcontent2/source/text/scalc/00.po69
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po231
-rw-r--r--source/nn/helpcontent2/source/text/schart/01.po10
-rw-r--r--source/nn/helpcontent2/source/text/sdraw.po14
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/00.po8
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/nn/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared.po273
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po77
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po380
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po939
-rw-r--r--source/nn/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po673
-rw-r--r--source/nn/helpcontent2/source/text/shared/menu.po28
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/nn/helpcontent2/source/text/swriter.po406
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po226
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po28
-rw-r--r--source/nn/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po332
-rw-r--r--source/nn/sc/messages.po360
-rw-r--r--source/nn/sd/messages.po20
-rw-r--r--source/nn/sfx2/messages.po224
-rw-r--r--source/nn/starmath/messages.po140
-rw-r--r--source/nn/svl/messages.po12
-rw-r--r--source/nn/svtools/messages.po864
-rw-r--r--source/nn/svx/messages.po4082
-rw-r--r--source/nn/sw/messages.po922
-rw-r--r--source/nn/uui/messages.po14
-rw-r--r--source/nn/vcl/messages.po213
-rw-r--r--source/nr/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/nr/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/nr/cui/messages.po214
-rw-r--r--source/nr/dbaccess/messages.po73
-rw-r--r--source/nr/fpicker/messages.po26
-rw-r--r--source/nr/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po300
-rw-r--r--source/nr/sc/messages.po336
-rw-r--r--source/nr/sd/messages.po6
-rw-r--r--source/nr/sfx2/messages.po220
-rw-r--r--source/nr/starmath/messages.po138
-rw-r--r--source/nr/svtools/messages.po864
-rw-r--r--source/nr/svx/messages.po4072
-rw-r--r--source/nr/sw/messages.po922
-rw-r--r--source/nr/uui/messages.po6
-rw-r--r--source/nr/vcl/messages.po218
-rw-r--r--source/nso/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/nso/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/nso/cui/messages.po215
-rw-r--r--source/nso/dbaccess/messages.po73
-rw-r--r--source/nso/fpicker/messages.po26
-rw-r--r--source/nso/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/nso/sc/messages.po336
-rw-r--r--source/nso/sd/messages.po6
-rw-r--r--source/nso/sfx2/messages.po220
-rw-r--r--source/nso/starmath/messages.po138
-rw-r--r--source/nso/svtools/messages.po864
-rw-r--r--source/nso/svx/messages.po4072
-rw-r--r--source/nso/sw/messages.po922
-rw-r--r--source/nso/uui/messages.po6
-rw-r--r--source/nso/vcl/messages.po217
-rw-r--r--source/oc/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/oc/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/oc/cui/messages.po252
-rw-r--r--source/oc/dbaccess/messages.po80
-rw-r--r--source/oc/fpicker/messages.po26
-rw-r--r--source/oc/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po300
-rw-r--r--source/oc/sc/messages.po332
-rw-r--r--source/oc/sd/messages.po6
-rw-r--r--source/oc/sfx2/messages.po228
-rw-r--r--source/oc/starmath/messages.po140
-rw-r--r--source/oc/svtools/messages.po864
-rw-r--r--source/oc/svx/messages.po4076
-rw-r--r--source/oc/sw/messages.po932
-rw-r--r--source/oc/uui/messages.po11
-rw-r--r--source/oc/vcl/messages.po213
-rw-r--r--source/om/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/om/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/om/cui/messages.po217
-rw-r--r--source/om/dbaccess/messages.po87
-rw-r--r--source/om/fpicker/messages.po26
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/om/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/om/helpcontent2/source/text/shared.po261
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/om/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/om/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/om/helpcontent2/source/text/swriter.po402
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/om/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po295
-rw-r--r--source/om/sc/messages.po336
-rw-r--r--source/om/sd/messages.po6
-rw-r--r--source/om/sfx2/messages.po220
-rw-r--r--source/om/starmath/messages.po138
-rw-r--r--source/om/svtools/messages.po864
-rw-r--r--source/om/svx/messages.po4072
-rw-r--r--source/om/sw/messages.po922
-rw-r--r--source/om/uui/messages.po9
-rw-r--r--source/om/vcl/messages.po219
-rw-r--r--source/or/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/or/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/or/cui/messages.po215
-rw-r--r--source/or/dbaccess/messages.po82
-rw-r--r--source/or/fpicker/messages.po26
-rw-r--r--source/or/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/or/sc/messages.po334
-rw-r--r--source/or/sd/messages.po6
-rw-r--r--source/or/sfx2/messages.po220
-rw-r--r--source/or/starmath/messages.po138
-rw-r--r--source/or/svtools/messages.po864
-rw-r--r--source/or/svx/messages.po4072
-rw-r--r--source/or/sw/messages.po922
-rw-r--r--source/or/uui/messages.po9
-rw-r--r--source/or/vcl/messages.po216
-rw-r--r--source/pa-IN/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/pa-IN/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/pa-IN/cui/messages.po216
-rw-r--r--source/pa-IN/dbaccess/messages.po86
-rw-r--r--source/pa-IN/fpicker/messages.po26
-rw-r--r--source/pa-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/pa-IN/sc/messages.po335
-rw-r--r--source/pa-IN/sd/messages.po6
-rw-r--r--source/pa-IN/sfx2/messages.po220
-rw-r--r--source/pa-IN/starmath/messages.po140
-rw-r--r--source/pa-IN/svtools/messages.po864
-rw-r--r--source/pa-IN/svx/messages.po4072
-rw-r--r--source/pa-IN/sw/messages.po922
-rw-r--r--source/pa-IN/uui/messages.po9
-rw-r--r--source/pa-IN/vcl/messages.po213
-rw-r--r--source/pl/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/pl/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/pl/cui/messages.po228
-rw-r--r--source/pl/dbaccess/messages.po84
-rw-r--r--source/pl/fpicker/messages.po30
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po226
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/pl/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/pl/helpcontent2/source/text/shared.po267
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po879
-rw-r--r--source/pl/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/pl/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/pl/helpcontent2/source/text/swriter.po402
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/pl/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po296
-rw-r--r--source/pl/sc/messages.po364
-rw-r--r--source/pl/scp2/source/base.po12
-rw-r--r--source/pl/sd/messages.po12
-rw-r--r--source/pl/sfx2/messages.po224
-rw-r--r--source/pl/starmath/messages.po140
-rw-r--r--source/pl/svtools/messages.po874
-rw-r--r--source/pl/svx/messages.po4076
-rw-r--r--source/pl/sw/messages.po926
-rw-r--r--source/pl/uui/messages.po14
-rw-r--r--source/pl/vcl/messages.po213
-rw-r--r--source/pt-BR/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/pt-BR/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po20
-rw-r--r--source/pt-BR/cui/messages.po228
-rw-r--r--source/pt-BR/dbaccess/messages.po84
-rw-r--r--source/pt-BR/fpicker/messages.po30
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/python.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po250
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po218
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/00.po57
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po427
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdatabase.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared.po273
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po238
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po915
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po111
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/menu.po26
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po24
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter.po408
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po270
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po30
-rw-r--r--source/pt-BR/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po308
-rw-r--r--source/pt-BR/sc/messages.po364
-rw-r--r--source/pt-BR/sd/messages.po12
-rw-r--r--source/pt-BR/sfx2/messages.po224
-rw-r--r--source/pt-BR/starmath/messages.po140
-rw-r--r--source/pt-BR/svtools/messages.po866
-rw-r--r--source/pt-BR/svx/messages.po4076
-rw-r--r--source/pt-BR/sw/messages.po926
-rw-r--r--source/pt-BR/uui/messages.po14
-rw-r--r--source/pt-BR/vcl/messages.po213
-rw-r--r--source/pt/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/pt/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/pt/cui/messages.po222
-rw-r--r--source/pt/dbaccess/messages.po80
-rw-r--r--source/pt/dictionaries/ckb.po12
-rw-r--r--source/pt/extensions/messages.po14
-rw-r--r--source/pt/fpicker/messages.po26
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po226
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/pt/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po221
-rw-r--r--source/pt/helpcontent2/source/text/shared.po269
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po17
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po883
-rw-r--r--source/pt/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/pt/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/pt/helpcontent2/source/text/swriter.po404
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po304
-rw-r--r--source/pt/sc/messages.po382
-rw-r--r--source/pt/scp2/source/ooo.po8
-rw-r--r--source/pt/sd/messages.po12
-rw-r--r--source/pt/sfx2/messages.po220
-rw-r--r--source/pt/starmath/messages.po140
-rw-r--r--source/pt/svtools/messages.po876
-rw-r--r--source/pt/svx/messages.po4134
-rw-r--r--source/pt/sw/messages.po956
-rw-r--r--source/pt/uui/messages.po9
-rw-r--r--source/pt/vcl/messages.po213
-rw-r--r--source/ro/accessibility/messages.po38
-rw-r--r--source/ro/avmedia/messages.po48
-rw-r--r--source/ro/basctl/messages.po44
-rw-r--r--source/ro/basic/messages.po40
-rw-r--r--source/ro/chart2/messages.po52
-rw-r--r--source/ro/connectivity/messages.po164
-rw-r--r--source/ro/connectivity/registry/evoab2/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ro/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/ro/connectivity/registry/jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ro/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po24
-rw-r--r--source/ro/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/ro/connectivity/registry/writer/org/openoffice/Office/DataAccess.po13
-rw-r--r--source/ro/cui/messages.po1048
-rw-r--r--source/ro/dbaccess/messages.po150
-rw-r--r--source/ro/desktop/messages.po292
-rw-r--r--source/ro/dictionaries/an_ES.po12
-rw-r--r--source/ro/dictionaries/ar.po12
-rw-r--r--source/ro/dictionaries/be_BY.po12
-rw-r--r--source/ro/dictionaries/bg_BG.po12
-rw-r--r--source/ro/dictionaries/bn_BD.po12
-rw-r--r--source/ro/dictionaries/bo.po10
-rw-r--r--source/ro/dictionaries/br_FR.po12
-rw-r--r--source/ro/dictionaries/bs_BA.po12
-rw-r--r--source/ro/dictionaries/ca.po12
-rw-r--r--source/ro/dictionaries/ckb.po12
-rw-r--r--source/ro/dictionaries/cs_CZ.po10
-rw-r--r--source/ro/dictionaries/da_DK.po18
-rw-r--r--source/ro/dictionaries/de.po12
-rw-r--r--source/ro/dictionaries/el_GR.po12
-rw-r--r--source/ro/dictionaries/en.po12
-rw-r--r--source/ro/dictionaries/en/dialog.po68
-rw-r--r--source/ro/dictionaries/en/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/ro/dictionaries/eo.po12
-rw-r--r--source/ro/dictionaries/es.po12
-rw-r--r--source/ro/dictionaries/et_EE.po12
-rw-r--r--source/ro/dictionaries/fr_FR.po12
-rw-r--r--source/ro/dictionaries/gd_GB.po12
-rw-r--r--source/ro/dictionaries/gl.po12
-rw-r--r--source/ro/dictionaries/gu_IN.po12
-rw-r--r--source/ro/dictionaries/gug.po12
-rw-r--r--source/ro/dictionaries/he_IL.po12
-rw-r--r--source/ro/dictionaries/hi_IN.po12
-rw-r--r--source/ro/dictionaries/hr_HR.po12
-rw-r--r--source/ro/dictionaries/hu_HU.po12
-rw-r--r--source/ro/dictionaries/hu_HU/dialog.po52
-rw-r--r--source/ro/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/ro/dictionaries/id.po10
-rw-r--r--source/ro/dictionaries/is.po12
-rw-r--r--source/ro/dictionaries/it_IT.po12
-rw-r--r--source/ro/dictionaries/kmr_Latn.po12
-rw-r--r--source/ro/dictionaries/ko_KR.po12
-rw-r--r--source/ro/dictionaries/lo_LA.po12
-rw-r--r--source/ro/dictionaries/lt_LT.po12
-rw-r--r--source/ro/dictionaries/lv_LV.po12
-rw-r--r--source/ro/dictionaries/mn_MN.po12
-rw-r--r--source/ro/dictionaries/ne_NP.po12
-rw-r--r--source/ro/dictionaries/nl_NL.po12
-rw-r--r--source/ro/dictionaries/pt_BR.po12
-rw-r--r--source/ro/dictionaries/pt_BR/dialog.po124
-rw-r--r--source/ro/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/ro/dictionaries/pt_PT.po12
-rw-r--r--source/ro/dictionaries/ru_RU/dialog.po26
-rw-r--r--source/ro/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po14
-rw-r--r--source/ro/dictionaries/sq_AL.po10
-rw-r--r--source/ro/dictionaries/sv_SE.po12
-rw-r--r--source/ro/editeng/messages.po289
-rw-r--r--source/ro/extensions/messages.po67
-rw-r--r--source/ro/extensions/source/update/check/org/openoffice/Office.po12
-rw-r--r--source/ro/extras/source/gallery/share.po24
-rw-r--r--source/ro/filter/messages.po166
-rw-r--r--source/ro/filter/source/config/fragments/internalgraphicfilters.po32
-rw-r--r--source/ro/filter/source/config/fragments/types.po48
-rw-r--r--source/ro/forms/messages.po98
-rw-r--r--source/ro/formula/messages.po36
-rw-r--r--source/ro/fpicker/messages.po62
-rw-r--r--source/ro/framework/messages.po120
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/ro/helpcontent2/source/text/scalc/00.po51
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/ro/helpcontent2/source/text/shared.po223
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po90
-rw-r--r--source/ro/helpcontent2/source/text/shared/02.po699
-rw-r--r--source/ro/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/ro/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ro/helpcontent2/source/text/swriter.po402
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/ro/instsetoo_native/inc_openoffice/windows/msi_languages.po712
-rw-r--r--source/ro/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po14
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office.po98
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po1775
-rw-r--r--source/ro/oox/messages.po34
-rw-r--r--source/ro/readlicense_oo/docs.po26
-rw-r--r--source/ro/reportdesign/messages.po52
-rw-r--r--source/ro/sc/messages.po846
-rw-r--r--source/ro/scaddins/messages.po56
-rw-r--r--source/ro/sccomp/messages.po36
-rw-r--r--source/ro/scp2/source/extensions.po12
-rw-r--r--source/ro/scp2/source/gnome.po12
-rw-r--r--source/ro/scp2/source/graphicfilter.po12
-rw-r--r--source/ro/scp2/source/ooo.po18
-rw-r--r--source/ro/scp2/source/python.po12
-rw-r--r--source/ro/scp2/source/winexplorerext.po12
-rw-r--r--source/ro/sd/messages.po227
-rw-r--r--source/ro/setup_native/source/mac.po43
-rw-r--r--source/ro/sfx2/classification.po36
-rw-r--r--source/ro/sfx2/messages.po635
-rw-r--r--source/ro/shell/messages.po34
-rw-r--r--source/ro/starmath/messages.po234
-rw-r--r--source/ro/svl/messages.po36
-rw-r--r--source/ro/svtools/messages.po924
-rw-r--r--source/ro/svx/messages.po5048
-rw-r--r--source/ro/sw/messages.po1701
-rw-r--r--source/ro/swext/mediawiki/help.po63
-rw-r--r--source/ro/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po34
-rw-r--r--source/ro/uui/messages.po55
-rw-r--r--source/ro/vcl/messages.po711
-rw-r--r--source/ro/wizards/messages.po274
-rw-r--r--source/ro/wizards/source/resources.po229
-rw-r--r--source/ro/writerperfect/messages.po81
-rw-r--r--source/ro/xmlsecurity/messages.po36
-rw-r--r--source/ru/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ru/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/ru/cui/messages.po910
-rw-r--r--source/ru/dbaccess/messages.po132
-rw-r--r--source/ru/extensions/messages.po6
-rw-r--r--source/ru/filter/messages.po152
-rw-r--r--source/ru/fpicker/messages.po28
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/ru/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/ru/helpcontent2/source/text/shared.po267
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/ru/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/ru/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/ru/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ru/helpcontent2/source/text/swriter.po402
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/ru/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po326
-rw-r--r--source/ru/sc/messages.po406
-rw-r--r--source/ru/sd/messages.po16
-rw-r--r--source/ru/sfx2/messages.po220
-rw-r--r--source/ru/starmath/messages.po146
-rw-r--r--source/ru/svtools/messages.po864
-rw-r--r--source/ru/svx/messages.po4102
-rw-r--r--source/ru/sw/messages.po978
-rw-r--r--source/ru/uui/messages.po9
-rw-r--r--source/ru/vcl/messages.po219
-rw-r--r--source/rw/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/rw/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/rw/cui/messages.po215
-rw-r--r--source/rw/dbaccess/messages.po79
-rw-r--r--source/rw/fpicker/messages.po26
-rw-r--r--source/rw/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po297
-rw-r--r--source/rw/sc/messages.po336
-rw-r--r--source/rw/sd/messages.po6
-rw-r--r--source/rw/sfx2/messages.po220
-rw-r--r--source/rw/starmath/messages.po138
-rw-r--r--source/rw/svtools/messages.po864
-rw-r--r--source/rw/svx/messages.po4072
-rw-r--r--source/rw/sw/messages.po922
-rw-r--r--source/rw/uui/messages.po9
-rw-r--r--source/rw/vcl/messages.po216
-rw-r--r--source/sa-IN/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sa-IN/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sa-IN/cui/messages.po214
-rw-r--r--source/sa-IN/dbaccess/messages.po87
-rw-r--r--source/sa-IN/fpicker/messages.po26
-rw-r--r--source/sa-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po295
-rw-r--r--source/sa-IN/sc/messages.po336
-rw-r--r--source/sa-IN/sd/messages.po6
-rw-r--r--source/sa-IN/sfx2/messages.po220
-rw-r--r--source/sa-IN/starmath/messages.po138
-rw-r--r--source/sa-IN/svtools/messages.po864
-rw-r--r--source/sa-IN/svx/messages.po4072
-rw-r--r--source/sa-IN/sw/messages.po922
-rw-r--r--source/sa-IN/uui/messages.po9
-rw-r--r--source/sa-IN/vcl/messages.po219
-rw-r--r--source/sah/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sah/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sah/cui/messages.po214
-rw-r--r--source/sah/dbaccess/messages.po54
-rw-r--r--source/sah/fpicker/messages.po26
-rw-r--r--source/sah/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po288
-rw-r--r--source/sah/sc/messages.po312
-rw-r--r--source/sah/sd/messages.po6
-rw-r--r--source/sah/sfx2/messages.po220
-rw-r--r--source/sah/starmath/messages.po138
-rw-r--r--source/sah/svtools/messages.po864
-rw-r--r--source/sah/svx/messages.po4072
-rw-r--r--source/sah/sw/messages.po922
-rw-r--r--source/sah/uui/messages.po6
-rw-r--r--source/sah/vcl/messages.po213
-rw-r--r--source/sat/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sat/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sat/cui/messages.po216
-rw-r--r--source/sat/dbaccess/messages.po89
-rw-r--r--source/sat/fpicker/messages.po26
-rw-r--r--source/sat/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po306
-rw-r--r--source/sat/sc/messages.po332
-rw-r--r--source/sat/sd/messages.po6
-rw-r--r--source/sat/sfx2/messages.po220
-rw-r--r--source/sat/starmath/messages.po138
-rw-r--r--source/sat/svtools/messages.po864
-rw-r--r--source/sat/svx/messages.po4072
-rw-r--r--source/sat/sw/messages.po922
-rw-r--r--source/sat/uui/messages.po9
-rw-r--r--source/sat/vcl/messages.po220
-rw-r--r--source/sd/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sd/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sd/cui/messages.po216
-rw-r--r--source/sd/dbaccess/messages.po87
-rw-r--r--source/sd/fpicker/messages.po26
-rw-r--r--source/sd/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po295
-rw-r--r--source/sd/sc/messages.po336
-rw-r--r--source/sd/sd/messages.po6
-rw-r--r--source/sd/sfx2/messages.po220
-rw-r--r--source/sd/starmath/messages.po138
-rw-r--r--source/sd/svtools/messages.po864
-rw-r--r--source/sd/svx/messages.po4072
-rw-r--r--source/sd/sw/messages.po922
-rw-r--r--source/sd/uui/messages.po6
-rw-r--r--source/sd/vcl/messages.po217
-rw-r--r--source/si/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/si/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/si/cui/messages.po218
-rw-r--r--source/si/dbaccess/messages.po87
-rw-r--r--source/si/fpicker/messages.po26
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/si/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/si/helpcontent2/source/text/shared.po249
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po92
-rw-r--r--source/si/helpcontent2/source/text/shared/02.po779
-rw-r--r--source/si/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/si/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/si/helpcontent2/source/text/swriter.po402
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/si/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/si/sc/messages.po335
-rw-r--r--source/si/sd/messages.po6
-rw-r--r--source/si/sfx2/messages.po220
-rw-r--r--source/si/starmath/messages.po138
-rw-r--r--source/si/svtools/messages.po864
-rw-r--r--source/si/svx/messages.po4072
-rw-r--r--source/si/sw/messages.po922
-rw-r--r--source/si/uui/messages.po8
-rw-r--r--source/si/vcl/messages.po219
-rw-r--r--source/sid/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sid/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sid/cui/messages.po216
-rw-r--r--source/sid/dbaccess/messages.po87
-rw-r--r--source/sid/fpicker/messages.po26
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/sid/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/sid/helpcontent2/source/text/shared.po261
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po92
-rw-r--r--source/sid/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/sid/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/sid/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/sid/helpcontent2/source/text/swriter.po402
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po34
-rw-r--r--source/sid/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/sid/sc/messages.po335
-rw-r--r--source/sid/sd/messages.po6
-rw-r--r--source/sid/sfx2/messages.po220
-rw-r--r--source/sid/starmath/messages.po138
-rw-r--r--source/sid/svtools/messages.po864
-rw-r--r--source/sid/svx/messages.po4072
-rw-r--r--source/sid/sw/messages.po922
-rw-r--r--source/sid/uui/messages.po9
-rw-r--r--source/sid/vcl/messages.po218
-rw-r--r--source/sk/basctl/messages.po26
-rw-r--r--source/sk/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sk/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/sk/cui/messages.po382
-rw-r--r--source/sk/dbaccess/messages.po83
-rw-r--r--source/sk/extensions/messages.po14
-rw-r--r--source/sk/formula/messages.po6
-rw-r--r--source/sk/fpicker/messages.po30
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/sk/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/sk/helpcontent2/source/text/shared.po261
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/sk/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/sk/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/sk/helpcontent2/source/text/swriter.po402
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/sk/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/sk/sc/messages.po402
-rw-r--r--source/sk/sd/messages.po38
-rw-r--r--source/sk/sfx2/messages.po222
-rw-r--r--source/sk/starmath/messages.po140
-rw-r--r--source/sk/svtools/messages.po866
-rw-r--r--source/sk/svx/messages.po4072
-rw-r--r--source/sk/sw/messages.po930
-rw-r--r--source/sk/uui/messages.po16
-rw-r--r--source/sk/vcl/messages.po215
-rw-r--r--source/sq/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sq/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/sq/cui/messages.po214
-rw-r--r--source/sq/dbaccess/messages.po68
-rw-r--r--source/sq/fpicker/messages.po26
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/sq/helpcontent2/source/text/scalc/00.po51
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/sq/helpcontent2/source/text/shared.po229
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/sq/helpcontent2/source/text/shared/02.po777
-rw-r--r--source/sq/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/sq/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/sq/helpcontent2/source/text/swriter.po402
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/sq/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/sq/sc/messages.po332
-rw-r--r--source/sq/sd/messages.po6
-rw-r--r--source/sq/sfx2/messages.po220
-rw-r--r--source/sq/starmath/messages.po138
-rw-r--r--source/sq/svtools/messages.po864
-rw-r--r--source/sq/svx/messages.po4072
-rw-r--r--source/sq/sw/messages.po922
-rw-r--r--source/sq/uui/messages.po9
-rw-r--r--source/sq/vcl/messages.po213
-rw-r--r--source/sr-Latn/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sr-Latn/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sr-Latn/cui/messages.po215
-rw-r--r--source/sr-Latn/dbaccess/messages.po56
-rw-r--r--source/sr-Latn/fpicker/messages.po26
-rw-r--r--source/sr-Latn/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/sr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po300
-rw-r--r--source/sr-Latn/sc/messages.po336
-rw-r--r--source/sr-Latn/sd/messages.po6
-rw-r--r--source/sr-Latn/sfx2/messages.po220
-rw-r--r--source/sr-Latn/starmath/messages.po138
-rw-r--r--source/sr-Latn/svtools/messages.po864
-rw-r--r--source/sr-Latn/svx/messages.po4072
-rw-r--r--source/sr-Latn/sw/messages.po922
-rw-r--r--source/sr-Latn/uui/messages.po9
-rw-r--r--source/sr-Latn/vcl/messages.po219
-rw-r--r--source/sr/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/sr/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/sr/cui/messages.po220
-rw-r--r--source/sr/dbaccess/messages.po56
-rw-r--r--source/sr/fpicker/messages.po26
-rw-r--r--source/sr/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/sr/sc/messages.po339
-rw-r--r--source/sr/sd/messages.po6
-rw-r--r--source/sr/sfx2/messages.po220
-rw-r--r--source/sr/starmath/messages.po138
-rw-r--r--source/sr/svtools/messages.po864
-rw-r--r--source/sr/svx/messages.po4072
-rw-r--r--source/sr/sw/messages.po922
-rw-r--r--source/sr/uui/messages.po9
-rw-r--r--source/sr/vcl/messages.po219
-rw-r--r--source/ss/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ss/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ss/cui/messages.po214
-rw-r--r--source/ss/dbaccess/messages.po73
-rw-r--r--source/ss/fpicker/messages.po26
-rw-r--r--source/ss/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po300
-rw-r--r--source/ss/sc/messages.po336
-rw-r--r--source/ss/sd/messages.po6
-rw-r--r--source/ss/sfx2/messages.po220
-rw-r--r--source/ss/starmath/messages.po138
-rw-r--r--source/ss/svtools/messages.po864
-rw-r--r--source/ss/svx/messages.po4072
-rw-r--r--source/ss/sw/messages.po922
-rw-r--r--source/ss/uui/messages.po6
-rw-r--r--source/ss/vcl/messages.po219
-rw-r--r--source/st/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/st/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/st/cui/messages.po214
-rw-r--r--source/st/dbaccess/messages.po73
-rw-r--r--source/st/fpicker/messages.po26
-rw-r--r--source/st/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po303
-rw-r--r--source/st/sc/messages.po336
-rw-r--r--source/st/sd/messages.po6
-rw-r--r--source/st/sfx2/messages.po220
-rw-r--r--source/st/starmath/messages.po138
-rw-r--r--source/st/svtools/messages.po864
-rw-r--r--source/st/svx/messages.po4072
-rw-r--r--source/st/sw/messages.po922
-rw-r--r--source/st/uui/messages.po6
-rw-r--r--source/st/vcl/messages.po219
-rw-r--r--source/sv/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sv/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po18
-rw-r--r--source/sv/cui/messages.po326
-rw-r--r--source/sv/dbaccess/messages.po86
-rw-r--r--source/sv/fpicker/messages.po30
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/sv/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/sv/helpcontent2/source/text/sdraw/guide.po16
-rw-r--r--source/sv/helpcontent2/source/text/shared.po269
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po871
-rw-r--r--source/sv/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/sv/helpcontent2/source/text/shared/autopi.po12
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/sv/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/sv/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/simpress/01.po12
-rw-r--r--source/sv/helpcontent2/source/text/smath/01.po12
-rw-r--r--source/sv/helpcontent2/source/text/swriter.po402
-rw-r--r--source/sv/helpcontent2/source/text/swriter/00.po6
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po28
-rw-r--r--source/sv/helpcontent2/source/text/swriter/librelogo.po10
-rw-r--r--source/sv/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po298
-rw-r--r--source/sv/sc/messages.po360
-rw-r--r--source/sv/sd/messages.po12
-rw-r--r--source/sv/sfx2/messages.po224
-rw-r--r--source/sv/starmath/messages.po140
-rw-r--r--source/sv/svtools/messages.po866
-rw-r--r--source/sv/svx/messages.po4076
-rw-r--r--source/sv/sw/messages.po1492
-rw-r--r--source/sv/uui/messages.po14
-rw-r--r--source/sv/vcl/messages.po213
-rw-r--r--source/sw-TZ/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/sw-TZ/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/sw-TZ/cui/messages.po215
-rw-r--r--source/sw-TZ/dbaccess/messages.po79
-rw-r--r--source/sw-TZ/fpicker/messages.po26
-rw-r--r--source/sw-TZ/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po296
-rw-r--r--source/sw-TZ/sc/messages.po336
-rw-r--r--source/sw-TZ/sd/messages.po6
-rw-r--r--source/sw-TZ/sfx2/messages.po220
-rw-r--r--source/sw-TZ/starmath/messages.po138
-rw-r--r--source/sw-TZ/svtools/messages.po864
-rw-r--r--source/sw-TZ/svx/messages.po4072
-rw-r--r--source/sw-TZ/sw/messages.po922
-rw-r--r--source/sw-TZ/uui/messages.po6
-rw-r--r--source/sw-TZ/vcl/messages.po216
-rw-r--r--source/szl/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/szl/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/szl/cui/messages.po214
-rw-r--r--source/szl/dbaccess/messages.po80
-rw-r--r--source/szl/fpicker/messages.po26
-rw-r--r--source/szl/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/szl/sc/messages.po332
-rw-r--r--source/szl/sd/messages.po6
-rw-r--r--source/szl/sfx2/messages.po220
-rw-r--r--source/szl/starmath/messages.po138
-rw-r--r--source/szl/svtools/messages.po864
-rw-r--r--source/szl/svx/messages.po4072
-rw-r--r--source/szl/sw/messages.po924
-rw-r--r--source/szl/uui/messages.po9
-rw-r--r--source/szl/vcl/messages.po213
-rw-r--r--source/ta/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/ta/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ta/cui/messages.po214
-rw-r--r--source/ta/dbaccess/messages.po80
-rw-r--r--source/ta/fpicker/messages.po26
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/ta/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/ta/helpcontent2/source/text/shared.po261
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po92
-rw-r--r--source/ta/helpcontent2/source/text/shared/02.po879
-rw-r--r--source/ta/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/ta/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ta/helpcontent2/source/text/swriter.po402
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/ta/sc/messages.po332
-rw-r--r--source/ta/sd/messages.po6
-rw-r--r--source/ta/sfx2/messages.po220
-rw-r--r--source/ta/starmath/messages.po138
-rw-r--r--source/ta/svtools/messages.po864
-rw-r--r--source/ta/svx/messages.po4072
-rw-r--r--source/ta/sw/messages.po922
-rw-r--r--source/ta/uui/messages.po9
-rw-r--r--source/ta/vcl/messages.po213
-rw-r--r--source/te/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/te/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/te/cui/messages.po216
-rw-r--r--source/te/dbaccess/messages.po87
-rw-r--r--source/te/fpicker/messages.po26
-rw-r--r--source/te/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/te/sc/messages.po332
-rw-r--r--source/te/sd/messages.po6
-rw-r--r--source/te/sfx2/messages.po220
-rw-r--r--source/te/starmath/messages.po138
-rw-r--r--source/te/svtools/messages.po864
-rw-r--r--source/te/svx/messages.po4072
-rw-r--r--source/te/sw/messages.po922
-rw-r--r--source/te/uui/messages.po9
-rw-r--r--source/te/vcl/messages.po218
-rw-r--r--source/tg/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/tg/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/tg/cui/messages.po215
-rw-r--r--source/tg/dbaccess/messages.po79
-rw-r--r--source/tg/fpicker/messages.po26
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/tg/helpcontent2/source/text/scalc/00.po51
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/tg/helpcontent2/source/text/shared.po261
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/tg/helpcontent2/source/text/shared/02.po759
-rw-r--r--source/tg/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/tg/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/tg/helpcontent2/source/text/swriter.po402
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/tg/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po296
-rw-r--r--source/tg/sc/messages.po336
-rw-r--r--source/tg/sd/messages.po6
-rw-r--r--source/tg/sfx2/messages.po220
-rw-r--r--source/tg/starmath/messages.po138
-rw-r--r--source/tg/svtools/messages.po864
-rw-r--r--source/tg/svx/messages.po4072
-rw-r--r--source/tg/sw/messages.po922
-rw-r--r--source/tg/uui/messages.po9
-rw-r--r--source/tg/vcl/messages.po220
-rw-r--r--source/th/accessibility/messages.po34
-rw-r--r--source/th/avmedia/messages.po34
-rw-r--r--source/th/basctl/messages.po34
-rw-r--r--source/th/basic/messages.po34
-rw-r--r--source/th/chart2/messages.po34
-rw-r--r--source/th/connectivity/messages.po34
-rw-r--r--source/th/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/th/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/th/cui/messages.po247
-rw-r--r--source/th/dbaccess/messages.po113
-rw-r--r--source/th/desktop/messages.po34
-rw-r--r--source/th/dictionaries/af_ZA.po10
-rw-r--r--source/th/dictionaries/ar.po10
-rw-r--r--source/th/dictionaries/bg_BG.po10
-rw-r--r--source/th/dictionaries/bn_BD.po11
-rw-r--r--source/th/dictionaries/bo.po10
-rw-r--r--source/th/dictionaries/br_FR.po11
-rw-r--r--source/th/dictionaries/bs_BA.po11
-rw-r--r--source/th/dictionaries/ca.po10
-rw-r--r--source/th/dictionaries/cs_CZ.po11
-rw-r--r--source/th/dictionaries/da_DK.po17
-rw-r--r--source/th/dictionaries/de.po10
-rw-r--r--source/th/dictionaries/el_GR.po11
-rw-r--r--source/th/dictionaries/en.po10
-rw-r--r--source/th/dictionaries/eo.po8
-rw-r--r--source/th/dictionaries/es.po12
-rw-r--r--source/th/dictionaries/et_EE.po11
-rw-r--r--source/th/dictionaries/fr_FR.po11
-rw-r--r--source/th/dictionaries/gl.po8
-rw-r--r--source/th/dictionaries/gu_IN.po11
-rw-r--r--source/th/dictionaries/gug.po10
-rw-r--r--source/th/dictionaries/he_IL.po11
-rw-r--r--source/th/dictionaries/hi_IN.po11
-rw-r--r--source/th/dictionaries/hr_HR.po10
-rw-r--r--source/th/dictionaries/hu_HU.po10
-rw-r--r--source/th/dictionaries/id.po10
-rw-r--r--source/th/dictionaries/is.po11
-rw-r--r--source/th/dictionaries/it_IT.po11
-rw-r--r--source/th/dictionaries/kmr_Latn.po10
-rw-r--r--source/th/dictionaries/ko_KR.po8
-rw-r--r--source/th/dictionaries/lo_LA.po11
-rw-r--r--source/th/dictionaries/lt_LT.po11
-rw-r--r--source/th/dictionaries/lv_LV.po11
-rw-r--r--source/th/dictionaries/mn_MN.po8
-rw-r--r--source/th/dictionaries/ne_NP.po11
-rw-r--r--source/th/dictionaries/nl_NL.po11
-rw-r--r--source/th/dictionaries/no.po8
-rw-r--r--source/th/dictionaries/oc_FR.po11
-rw-r--r--source/th/dictionaries/pl_PL.po11
-rw-r--r--source/th/dictionaries/pt_BR.po10
-rw-r--r--source/th/dictionaries/pt_PT.po12
-rw-r--r--source/th/dictionaries/ro.po11
-rw-r--r--source/th/dictionaries/ru_RU.po10
-rw-r--r--source/th/dictionaries/si_LK.po11
-rw-r--r--source/th/dictionaries/sk_SK.po11
-rw-r--r--source/th/dictionaries/sl_SI.po11
-rw-r--r--source/th/dictionaries/sq_AL.po10
-rw-r--r--source/th/dictionaries/sr.po10
-rw-r--r--source/th/dictionaries/sv_SE.po10
-rw-r--r--source/th/dictionaries/sw_TZ.po11
-rw-r--r--source/th/dictionaries/te_IN.po11
-rw-r--r--source/th/dictionaries/th_TH.po10
-rw-r--r--source/th/dictionaries/tr_TR.po10
-rw-r--r--source/th/dictionaries/uk_UA.po11
-rw-r--r--source/th/dictionaries/vi.po10
-rw-r--r--source/th/editeng/messages.po34
-rw-r--r--source/th/extensions/messages.po34
-rw-r--r--source/th/filter/messages.po34
-rw-r--r--source/th/forms/messages.po34
-rw-r--r--source/th/formula/messages.po34
-rw-r--r--source/th/fpicker/messages.po60
-rw-r--r--source/th/framework/messages.po34
-rw-r--r--source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/th/oox/messages.po36
-rw-r--r--source/th/reportdesign/messages.po34
-rw-r--r--source/th/sc/messages.po366
-rw-r--r--source/th/scaddins/messages.po34
-rw-r--r--source/th/sccomp/messages.po34
-rw-r--r--source/th/sd/messages.po40
-rw-r--r--source/th/sfx2/messages.po252
-rw-r--r--source/th/shell/messages.po36
-rw-r--r--source/th/starmath/messages.po172
-rw-r--r--source/th/svl/messages.po34
-rw-r--r--source/th/svtools/messages.po898
-rw-r--r--source/th/svx/messages.po4106
-rw-r--r--source/th/sw/messages.po954
-rw-r--r--source/th/uui/messages.po336
-rw-r--r--source/th/vcl/messages.po255
-rw-r--r--source/th/wizards/messages.po34
-rw-r--r--source/th/writerperfect/messages.po34
-rw-r--r--source/th/xmlsecurity/messages.po34
-rw-r--r--source/ti/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ti/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ti/cui/messages.po214
-rw-r--r--source/ti/dbaccess/messages.po54
-rw-r--r--source/ti/fpicker/messages.po26
-rw-r--r--source/ti/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/ti/sc/messages.po318
-rw-r--r--source/ti/sd/messages.po6
-rw-r--r--source/ti/sfx2/messages.po220
-rw-r--r--source/ti/starmath/messages.po138
-rw-r--r--source/ti/svtools/messages.po864
-rw-r--r--source/ti/svx/messages.po4072
-rw-r--r--source/ti/sw/messages.po922
-rw-r--r--source/ti/uui/messages.po6
-rw-r--r--source/ti/vcl/messages.po216
-rw-r--r--source/tn/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/tn/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/tn/cui/messages.po214
-rw-r--r--source/tn/dbaccess/messages.po59
-rw-r--r--source/tn/fpicker/messages.po26
-rw-r--r--source/tn/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po300
-rw-r--r--source/tn/sc/messages.po336
-rw-r--r--source/tn/sd/messages.po6
-rw-r--r--source/tn/sfx2/messages.po220
-rw-r--r--source/tn/starmath/messages.po138
-rw-r--r--source/tn/svtools/messages.po864
-rw-r--r--source/tn/svx/messages.po4072
-rw-r--r--source/tn/sw/messages.po922
-rw-r--r--source/tn/uui/messages.po6
-rw-r--r--source/tn/vcl/messages.po219
-rw-r--r--source/tr/chart2/messages.po8
-rw-r--r--source/tr/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/tr/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po16
-rw-r--r--source/tr/cui/messages.po264
-rw-r--r--source/tr/dbaccess/messages.po86
-rw-r--r--source/tr/editeng/messages.po18
-rw-r--r--source/tr/extensions/messages.po14
-rw-r--r--source/tr/filter/messages.po6
-rw-r--r--source/tr/forms/messages.po8
-rw-r--r--source/tr/fpicker/messages.po30
-rw-r--r--source/tr/framework/messages.po4
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po226
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared/03.po208
-rw-r--r--source/tr/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/tr/helpcontent2/source/text/shared.po307
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po104
-rw-r--r--source/tr/helpcontent2/source/text/shared/02.po873
-rw-r--r--source/tr/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/tr/helpcontent2/source/text/shared/menu.po24
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/tr/helpcontent2/source/text/swriter.po404
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po28
-rw-r--r--source/tr/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office.po10
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po338
-rw-r--r--source/tr/sc/messages.po426
-rw-r--r--source/tr/sd/messages.po14
-rw-r--r--source/tr/sfx2/messages.po232
-rw-r--r--source/tr/starmath/messages.po140
-rw-r--r--source/tr/svtools/messages.po872
-rw-r--r--source/tr/svx/messages.po4100
-rw-r--r--source/tr/sw/messages.po934
-rw-r--r--source/tr/uui/messages.po14
-rw-r--r--source/tr/vcl/messages.po213
-rw-r--r--source/tr/wizards/messages.po6
-rw-r--r--source/tr/wizards/source/resources.po4
-rw-r--r--source/ts/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ts/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ts/cui/messages.po214
-rw-r--r--source/ts/dbaccess/messages.po73
-rw-r--r--source/ts/fpicker/messages.po26
-rw-r--r--source/ts/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po300
-rw-r--r--source/ts/sc/messages.po336
-rw-r--r--source/ts/sd/messages.po6
-rw-r--r--source/ts/sfx2/messages.po220
-rw-r--r--source/ts/starmath/messages.po138
-rw-r--r--source/ts/svtools/messages.po864
-rw-r--r--source/ts/svx/messages.po4072
-rw-r--r--source/ts/sw/messages.po922
-rw-r--r--source/ts/uui/messages.po6
-rw-r--r--source/ts/vcl/messages.po220
-rw-r--r--source/tt/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/tt/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/tt/cui/messages.po215
-rw-r--r--source/tt/dbaccess/messages.po54
-rw-r--r--source/tt/fpicker/messages.po26
-rw-r--r--source/tt/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po297
-rw-r--r--source/tt/sc/messages.po336
-rw-r--r--source/tt/sd/messages.po6
-rw-r--r--source/tt/sfx2/messages.po220
-rw-r--r--source/tt/starmath/messages.po138
-rw-r--r--source/tt/svtools/messages.po864
-rw-r--r--source/tt/svx/messages.po4072
-rw-r--r--source/tt/sw/messages.po922
-rw-r--r--source/tt/uui/messages.po6
-rw-r--r--source/tt/vcl/messages.po213
-rw-r--r--source/ug/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/ug/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/ug/cui/messages.po214
-rw-r--r--source/ug/dbaccess/messages.po87
-rw-r--r--source/ug/fpicker/messages.po26
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po220
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/ug/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/ug/helpcontent2/source/text/shared.po261
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/ug/helpcontent2/source/text/shared/02.po775
-rw-r--r--source/ug/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/ug/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/ug/helpcontent2/source/text/swriter.po402
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/ug/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/ug/sc/messages.po333
-rw-r--r--source/ug/sd/messages.po6
-rw-r--r--source/ug/sfx2/messages.po220
-rw-r--r--source/ug/starmath/messages.po138
-rw-r--r--source/ug/svtools/messages.po864
-rw-r--r--source/ug/svx/messages.po4072
-rw-r--r--source/ug/sw/messages.po922
-rw-r--r--source/ug/uui/messages.po9
-rw-r--r--source/ug/vcl/messages.po213
-rw-r--r--source/uk/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/uk/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/uk/cui/messages.po226
-rw-r--r--source/uk/dbaccess/messages.po98
-rw-r--r--source/uk/extensions/messages.po6
-rw-r--r--source/uk/fpicker/messages.po26
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po226
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared/02.po68
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared/03.po204
-rw-r--r--source/uk/helpcontent2/source/text/scalc/00.po55
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po225
-rw-r--r--source/uk/helpcontent2/source/text/sdatabase.po79
-rw-r--r--source/uk/helpcontent2/source/text/shared.po269
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po23
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po100
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po881
-rw-r--r--source/uk/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/uk/helpcontent2/source/text/shared/06.po8
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/uk/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po22
-rw-r--r--source/uk/helpcontent2/source/text/simpress/01.po22
-rw-r--r--source/uk/helpcontent2/source/text/swriter.po404
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/uk/sc/messages.po390
-rw-r--r--source/uk/sd/messages.po8
-rw-r--r--source/uk/sfx2/messages.po220
-rw-r--r--source/uk/starmath/messages.po138
-rw-r--r--source/uk/svtools/messages.po866
-rw-r--r--source/uk/svx/messages.po4072
-rw-r--r--source/uk/sw/messages.po924
-rw-r--r--source/uk/uui/messages.po9
-rw-r--r--source/uk/vcl/messages.po213
-rw-r--r--source/ur/basic/messages.po6
-rw-r--r--source/ur/connectivity/registry/firebird/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ur/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po14
-rw-r--r--source/ur/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ur/cui/messages.po214
-rw-r--r--source/ur/dbaccess/messages.po54
-rw-r--r--source/ur/desktop/messages.po6
-rw-r--r--source/ur/dictionaries/be_BY.po6
-rw-r--r--source/ur/dictionaries/ckb.po12
-rw-r--r--source/ur/dictionaries/pt_BR.po6
-rw-r--r--source/ur/fpicker/messages.po26
-rw-r--r--source/ur/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po288
-rw-r--r--source/ur/sc/messages.po315
-rw-r--r--source/ur/sd/messages.po6
-rw-r--r--source/ur/sfx2/messages.po220
-rw-r--r--source/ur/starmath/messages.po138
-rw-r--r--source/ur/svtools/messages.po864
-rw-r--r--source/ur/svx/messages.po4072
-rw-r--r--source/ur/sw/messages.po922
-rw-r--r--source/ur/uui/messages.po6
-rw-r--r--source/ur/vcl/messages.po217
-rw-r--r--source/uz/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/uz/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/uz/cui/messages.po215
-rw-r--r--source/uz/dbaccess/messages.po82
-rw-r--r--source/uz/fpicker/messages.po26
-rw-r--r--source/uz/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po294
-rw-r--r--source/uz/sc/messages.po334
-rw-r--r--source/uz/sd/messages.po6
-rw-r--r--source/uz/sfx2/messages.po220
-rw-r--r--source/uz/starmath/messages.po138
-rw-r--r--source/uz/svtools/messages.po864
-rw-r--r--source/uz/svx/messages.po4072
-rw-r--r--source/uz/sw/messages.po922
-rw-r--r--source/uz/uui/messages.po6
-rw-r--r--source/uz/vcl/messages.po219
-rw-r--r--source/ve/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/ve/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/ve/cui/messages.po214
-rw-r--r--source/ve/dbaccess/messages.po73
-rw-r--r--source/ve/fpicker/messages.po26
-rw-r--r--source/ve/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po303
-rw-r--r--source/ve/sc/messages.po336
-rw-r--r--source/ve/sd/messages.po6
-rw-r--r--source/ve/sfx2/messages.po220
-rw-r--r--source/ve/starmath/messages.po138
-rw-r--r--source/ve/svtools/messages.po864
-rw-r--r--source/ve/svx/messages.po4072
-rw-r--r--source/ve/sw/messages.po922
-rw-r--r--source/ve/uui/messages.po6
-rw-r--r--source/ve/vcl/messages.po219
-rw-r--r--source/vec/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/vec/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/vec/cui/messages.po216
-rw-r--r--source/vec/dbaccess/messages.po80
-rw-r--r--source/vec/fpicker/messages.po26
-rw-r--r--source/vec/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po292
-rw-r--r--source/vec/sc/messages.po332
-rw-r--r--source/vec/sd/messages.po6
-rw-r--r--source/vec/sfx2/messages.po220
-rw-r--r--source/vec/starmath/messages.po138
-rw-r--r--source/vec/svtools/messages.po864
-rw-r--r--source/vec/svx/messages.po4072
-rw-r--r--source/vec/sw/messages.po924
-rw-r--r--source/vec/uui/messages.po9
-rw-r--r--source/vec/vcl/messages.po213
-rw-r--r--source/vi/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/vi/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/vi/cui/messages.po218
-rw-r--r--source/vi/dbaccess/messages.po87
-rw-r--r--source/vi/fpicker/messages.po26
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/vi/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/vi/helpcontent2/source/text/shared.po261
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/vi/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/vi/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/vi/helpcontent2/source/text/swriter.po402
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/vi/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po293
-rw-r--r--source/vi/sc/messages.po335
-rw-r--r--source/vi/sd/messages.po6
-rw-r--r--source/vi/sfx2/messages.po220
-rw-r--r--source/vi/starmath/messages.po138
-rw-r--r--source/vi/svtools/messages.po864
-rw-r--r--source/vi/svx/messages.po4072
-rw-r--r--source/vi/sw/messages.po922
-rw-r--r--source/vi/uui/messages.po9
-rw-r--r--source/vi/vcl/messages.po219
-rw-r--r--source/xh/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/xh/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/xh/cui/messages.po214
-rw-r--r--source/xh/dbaccess/messages.po73
-rw-r--r--source/xh/fpicker/messages.po26
-rw-r--r--source/xh/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po303
-rw-r--r--source/xh/sc/messages.po336
-rw-r--r--source/xh/sd/messages.po6
-rw-r--r--source/xh/sfx2/messages.po220
-rw-r--r--source/xh/starmath/messages.po138
-rw-r--r--source/xh/svtools/messages.po864
-rw-r--r--source/xh/svx/messages.po4072
-rw-r--r--source/xh/sw/messages.po922
-rw-r--r--source/xh/uui/messages.po6
-rw-r--r--source/xh/vcl/messages.po220
-rw-r--r--source/zh-CN/chart2/messages.po8
-rw-r--r--source/zh-CN/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/zh-CN/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/zh-CN/cui/messages.po232
-rw-r--r--source/zh-CN/dbaccess/messages.po80
-rw-r--r--source/zh-CN/fpicker/messages.po26
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po226
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po225
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared.po269
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/02.po883
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/menu.po22
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter.po404
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/zh-CN/librelogo/source/pythonpath.po8
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po302
-rw-r--r--source/zh-CN/sc/messages.po370
-rw-r--r--source/zh-CN/scp2/source/ooo.po8
-rw-r--r--source/zh-CN/sd/messages.po14
-rw-r--r--source/zh-CN/sfx2/messages.po220
-rw-r--r--source/zh-CN/starmath/messages.po140
-rw-r--r--source/zh-CN/svtools/messages.po866
-rw-r--r--source/zh-CN/svx/messages.po4078
-rw-r--r--source/zh-CN/sw/messages.po926
-rw-r--r--source/zh-CN/uui/messages.po9
-rw-r--r--source/zh-CN/vcl/messages.po213
-rw-r--r--source/zh-TW/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/zh-TW/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po8
-rw-r--r--source/zh-TW/cui/messages.po230
-rw-r--r--source/zh-TW/dbaccess/messages.po80
-rw-r--r--source/zh-TW/dictionaries/ckb.po12
-rw-r--r--source/zh-TW/fpicker/messages.po26
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po222
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared/03.po200
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/00.po53
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po219
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared.po261
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po15
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po96
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/02.po869
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po49
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/menu.po20
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter.po402
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po222
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/zh-TW/instsetoo_native/inc_openoffice/windows/msi_languages.po13
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po302
-rw-r--r--source/zh-TW/sc/messages.po368
-rw-r--r--source/zh-TW/scp2/source/ooo.po8
-rw-r--r--source/zh-TW/scp2/source/xsltfilter.po14
-rw-r--r--source/zh-TW/sd/messages.po8
-rw-r--r--source/zh-TW/sfx2/messages.po220
-rw-r--r--source/zh-TW/starmath/messages.po140
-rw-r--r--source/zh-TW/svtools/messages.po866
-rw-r--r--source/zh-TW/svx/messages.po4078
-rw-r--r--source/zh-TW/sw/messages.po922
-rw-r--r--source/zh-TW/uui/messages.po9
-rw-r--r--source/zh-TW/vcl/messages.po213
-rw-r--r--source/zu/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po12
-rw-r--r--source/zu/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po6
-rw-r--r--source/zu/cui/messages.po214
-rw-r--r--source/zu/dbaccess/messages.po73
-rw-r--r--source/zu/fpicker/messages.po26
-rw-r--r--source/zu/instsetoo_native/inc_openoffice/windows/msi_languages.po11
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po300
-rw-r--r--source/zu/sc/messages.po336
-rw-r--r--source/zu/sd/messages.po6
-rw-r--r--source/zu/sfx2/messages.po220
-rw-r--r--source/zu/starmath/messages.po138
-rw-r--r--source/zu/svtools/messages.po864
-rw-r--r--source/zu/svx/messages.po4072
-rw-r--r--source/zu/sw/messages.po922
-rw-r--r--source/zu/uui/messages.po6
-rw-r--r--source/zu/vcl/messages.po219
3540 files changed, 610526 insertions, 548569 deletions
diff --git a/source/ab/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po b/source/ab/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
index 25479454c05..bd45c747b4a 100644
--- a/source/ab/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/ab/connectivity/registry/mysql_jdbc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2021-01-31 16:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistrymysql_jdbcorgopenofficeofficedataaccess/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149231.000000\n"
#. ny8vx
@@ -35,13 +35,3 @@ msgctxt ""
"value.text"
msgid "MySQL (ODBC)"
msgstr "MySQL (ODBC)"
-
-#. rcnrk
-#: Drivers.xcu
-msgctxt ""
-"Drivers.xcu\n"
-".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
-"DriverTypeDisplayName\n"
-"value.text"
-msgid "MySQL (Native)"
-msgstr "MySQL (Native)"
diff --git a/source/ab/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po b/source/ab/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
index 317f74378a2..8b246b9d923 100644
--- a/source/ab/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
+++ b/source/ab/connectivity/registry/mysqlc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2021-01-08 07:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistrymysqlcorgopenofficeofficedataaccess/ab/>\n"
@@ -13,15 +13,15 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496380.000000\n"
-#. NHVFU
+#. bTkZz
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "MySQL Connector"
-msgstr "MySQL Connector"
+msgid "MySQL/MariaDB Connector"
+msgstr ""
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 4533b2c75a1..8fbe8dcb342 100644
--- a/source/ab/cui/messages.po
+++ b/source/ab/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-18 12:16+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ab/>\n"
@@ -2141,10 +2141,10 @@ msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
msgstr ""
-#. YFfQV
+#. BT9KG
#: cui/inc/strings.hrc:403
msgctxt "RID_CUISTR_ZIPFAIL"
-msgid "Creation of Zip file failed!"
+msgid "Creation of ZIP file failed."
msgstr ""
#. 9QSQr
@@ -2228,10 +2228,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"
msgstr ""
-#. DUvk6
+#. jpiRT
#: cui/inc/tipoftheday.hrc:62
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon style."
+msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon Theme."
msgstr ""
#. RejqP
@@ -3045,11 +3045,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
-#. BnMpb
+#. DBfad
#. local help missing
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
+msgid "Use Format ▸ Align Objects in Impress or Shape ▸ Align Objects in Draw (or the context menu) for precise positioning of objects: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
@@ -4433,68 +4433,74 @@ msgctxt "accelconfigpage|extended_tip|save"
msgid "Saves the current shortcut key configuration, so that you can load it later."
msgstr ""
-#. mJmga
-#: cui/uiconfig/ui/accelconfigpage.ui:297
+#. oSRQ7
+#: cui/uiconfig/ui/accelconfigpage.ui:295
+msgctxt "accelconfigpage|tooltip|reset"
+msgid "Unsaved modifications to shortcut keys are reverted."
+msgstr ""
+
+#. stv4J
+#: cui/uiconfig/ui/accelconfigpage.ui:298
msgctxt "accelconfigpage|extended_tip|reset"
-msgid "Resets modified values back to the default values."
+msgid "Revert any changes made to keyboard shortcuts to the assignments that were present when this dialog was opened."
msgstr ""
#. BKAsD
-#: cui/uiconfig/ui/accelconfigpage.ui:348
+#: cui/uiconfig/ui/accelconfigpage.ui:349
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr ""
#. nGtvW
-#: cui/uiconfig/ui/accelconfigpage.ui:352
+#: cui/uiconfig/ui/accelconfigpage.ui:353
msgctxt "accelconfigpage|extended_tip|searchEntry"
msgid "Type here to search in the list of functions."
msgstr ""
#. T5FGo
-#: cui/uiconfig/ui/accelconfigpage.ui:374
+#: cui/uiconfig/ui/accelconfigpage.ui:375
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "Акатегориа"
#. xfWzA
-#: cui/uiconfig/ui/accelconfigpage.ui:388
+#: cui/uiconfig/ui/accelconfigpage.ui:389
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "Акоманда"
#. 7PCeb
-#: cui/uiconfig/ui/accelconfigpage.ui:402
+#: cui/uiconfig/ui/accelconfigpage.ui:403
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr "Аклавишақәа"
#. 8DnFJ
-#: cui/uiconfig/ui/accelconfigpage.ui:446
+#: cui/uiconfig/ui/accelconfigpage.ui:447
msgctxt "accelconfigpage|extended_tip|category"
msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
msgstr ""
#. wGm8q
-#: cui/uiconfig/ui/accelconfigpage.ui:493
+#: cui/uiconfig/ui/accelconfigpage.ui:494
msgctxt "accelconfigpage|extended_tip|function"
msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
msgstr ""
#. PzCaG
-#: cui/uiconfig/ui/accelconfigpage.ui:539
+#: cui/uiconfig/ui/accelconfigpage.ui:540
msgctxt "accelconfigpage|extended_tip|keys"
msgid "Displays the shortcut keys that are assigned to the selected function."
msgstr ""
#. CqdJF
-#: cui/uiconfig/ui/accelconfigpage.ui:563
+#: cui/uiconfig/ui/accelconfigpage.ui:564
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "Афункциақәа"
#. kVeWd
-#: cui/uiconfig/ui/accelconfigpage.ui:576
+#: cui/uiconfig/ui/accelconfigpage.ui:577
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
msgstr ""
@@ -7534,24 +7540,28 @@ msgid "HSB"
msgstr "HSB"
#. sesZZ
+#. This is the C of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:639
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr ""
#. Gw7rx
+#. This is the M of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:654
msgctxt "colorpickerdialog|label6"
msgid "_Magenta:"
msgstr ""
#. Uv2KG
+#. This is the Y of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:669
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
msgstr "Аҩежь:"
#. aFvbe
+#. This is the K of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:684
msgctxt "colorpickerdialog|label8"
msgid "_Key:"
@@ -7588,7 +7598,7 @@ msgid "CMYK"
msgstr "CMYK"
#. HuUmH
-#: cui/uiconfig/ui/colorpickerdialog.ui:815
+#: cui/uiconfig/ui/colorpickerdialog.ui:812
msgctxt "extended tip | ColorPicker"
msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
msgstr ""
@@ -17168,176 +17178,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Автоматикала"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Агалактика"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Аконтраст"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Аклассикатә"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. SXzWW
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "_Theme:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. F7kTw
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Theme"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Аграфикатә ҭагалара"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Ашрифтқәа рыхәаҧшра"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Ашрифтқәа рыхьӡынҵа"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
@@ -17367,219 +17353,219 @@ msgid "_Orientation:"
msgstr "Ахырхарҭа:"
#. mtFWf
-#: cui/uiconfig/ui/pageformatpage.ui:131
+#: cui/uiconfig/ui/pageformatpage.ui:135
msgctxt "pageformatpage|radiobuttonPortrait"
msgid "_Portrait"
msgstr "Ашәҟәытә"
#. LGkU8
-#: cui/uiconfig/ui/pageformatpage.ui:150
+#: cui/uiconfig/ui/pageformatpage.ui:154
msgctxt "pageformatpage|radiobuttonLandscape"
msgid "L_andscape"
msgstr "Альбомтә"
#. PTwDK
-#: cui/uiconfig/ui/pageformatpage.ui:172
+#: cui/uiconfig/ui/pageformatpage.ui:176
msgctxt "pageformatpage|labelTextFlow"
msgid "_Text direction:"
msgstr "Атеқст ахырхарҭа:"
#. FmMdc
-#: cui/uiconfig/ui/pageformatpage.ui:228
+#: cui/uiconfig/ui/pageformatpage.ui:232
msgctxt "pageformatpage|labelPaperTray"
msgid "Paper _tray:"
msgstr "Ақьаад анашьҭра:"
#. u8DFb
-#: cui/uiconfig/ui/pageformatpage.ui:260
+#: cui/uiconfig/ui/pageformatpage.ui:264
msgctxt "pageformatpage|labelPaperFormat"
msgid "Paper Format"
msgstr "Ақьаад аформат"
#. 479hs
-#: cui/uiconfig/ui/pageformatpage.ui:305
+#: cui/uiconfig/ui/pageformatpage.ui:309
msgctxt "pageformatpage|labelLeftMargin"
msgid "Left:"
msgstr "Арымарахь:"
#. EoGm2
-#: cui/uiconfig/ui/pageformatpage.ui:319
+#: cui/uiconfig/ui/pageformatpage.ui:323
msgctxt "pageformatpage|labelInner"
msgid "I_nner:"
msgstr "Аҩныҵҟа:"
#. 7FFiR
-#: cui/uiconfig/ui/pageformatpage.ui:357
+#: cui/uiconfig/ui/pageformatpage.ui:361
msgctxt "pageformatpage|labelRightMargin"
msgid "Right:"
msgstr "Арыӷьарахь:"
#. RfnGu
-#: cui/uiconfig/ui/pageformatpage.ui:371
+#: cui/uiconfig/ui/pageformatpage.ui:375
msgctxt "pageformatpage|labelOuter"
msgid "O_uter:"
msgstr "Адәныҟа:"
#. tGMLA
-#: cui/uiconfig/ui/pageformatpage.ui:404
+#: cui/uiconfig/ui/pageformatpage.ui:408
msgctxt "pageformatpage|labelTopMargin"
msgid "Top:"
msgstr "Хыхьла:"
#. eaqBS
-#: cui/uiconfig/ui/pageformatpage.ui:430
+#: cui/uiconfig/ui/pageformatpage.ui:434
msgctxt "pageformatpage|labelBottomMargin"
msgid "Bottom:"
msgstr "Ҵаҟала: "
#. TYx6B
-#: cui/uiconfig/ui/pageformatpage.ui:456
+#: cui/uiconfig/ui/pageformatpage.ui:460
msgctxt "pageformatpage|labelGutterMargin"
msgid "Gutter:"
msgstr ""
#. Tvwu6
-#: cui/uiconfig/ui/pageformatpage.ui:484
+#: cui/uiconfig/ui/pageformatpage.ui:488
msgctxt "pageformatpage|labelMargins"
msgid "Margins"
msgstr "Аҭакырақәа"
#. WcuCU
-#: cui/uiconfig/ui/pageformatpage.ui:517
+#: cui/uiconfig/ui/pageformatpage.ui:521
msgctxt "pageformatpage|labelPageLayout"
msgid "_Page layout:"
msgstr "Адаҟьа амакет:"
#. vnXWF
-#: cui/uiconfig/ui/pageformatpage.ui:531
+#: cui/uiconfig/ui/pageformatpage.ui:535
msgctxt "pageformatpage|labelPageNumbers"
msgid "Page numbers:"
msgstr ""
#. tyvA3
-#: cui/uiconfig/ui/pageformatpage.ui:543
+#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
msgstr ""
#. DtZQG
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:547
+#: cui/uiconfig/ui/pageformatpage.ui:551
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
msgstr ""
#. p2egb
-#: cui/uiconfig/ui/pageformatpage.ui:552
+#: cui/uiconfig/ui/pageformatpage.ui:556
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr ""
#. 46djR
-#: cui/uiconfig/ui/pageformatpage.ui:566
+#: cui/uiconfig/ui/pageformatpage.ui:570
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr "Арыӷьарахьи арымарахьи"
#. xetCH
-#: cui/uiconfig/ui/pageformatpage.ui:567
+#: cui/uiconfig/ui/pageformatpage.ui:571
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr ""
#. 47EHF
-#: cui/uiconfig/ui/pageformatpage.ui:568
+#: cui/uiconfig/ui/pageformatpage.ui:572
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr "Арыӷьарахь мацара"
#. ALSy9
-#: cui/uiconfig/ui/pageformatpage.ui:569
+#: cui/uiconfig/ui/pageformatpage.ui:573
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr "Арымарахь мацара"
#. Fhvzk
-#: cui/uiconfig/ui/pageformatpage.ui:591
+#: cui/uiconfig/ui/pageformatpage.ui:595
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "Аиҟаратәра:"
#. 79BH9
-#: cui/uiconfig/ui/pageformatpage.ui:603
+#: cui/uiconfig/ui/pageformatpage.ui:607
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "Горизонталла"
#. krxQZ
-#: cui/uiconfig/ui/pageformatpage.ui:617
+#: cui/uiconfig/ui/pageformatpage.ui:621
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "_Вертикалла"
#. FPLFK
-#: cui/uiconfig/ui/pageformatpage.ui:631
+#: cui/uiconfig/ui/pageformatpage.ui:635
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr ""
#. bqcXW
-#: cui/uiconfig/ui/pageformatpage.ui:648
+#: cui/uiconfig/ui/pageformatpage.ui:651
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
msgstr "Азхьарҧш астиль:"
#. FnoPF
-#: cui/uiconfig/ui/pageformatpage.ui:672
+#: cui/uiconfig/ui/pageformatpage.ui:675
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
msgstr ""
#. LF4Ex
-#: cui/uiconfig/ui/pageformatpage.ui:687
+#: cui/uiconfig/ui/pageformatpage.ui:690
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Left"
msgstr ""
#. DSBY5
-#: cui/uiconfig/ui/pageformatpage.ui:688
+#: cui/uiconfig/ui/pageformatpage.ui:691
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
#. AosV5
-#: cui/uiconfig/ui/pageformatpage.ui:704
+#: cui/uiconfig/ui/pageformatpage.ui:701
msgctxt "pageformatpage|checkRtlGutter"
msgid "Gutter on right side of page"
msgstr ""
#. cuazP
-#: cui/uiconfig/ui/pageformatpage.ui:718
+#: cui/uiconfig/ui/pageformatpage.ui:715
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:722
+#: cui/uiconfig/ui/pageformatpage.ui:719
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:727
+#: cui/uiconfig/ui/pageformatpage.ui:724
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:742
+#: cui/uiconfig/ui/pageformatpage.ui:754
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:763
+#: cui/uiconfig/ui/pageformatpage.ui:775
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -21029,10 +21015,10 @@ msgctxt "textcolumnstabpage|extended_tip|MTR_FLD_COL_SPACING"
msgid "Enter the amount of space to leave between the columns."
msgstr ""
-#. 4u4bL
+#. 7Fgep
#: cui/uiconfig/ui/textcolumnstabpage.ui:108
msgctxt "textcolumnstabpage|extended_tip|TextColumnsPage"
-msgid "Sets the columns layout properties for text in the selected drawing or text object."
+msgid "Sets the columns’ layout properties for text in the selected drawing or text object."
msgstr ""
#. 3Huae
@@ -22099,37 +22085,37 @@ msgid "In columns view layout you see pages in a given number of columns side by
msgstr ""
#. opsyv
-#: cui/uiconfig/ui/zoomdialog.ui:367
+#: cui/uiconfig/ui/zoomdialog.ui:366
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. psRyA
-#: cui/uiconfig/ui/zoomdialog.ui:368
+#: cui/uiconfig/ui/zoomdialog.ui:367
msgctxt "zoomdialog|extended_tip|columnssb"
msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
msgstr ""
#. rhLet
-#: cui/uiconfig/ui/zoomdialog.ui:387
+#: cui/uiconfig/ui/zoomdialog.ui:386
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr "Ашәҟәы арежим"
#. egdNS
-#: cui/uiconfig/ui/zoomdialog.ui:400
+#: cui/uiconfig/ui/zoomdialog.ui:398
msgctxt "zoomdialog|extended_tip|bookmode"
msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number."
msgstr ""
#. pdZqi
-#: cui/uiconfig/ui/zoomdialog.ui:416
+#: cui/uiconfig/ui/zoomdialog.ui:414
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "Иахыҟоу аҭыҧ"
#. DWWgJ
-#: cui/uiconfig/ui/zoomdialog.ui:448
+#: cui/uiconfig/ui/zoomdialog.ui:446
msgctxt "zoomdialog|extended_tip|ZoomDialog"
msgid "Reduces or enlarges the screen display."
msgstr ""
diff --git a/source/ab/dbaccess/messages.po b/source/ab/dbaccess/messages.po
index eb1ca4ca2b7..3358ee6c510 100644
--- a/source/ab/dbaccess/messages.po
+++ b/source/ab/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
"PO-Revision-Date: 2021-02-12 17:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ab/>\n"
@@ -1862,11 +1862,11 @@ msgctxt "STR_WRITER_PATH_OR_FILE"
msgid "Path to the Writer document"
msgstr ""
-#. zQxCp
+#. JScWd
#: dbaccess/inc/strings.hrc:335
msgctxt "STR_MYSQL_DATABASE_NAME"
-msgid "Name of the MySQL database"
-msgstr "Адырқәа рбаза MySQL ахьӡ"
+msgid "Name of the MySQL/MariaDB database"
+msgstr ""
#. uhRMQ
#: dbaccess/inc/strings.hrc:336
@@ -2050,11 +2050,11 @@ msgctxt "STR_PAGETITLE_ORACLE"
msgid "Set up Oracle database connection"
msgstr "Oracle аҽаҿакра архиара"
-#. KbAqW
+#. rdZFv
#: dbaccess/inc/strings.hrc:368
msgctxt "STR_PAGETITLE_MYSQL"
-msgid "Set up MySQL connection"
-msgstr "MySQL аҽаҿакра архиара"
+msgid "Set up MySQL/MariaDB connection"
+msgstr ""
#. uJuNs
#: dbaccess/inc/strings.hrc:369
@@ -2074,10 +2074,10 @@ msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
msgid "Set up user authentication"
msgstr ""
-#. YgsyA
+#. twW6d
#: dbaccess/inc/strings.hrc:372
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
-msgid "Set up MySQL server data"
+msgid "Set up MySQL/MariaDB server data"
msgstr ""
#. 6Fy7C
@@ -2092,24 +2092,24 @@ msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
msgstr "Адырқәа рбаза ҿыц"
-#. DoGLb
+#. f5EbK
#: dbaccess/inc/strings.hrc:375
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
-msgid "Set up connection to a MySQL database using JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
msgstr ""
-#. B5kEC
+#. tqpeM
#: dbaccess/inc/strings.hrc:376
msgctxt "STR_MYSQLJDBC_HELPTEXT"
msgid ""
-"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. uGTyY
+#. Lrd3G
#: dbaccess/inc/strings.hrc:377
msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
-msgid "MySQL JDBC d~river class:"
+msgid "MySQL/MariaDB JDBC d~river class:"
msgstr ""
#. cBiSe
@@ -2998,11 +2998,11 @@ msgctxt "dbwizmysqlintropage|jdbc"
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr "Аимадара JDBC ала (Java Database Connectivity)"
-#. AW2n6
+#. 3haAx
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:93
msgctxt "dbwizmysqlintropage|directly"
-msgid "Connect directly"
-msgstr "Ишиашо аимадара"
+msgid "Connect directly (using MariaDB C connector)"
+msgstr ""
#. C9PFE
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:112
@@ -3010,23 +3010,23 @@ msgctxt "dbwizmysqlintropage|label1"
msgid "How do you want to connect to your MySQL database?"
msgstr ""
-#. pdEL5
+#. C9PGh
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:128
msgctxt "dbwizmysqlintropage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "Абаза MySQL аҽаҿакра архиара"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
-#. E8ACc
+#. 3cSEi
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:35
msgctxt "dbwizmysqlnativepage|helptext"
-msgid "Please enter the required information to connect to a MySQL database."
+msgid "Please enter the required information to connect to a MySQL/MariaDB database."
msgstr ""
-#. 2HCAG
+#. 4uetU
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:70
msgctxt "dbwizmysqlnativepage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "Абаза MySQL аҽаҿакра архиара"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
#. AEty7
#: dbaccess/uiconfig/ui/dbwizspreadsheetpage.ui:55
@@ -4534,16 +4534,16 @@ msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Specifies the sort criteria for the data display."
msgstr ""
-#. CsLXB
+#. nDP3A
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
msgctxt "specialjdbcconnectionpage|header"
-msgid "Set up connection to a MySQL database using JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
msgstr ""
-#. oxw5Q
+#. EVDCG
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:39
msgctxt "specialjdbcconnectionpage|helpLabel"
-msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
+msgid "Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
msgstr ""
#. GchzZ
@@ -4570,11 +4570,11 @@ msgctxt "specialjdbcconnectionpage|portNumDefLabel"
msgid "Default: 3306"
msgstr ""
-#. dhiYx
+#. o9YhU
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:188
msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
-msgid "MySQL JDBC d_river class:"
-msgstr "JDBC MySQL азы адраивер акласс:"
+msgid "MySQL/MariaDB JDBC d_river class:"
+msgstr ""
#. 8oG6P
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:212
diff --git a/source/ab/fpicker/messages.po b/source/ab/fpicker/messages.po
index e4f9f242afd..a2c64a5bb61 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-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2018-10-02 16:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -484,8 +484,20 @@ msgid ""
"Do you want to replace it?"
msgstr ""
-#. z6Eo3
+#. t4wDh
#: include/fpicker/strings.hrc:32
+msgctxt "STR_SVT_ALREADYEXISTOVERWRITE_SECONDARY"
+msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
+msgstr ""
+
+#. cBvCB
+#: include/fpicker/strings.hrc:33
+msgctxt "STR_SVT_ALLFORMATS"
+msgid "All Formats"
+msgstr ""
+
+#. z6Eo3
+#: include/fpicker/strings.hrc:34
msgctxt "STR_SVT_DELETESERVICE"
msgid ""
"Are you sure you want to delete the service?\n"
@@ -493,32 +505,32 @@ msgid ""
msgstr ""
#. KegFE
-#: include/fpicker/strings.hrc:33
+#: include/fpicker/strings.hrc:35
#, fuzzy
msgctxt "STR_SVT_ROOTLABEL"
msgid "Root"
msgstr "Афутқәа"
#. sWRTd
-#: include/fpicker/strings.hrc:34
+#: include/fpicker/strings.hrc:36
msgctxt "STR_FILTERNAME_ALL"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. FBggE
-#: include/fpicker/strings.hrc:35
+#: include/fpicker/strings.hrc:37
msgctxt "STR_FILEDLG_OPEN"
msgid "Open"
msgstr "Иаарттәуп"
#. wJYsA
-#: include/fpicker/strings.hrc:36
+#: include/fpicker/strings.hrc:38
msgctxt "STR_FILEDLG_TYPE"
msgid "File ~type"
msgstr "Афаил атип"
#. EEBg4
-#: include/fpicker/strings.hrc:37
+#: include/fpicker/strings.hrc:39
msgctxt "STR_FILEDLG_SAVE"
msgid "Save"
msgstr "Иеиқәырхатәуп"
diff --git a/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 79e72962d71..a418fd5c1a2 100644
--- a/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/ab/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-03-31 10:35+0200\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-02-01 16:18+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022329.000000\n"
#. tBfTE
@@ -2455,15 +2455,6 @@ msgctxt ""
msgid "&Cancel"
msgstr "Аҟәыхра"
-#. rvG8Q
-#: Control.ulf
-msgctxt ""
-"Control.ulf\n"
-"OOO_CONTROL_206\n"
-"LngText.text"
-msgid "error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here"
-msgstr ""
-
#. D6Bgs
#: Control.ulf
msgctxt ""
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
index a05526ebce8..18ae593ba0d 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-04-04 11:41+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"
@@ -2086,6 +2086,26 @@ msgctxt ""
msgid "F~ourier Analysis..."
msgstr ""
+#. aTBPM
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertSparkline\n"
+"Label\n"
+"value.text"
+msgid "Insert Sparkline..."
+msgstr ""
+
+#. CoZgJ
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:DeleteSparkline\n"
+"Label\n"
+"value.text"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dTXDB
#: CalcCommands.xcu
msgctxt ""
@@ -2116,16 +2136,6 @@ msgctxt ""
msgid "Data ~Validation..."
msgstr "Адырқәа ргәаҭара..."
-#. xxDxd
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "Ианыхтәуп ацәаҳәақәа"
-
#. wZAYL
#: CalcCommands.xcu
msgctxt ""
@@ -2136,16 +2146,6 @@ msgctxt ""
msgid "Insert"
msgstr "Ибжьаргылатәуп"
-#. jgGQR
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "Ианыхтәуп аиҵагылақәа"
-
#. 5PPGW
#: CalcCommands.xcu
msgctxt ""
@@ -2276,26 +2276,6 @@ msgctxt ""
msgid "Delete All Comments"
msgstr "Ианыхтәуп акомментариқәа зегьы"
-#. PzCtT
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comm~ent"
-msgstr "Акомментари"
-
-#. HAWW3
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"PopupLabel\n"
-"value.text"
-msgid "Insert Co~mment"
-msgstr "Иацҵатәуп акомментари"
-
#. uUwKE
#: CalcCommands.xcu
msgctxt ""
@@ -3196,16 +3176,6 @@ msgctxt ""
msgid "~Show Sheet..."
msgstr "Иаарҧштәуп абӷьыцқәа..."
-#. BARqL
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Еидҵатәуп абларҭақәа"
-
#. APBqu
#: CalcCommands.xcu
msgctxt ""
@@ -10588,26 +10558,6 @@ msgctxt ""
msgid "Tas~k Pane"
msgstr "Аҳасабтәқәа рпанель"
-#. EAawg
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Еидҵатәуп абларҭақәа"
-
-#. eQphw
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells"
-msgstr "Еиҟәшатәуп абларҭақәа"
-
#. Bvk8Q
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10738,26 +10688,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "Ибжьаргылатәуп аиҵагылақәа"
-#. momxn
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Row"
-msgstr "Ианыхтәуп ацәаҳәа"
-
-#. YzuWU
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Column"
-msgstr "Ианыхтәуп аиҵагыла"
-
#. yTCcA
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10868,16 +10798,6 @@ msgctxt ""
msgid "~Table..."
msgstr "Атаблица..."
-#. apmru
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comme~nt"
-msgstr "Акомментари"
-
#. XUrBD
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21930,6 +21850,26 @@ msgctxt ""
msgid "~Merge"
msgstr "Еицҵатәуп"
+#. rAjSP
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:MergeCells\n"
+"Label\n"
+"value.text"
+msgid "Merge Cells"
+msgstr ""
+
+#. ktF7K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SplitCell\n"
+"Label\n"
+"value.text"
+msgid "Split Cells..."
+msgstr ""
+
#. 2gYcx
#: GenericCommands.xcu
msgctxt ""
@@ -26420,6 +26360,66 @@ msgctxt ""
msgid "Insert Column"
msgstr ""
+#. LhLtz
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"Label\n"
+"value.text"
+msgid "Delete Columns"
+msgstr ""
+
+#. AG4Qy
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Columns"
+msgstr ""
+
+#. KxsdA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected columns"
+msgstr ""
+
+#. VL8Wa
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"Label\n"
+"value.text"
+msgid "Delete Rows"
+msgstr ""
+
+#. uAPr9
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Rows"
+msgstr ""
+
+#. wjm8K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected rows"
+msgstr ""
+
#. poXFa
#: GenericCommands.xcu
msgctxt ""
@@ -29100,6 +29100,16 @@ msgctxt ""
msgid "Slide"
msgstr ""
+#. zDinJ
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.DrawPageDeck\n"
+"Title\n"
+"value.text"
+msgid "Page"
+msgstr ""
+
#. E9FJB
#: Sidebar.xcu
msgctxt ""
@@ -32403,66 +32413,6 @@ msgctxt ""
msgid "Columns ~Before"
msgstr ""
-#. rzDZU
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "Ианыхтәуп ацәаҳәақәа"
-
-#. DDmHu
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Rows"
-msgstr "Ацәаҳәақәа"
-
-#. mBMTr
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected rows"
-msgstr ""
-
-#. WGcRm
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "Ианыхтәуп аиҵагылақәа"
-
-#. P6wy9
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Columns"
-msgstr "Аиҵагылақәа"
-
-#. rhbdp
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected columns"
-msgstr ""
-
#. RxF66
#: WriterCommands.xcu
msgctxt ""
@@ -32493,26 +32443,6 @@ msgctxt ""
msgid "Delete table"
msgstr ""
-#. f2Fpk
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells..."
-msgstr ""
-
-#. DqRgD
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Еидҵатәуп абларҭақәа"
-
#. TTVL5
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 5462936aac9..9e46c8dd27a 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: 2022-02-18 12:18+0100\n"
+"POT-Creation-Date: 2022-04-04 11:41+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"
@@ -3186,6 +3186,18 @@ msgctxt "STR_INDENTCELL"
msgid "Indent: "
msgstr "Ахьаҵ: "
+#. HWAmv
+#: sc/inc/globstr.hrc:542
+msgctxt "STR_UNDO_INSERT_SPARKLINE"
+msgid "Insert Sparkline Group"
+msgstr ""
+
+#. LiBMo
+#: sc/inc/globstr.hrc:543
+msgctxt "STR_UNDO_DELETE_SPARKLINE"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dB8cp
#: sc/inc/pvfundlg.hrc:28
msgctxt "SCSTR_DPFUNCLISTBOX"
@@ -27191,10 +27203,10 @@ msgctxt "pastespecial|PasteSpecial"
msgid "Paste Special"
msgstr ""
-#. diPtG
+#. 9DVsp
#: sc/uiconfig/scalc/ui/pastespecial.ui:130
msgctxt "pastespecial|paste_values_only|label"
-msgid "_Values Only"
+msgid "Values Only"
msgstr ""
#. XyU8o
@@ -27209,10 +27221,10 @@ msgctxt "pastespecial|extended_tip|paste_values_only"
msgid "Pastes numbers, text, dates and the results of formulas."
msgstr ""
-#. CTEKF
+#. qDbrz
#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
-msgid "Values & _Formats"
+msgid "Values & Formats"
msgstr ""
#. 7GuDi
@@ -27227,10 +27239,10 @@ msgctxt "pastespecial|extended_tip|paste_values_formats"
msgid "Pastes cell values, formula results and formats applied to cells."
msgstr ""
-#. Rb8KR
+#. uCJBB
#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
-msgid "Formats Onl_y"
+msgid "Formats Only"
msgstr ""
#. Cvyjn
@@ -27245,10 +27257,10 @@ 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
+#. osqEX
#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
-msgid "_Transpose All"
+msgid "Transpose All"
msgstr ""
#. sbLGi
@@ -27263,10 +27275,10 @@ msgctxt "pastespecial|extended_tip|paste_transpose"
msgid "Pastes cell contents transposed, hence columns are converted to rows."
msgstr ""
-#. 4ETCT
+#. B28BC
#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
-msgid "_Run immediately"
+msgid "Run immediately"
msgstr ""
#. 7a9JE
@@ -27281,10 +27293,10 @@ msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
-#. g6DfA
+#. huhPQ
#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
-msgid "_All"
+msgid "All"
msgstr ""
#. Labin
@@ -27293,11 +27305,11 @@ msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
-#. qzFbg
+#. sg69o
#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
-msgid "_Numbers"
-msgstr "Ахыҧхьаӡарақәа"
+msgid "Numbers"
+msgstr ""
#. SCVEu
#: sc/uiconfig/scalc/ui/pastespecial.ui:317
@@ -27305,11 +27317,11 @@ msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
-#. BSEWE
+#. APG3W
#: sc/uiconfig/scalc/ui/pastespecial.ui:328
msgctxt "pastespecial|text"
-msgid "Te_xt"
-msgstr "Атеқст"
+msgid "Text"
+msgstr ""
#. JWDk5
#: sc/uiconfig/scalc/ui/pastespecial.ui:336
@@ -27317,11 +27329,11 @@ msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
-#. DBaJD
+#. HEwjB
#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
-msgid "_Date & time"
-msgstr "Арыцхәи аамҭеи"
+msgid "Date & time"
+msgstr ""
#. jq6Md
#: sc/uiconfig/scalc/ui/pastespecial.ui:355
@@ -27329,11 +27341,11 @@ msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
-#. aHXF8
+#. HKgB9
#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
-msgid "For_mats"
-msgstr "Аформатқәа"
+msgid "Formats"
+msgstr ""
#. ehyEf
#: sc/uiconfig/scalc/ui/pastespecial.ui:374
@@ -27341,11 +27353,11 @@ msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
-#. NT4Am
+#. vAFRC
#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
-msgid "_Comments"
-msgstr "Акомментариқәа"
+msgid "Comments"
+msgstr ""
#. 3uP7i
#: sc/uiconfig/scalc/ui/pastespecial.ui:393
@@ -27353,10 +27365,10 @@ 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
+#. 5n5r7
#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
-msgid "Ob_jects"
+msgid "Objects"
msgstr ""
#. DZsnr
@@ -27365,10 +27377,10 @@ 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
+#. 2wYuG
#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
-msgid "F_ormulas"
+msgid "Formulas"
msgstr ""
#. Na5Ba
@@ -27383,10 +27395,10 @@ msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
-#. fonBJ
+#. SKs5y
#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
-msgid "Don't sh_ift"
+msgid "Don't shift"
msgstr ""
#. q3Xv3
@@ -27395,10 +27407,10 @@ msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
-#. RuiU6
+#. 4hD8A
#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
-msgid "_Down"
+msgid "Down"
msgstr ""
#. BNALN
@@ -27407,11 +27419,11 @@ msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
-#. obSAt
+#. Psyof
#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
-msgid "_Right"
-msgstr "Арыӷьарахь"
+msgid "Right"
+msgstr ""
#. GEFe7
#: sc/uiconfig/scalc/ui/pastespecial.ui:528
@@ -27425,10 +27437,10 @@ msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
-#. nuJd9
+#. JXJTf
#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
-msgid "As _Link"
+msgid "As Link"
msgstr ""
#. Bg9dc
@@ -27437,10 +27449,10 @@ 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
+#. 7yzbi
#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
-msgid "Trans_pose"
+msgid "Transpose"
msgstr ""
#. P3eE4
@@ -27449,10 +27461,10 @@ 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
+#. 3VcAr
#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
-msgid "_Skip empty cells"
+msgid "Skip empty cells"
msgstr ""
#. BodqB
@@ -27473,11 +27485,11 @@ msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr ""
-#. nJiy4
+#. ekYg5
#: sc/uiconfig/scalc/ui/pastespecial.ui:681
msgctxt "pastespecial|none"
-msgid "Non_e"
-msgstr "Мап"
+msgid "None"
+msgstr ""
#. 7GKDG
#: sc/uiconfig/scalc/ui/pastespecial.ui:690
@@ -27485,11 +27497,11 @@ 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
+#. QhQnq
#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
-msgid "_Add"
-msgstr "Иацҵатәуп"
+msgid "Add"
+msgstr ""
#. bNyh2
#: sc/uiconfig/scalc/ui/pastespecial.ui:711
@@ -27497,10 +27509,10 @@ 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
+#. 4SmrC
#: sc/uiconfig/scalc/ui/pastespecial.ui:723
msgctxt "pastespecial|subtract"
-msgid "_Subtract"
+msgid "Subtract"
msgstr ""
#. 2SKbT
@@ -27509,10 +27521,10 @@ msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
-#. zdDUB
+#. 4HCRU
#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
-msgid "_Multiply"
+msgid "Multiply"
msgstr ""
#. jkRDm
@@ -27521,10 +27533,10 @@ msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
-#. 7Nd8u
+#. 55rBT
#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
-msgid "_Divide"
+msgid "Divide"
msgstr ""
#. 9VKdS
@@ -30244,307 +30256,307 @@ msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:155
+#: sc/uiconfig/scalc/ui/solverdlg.ui:162
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:166
+#: sc/uiconfig/scalc/ui/solverdlg.ui:173
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Аминимум"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:178
+#: sc/uiconfig/scalc/ui/solverdlg.ui:185
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:189
+#: sc/uiconfig/scalc/ui/solverdlg.ui:196
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Амаксимум"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:201
+#: sc/uiconfig/scalc/ui/solverdlg.ui:208
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:226
+#: sc/uiconfig/scalc/ui/solverdlg.ui:233
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:269
+#: sc/uiconfig/scalc/ui/solverdlg.ui:276
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:312
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:317
+#: sc/uiconfig/scalc/ui/solverdlg.ui:324
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:342
+#: sc/uiconfig/scalc/ui/solverdlg.ui:349
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:428
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:442
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "Аоперациа"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:456
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Аҵакы"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:476
+#: sc/uiconfig/scalc/ui/solverdlg.ui:483
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:495
+#: sc/uiconfig/scalc/ui/solverdlg.ui:502
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:514
+#: sc/uiconfig/scalc/ui/solverdlg.ui:521
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:533
+#: sc/uiconfig/scalc/ui/solverdlg.ui:540
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:591
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:592
+#: sc/uiconfig/scalc/ui/solverdlg.ui:599
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:593
+#: sc/uiconfig/scalc/ui/solverdlg.ui:600
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:594
+#: sc/uiconfig/scalc/ui/solverdlg.ui:601
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr ""
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:595
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr ""
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:599
+#: sc/uiconfig/scalc/ui/solverdlg.ui:606
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Аоперациа"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:613
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:614
+#: sc/uiconfig/scalc/ui/solverdlg.ui:621
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:615
+#: sc/uiconfig/scalc/ui/solverdlg.ui:622
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:616
+#: sc/uiconfig/scalc/ui/solverdlg.ui:623
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr ""
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:617
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr ""
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:621
+#: sc/uiconfig/scalc/ui/solverdlg.ui:628
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Аоперациа"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:635
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:636
+#: sc/uiconfig/scalc/ui/solverdlg.ui:643
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:637
+#: sc/uiconfig/scalc/ui/solverdlg.ui:644
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:638
+#: sc/uiconfig/scalc/ui/solverdlg.ui:645
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr ""
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:639
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr ""
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:643
+#: sc/uiconfig/scalc/ui/solverdlg.ui:650
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Аоперациа"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:657
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:658
+#: sc/uiconfig/scalc/ui/solverdlg.ui:665
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:659
+#: sc/uiconfig/scalc/ui/solverdlg.ui:666
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:660
+#: sc/uiconfig/scalc/ui/solverdlg.ui:667
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr ""
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:661
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr ""
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:665
+#: sc/uiconfig/scalc/ui/solverdlg.ui:672
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Аоперациа"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:685
+#: sc/uiconfig/scalc/ui/solverdlg.ui:692
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Аҵакы"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:705
+#: sc/uiconfig/scalc/ui/solverdlg.ui:712
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Аҵакы"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:725
+#: sc/uiconfig/scalc/ui/solverdlg.ui:732
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Аҵакы"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:745
+#: sc/uiconfig/scalc/ui/solverdlg.ui:752
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Аҵакы"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:803
+#: sc/uiconfig/scalc/ui/solverdlg.ui:810
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Ианыхтәуп"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:815
+#: sc/uiconfig/scalc/ui/solverdlg.ui:822
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Ианыхтәуп"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:827
+#: sc/uiconfig/scalc/ui/solverdlg.ui:834
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Ианыхтәуп"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:839
+#: sc/uiconfig/scalc/ui/solverdlg.ui:846
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Ианыхтәуп"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:862
+#: sc/uiconfig/scalc/ui/solverdlg.ui:869
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:895
+#: sc/uiconfig/scalc/ui/solverdlg.ui:899
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
@@ -30652,13 +30664,13 @@ msgid "Sort"
msgstr "Асортра"
#. BMbZ7
-#: sc/uiconfig/scalc/ui/sortdialog.ui:139
+#: sc/uiconfig/scalc/ui/sortdialog.ui:112
msgctxt "sortdialog|criteria"
msgid "Sort Criteria"
msgstr ""
#. gMSdg
-#: sc/uiconfig/scalc/ui/sortdialog.ui:186
+#: sc/uiconfig/scalc/ui/sortdialog.ui:135
msgctxt "sortdialog|options"
msgid "Options"
msgstr "Апараметрқәа"
@@ -30951,6 +30963,102 @@ msgctxt "sortwarning|sorttip"
msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
msgstr ""
+#. 5YeNV
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:8
+msgctxt "SparklineDialog"
+msgid "Sparkline Dialog"
+msgstr ""
+
+#. Atj7n
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:161
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Input range:"
+msgstr ""
+
+#. gYQBd
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:178
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Output range:"
+msgstr ""
+
+#. faM2q
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:197
+msgctxt "SparklineDialog|label-data"
+msgid "Data"
+msgstr ""
+
+#. mcBDU
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:231
+msgctxt "SparklineDialog|label-series"
+msgid "Series:"
+msgstr ""
+
+#. N5L8b
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:246
+msgctxt "SparklineDialog|label-negative"
+msgid "Negative Points:"
+msgstr ""
+
+#. y5dsG
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:318
+msgctxt "SparklineDialog|label-low"
+msgid "Low Points:"
+msgstr ""
+
+#. LRGMH
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:390
+msgctxt "SparklineDialog|label-high"
+msgid "High Points:"
+msgstr ""
+
+#. WSgFy
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:426
+msgctxt "SparklineDialog|label-marker"
+msgid "Marker:"
+msgstr ""
+
+#. 6kVrt
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:556
+msgctxt "SparklineDialog|label-first"
+msgid "First Points:"
+msgstr ""
+
+#. tdvGa
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:572
+msgctxt "SparklineDialog|label-last"
+msgid "Last Points:"
+msgstr ""
+
+#. UAFwj
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:588
+msgctxt "SparklineDialog|label-type"
+msgid "Type:"
+msgstr ""
+
+#. gxMQL
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:608
+msgctxt "SparklineDialog|line-radiobutton"
+msgid "Line"
+msgstr ""
+
+#. VPdbn
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:627
+msgctxt "SparklineDialog|column-radiobutton"
+msgid "Column"
+msgstr ""
+
+#. oLsAN
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:646
+msgctxt "SparklineDialog|stacked-radiobutton"
+msgid "Stacked"
+msgstr ""
+
+#. 9uKMb
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:688
+msgctxt "SparklineDialog|label-properties"
+msgid "Properties"
+msgstr ""
+
#. p9BBw
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29
msgctxt "splitcolumnentry|name"
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index 22969f2b308..e8dd251cda6 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: 2022-02-21 15:23+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\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"
@@ -9073,10 +9073,10 @@ msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
msgstr ""
-#. GuDqe
+#. CA9F9
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1195
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
-msgid "Select a full hd resolution for a very high quality slide display."
+msgid "Select a full HD resolution for a very high-quality slide display."
msgstr ""
#. zsvW6
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index dcb12209f79..0811d9698cd 100644
--- a/source/ab/sfx2/messages.po
+++ b/source/ab/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-09 16:46+0100\n"
+"POT-Creation-Date: 2022-04-01 00:20+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"
@@ -1576,334 +1576,346 @@ msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr ""
+#. BSyb4
+#: include/sfx2/strings.hrc:293
+msgctxt "STR_REFRESH_MASTER_PASSWORD"
+msgid "The master password is stored in an outdated format, you should refresh it"
+msgstr ""
+
+#. ysChU
+#: include/sfx2/strings.hrc:294
+msgctxt "STR_REFRESH_PASSWORD"
+msgid "Refresh Password"
+msgstr ""
+
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:331
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Иқәгатәуп"
#. JReRY
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:332
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:334
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:335
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:338
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:340
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:342
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:345
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:350
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:357
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
@@ -1974,291 +1986,291 @@ msgid "_Yes"
msgstr ""
#. F5rSU
-#: sfx2/inc/dinfdlg.hrc:27
+#: sfx2/inc/dinfdlg.hrc:29
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Checked by"
msgstr ""
#. BCYGG
-#: sfx2/inc/dinfdlg.hrc:28
+#: sfx2/inc/dinfdlg.hrc:30
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Client"
msgstr ""
#. nSrT3
-#: sfx2/inc/dinfdlg.hrc:29
+#: sfx2/inc/dinfdlg.hrc:31
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date completed"
msgstr "Ахыркәшара арыцхә"
#. HEaEC
-#: sfx2/inc/dinfdlg.hrc:30
+#: sfx2/inc/dinfdlg.hrc:32
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Department"
msgstr "Аҟәша"
#. TxAux
-#: sfx2/inc/dinfdlg.hrc:31
+#: sfx2/inc/dinfdlg.hrc:33
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Destinations"
msgstr ""
#. f3nqh
-#: sfx2/inc/dinfdlg.hrc:32
+#: sfx2/inc/dinfdlg.hrc:34
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Disposition"
msgstr ""
#. uznMD
-#: sfx2/inc/dinfdlg.hrc:33
+#: sfx2/inc/dinfdlg.hrc:35
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Division"
msgstr ""
#. 6DuFF
-#: sfx2/inc/dinfdlg.hrc:34
+#: sfx2/inc/dinfdlg.hrc:36
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Document number"
msgstr ""
#. XXKuP
-#: sfx2/inc/dinfdlg.hrc:35
+#: sfx2/inc/dinfdlg.hrc:37
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Editor"
msgstr "Аредактор"
#. hRRmF
-#: sfx2/inc/dinfdlg.hrc:36
+#: sfx2/inc/dinfdlg.hrc:38
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Email"
msgstr ""
#. xNvDx
-#: sfx2/inc/dinfdlg.hrc:37
+#: sfx2/inc/dinfdlg.hrc:39
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Forward to"
msgstr ""
#. xwv85
-#: sfx2/inc/dinfdlg.hrc:38
+#: sfx2/inc/dinfdlg.hrc:40
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Group"
msgstr "Агәыҧ"
#. u59Qp
-#: sfx2/inc/dinfdlg.hrc:39
+#: sfx2/inc/dinfdlg.hrc:41
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Info"
msgstr ""
#. Ltq9H
-#: sfx2/inc/dinfdlg.hrc:40
+#: sfx2/inc/dinfdlg.hrc:42
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Language"
msgstr "Абызшәа"
#. bv3HC
-#: sfx2/inc/dinfdlg.hrc:41
+#: sfx2/inc/dinfdlg.hrc:43
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Mailstop"
msgstr ""
#. AFGi2
-#: sfx2/inc/dinfdlg.hrc:42
+#: sfx2/inc/dinfdlg.hrc:44
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Matter"
msgstr ""
#. wGAD6
-#: sfx2/inc/dinfdlg.hrc:43
+#: sfx2/inc/dinfdlg.hrc:45
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Office"
msgstr "Аофис"
#. ZqphY
-#: sfx2/inc/dinfdlg.hrc:44
+#: sfx2/inc/dinfdlg.hrc:46
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Owner"
msgstr ""
#. mK8Th
-#: sfx2/inc/dinfdlg.hrc:45
+#: sfx2/inc/dinfdlg.hrc:47
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Project"
msgstr ""
#. zFeHt
-#: sfx2/inc/dinfdlg.hrc:46
+#: sfx2/inc/dinfdlg.hrc:48
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Publisher"
msgstr "Аҭыжьҩы:"
#. pF2eJ
-#: sfx2/inc/dinfdlg.hrc:47
+#: sfx2/inc/dinfdlg.hrc:49
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Purpose"
msgstr ""
#. GTPFZ
-#: sfx2/inc/dinfdlg.hrc:48
+#: sfx2/inc/dinfdlg.hrc:50
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Received from"
msgstr ""
#. dvGyQ
-#: sfx2/inc/dinfdlg.hrc:49
+#: sfx2/inc/dinfdlg.hrc:51
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded by"
msgstr ""
#. GjVXD
-#: sfx2/inc/dinfdlg.hrc:50
+#: sfx2/inc/dinfdlg.hrc:52
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded date"
msgstr "Анҵамҭа арыцхә"
#. o5oXa
-#: sfx2/inc/dinfdlg.hrc:51
+#: sfx2/inc/dinfdlg.hrc:53
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Reference"
msgstr "Азхьарҧш"
#. ex26g
-#: sfx2/inc/dinfdlg.hrc:52
+#: sfx2/inc/dinfdlg.hrc:54
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Source"
msgstr ""
#. 4HSZB
-#: sfx2/inc/dinfdlg.hrc:53
+#: sfx2/inc/dinfdlg.hrc:55
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Status"
msgstr "Аҭагылазаашьа"
#. U3RdC
-#: sfx2/inc/dinfdlg.hrc:54
+#: sfx2/inc/dinfdlg.hrc:56
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Telephone number"
msgstr ""
#. Geeuu
-#: sfx2/inc/dinfdlg.hrc:55
+#: sfx2/inc/dinfdlg.hrc:57
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Typist"
msgstr ""
#. xxHtR
-#: sfx2/inc/dinfdlg.hrc:56
+#: sfx2/inc/dinfdlg.hrc:58
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "URL"
msgstr "URL"
#. CxTQY
-#: sfx2/inc/dinfdlg.hrc:71
+#: sfx2/inc/dinfdlg.hrc:73
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Text"
msgstr "Атеқст"
#. MMGFi
-#: sfx2/inc/dinfdlg.hrc:72
+#: sfx2/inc/dinfdlg.hrc:74
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "DateTime"
msgstr "Арыцхәи аамҭеи"
#. GvJMH
-#: sfx2/inc/dinfdlg.hrc:73
+#: sfx2/inc/dinfdlg.hrc:75
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date"
msgstr "Арыцхә"
#. GyrbX
-#: sfx2/inc/dinfdlg.hrc:74
+#: sfx2/inc/dinfdlg.hrc:76
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Duration"
msgstr ""
#. CxZ4Z
-#: sfx2/inc/dinfdlg.hrc:75
+#: sfx2/inc/dinfdlg.hrc:77
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Number"
msgstr "Ахыҧхьаӡара"
#. CDgvL
-#: sfx2/inc/dinfdlg.hrc:76
+#: sfx2/inc/dinfdlg.hrc:78
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Yes or no"
msgstr ""
#. AxhLy
-#: sfx2/inc/doctempl.hrc:27
+#: sfx2/inc/doctempl.hrc:29
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "My Templates"
msgstr "Сара сшаблонқәа"
#. 5aNp8
-#: sfx2/inc/doctempl.hrc:28
+#: sfx2/inc/doctempl.hrc:30
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Styles"
msgstr "Астильқәа"
#. t5QK9
-#: sfx2/inc/doctempl.hrc:29
+#: sfx2/inc/doctempl.hrc:31
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Business Correspondence"
msgstr ""
#. Y79e8
-#: sfx2/inc/doctempl.hrc:30
+#: sfx2/inc/doctempl.hrc:32
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Other Business Documents"
msgstr ""
#. 2RCC9
-#: sfx2/inc/doctempl.hrc:31
+#: sfx2/inc/doctempl.hrc:33
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Personal Correspondence and Documents"
msgstr ""
#. 6Dgiz
-#: sfx2/inc/doctempl.hrc:32
+#: sfx2/inc/doctempl.hrc:34
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Forms and Contracts"
msgstr ""
#. VCKTG
-#: sfx2/inc/doctempl.hrc:33
+#: sfx2/inc/doctempl.hrc:35
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Finances"
msgstr "Афинансқәа"
#. HmqGP
-#: sfx2/inc/doctempl.hrc:34
+#: sfx2/inc/doctempl.hrc:36
#, fuzzy
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Education"
msgstr "Аиҟаратә"
#. xopM8
-#: sfx2/inc/doctempl.hrc:35
+#: sfx2/inc/doctempl.hrc:37
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentation Backgrounds"
msgstr ""
#. tSQLA
-#: sfx2/inc/doctempl.hrc:36
+#: sfx2/inc/doctempl.hrc:38
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentations"
msgstr "Апрезентациақәа"
#. KuNzz
-#: sfx2/inc/doctempl.hrc:37
+#: sfx2/inc/doctempl.hrc:39
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Miscellaneous"
msgstr ""
#. SC4E5
-#: sfx2/inc/doctempl.hrc:38
+#: sfx2/inc/doctempl.hrc:40
#, fuzzy
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
diff --git a/source/ab/starmath/messages.po b/source/ab/starmath/messages.po
index d71244c9fed..daadaedfb7c 100644
--- a/source/ab/starmath/messages.po
+++ b/source/ab/starmath/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: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2019-06-25 09:42+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,409 +16,409 @@ msgstr ""
"X-POOTLE-MTIME: 1561455758.000000\n"
#. GrDhX
-#: starmath/inc/smmod.hrc:16
+#: starmath/inc/smmod.hrc:18
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Greek"
msgstr "Абырзентә"
#. bApbv
-#: starmath/inc/smmod.hrc:17
+#: starmath/inc/smmod.hrc:19
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Special"
msgstr "Испециалу"
#. aXhLc
-#: starmath/inc/smmod.hrc:22
+#: starmath/inc/smmod.hrc:24
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "alpha"
msgstr "alpha"
#. rhVhw
-#: starmath/inc/smmod.hrc:23
+#: starmath/inc/smmod.hrc:25
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ALPHA"
msgstr "ALPHA"
#. U3CqD
-#: starmath/inc/smmod.hrc:24
+#: starmath/inc/smmod.hrc:26
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "beta"
msgstr "beta"
#. pEoCL
-#: starmath/inc/smmod.hrc:25
+#: starmath/inc/smmod.hrc:27
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "BETA"
msgstr "BETA"
#. D2jkQ
-#: starmath/inc/smmod.hrc:26
+#: starmath/inc/smmod.hrc:28
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "gamma"
msgstr "gamma"
#. 4Cw8A
-#: starmath/inc/smmod.hrc:27
+#: starmath/inc/smmod.hrc:29
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "GAMMA"
msgstr "GAMMA"
#. uMmke
-#: starmath/inc/smmod.hrc:28
+#: starmath/inc/smmod.hrc:30
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "delta"
msgstr "delta"
#. dBy8u
-#: starmath/inc/smmod.hrc:29
+#: starmath/inc/smmod.hrc:31
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "DELTA"
msgstr "DELTA"
#. CrJqB
-#: starmath/inc/smmod.hrc:30
+#: starmath/inc/smmod.hrc:32
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "epsilon"
msgstr "epsilon"
#. jSZ7F
-#: starmath/inc/smmod.hrc:31
+#: starmath/inc/smmod.hrc:33
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "EPSILON"
msgstr "EPSILON"
#. kRvNs
-#: starmath/inc/smmod.hrc:32
+#: starmath/inc/smmod.hrc:34
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "zeta"
msgstr "zeta"
#. YA3sh
-#: starmath/inc/smmod.hrc:33
+#: starmath/inc/smmod.hrc:35
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ZETA"
msgstr "ZETA"
#. kEWFU
-#: starmath/inc/smmod.hrc:34
+#: starmath/inc/smmod.hrc:36
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "eta"
msgstr "eta"
#. r8ivE
-#: starmath/inc/smmod.hrc:35
+#: starmath/inc/smmod.hrc:37
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ETA"
msgstr "ETA"
#. CaW5B
-#: starmath/inc/smmod.hrc:36
+#: starmath/inc/smmod.hrc:38
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "theta"
msgstr "theta"
#. MUaj7
-#: starmath/inc/smmod.hrc:37
+#: starmath/inc/smmod.hrc:39
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "THETA"
msgstr "THETA"
#. FAdCp
-#: starmath/inc/smmod.hrc:38
+#: starmath/inc/smmod.hrc:40
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "iota"
msgstr "iota"
#. 2RFqS
-#: starmath/inc/smmod.hrc:39
+#: starmath/inc/smmod.hrc:41
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "IOTA"
msgstr "IOTA"
#. E6LBi
-#: starmath/inc/smmod.hrc:40
+#: starmath/inc/smmod.hrc:42
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "kappa"
msgstr "kappa"
#. PGGyZ
-#: starmath/inc/smmod.hrc:41
+#: starmath/inc/smmod.hrc:43
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "KAPPA"
msgstr "KAPPA"
#. QhGid
-#: starmath/inc/smmod.hrc:42
+#: starmath/inc/smmod.hrc:44
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "lambda"
msgstr "lambda"
#. JBLgu
-#: starmath/inc/smmod.hrc:43
+#: starmath/inc/smmod.hrc:45
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "LAMBDA"
msgstr "LAMBDA"
#. AkyEU
-#: starmath/inc/smmod.hrc:44
+#: starmath/inc/smmod.hrc:46
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "mu"
msgstr "mu"
#. t4RFD
-#: starmath/inc/smmod.hrc:45
+#: starmath/inc/smmod.hrc:47
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "MU"
msgstr "MU"
#. DwBRA
-#: starmath/inc/smmod.hrc:46
+#: starmath/inc/smmod.hrc:48
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "nu"
msgstr "nu"
#. sDc6Z
-#: starmath/inc/smmod.hrc:47
+#: starmath/inc/smmod.hrc:49
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "NU"
msgstr "NU"
#. dMns2
-#: starmath/inc/smmod.hrc:48
+#: starmath/inc/smmod.hrc:50
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "xi"
msgstr "xi"
#. 2cEVh
-#: starmath/inc/smmod.hrc:49
+#: starmath/inc/smmod.hrc:51
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "XI"
msgstr "XI"
#. PWUDK
-#: starmath/inc/smmod.hrc:50
+#: starmath/inc/smmod.hrc:52
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omicron"
msgstr "omicron"
#. ZvPw7
-#: starmath/inc/smmod.hrc:51
+#: starmath/inc/smmod.hrc:53
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMICRON"
msgstr "OMICRON"
#. VmDhA
-#: starmath/inc/smmod.hrc:52
+#: starmath/inc/smmod.hrc:54
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "pi"
msgstr "pi"
#. A3eoZ
-#: starmath/inc/smmod.hrc:53
+#: starmath/inc/smmod.hrc:55
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PI"
msgstr "PI"
#. Pu9vL
-#: starmath/inc/smmod.hrc:54
+#: starmath/inc/smmod.hrc:56
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "rho"
msgstr "rho"
#. HjNFe
-#: starmath/inc/smmod.hrc:55
+#: starmath/inc/smmod.hrc:57
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "RHO"
msgstr "RHO"
#. 9Aa3V
-#: starmath/inc/smmod.hrc:56
+#: starmath/inc/smmod.hrc:58
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "sigma"
msgstr "sigma"
#. JLWqn
-#: starmath/inc/smmod.hrc:57
+#: starmath/inc/smmod.hrc:59
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "SIGMA"
msgstr "SIGMA"
#. NTuqk
-#: starmath/inc/smmod.hrc:58
+#: starmath/inc/smmod.hrc:60
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tau"
msgstr "tau"
#. GdhQ5
-#: starmath/inc/smmod.hrc:59
+#: starmath/inc/smmod.hrc:61
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "TAU"
msgstr "TAU"
#. 6djSp
-#: starmath/inc/smmod.hrc:60
+#: starmath/inc/smmod.hrc:62
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "upsilon"
msgstr "upsilon"
#. ymFBb
-#: starmath/inc/smmod.hrc:61
+#: starmath/inc/smmod.hrc:63
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "UPSILON"
msgstr "UPSILON"
#. YxRXi
-#: starmath/inc/smmod.hrc:62
+#: starmath/inc/smmod.hrc:64
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "phi"
msgstr "phi"
#. enCD7
-#: starmath/inc/smmod.hrc:63
+#: starmath/inc/smmod.hrc:65
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PHI"
msgstr "PHI"
#. GcQPF
-#: starmath/inc/smmod.hrc:64
+#: starmath/inc/smmod.hrc:66
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "chi"
msgstr "chi"
#. 6SBnr
-#: starmath/inc/smmod.hrc:65
+#: starmath/inc/smmod.hrc:67
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "CHI"
msgstr "CHI"
#. NAmaK
-#: starmath/inc/smmod.hrc:66
+#: starmath/inc/smmod.hrc:68
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "psi"
msgstr "psi"
#. GLZ2h
-#: starmath/inc/smmod.hrc:67
+#: starmath/inc/smmod.hrc:69
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PSI"
msgstr "PSI"
#. JEF5A
-#: starmath/inc/smmod.hrc:68
+#: starmath/inc/smmod.hrc:70
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omega"
msgstr "omega"
#. 9QKj8
-#: starmath/inc/smmod.hrc:69
+#: starmath/inc/smmod.hrc:71
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMEGA"
msgstr "OMEGA"
#. YQGDY
-#: starmath/inc/smmod.hrc:70
+#: starmath/inc/smmod.hrc:72
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varepsilon"
msgstr "varepsilon"
#. VLAFM
-#: starmath/inc/smmod.hrc:71
+#: starmath/inc/smmod.hrc:73
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "vartheta"
msgstr "vjlr"
#. UJB26
-#: starmath/inc/smmod.hrc:72
+#: starmath/inc/smmod.hrc:74
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varpi"
msgstr "varpi"
#. BCNqp
-#: starmath/inc/smmod.hrc:73
+#: starmath/inc/smmod.hrc:75
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varrho"
msgstr "varrho"
#. SUNDb
-#: starmath/inc/smmod.hrc:74
+#: starmath/inc/smmod.hrc:76
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varsigma"
msgstr "varsigma"
#. cHCgN
-#: starmath/inc/smmod.hrc:75
+#: starmath/inc/smmod.hrc:77
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varphi"
msgstr "varphi"
#. c9n9F
-#: starmath/inc/smmod.hrc:76
+#: starmath/inc/smmod.hrc:78
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "element"
msgstr "element"
#. yXYWE
-#: starmath/inc/smmod.hrc:77
+#: starmath/inc/smmod.hrc:79
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "noelement"
msgstr "noelement"
#. nDkSp
-#: starmath/inc/smmod.hrc:78
+#: starmath/inc/smmod.hrc:80
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlylessthan"
msgstr "strictlylessthan"
#. 9AZxy
-#: starmath/inc/smmod.hrc:79
+#: starmath/inc/smmod.hrc:81
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlygreaterthan"
msgstr "strictlygreaterthan"
#. 4F3qH
-#: starmath/inc/smmod.hrc:80
+#: starmath/inc/smmod.hrc:82
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "notequal"
msgstr "notequal"
#. 6UYC3
-#: starmath/inc/smmod.hrc:81
+#: starmath/inc/smmod.hrc:83
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "identical"
msgstr "identical"
#. 38B2B
-#: starmath/inc/smmod.hrc:82
+#: starmath/inc/smmod.hrc:84
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tendto"
msgstr "tendto"
#. kDCC4
-#: starmath/inc/smmod.hrc:83
+#: starmath/inc/smmod.hrc:85
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "infinite"
msgstr "infinite"
#. CnJUL
-#: starmath/inc/smmod.hrc:84
+#: starmath/inc/smmod.hrc:86
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "angle"
msgstr "акәакь"
#. MVfFZ
-#: starmath/inc/smmod.hrc:85
+#: starmath/inc/smmod.hrc:87
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "perthousand"
msgstr "perthousand"
#. tqFYX
-#: starmath/inc/smmod.hrc:86
+#: starmath/inc/smmod.hrc:88
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "and"
msgstr "и"
#. jFASF
-#: starmath/inc/smmod.hrc:87
+#: starmath/inc/smmod.hrc:89
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "or"
msgstr "ма"
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index 4413161664e..8a134e1473f 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\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"
@@ -1800,115 +1800,115 @@ msgid "_Yes"
msgstr ""
#. tBGDJ
-#: svtools/inc/borderline.hrc:17
+#: svtools/inc/borderline.hrc:18
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "None"
msgstr "Мап"
#. Xx4Fb
-#: svtools/inc/borderline.hrc:18
+#: svtools/inc/borderline.hrc:19
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Solid"
msgstr ""
#. Paqxg
-#: svtools/inc/borderline.hrc:19
+#: svtools/inc/borderline.hrc:20
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dotted"
msgstr ""
#. Bucas
-#: svtools/inc/borderline.hrc:20
+#: svtools/inc/borderline.hrc:21
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dashed"
msgstr ""
#. 6XEca
-#: svtools/inc/borderline.hrc:21
+#: svtools/inc/borderline.hrc:22
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double"
msgstr ""
#. fB75B
-#: svtools/inc/borderline.hrc:22
+#: svtools/inc/borderline.hrc:23
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Small Gap"
msgstr ""
#. MwnWC
-#: svtools/inc/borderline.hrc:23
+#: svtools/inc/borderline.hrc:24
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Medium Gap"
msgstr ""
#. V2QAy
-#: svtools/inc/borderline.hrc:24
+#: svtools/inc/borderline.hrc:25
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Large Gap"
msgstr ""
#. 4pwSe
-#: svtools/inc/borderline.hrc:25
+#: svtools/inc/borderline.hrc:26
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Small Gap"
msgstr ""
#. PYjTF
-#: svtools/inc/borderline.hrc:26
+#: svtools/inc/borderline.hrc:27
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Medium Gap"
msgstr ""
#. EYXfK
-#: svtools/inc/borderline.hrc:27
+#: svtools/inc/borderline.hrc:28
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Large Gap"
msgstr ""
#. 7gh6t
-#: svtools/inc/borderline.hrc:28
+#: svtools/inc/borderline.hrc:29
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Embossed"
msgstr ""
#. WK8Yy
-#: svtools/inc/borderline.hrc:29
+#: svtools/inc/borderline.hrc:30
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Engraved"
msgstr ""
#. NDS6G
-#: svtools/inc/borderline.hrc:30
+#: svtools/inc/borderline.hrc:31
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Outset"
msgstr "Адәныҟала"
#. 7m7iw
-#: svtools/inc/borderline.hrc:31
+#: svtools/inc/borderline.hrc:32
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Inset"
msgstr "Аҩныҵҟа"
#. F9rwV
-#: svtools/inc/borderline.hrc:32
+#: svtools/inc/borderline.hrc:33
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Fine Dashed"
msgstr ""
#. GyT7A
-#: svtools/inc/borderline.hrc:33
+#: svtools/inc/borderline.hrc:34
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double Thin"
msgstr ""
#. FyVvE
-#: svtools/inc/borderline.hrc:34
+#: svtools/inc/borderline.hrc:35
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot"
msgstr ""
#. 7yoVE
-#: svtools/inc/borderline.hrc:35
+#: svtools/inc/borderline.hrc:36
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot Dot"
msgstr ""
@@ -2533,2473 +2533,2473 @@ msgid "$(ERR) activating object"
msgstr ""
#. jGYA8
-#: svtools/inc/langtab.hrc:28
+#: svtools/inc/langtab.hrc:29
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "[None]"
msgstr "[Агәаҭара ада]"
#. aUWzb
-#: svtools/inc/langtab.hrc:29
+#: svtools/inc/langtab.hrc:30
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Unknown"
msgstr "Идырым"
#. AQgxZ
-#: svtools/inc/langtab.hrc:30 svtools/inc/langtab.hrc:31
+#: svtools/inc/langtab.hrc:31 svtools/inc/langtab.hrc:32
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Default"
msgstr "Астандарт"
#. hsqmD
-#: svtools/inc/langtab.hrc:32
+#: svtools/inc/langtab.hrc:33
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (South Africa)"
msgstr "Африкаанс (Аладатәи Африка)"
#. TVGco
-#: svtools/inc/langtab.hrc:33
+#: svtools/inc/langtab.hrc:34
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Albanian"
msgstr "Албаниатәи"
#. unNc6
-#: svtools/inc/langtab.hrc:34
+#: svtools/inc/langtab.hrc:35
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic"
msgstr "Арабтәи"
#. yStAU
-#: svtools/inc/langtab.hrc:35
+#: svtools/inc/langtab.hrc:36
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Algeria)"
msgstr "Арабтәи (Алжир)"
#. 6GPFd
-#: svtools/inc/langtab.hrc:36
+#: svtools/inc/langtab.hrc:37
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Bahrain)"
msgstr "Арабтәи (Бахреин)"
#. tvtct
-#: svtools/inc/langtab.hrc:37
+#: svtools/inc/langtab.hrc:38
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Chad)"
msgstr "Арабтәи (Чад)"
#. sAaq7
-#: svtools/inc/langtab.hrc:38
+#: svtools/inc/langtab.hrc:39
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Comoros)"
msgstr ""
#. CtwpU
-#: svtools/inc/langtab.hrc:39
+#: svtools/inc/langtab.hrc:40
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Djibouti)"
msgstr "Арабтәи (Джибути)"
#. XgGyg
-#: svtools/inc/langtab.hrc:40
+#: svtools/inc/langtab.hrc:41
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Egypt)"
msgstr "Арабтәи (Египет)"
#. iwYQR
-#: svtools/inc/langtab.hrc:41
+#: svtools/inc/langtab.hrc:42
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Eritrea)"
msgstr "Арабтәи (Еритреиа)"
#. nKF3r
-#: svtools/inc/langtab.hrc:42
+#: svtools/inc/langtab.hrc:43
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Iraq)"
msgstr "Арабтәи (Ирак)"
#. JdGNA
-#: svtools/inc/langtab.hrc:43
+#: svtools/inc/langtab.hrc:44
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Israel)"
msgstr "Арабтәи (Израиль)"
#. bVjMH
-#: svtools/inc/langtab.hrc:44
+#: svtools/inc/langtab.hrc:45
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Jordan)"
msgstr "Арабтәи (Иорданиа)"
#. 2tQFC
-#: svtools/inc/langtab.hrc:45
+#: svtools/inc/langtab.hrc:46
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Kuwait)"
msgstr "Арабтәи (Кувеит)"
#. EvECi
-#: svtools/inc/langtab.hrc:46
+#: svtools/inc/langtab.hrc:47
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Lebanon)"
msgstr "Арабтәи (Ливан)"
#. AWBGA
-#: svtools/inc/langtab.hrc:47
+#: svtools/inc/langtab.hrc:48
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Libya)"
msgstr "Арабтәи (Ливиа)"
#. FBSpG
-#: svtools/inc/langtab.hrc:48
+#: svtools/inc/langtab.hrc:49
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Mauritania)"
msgstr "Арабтәи (Мавританиа)"
#. YmCZY
-#: svtools/inc/langtab.hrc:49
+#: svtools/inc/langtab.hrc:50
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Morocco)"
msgstr "Арабтәи (Марокко)"
#. VB6tk
-#: svtools/inc/langtab.hrc:50
+#: svtools/inc/langtab.hrc:51
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Oman)"
msgstr "Арабтәи (Оман)"
#. ErqSh
-#: svtools/inc/langtab.hrc:51
+#: svtools/inc/langtab.hrc:52
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Palestine)"
msgstr "Арабтәи (Палестина)"
#. nURdz
-#: svtools/inc/langtab.hrc:52
+#: svtools/inc/langtab.hrc:53
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Qatar)"
msgstr "Арабтәи (Катар)"
#. FdyFU
-#: svtools/inc/langtab.hrc:53
+#: svtools/inc/langtab.hrc:54
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Saudi Arabia)"
msgstr ""
#. x8UtA
-#: svtools/inc/langtab.hrc:54
+#: svtools/inc/langtab.hrc:55
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Somalia)"
msgstr "Арабтәи (Сомали)"
#. y9ptg
-#: svtools/inc/langtab.hrc:55
+#: svtools/inc/langtab.hrc:56
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Sudan)"
msgstr "Арабтәи (Судан)"
#. caDrq
-#: svtools/inc/langtab.hrc:56
+#: svtools/inc/langtab.hrc:57
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Syria)"
msgstr "Арабтәи (Шьамтәыла)"
#. TqKZQ
-#: svtools/inc/langtab.hrc:57
+#: svtools/inc/langtab.hrc:58
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Tunisia)"
msgstr ""
#. VfYi2
-#: svtools/inc/langtab.hrc:58
+#: svtools/inc/langtab.hrc:59
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (UAE)"
msgstr ""
#. f7D5o
-#: svtools/inc/langtab.hrc:59
+#: svtools/inc/langtab.hrc:60
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Yemen)"
msgstr ""
#. vDhQJ
-#: svtools/inc/langtab.hrc:60
+#: svtools/inc/langtab.hrc:61
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aragonese"
msgstr ""
#. yE4TR
-#: svtools/inc/langtab.hrc:61
+#: svtools/inc/langtab.hrc:62
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Armenia)"
msgstr ""
#. bacGJ
-#: svtools/inc/langtab.hrc:62
+#: svtools/inc/langtab.hrc:63
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Assamese"
msgstr ""
#. xAg9Q
-#: svtools/inc/langtab.hrc:63
+#: svtools/inc/langtab.hrc:64
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Latin"
msgstr ""
#. juADB
-#: svtools/inc/langtab.hrc:64
+#: svtools/inc/langtab.hrc:65
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Cyrillic"
msgstr ""
#. C3C7G
-#: svtools/inc/langtab.hrc:65
+#: svtools/inc/langtab.hrc:66
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Basque"
msgstr ""
#. dJPsj
-#: svtools/inc/langtab.hrc:66
+#: svtools/inc/langtab.hrc:67
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (India)"
msgstr ""
#. K6cbb
-#: svtools/inc/langtab.hrc:67
+#: svtools/inc/langtab.hrc:68
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bulgarian"
msgstr ""
#. sBBmA
-#: svtools/inc/langtab.hrc:68
+#: svtools/inc/langtab.hrc:69
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Belarusian"
msgstr ""
#. 3SEoJ
-#: svtools/inc/langtab.hrc:69
+#: svtools/inc/langtab.hrc:70
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan"
msgstr ""
#. PoUeZ
-#: svtools/inc/langtab.hrc:70
+#: svtools/inc/langtab.hrc:71
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan (Valencian)"
msgstr ""
#. ErGw2
-#: svtools/inc/langtab.hrc:71
+#: svtools/inc/langtab.hrc:72
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (traditional)"
msgstr ""
#. Gbige
-#: svtools/inc/langtab.hrc:72
+#: svtools/inc/langtab.hrc:73
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (simplified)"
msgstr ""
#. WzgGw
-#: svtools/inc/langtab.hrc:73
+#: svtools/inc/langtab.hrc:74
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Hong Kong)"
msgstr ""
#. Kfrv5
-#: svtools/inc/langtab.hrc:74
+#: svtools/inc/langtab.hrc:75
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Singapore)"
msgstr ""
#. BSHqu
-#: svtools/inc/langtab.hrc:75
+#: svtools/inc/langtab.hrc:76
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Macau)"
msgstr ""
#. FMwd9
-#: svtools/inc/langtab.hrc:76
+#: svtools/inc/langtab.hrc:77
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Church Slavic"
msgstr ""
#. cAkoV
-#: svtools/inc/langtab.hrc:77
+#: svtools/inc/langtab.hrc:78
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Croatian"
msgstr ""
#. DjdDj
-#: svtools/inc/langtab.hrc:78
+#: svtools/inc/langtab.hrc:79
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Czech"
msgstr ""
#. xnGM2
-#: svtools/inc/langtab.hrc:79
+#: svtools/inc/langtab.hrc:80
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Danish"
msgstr ""
#. yMGyj
-#: svtools/inc/langtab.hrc:80
+#: svtools/inc/langtab.hrc:81
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Netherlands)"
msgstr ""
#. qgJE9
-#: svtools/inc/langtab.hrc:81
+#: svtools/inc/langtab.hrc:82
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Belgium)"
msgstr ""
#. STsDT
-#: svtools/inc/langtab.hrc:82
+#: svtools/inc/langtab.hrc:83
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (USA)"
msgstr ""
#. aCBBC
-#: svtools/inc/langtab.hrc:83
+#: svtools/inc/langtab.hrc:84
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (UK)"
msgstr ""
#. 46Cte
-#: svtools/inc/langtab.hrc:84
+#: svtools/inc/langtab.hrc:85
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English, OED spelling (UK)"
msgstr ""
#. XCJAF
-#: svtools/inc/langtab.hrc:85
+#: svtools/inc/langtab.hrc:86
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Australia)"
msgstr ""
#. KPGdA
-#: svtools/inc/langtab.hrc:86
+#: svtools/inc/langtab.hrc:87
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Canada)"
msgstr ""
#. vGWET
-#: svtools/inc/langtab.hrc:87
+#: svtools/inc/langtab.hrc:88
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (New Zealand)"
msgstr "Англыз бызшәа (Зеландиа Ҿыц)"
#. JpNB4
-#: svtools/inc/langtab.hrc:88
+#: svtools/inc/langtab.hrc:89
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ireland)"
msgstr ""
#. RYtwA
-#: svtools/inc/langtab.hrc:89
+#: svtools/inc/langtab.hrc:90
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (South Africa)"
msgstr ""
#. fEWbR
-#: svtools/inc/langtab.hrc:90
+#: svtools/inc/langtab.hrc:91
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Jamaica)"
msgstr ""
#. 4tDmL
-#: svtools/inc/langtab.hrc:91
+#: svtools/inc/langtab.hrc:92
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Caribbean)"
msgstr ""
#. craLz
-#: svtools/inc/langtab.hrc:92
+#: svtools/inc/langtab.hrc:93
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Belize)"
msgstr ""
#. oAnX9
-#: svtools/inc/langtab.hrc:93
+#: svtools/inc/langtab.hrc:94
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Trinidad)"
msgstr ""
#. DbBaG
-#: svtools/inc/langtab.hrc:94
+#: svtools/inc/langtab.hrc:95
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zimbabwe)"
msgstr ""
#. bGuDT
-#: svtools/inc/langtab.hrc:95
+#: svtools/inc/langtab.hrc:96
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Philippines)"
msgstr ""
#. sf7j9
-#: svtools/inc/langtab.hrc:96
+#: svtools/inc/langtab.hrc:97
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (India)"
msgstr ""
#. uqECc
-#: svtools/inc/langtab.hrc:97
+#: svtools/inc/langtab.hrc:98
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Estonian"
msgstr ""
#. AGGnV
-#: svtools/inc/langtab.hrc:98
+#: svtools/inc/langtab.hrc:99
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Finnish"
msgstr ""
#. UyH2X
-#: svtools/inc/langtab.hrc:99
+#: svtools/inc/langtab.hrc:100
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Faroese"
msgstr ""
#. riCt7
-#: svtools/inc/langtab.hrc:100
+#: svtools/inc/langtab.hrc:101
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Persian"
msgstr ""
#. FSxwV
-#: svtools/inc/langtab.hrc:101
+#: svtools/inc/langtab.hrc:102
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (France)"
msgstr ""
#. LGkgS
-#: svtools/inc/langtab.hrc:102
+#: svtools/inc/langtab.hrc:103
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Belgium)"
msgstr ""
#. TFQ8G
-#: svtools/inc/langtab.hrc:103
+#: svtools/inc/langtab.hrc:104
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Canada)"
msgstr ""
#. 8NnQa
-#: svtools/inc/langtab.hrc:104
+#: svtools/inc/langtab.hrc:105
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Switzerland)"
msgstr ""
#. DkXiH
-#: svtools/inc/langtab.hrc:105
+#: svtools/inc/langtab.hrc:106
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Luxembourg)"
msgstr ""
#. 8BeKQ
-#: svtools/inc/langtab.hrc:106
+#: svtools/inc/langtab.hrc:107
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Monaco)"
msgstr ""
#. DoQUZ
-#: svtools/inc/langtab.hrc:107
+#: svtools/inc/langtab.hrc:108
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gascon"
msgstr ""
#. 6m5ud
-#: svtools/inc/langtab.hrc:108
+#: svtools/inc/langtab.hrc:109
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Germany)"
msgstr ""
#. bTDdf
-#: svtools/inc/langtab.hrc:109
+#: svtools/inc/langtab.hrc:110
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Switzerland)"
msgstr ""
#. H6rUb
-#: svtools/inc/langtab.hrc:110
+#: svtools/inc/langtab.hrc:111
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Austria)"
msgstr ""
#. EXUrT
-#: svtools/inc/langtab.hrc:111
+#: svtools/inc/langtab.hrc:112
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Luxembourg)"
msgstr ""
#. wYXvd
-#: svtools/inc/langtab.hrc:112
+#: svtools/inc/langtab.hrc:113
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Liechtenstein)"
msgstr ""
#. yBvcg
-#: svtools/inc/langtab.hrc:113
+#: svtools/inc/langtab.hrc:114
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek"
msgstr "Абырзентә"
#. QzGHA
-#: svtools/inc/langtab.hrc:114
+#: svtools/inc/langtab.hrc:115
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gujarati"
msgstr ""
#. gU5Y9
-#: svtools/inc/langtab.hrc:115
+#: svtools/inc/langtab.hrc:116
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hebrew"
msgstr ""
#. vkmai
-#: svtools/inc/langtab.hrc:116
+#: svtools/inc/langtab.hrc:117
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hindi"
msgstr ""
#. FdD6d
-#: svtools/inc/langtab.hrc:117
+#: svtools/inc/langtab.hrc:118
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian"
msgstr ""
#. sRD2B
-#: svtools/inc/langtab.hrc:118
+#: svtools/inc/langtab.hrc:119
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Icelandic"
msgstr ""
#. K95FW
-#: svtools/inc/langtab.hrc:119
+#: svtools/inc/langtab.hrc:120
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Indonesian"
msgstr ""
#. dshDi
-#: svtools/inc/langtab.hrc:120
+#: svtools/inc/langtab.hrc:121
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Italy)"
msgstr ""
#. DELVB
-#: svtools/inc/langtab.hrc:121
+#: svtools/inc/langtab.hrc:122
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Switzerland)"
msgstr ""
#. ruFE2
-#: svtools/inc/langtab.hrc:122
+#: svtools/inc/langtab.hrc:123
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Japanese"
msgstr ""
#. qFQYv
-#: svtools/inc/langtab.hrc:123
+#: svtools/inc/langtab.hrc:124
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kannada"
msgstr ""
#. HBG3C
-#: svtools/inc/langtab.hrc:124
+#: svtools/inc/langtab.hrc:125
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (Kashmir)"
msgstr ""
#. DwhmJ
-#: svtools/inc/langtab.hrc:125
+#: svtools/inc/langtab.hrc:126
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (India)"
msgstr ""
#. UMfCV
-#: svtools/inc/langtab.hrc:126
+#: svtools/inc/langtab.hrc:127
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kazakh"
msgstr ""
#. fABxX
-#: svtools/inc/langtab.hrc:127
+#: svtools/inc/langtab.hrc:128
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Konkani"
msgstr ""
#. 5XXpX
-#: svtools/inc/langtab.hrc:128
+#: svtools/inc/langtab.hrc:129
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Korean (RoK)"
msgstr ""
#. Ynb76
-#: svtools/inc/langtab.hrc:129
+#: svtools/inc/langtab.hrc:130
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latvian"
msgstr ""
#. C4VrT
-#: svtools/inc/langtab.hrc:130
+#: svtools/inc/langtab.hrc:131
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lithuanian"
msgstr ""
#. zPNto
-#: svtools/inc/langtab.hrc:131
+#: svtools/inc/langtab.hrc:132
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Macedonian"
msgstr ""
#. nVTHg
-#: svtools/inc/langtab.hrc:132
+#: svtools/inc/langtab.hrc:133
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Malaysia)"
msgstr ""
#. fwb55
-#: svtools/inc/langtab.hrc:133
+#: svtools/inc/langtab.hrc:134
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Brunei Darussalam)"
msgstr ""
#. 8niko
-#: svtools/inc/langtab.hrc:134
+#: svtools/inc/langtab.hrc:135
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malayalam"
msgstr ""
#. wX45Q
-#: svtools/inc/langtab.hrc:135
+#: svtools/inc/langtab.hrc:136
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manipuri"
msgstr ""
#. wdBgL
-#: svtools/inc/langtab.hrc:136
+#: svtools/inc/langtab.hrc:137
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Marathi"
msgstr ""
#. gkEEQ
-#: svtools/inc/langtab.hrc:137
+#: svtools/inc/langtab.hrc:138
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (Nepal)"
msgstr ""
#. LaDAA
-#: svtools/inc/langtab.hrc:138
+#: svtools/inc/langtab.hrc:139
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (India)"
msgstr ""
#. 7HpyY
-#: svtools/inc/langtab.hrc:139
+#: svtools/inc/langtab.hrc:140
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Bokmål"
msgstr ""
#. kCv9u
-#: svtools/inc/langtab.hrc:140
+#: svtools/inc/langtab.hrc:141
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Nynorsk"
msgstr ""
#. 3BNF8
-#: svtools/inc/langtab.hrc:141
+#: svtools/inc/langtab.hrc:142
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Odia"
msgstr ""
#. KEoWD
-#: svtools/inc/langtab.hrc:142
+#: svtools/inc/langtab.hrc:143
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Polish"
msgstr ""
#. yyj9v
-#: svtools/inc/langtab.hrc:143
+#: svtools/inc/langtab.hrc:144
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Angola)"
msgstr ""
#. hZAXE
-#: svtools/inc/langtab.hrc:144
+#: svtools/inc/langtab.hrc:145
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Portugal)"
msgstr ""
#. A5CG3
-#: svtools/inc/langtab.hrc:145
+#: svtools/inc/langtab.hrc:146
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Brazil)"
msgstr ""
#. EGfKG
-#: svtools/inc/langtab.hrc:146
+#: svtools/inc/langtab.hrc:147
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punjabi"
msgstr ""
#. 4ATDT
-#: svtools/inc/langtab.hrc:147
+#: svtools/inc/langtab.hrc:148
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rhaeto-Romance"
msgstr ""
#. TLUGG
-#: svtools/inc/langtab.hrc:148
+#: svtools/inc/langtab.hrc:149
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Romania)"
msgstr ""
#. uCPF7
-#: svtools/inc/langtab.hrc:149
+#: svtools/inc/langtab.hrc:150
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Moldova)"
msgstr ""
#. tJTih
-#: svtools/inc/langtab.hrc:150
+#: svtools/inc/langtab.hrc:151
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Russian"
msgstr ""
#. Rih6F
-#: svtools/inc/langtab.hrc:151
+#: svtools/inc/langtab.hrc:152
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sanskrit"
msgstr ""
#. CyZtm
-#: svtools/inc/langtab.hrc:152
+#: svtools/inc/langtab.hrc:153
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia and Montenegro)"
msgstr ""
#. sFnB8
-#: svtools/inc/langtab.hrc:153
+#: svtools/inc/langtab.hrc:154
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia and Montenegro)"
msgstr ""
#. WbsFA
-#: svtools/inc/langtab.hrc:154
+#: svtools/inc/langtab.hrc:155
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia)"
msgstr ""
#. WL3zM
-#: svtools/inc/langtab.hrc:155
+#: svtools/inc/langtab.hrc:156
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia)"
msgstr ""
#. JFnsJ
-#: svtools/inc/langtab.hrc:156
+#: svtools/inc/langtab.hrc:157
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Montenegro)"
msgstr ""
#. AHpmF
-#: svtools/inc/langtab.hrc:157
+#: svtools/inc/langtab.hrc:158
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Montenegro)"
msgstr ""
#. JcJT4
-#: svtools/inc/langtab.hrc:158
+#: svtools/inc/langtab.hrc:159
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin"
msgstr ""
#. ubCyV
-#: svtools/inc/langtab.hrc:159
+#: svtools/inc/langtab.hrc:160
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sidama"
msgstr ""
#. 66wdH
-#: svtools/inc/langtab.hrc:160
+#: svtools/inc/langtab.hrc:161
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Devanagari"
msgstr ""
#. RF77g
-#: svtools/inc/langtab.hrc:161
+#: svtools/inc/langtab.hrc:162
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Arabic"
msgstr ""
#. E8DXb
-#: svtools/inc/langtab.hrc:162
+#: svtools/inc/langtab.hrc:163
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovak"
msgstr ""
#. GS6BZ
-#: svtools/inc/langtab.hrc:163
+#: svtools/inc/langtab.hrc:164
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovenian"
msgstr ""
#. bCFN3
-#: svtools/inc/langtab.hrc:164
+#: svtools/inc/langtab.hrc:165
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Spain)"
msgstr ""
#. AXKJF
-#: svtools/inc/langtab.hrc:165
+#: svtools/inc/langtab.hrc:166
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Mexico)"
msgstr ""
#. 4ExjA
-#: svtools/inc/langtab.hrc:166
+#: svtools/inc/langtab.hrc:167
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Guatemala)"
msgstr ""
#. ndaNA
-#: svtools/inc/langtab.hrc:167
+#: svtools/inc/langtab.hrc:168
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Costa Rica)"
msgstr ""
#. rAYvf
-#: svtools/inc/langtab.hrc:168
+#: svtools/inc/langtab.hrc:169
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Panama)"
msgstr ""
#. rwjDV
-#: svtools/inc/langtab.hrc:169
+#: svtools/inc/langtab.hrc:170
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Dom. Rep.)"
msgstr ""
#. aeV5T
-#: svtools/inc/langtab.hrc:170
+#: svtools/inc/langtab.hrc:171
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Venezuela)"
msgstr ""
#. H4CHi
-#: svtools/inc/langtab.hrc:171
+#: svtools/inc/langtab.hrc:172
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Colombia)"
msgstr ""
#. NkaU2
-#: svtools/inc/langtab.hrc:172
+#: svtools/inc/langtab.hrc:173
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Peru)"
msgstr ""
#. 2yKQy
-#: svtools/inc/langtab.hrc:173
+#: svtools/inc/langtab.hrc:174
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Argentina)"
msgstr ""
#. cTFoB
-#: svtools/inc/langtab.hrc:174
+#: svtools/inc/langtab.hrc:175
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Ecuador)"
msgstr ""
#. Q7iGB
-#: svtools/inc/langtab.hrc:175
+#: svtools/inc/langtab.hrc:176
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Chile)"
msgstr ""
#. SQeC3
-#: svtools/inc/langtab.hrc:176
+#: svtools/inc/langtab.hrc:177
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Uruguay)"
msgstr ""
#. EmgTp
-#: svtools/inc/langtab.hrc:177
+#: svtools/inc/langtab.hrc:178
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Paraguay)"
msgstr ""
#. T7rLH
-#: svtools/inc/langtab.hrc:178
+#: svtools/inc/langtab.hrc:179
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Bolivia)"
msgstr ""
#. GNG7W
-#: svtools/inc/langtab.hrc:179
+#: svtools/inc/langtab.hrc:180
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (El Salvador)"
msgstr ""
#. HoGhs
-#: svtools/inc/langtab.hrc:180
+#: svtools/inc/langtab.hrc:181
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Honduras)"
msgstr ""
#. KgEGv
-#: svtools/inc/langtab.hrc:181
+#: svtools/inc/langtab.hrc:182
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Nicaragua)"
msgstr ""
#. uj9QF
-#: svtools/inc/langtab.hrc:182
+#: svtools/inc/langtab.hrc:183
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Puerto Rico)"
msgstr ""
#. 3bTTE
-#: svtools/inc/langtab.hrc:183
+#: svtools/inc/langtab.hrc:184
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Kenya)"
msgstr ""
#. AFhrJ
-#: svtools/inc/langtab.hrc:184
+#: svtools/inc/langtab.hrc:185
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Sweden)"
msgstr ""
#. BKF86
-#: svtools/inc/langtab.hrc:185
+#: svtools/inc/langtab.hrc:186
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Finland)"
msgstr ""
#. E6Ede
-#: svtools/inc/langtab.hrc:186
+#: svtools/inc/langtab.hrc:187
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tajik"
msgstr ""
#. dAFTH
-#: svtools/inc/langtab.hrc:187
+#: svtools/inc/langtab.hrc:188
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tamil"
msgstr ""
#. RHZbp
-#: svtools/inc/langtab.hrc:188
+#: svtools/inc/langtab.hrc:189
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tatar"
msgstr ""
#. pTFA6
-#: svtools/inc/langtab.hrc:189
+#: svtools/inc/langtab.hrc:190
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Telugu"
msgstr ""
#. 3xQFG
-#: svtools/inc/langtab.hrc:190
+#: svtools/inc/langtab.hrc:191
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Thai"
msgstr ""
#. 7SBCF
-#: svtools/inc/langtab.hrc:191
+#: svtools/inc/langtab.hrc:192
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkish"
msgstr ""
#. jg4Y4
-#: svtools/inc/langtab.hrc:192
+#: svtools/inc/langtab.hrc:193
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (Pakistan)"
msgstr ""
#. reDrZ
-#: svtools/inc/langtab.hrc:193
+#: svtools/inc/langtab.hrc:194
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (India)"
msgstr ""
#. AciD4
-#: svtools/inc/langtab.hrc:194
+#: svtools/inc/langtab.hrc:195
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ukrainian"
msgstr ""
#. 9s6wZ
-#: svtools/inc/langtab.hrc:195
+#: svtools/inc/langtab.hrc:196
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Latin"
msgstr ""
#. HrnFi
-#: svtools/inc/langtab.hrc:196
+#: svtools/inc/langtab.hrc:197
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Cyrillic"
msgstr ""
#. seQBA
-#: svtools/inc/langtab.hrc:197
+#: svtools/inc/langtab.hrc:198
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Welsh"
msgstr ""
#. MyZMt
-#: svtools/inc/langtab.hrc:198
+#: svtools/inc/langtab.hrc:199
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latin"
msgstr ""
#. UxE47
-#: svtools/inc/langtab.hrc:199
+#: svtools/inc/langtab.hrc:200
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Esperanto"
msgstr ""
#. QDEQB
-#: svtools/inc/langtab.hrc:200
+#: svtools/inc/langtab.hrc:201
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kinyarwanda (Rwanda)"
msgstr ""
#. VDEdz
-#: svtools/inc/langtab.hrc:201
+#: svtools/inc/langtab.hrc:202
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maori"
msgstr ""
#. BCRzB
-#: svtools/inc/langtab.hrc:202
+#: svtools/inc/langtab.hrc:203
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Galician"
msgstr ""
#. EJSEG
-#: svtools/inc/langtab.hrc:203
+#: svtools/inc/langtab.hrc:204
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dhivehi"
msgstr ""
#. HyrCw
-#: svtools/inc/langtab.hrc:204
+#: svtools/inc/langtab.hrc:205
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Northern Sotho"
msgstr ""
#. iZE5p
-#: svtools/inc/langtab.hrc:205
+#: svtools/inc/langtab.hrc:206
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gaelic (Scotland)"
msgstr ""
#. hUdfG
-#: svtools/inc/langtab.hrc:206
+#: svtools/inc/langtab.hrc:207
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Cyrillic"
msgstr ""
#. XSmCF
-#: svtools/inc/langtab.hrc:207
+#: svtools/inc/langtab.hrc:208
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Mongolian"
msgstr ""
#. SmxD2
-#: svtools/inc/langtab.hrc:208
+#: svtools/inc/langtab.hrc:209
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingua"
msgstr ""
#. dBUa9
-#: svtools/inc/langtab.hrc:209
+#: svtools/inc/langtab.hrc:210
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bosnian"
msgstr ""
#. c29GE
-#: svtools/inc/langtab.hrc:210
+#: svtools/inc/langtab.hrc:211
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (Bangladesh)"
msgstr ""
#. 9CTyH
-#: svtools/inc/langtab.hrc:211
+#: svtools/inc/langtab.hrc:212
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Occitan"
msgstr ""
#. wRpTQ
-#: svtools/inc/langtab.hrc:212
+#: svtools/inc/langtab.hrc:213
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khmer"
msgstr ""
#. 6C2PP
-#: svtools/inc/langtab.hrc:213
+#: svtools/inc/langtab.hrc:214
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Turkey)"
msgstr ""
#. JBSdg
-#: svtools/inc/langtab.hrc:214
+#: svtools/inc/langtab.hrc:215
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Syria)"
msgstr ""
#. 7LmT2
-#: svtools/inc/langtab.hrc:215
+#: svtools/inc/langtab.hrc:216
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iraq)"
msgstr ""
#. rzDHD
-#: svtools/inc/langtab.hrc:216
+#: svtools/inc/langtab.hrc:217
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iran)"
msgstr ""
#. CeAFw
-#: svtools/inc/langtab.hrc:217
+#: svtools/inc/langtab.hrc:218
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iran)"
msgstr ""
#. epbri
-#: svtools/inc/langtab.hrc:218
+#: svtools/inc/langtab.hrc:219
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iraq)"
msgstr ""
#. 2KhAB
-#: svtools/inc/langtab.hrc:219
+#: svtools/inc/langtab.hrc:220
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian"
msgstr ""
#. 3sZxr
-#: svtools/inc/langtab.hrc:220
+#: svtools/inc/langtab.hrc:221
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dzongkha"
msgstr ""
#. NdNMD
-#: svtools/inc/langtab.hrc:221
+#: svtools/inc/langtab.hrc:222
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Tanzania)"
msgstr ""
#. ywH3p
-#: svtools/inc/langtab.hrc:222
+#: svtools/inc/langtab.hrc:223
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lao"
msgstr ""
#. HNY5w
-#: svtools/inc/langtab.hrc:223
+#: svtools/inc/langtab.hrc:224
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Irish"
msgstr ""
#. oGuLJ
-#: svtools/inc/langtab.hrc:224
+#: svtools/inc/langtab.hrc:225
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (PR China)"
msgstr ""
#. DpbUS
-#: svtools/inc/langtab.hrc:225
+#: svtools/inc/langtab.hrc:226
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Georgian"
msgstr ""
#. vXTTC
-#: svtools/inc/langtab.hrc:226
+#: svtools/inc/langtab.hrc:227
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Frisian"
msgstr ""
#. hYSBQ
-#: svtools/inc/langtab.hrc:227
+#: svtools/inc/langtab.hrc:228
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (South Africa)"
msgstr ""
#. iBrft
-#: svtools/inc/langtab.hrc:228
+#: svtools/inc/langtab.hrc:229
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Zulu"
msgstr ""
#. efx7v
-#: svtools/inc/langtab.hrc:229
+#: svtools/inc/langtab.hrc:230
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vietnamese"
msgstr ""
#. uik8N
-#: svtools/inc/langtab.hrc:230
+#: svtools/inc/langtab.hrc:231
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Breton"
msgstr ""
#. UuDPF
-#: svtools/inc/langtab.hrc:231
+#: svtools/inc/langtab.hrc:232
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kalaallisut"
msgstr ""
#. h8yi2
-#: svtools/inc/langtab.hrc:232
+#: svtools/inc/langtab.hrc:233
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ndebele, South"
msgstr ""
#. GAkRJ
-#: svtools/inc/langtab.hrc:233
+#: svtools/inc/langtab.hrc:234
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Southern Sotho"
msgstr ""
#. 2beka
-#: svtools/inc/langtab.hrc:234
+#: svtools/inc/langtab.hrc:235
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swazi"
msgstr ""
#. GFCYC
-#: svtools/inc/langtab.hrc:235
+#: svtools/inc/langtab.hrc:236
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsonga"
msgstr ""
#. Fd3yC
-#: svtools/inc/langtab.hrc:236
+#: svtools/inc/langtab.hrc:237
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venda"
msgstr ""
#. BQkT8
-#: svtools/inc/langtab.hrc:237
+#: svtools/inc/langtab.hrc:238
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (Botswana)"
msgstr ""
#. aCLs3
-#: svtools/inc/langtab.hrc:238
+#: svtools/inc/langtab.hrc:239
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xhosa"
msgstr ""
#. 8tGkA
-#: svtools/inc/langtab.hrc:239
+#: svtools/inc/langtab.hrc:240
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sinhala"
msgstr ""
#. MyZBb
-#: svtools/inc/langtab.hrc:240
+#: svtools/inc/langtab.hrc:241
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moore"
msgstr ""
#. MuwMr
-#: svtools/inc/langtab.hrc:241
+#: svtools/inc/langtab.hrc:242
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bambara"
msgstr ""
#. ohYHE
-#: svtools/inc/langtab.hrc:242
+#: svtools/inc/langtab.hrc:243
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Akan"
msgstr ""
#. Rpc24
-#: svtools/inc/langtab.hrc:243
+#: svtools/inc/langtab.hrc:244
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Luxembourgish"
msgstr ""
#. TPr9P
-#: svtools/inc/langtab.hrc:244
+#: svtools/inc/langtab.hrc:245
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Friulian"
msgstr ""
#. XFeaU
-#: svtools/inc/langtab.hrc:245
+#: svtools/inc/langtab.hrc:246
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fijian"
msgstr ""
#. DmEsD
-#: svtools/inc/langtab.hrc:246
+#: svtools/inc/langtab.hrc:247
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (Namibia)"
msgstr ""
#. 2dS3j
-#: svtools/inc/langtab.hrc:247
+#: svtools/inc/langtab.hrc:248
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Namibia)"
msgstr ""
#. pxpQo
-#: svtools/inc/langtab.hrc:248
+#: svtools/inc/langtab.hrc:249
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Walloon"
msgstr ""
#. uSw8S
-#: svtools/inc/langtab.hrc:249
+#: svtools/inc/langtab.hrc:250
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Coptic"
msgstr ""
#. cXUkb
-#: svtools/inc/langtab.hrc:250
+#: svtools/inc/langtab.hrc:251
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Eritrea)"
msgstr ""
#. 4X4SP
-#: svtools/inc/langtab.hrc:251
+#: svtools/inc/langtab.hrc:252
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Ethiopia)"
msgstr ""
#. vebCw
-#: svtools/inc/langtab.hrc:252
+#: svtools/inc/langtab.hrc:253
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Amharic"
msgstr ""
#. wVfCr
-#: svtools/inc/langtab.hrc:253
+#: svtools/inc/langtab.hrc:254
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kirghiz"
msgstr ""
#. zCrUd
-#: svtools/inc/langtab.hrc:254
+#: svtools/inc/langtab.hrc:255
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Belgium)"
msgstr ""
#. bZjgG
-#: svtools/inc/langtab.hrc:255
+#: svtools/inc/langtab.hrc:256
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chuvash"
msgstr ""
#. Hhf2V
-#: svtools/inc/langtab.hrc:256
+#: svtools/inc/langtab.hrc:257
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Burmese"
msgstr ""
#. YCarY
-#: svtools/inc/langtab.hrc:257
+#: svtools/inc/langtab.hrc:258
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Nigeria)"
msgstr ""
#. JXCmu
-#: svtools/inc/langtab.hrc:258
+#: svtools/inc/langtab.hrc:259
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Ghana)"
msgstr ""
#. 7jrGb
-#: svtools/inc/langtab.hrc:259
+#: svtools/inc/langtab.hrc:260
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Éwé"
msgstr ""
#. QWBZG
-#: svtools/inc/langtab.hrc:260
+#: svtools/inc/langtab.hrc:261
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ghana)"
msgstr ""
#. pAEtz
-#: svtools/inc/langtab.hrc:261
+#: svtools/inc/langtab.hrc:262
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sango"
msgstr ""
#. L9sDt
-#: svtools/inc/langtab.hrc:262
+#: svtools/inc/langtab.hrc:263
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tagalog"
msgstr ""
#. iFSZs
-#: svtools/inc/langtab.hrc:263
+#: svtools/inc/langtab.hrc:264
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ganda"
msgstr ""
#. Gdbhz
-#: svtools/inc/langtab.hrc:264
+#: svtools/inc/langtab.hrc:265
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lingala"
msgstr ""
#. TnDKB
-#: svtools/inc/langtab.hrc:265
+#: svtools/inc/langtab.hrc:266
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Low German"
msgstr ""
#. Yr5hK
-#: svtools/inc/langtab.hrc:266
+#: svtools/inc/langtab.hrc:267
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hiligaynon"
msgstr ""
#. nF96G
-#: svtools/inc/langtab.hrc:267
+#: svtools/inc/langtab.hrc:268
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nyanja"
msgstr ""
#. v4jmr
-#: svtools/inc/langtab.hrc:268
+#: svtools/inc/langtab.hrc:269
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashubian"
msgstr ""
#. nbEp5
-#: svtools/inc/langtab.hrc:269
+#: svtools/inc/langtab.hrc:270
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Cuba)"
msgstr ""
#. CGkDF
-#: svtools/inc/langtab.hrc:270
+#: svtools/inc/langtab.hrc:271
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Indonesia)"
msgstr ""
#. yXqvC
-#: svtools/inc/langtab.hrc:271
+#: svtools/inc/langtab.hrc:272
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, North)"
msgstr ""
#. V3XMi
-#: svtools/inc/langtab.hrc:272
+#: svtools/inc/langtab.hrc:273
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, South)"
msgstr ""
#. 3WCP7
-#: svtools/inc/langtab.hrc:273
+#: svtools/inc/langtab.hrc:274
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Somali"
msgstr ""
#. zFoBp
-#: svtools/inc/langtab.hrc:274
+#: svtools/inc/langtab.hrc:275
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Inari (Finland)"
msgstr ""
#. FJAQR
-#: svtools/inc/langtab.hrc:275
+#: svtools/inc/langtab.hrc:276
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Norway)"
msgstr ""
#. yBxW5
-#: svtools/inc/langtab.hrc:276
+#: svtools/inc/langtab.hrc:277
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Sweden)"
msgstr ""
#. 8yPLy
-#: svtools/inc/langtab.hrc:277
+#: svtools/inc/langtab.hrc:278
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Finland)"
msgstr ""
#. SQTD9
-#: svtools/inc/langtab.hrc:278
+#: svtools/inc/langtab.hrc:279
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Norway)"
msgstr ""
#. BHGpD
-#: svtools/inc/langtab.hrc:279
+#: svtools/inc/langtab.hrc:280
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Sweden)"
msgstr ""
#. cdYkC
-#: svtools/inc/langtab.hrc:280
+#: svtools/inc/langtab.hrc:281
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Skolt (Finland)"
msgstr ""
#. od3Hp
-#: svtools/inc/langtab.hrc:281
+#: svtools/inc/langtab.hrc:282
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Norway)"
msgstr ""
#. 5Ueff
-#: svtools/inc/langtab.hrc:282
+#: svtools/inc/langtab.hrc:283
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Sweden)"
msgstr ""
#. 7x4mU
-#: svtools/inc/langtab.hrc:283
+#: svtools/inc/langtab.hrc:284
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Kildin (Russia)"
msgstr ""
#. A5Crw
-#: svtools/inc/langtab.hrc:284
+#: svtools/inc/langtab.hrc:285
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guarani (Paraguay)"
msgstr ""
#. ESc5d
-#: svtools/inc/langtab.hrc:285
+#: svtools/inc/langtab.hrc:286
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bodo"
msgstr ""
#. sSAvV
-#: svtools/inc/langtab.hrc:286
+#: svtools/inc/langtab.hrc:287
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dogri"
msgstr ""
#. f2nfh
-#: svtools/inc/langtab.hrc:287
+#: svtools/inc/langtab.hrc:288
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maithili"
msgstr ""
#. Rm94B
-#: svtools/inc/langtab.hrc:288
+#: svtools/inc/langtab.hrc:289
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Santali"
msgstr ""
#. C7EGu
-#: svtools/inc/langtab.hrc:289
+#: svtools/inc/langtab.hrc:290
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Timor-Leste)"
msgstr ""
#. JzTF8
-#: svtools/inc/langtab.hrc:290
+#: svtools/inc/langtab.hrc:291
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkmen"
msgstr ""
#. XbECR
-#: svtools/inc/langtab.hrc:291
+#: svtools/inc/langtab.hrc:292
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maltese"
msgstr ""
#. PJ6DF
-#: svtools/inc/langtab.hrc:292
+#: svtools/inc/langtab.hrc:293
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tok Pisin"
msgstr ""
#. kAWUo
-#: svtools/inc/langtab.hrc:293
+#: svtools/inc/langtab.hrc:294
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Shuswap"
msgstr ""
#. sBWQv
-#: svtools/inc/langtab.hrc:294
+#: svtools/inc/langtab.hrc:295
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Oromo"
msgstr ""
#. jYDYi
-#: svtools/inc/langtab.hrc:295
+#: svtools/inc/langtab.hrc:296
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek, Ancient"
msgstr ""
#. WY8GH
-#: svtools/inc/langtab.hrc:296
+#: svtools/inc/langtab.hrc:297
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (Israel)"
msgstr ""
#. VAWnd
-#: svtools/inc/langtab.hrc:297
+#: svtools/inc/langtab.hrc:298
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Ecuador)"
msgstr ""
#. UDB2F
-#: svtools/inc/langtab.hrc:298
+#: svtools/inc/langtab.hrc:299
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uyghur"
msgstr ""
#. XAu8x
-#: svtools/inc/langtab.hrc:299
+#: svtools/inc/langtab.hrc:300
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Asturian"
msgstr ""
#. hwM5p
-#: svtools/inc/langtab.hrc:300
+#: svtools/inc/langtab.hrc:301
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Upper"
msgstr ""
#. iGTFG
-#: svtools/inc/langtab.hrc:301
+#: svtools/inc/langtab.hrc:302
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Lower"
msgstr ""
#. RvdrP
-#: svtools/inc/langtab.hrc:302
+#: svtools/inc/langtab.hrc:303
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latgalian"
msgstr ""
#. 94i7A
-#: svtools/inc/langtab.hrc:303
+#: svtools/inc/langtab.hrc:304
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maore"
msgstr ""
#. FeuXJ
-#: svtools/inc/langtab.hrc:304
+#: svtools/inc/langtab.hrc:305
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bushi"
msgstr ""
#. CWFtg
-#: svtools/inc/langtab.hrc:305
+#: svtools/inc/langtab.hrc:306
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tahitian"
msgstr ""
#. TDoMB
-#: svtools/inc/langtab.hrc:306
+#: svtools/inc/langtab.hrc:307
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malagasy, Plateau"
msgstr ""
#. EVG88
-#: svtools/inc/langtab.hrc:307
+#: svtools/inc/langtab.hrc:308
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamentu (Netherlands Antilles)"
msgstr ""
#. fbGn8
-#: svtools/inc/langtab.hrc:308
+#: svtools/inc/langtab.hrc:309
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Aruba)"
msgstr ""
#. 9XBNE
-#: svtools/inc/langtab.hrc:309
+#: svtools/inc/langtab.hrc:310
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Campidanese"
msgstr ""
#. d2kAw
-#: svtools/inc/langtab.hrc:310
+#: svtools/inc/langtab.hrc:311
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Gallurese"
msgstr ""
#. cJATX
-#: svtools/inc/langtab.hrc:311
+#: svtools/inc/langtab.hrc:312
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Logudorese"
msgstr ""
#. PJFYt
-#: svtools/inc/langtab.hrc:312
+#: svtools/inc/langtab.hrc:313
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Sassarese"
msgstr ""
#. oDLAc
-#: svtools/inc/langtab.hrc:313
+#: svtools/inc/langtab.hrc:314
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bafia"
msgstr ""
#. 598zD
-#: svtools/inc/langtab.hrc:314
+#: svtools/inc/langtab.hrc:315
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gikuyu"
msgstr ""
#. PFxrW
-#: svtools/inc/langtab.hrc:315
+#: svtools/inc/langtab.hrc:316
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yoruba"
msgstr ""
#. jajFo
-#: svtools/inc/langtab.hrc:316
+#: svtools/inc/langtab.hrc:317
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Ukraine)"
msgstr ""
#. PpWdM
-#: svtools/inc/langtab.hrc:317
+#: svtools/inc/langtab.hrc:318
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Slovakia)"
msgstr ""
#. Wgo9k
-#: svtools/inc/langtab.hrc:318
+#: svtools/inc/langtab.hrc:319
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabyle Latin"
msgstr ""
#. MSnHB
-#: svtools/inc/langtab.hrc:319
+#: svtools/inc/langtab.hrc:320
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (USA)"
msgstr ""
#. uYMRX
-#: svtools/inc/langtab.hrc:320
+#: svtools/inc/langtab.hrc:321
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hawaiian"
msgstr ""
#. DyEGX
-#: svtools/inc/langtab.hrc:321
+#: svtools/inc/langtab.hrc:322
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Limbu"
msgstr ""
#. 3jGCz
-#: svtools/inc/langtab.hrc:322
+#: svtools/inc/langtab.hrc:323
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lojban"
msgstr ""
#. Ec3C4
-#: svtools/inc/langtab.hrc:323
+#: svtools/inc/langtab.hrc:324
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Haitian"
msgstr ""
#. D3Xoy
-#: svtools/inc/langtab.hrc:324
+#: svtools/inc/langtab.hrc:325
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Beembe"
msgstr ""
#. 6Pkbr
-#: svtools/inc/langtab.hrc:325
+#: svtools/inc/langtab.hrc:326
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bekwel"
msgstr ""
#. 8WjqB
-#: svtools/inc/langtab.hrc:326
+#: svtools/inc/langtab.hrc:327
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Congo)"
msgstr ""
#. hCFcE
-#: svtools/inc/langtab.hrc:327
+#: svtools/inc/langtab.hrc:328
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lari"
msgstr ""
#. KxXpB
-#: svtools/inc/langtab.hrc:328
+#: svtools/inc/langtab.hrc:329
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mbochi"
msgstr ""
#. 6FdTq
-#: svtools/inc/langtab.hrc:329
+#: svtools/inc/langtab.hrc:330
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Eboo"
msgstr ""
#. FeBzA
-#: svtools/inc/langtab.hrc:330
+#: svtools/inc/langtab.hrc:331
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Ibali"
msgstr ""
#. LKetF
-#: svtools/inc/langtab.hrc:331
+#: svtools/inc/langtab.hrc:332
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Tyee"
msgstr ""
#. DfVqj
-#: svtools/inc/langtab.hrc:332
+#: svtools/inc/langtab.hrc:333
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vili"
msgstr ""
#. uBEkT
-#: svtools/inc/langtab.hrc:333
+#: svtools/inc/langtab.hrc:334
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "KeyID"
msgstr ""
#. maAoG
-#: svtools/inc/langtab.hrc:334
+#: svtools/inc/langtab.hrc:335
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Latin"
msgstr ""
#. eDDSm
-#: svtools/inc/langtab.hrc:335
+#: svtools/inc/langtab.hrc:336
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kyrgyz (China)"
msgstr ""
#. RCmma
-#: svtools/inc/langtab.hrc:336
+#: svtools/inc/langtab.hrc:337
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Zyrian"
msgstr ""
#. DLxCK
-#: svtools/inc/langtab.hrc:337
+#: svtools/inc/langtab.hrc:338
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Permyak"
msgstr ""
#. zRJy3
-#: svtools/inc/langtab.hrc:338
+#: svtools/inc/langtab.hrc:339
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pitjantjatjara"
msgstr ""
#. X2WLD
-#: svtools/inc/langtab.hrc:339
+#: svtools/inc/langtab.hrc:340
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malawi)"
msgstr ""
#. BNve6
-#: svtools/inc/langtab.hrc:340
+#: svtools/inc/langtab.hrc:341
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Erzya"
msgstr ""
#. bS6vy
-#: svtools/inc/langtab.hrc:341
+#: svtools/inc/langtab.hrc:342
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Meadow"
msgstr ""
#. 2YjMT
-#: svtools/inc/langtab.hrc:342
+#: svtools/inc/langtab.hrc:343
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Curaçao)"
msgstr ""
#. QA2V4
-#: svtools/inc/langtab.hrc:343
+#: svtools/inc/langtab.hrc:344
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Bonaire)"
msgstr ""
#. vozw6
-#: svtools/inc/langtab.hrc:344
+#: svtools/inc/langtab.hrc:345
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khanty"
msgstr ""
#. MBtJM
-#: svtools/inc/langtab.hrc:345
+#: svtools/inc/langtab.hrc:346
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Livonian"
msgstr ""
#. wNkoh
-#: svtools/inc/langtab.hrc:346
+#: svtools/inc/langtab.hrc:347
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moksha"
msgstr ""
#. uCDU6
-#: svtools/inc/langtab.hrc:347
+#: svtools/inc/langtab.hrc:348
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Hill"
msgstr ""
#. JEhY4
-#: svtools/inc/langtab.hrc:348
+#: svtools/inc/langtab.hrc:349
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nganasan"
msgstr ""
#. hr4pq
-#: svtools/inc/langtab.hrc:349
+#: svtools/inc/langtab.hrc:350
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Olonets"
msgstr ""
#. Arpn4
-#: svtools/inc/langtab.hrc:350
+#: svtools/inc/langtab.hrc:351
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Veps"
msgstr ""
#. fJ3Ss
-#: svtools/inc/langtab.hrc:351
+#: svtools/inc/langtab.hrc:352
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Võro"
msgstr ""
#. HuWCs
-#: svtools/inc/langtab.hrc:352
+#: svtools/inc/langtab.hrc:353
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nenets"
msgstr ""
#. 5Zxgd
-#: svtools/inc/langtab.hrc:353
+#: svtools/inc/langtab.hrc:354
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Central African Republic)"
msgstr ""
#. oBDBe
-#: svtools/inc/langtab.hrc:354
+#: svtools/inc/langtab.hrc:355
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Congo)"
msgstr ""
#. GRKCD
-#: svtools/inc/langtab.hrc:355
+#: svtools/inc/langtab.hrc:356
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dibole"
msgstr ""
#. cgMCr
-#: svtools/inc/langtab.hrc:356
+#: svtools/inc/langtab.hrc:357
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Doondo"
msgstr ""
#. FmhF6
-#: svtools/inc/langtab.hrc:357
+#: svtools/inc/langtab.hrc:358
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kaamba"
msgstr ""
#. BBf4G
-#: svtools/inc/langtab.hrc:358
+#: svtools/inc/langtab.hrc:359
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Koongo (Congo)"
msgstr ""
#. HbeaC
-#: svtools/inc/langtab.hrc:359
+#: svtools/inc/langtab.hrc:360
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kunyi"
msgstr ""
#. wLxHD
-#: svtools/inc/langtab.hrc:360
+#: svtools/inc/langtab.hrc:361
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngungwel"
msgstr ""
#. 7cvAe
-#: svtools/inc/langtab.hrc:361
+#: svtools/inc/langtab.hrc:362
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
msgstr ""
#. G2SG8
-#: svtools/inc/langtab.hrc:362
+#: svtools/inc/langtab.hrc:363
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punu"
msgstr ""
#. WjBVL
-#: svtools/inc/langtab.hrc:363
+#: svtools/inc/langtab.hrc:364
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Suundi"
msgstr ""
#. 9nAA2
-#: svtools/inc/langtab.hrc:364
+#: svtools/inc/langtab.hrc:365
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Kukuya"
msgstr ""
#. dwdUH
-#: svtools/inc/langtab.hrc:365
+#: svtools/inc/langtab.hrc:366
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsaangi"
msgstr ""
#. otqzC
-#: svtools/inc/langtab.hrc:366
+#: svtools/inc/langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Congo)"
msgstr ""
#. JuMFF
-#: svtools/inc/langtab.hrc:367
+#: svtools/inc/langtab.hrc:368
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Democratic Republic of the Congo)"
msgstr ""
#. NDjGL
-#: svtools/inc/langtab.hrc:368
+#: svtools/inc/langtab.hrc:369
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yombe (Congo)"
msgstr ""
#. MvwFr
-#: svtools/inc/langtab.hrc:369
+#: svtools/inc/langtab.hrc:370
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "N'ko"
msgstr ""
#. WFc6C
-#: svtools/inc/langtab.hrc:370
+#: svtools/inc/langtab.hrc:371
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Udmurt"
msgstr ""
#. hEtfX
-#: svtools/inc/langtab.hrc:371
+#: svtools/inc/langtab.hrc:372
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (India)"
msgstr ""
#. Agf93
-#: svtools/inc/langtab.hrc:372
+#: svtools/inc/langtab.hrc:373
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cornish"
msgstr ""
#. EtH3H
-#: svtools/inc/langtab.hrc:373
+#: svtools/inc/langtab.hrc:374
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Pite (Sweden)"
msgstr ""
#. jp6C9
-#: svtools/inc/langtab.hrc:374
+#: svtools/inc/langtab.hrc:375
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngäbere"
msgstr ""
#. 3nTLx
-#: svtools/inc/langtab.hrc:375
+#: svtools/inc/langtab.hrc:376
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kumyk"
msgstr ""
#. c56C9
-#: svtools/inc/langtab.hrc:376
+#: svtools/inc/langtab.hrc:377
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nogai"
msgstr ""
#. CBiiA
-#: svtools/inc/langtab.hrc:377
+#: svtools/inc/langtab.hrc:378
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Karakalpak Latin"
msgstr ""
#. CkEC7
-#: svtools/inc/langtab.hrc:378
+#: svtools/inc/langtab.hrc:379
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ladin"
msgstr ""
#. XAiVE
-#: svtools/inc/langtab.hrc:379
+#: svtools/inc/langtab.hrc:380
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Burkina Faso)"
msgstr ""
#. EGzhe
-#: svtools/inc/langtab.hrc:380
+#: svtools/inc/langtab.hrc:381
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Puinave"
msgstr ""
#. HNcxe
-#: svtools/inc/langtab.hrc:381
+#: svtools/inc/langtab.hrc:382
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maninkakan, Eastern, Latin"
msgstr ""
#. Kxi9E
-#: svtools/inc/langtab.hrc:382
+#: svtools/inc/langtab.hrc:383
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Avar"
msgstr ""
#. zumBa
-#: svtools/inc/langtab.hrc:383
+#: svtools/inc/langtab.hrc:384
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Latin"
msgstr ""
#. PQqU7
-#: svtools/inc/langtab.hrc:384
+#: svtools/inc/langtab.hrc:385
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Syllabics"
msgstr ""
#. kewgf
-#: svtools/inc/langtab.hrc:385
+#: svtools/inc/langtab.hrc:386
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lengo"
msgstr ""
#. KtBfE
-#: svtools/inc/langtab.hrc:386
+#: svtools/inc/langtab.hrc:387
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Côte d'Ivoire)"
msgstr ""
#. DTuEL
-#: svtools/inc/langtab.hrc:387
+#: svtools/inc/langtab.hrc:388
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mali)"
msgstr ""
#. LFLk6
-#: svtools/inc/langtab.hrc:388
+#: svtools/inc/langtab.hrc:389
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Senegal)"
msgstr ""
#. mSK3x
-#: svtools/inc/langtab.hrc:389
+#: svtools/inc/langtab.hrc:390
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Benin)"
msgstr ""
#. tM6qQ
-#: svtools/inc/langtab.hrc:390
+#: svtools/inc/langtab.hrc:391
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Niger)"
msgstr ""
#. nCq6f
-#: svtools/inc/langtab.hrc:391
+#: svtools/inc/langtab.hrc:392
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Togo)"
msgstr ""
#. oCBvK
-#: svtools/inc/langtab.hrc:392
+#: svtools/inc/langtab.hrc:393
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kven Finnish"
msgstr ""
#. zjNcC
-#: svtools/inc/langtab.hrc:393
+#: svtools/inc/langtab.hrc:394
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venetian"
msgstr ""
#. 8EbCs
-#: svtools/inc/langtab.hrc:394
+#: svtools/inc/langtab.hrc:395
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Gambia)"
msgstr ""
#. gEd8L
-#: svtools/inc/langtab.hrc:395
+#: svtools/inc/langtab.hrc:396
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aranese"
msgstr ""
#. TaEzQ
-#: svtools/inc/langtab.hrc:396
+#: svtools/inc/langtab.hrc:397
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (France)"
msgstr ""
#. s4yFD
-#: svtools/inc/langtab.hrc:397
+#: svtools/inc/langtab.hrc:398
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Italy)"
msgstr ""
#. FvPLF
-#: svtools/inc/langtab.hrc:398
+#: svtools/inc/langtab.hrc:399
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Switzerland)"
msgstr ""
#. GgwXq
-#: svtools/inc/langtab.hrc:399
+#: svtools/inc/langtab.hrc:400
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Botswana)"
msgstr ""
#. GZfWN
-#: svtools/inc/langtab.hrc:400
+#: svtools/inc/langtab.hrc:401
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingue Occidental"
msgstr ""
#. FFkaK
-#: svtools/inc/langtab.hrc:401
+#: svtools/inc/langtab.hrc:402
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Apatani"
msgstr ""
#. EHHtS
-#: svtools/inc/langtab.hrc:402
+#: svtools/inc/langtab.hrc:403
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Mauritius)"
msgstr ""
#. atcMq
-#: svtools/inc/langtab.hrc:403
+#: svtools/inc/langtab.hrc:404
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mauritius)"
msgstr ""
#. UZ4Pn
-#: svtools/inc/langtab.hrc:404
+#: svtools/inc/langtab.hrc:405
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Silesian"
msgstr ""
#. RJDLA
-#: svtools/inc/langtab.hrc:405
+#: svtools/inc/langtab.hrc:406
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
#. v3WK8
-#: svtools/inc/langtab.hrc:406
+#: svtools/inc/langtab.hrc:407
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malaysia)"
msgstr ""
#. 4sBjT
-#: svtools/inc/langtab.hrc:407
+#: svtools/inc/langtab.hrc:408
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manchu"
msgstr ""
#. XH3fY
-#: svtools/inc/langtab.hrc:408
+#: svtools/inc/langtab.hrc:409
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xibe"
msgstr ""
#. oGNdE
-#: svtools/inc/langtab.hrc:409
+#: svtools/inc/langtab.hrc:410
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Democratic Republic of the Congo)"
msgstr ""
#. jQF7C
-#: svtools/inc/langtab.hrc:410
+#: svtools/inc/langtab.hrc:411
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr "Аҿаҧшыра"
#. cAPXF
-#: svtools/inc/langtab.hrc:411
+#: svtools/inc/langtab.hrc:412
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Plautdietsch"
msgstr ""
#. 8LY2A
-#: svtools/inc/langtab.hrc:412
+#: svtools/inc/langtab.hrc:413
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Russia)"
msgstr ""
#. ieGNR
-#: svtools/inc/langtab.hrc:413
+#: svtools/inc/langtab.hrc:414
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Iran)"
msgstr ""
#. US8Ga
-#: svtools/inc/langtab.hrc:414
+#: svtools/inc/langtab.hrc:415
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Western (Armenia)"
msgstr ""
#. nzbrZ
-#: svtools/inc/langtab.hrc:415
+#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Classical (Armenia)"
msgstr ""
#. BDKAa
-#: svtools/inc/langtab.hrc:416
+#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Malaysia)"
msgstr ""
#. AnrGG
-#: svtools/inc/langtab.hrc:417
+#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Brunei Darussalam)"
msgstr ""
#. utBog
-#: svtools/inc/langtab.hrc:418
+#: svtools/inc/langtab.hrc:419
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
msgstr ""
#. jPaAH
-#: svtools/inc/langtab.hrc:419
+#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
msgstr ""
#. mMVAF
-#: svtools/inc/langtab.hrc:420
+#: svtools/inc/langtab.hrc:421
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
msgstr ""
#. AzGAy
-#: svtools/inc/langtab.hrc:421
+#: svtools/inc/langtab.hrc:422
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
msgstr ""
#. 7kkKy
-#: svtools/inc/langtab.hrc:422
+#: svtools/inc/langtab.hrc:423
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Sri Lanka)"
msgstr ""
#. xFPXp
-#: svtools/inc/langtab.hrc:423
+#: svtools/inc/langtab.hrc:424
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Nigeria)"
msgstr ""
#. Up6ab
-#: svtools/inc/langtab.hrc:424
+#: svtools/inc/langtab.hrc:425
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabardian"
msgstr ""
#. BiDsR
-#: svtools/inc/langtab.hrc:425
+#: svtools/inc/langtab.hrc:426
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guadeloupean Creole French"
msgstr ""
#. 2b2P4
-#: svtools/inc/langtab.hrc:426
+#: svtools/inc/langtab.hrc:427
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ligurian"
msgstr ""
#. 3LvEE
-#: svtools/inc/langtab.hrc:427
+#: svtools/inc/langtab.hrc:428
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Minangkabau"
msgstr ""
#. nDkKR
-#: svtools/inc/langtab.hrc:428
+#: svtools/inc/langtab.hrc:429
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sundanese"
msgstr ""
#. wGEAB
-#: svtools/inc/langtab.hrc:429
+#: svtools/inc/langtab.hrc:430
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Hong Kong)"
msgstr ""
#. qTMB2
-#: svtools/inc/langtab.hrc:430
+#: svtools/inc/langtab.hrc:431
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Kenya)"
msgstr ""
#. SgQ2p
-#: svtools/inc/langtab.hrc:431
+#: svtools/inc/langtab.hrc:432
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Thai"
msgstr ""
#. DGeeF
-#: svtools/inc/langtab.hrc:432
+#: svtools/inc/langtab.hrc:433
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cabécar"
msgstr ""
#. xHCtG
-#: svtools/inc/langtab.hrc:433
+#: svtools/inc/langtab.hrc:434
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bribri"
msgstr ""
#. 2GFgR
-#: svtools/inc/langtab.hrc:434
+#: svtools/inc/langtab.hrc:435
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Denmark)"
msgstr ""
#. gmE6U
-#: svtools/inc/langtab.hrc:435
+#: svtools/inc/langtab.hrc:436
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sesotho"
msgstr ""
#. BkKJX
-#: svtools/inc/langtab.hrc:436
+#: svtools/inc/langtab.hrc:437
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr ""
#. xFYhC
-#: svtools/inc/langtab.hrc:437
+#: svtools/inc/langtab.hrc:438
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Israel)"
msgstr ""
#. Bryjh
-#: svtools/inc/langtab.hrc:438
+#: svtools/inc/langtab.hrc:439
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Latin"
msgstr ""
#. DZBAE
-#: svtools/inc/langtab.hrc:439
+#: svtools/inc/langtab.hrc:440
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Cyrillic"
msgstr ""
#. 4eEDW
-#: svtools/inc/langtab.hrc:440
+#: svtools/inc/langtab.hrc:441
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pennsylvania Dutch"
msgstr ""
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index a38e27ed3fa..667ef29323b 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\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"
@@ -34,6673 +34,6679 @@ msgctxt "STR_ObjNameSingulGRUP"
msgid "Group object"
msgstr ""
-#. tC4qm
+#. nsYcw
#: include/svx/strings.hrc:28
+msgctxt "STR_ObjNameSingulDIAGRAM"
+msgid "Diagram"
+msgstr ""
+
+#. tC4qm
+#: include/svx/strings.hrc:29
msgctxt "STR_ObjNamePluralGRUP"
msgid "Group objects"
msgstr ""
#. piV8E
-#: include/svx/strings.hrc:29
+#: include/svx/strings.hrc:30
msgctxt "STR_ObjNameSingulGRUPEMPTY"
msgid "Blank group object"
msgstr ""
#. BBEPU
-#: include/svx/strings.hrc:30
+#: include/svx/strings.hrc:31
msgctxt "STR_ObjNamePluralGRUPEMPTY"
msgid "Blank group objects"
msgstr ""
#. NVHmC
-#: include/svx/strings.hrc:31
+#: include/svx/strings.hrc:32
msgctxt "STR_ObjNameSingulLINE"
msgid "Line"
msgstr "Аҵәаӷәа"
#. SD2Wy
-#: include/svx/strings.hrc:32
+#: include/svx/strings.hrc:33
msgctxt "STR_ObjNameSingulLINE_Hori"
msgid "Horizontal line"
msgstr "Игоризонталу аҵәаӷәа"
#. 3dPEH
-#: include/svx/strings.hrc:33
+#: include/svx/strings.hrc:34
msgctxt "STR_ObjNameSingulLINE_Vert"
msgid "Vertical line"
msgstr "Ивертикалу аҵәаӷәа"
#. JzFtj
-#: include/svx/strings.hrc:34
+#: include/svx/strings.hrc:35
msgctxt "STR_ObjNameSingulLINE_Diag"
msgid "Diagonal line"
msgstr "Идиагоналтәу аҵәаӷәа"
#. YPAoe
-#: include/svx/strings.hrc:35
+#: include/svx/strings.hrc:36
msgctxt "STR_ObjNamePluralLINE"
msgid "Lines"
msgstr "Аҵәаӷәа(қәа)"
#. yS2nC
-#: include/svx/strings.hrc:36
+#: include/svx/strings.hrc:37
msgctxt "STR_ObjNameSingulRECT"
msgid "Rectangle"
msgstr "Акәакьҭаиаша"
#. TDTj8
-#: include/svx/strings.hrc:37
+#: include/svx/strings.hrc:38
msgctxt "STR_ObjNamePluralRECT"
msgid "Rectangles"
msgstr "Акәакьҭаиашақәа"
#. fnV49
-#: include/svx/strings.hrc:38
+#: include/svx/strings.hrc:39
msgctxt "STR_ObjNameSingulQUAD"
msgid "Square"
msgstr "Аквадрат"
#. XkEHU
-#: include/svx/strings.hrc:39
+#: include/svx/strings.hrc:40
msgctxt "STR_ObjNamePluralQUAD"
msgid "Squares"
msgstr "Аквадратқәа"
#. vw4Ut
-#: include/svx/strings.hrc:40
+#: include/svx/strings.hrc:41
msgctxt "STR_ObjNameSingulPARAL"
msgid "Parallelogram"
msgstr "Апараллелограмм"
#. yCpvs
-#: include/svx/strings.hrc:41
+#: include/svx/strings.hrc:42
msgctxt "STR_ObjNamePluralPARAL"
msgid "Parallelograms"
msgstr "Апараллелограммқәа"
#. SfDZQ
-#: include/svx/strings.hrc:42
+#: include/svx/strings.hrc:43
msgctxt "STR_ObjNameSingulRECTRND"
msgid "Rounded rectangle"
msgstr ""
#. PYAii
-#: include/svx/strings.hrc:43
+#: include/svx/strings.hrc:44
msgctxt "STR_ObjNamePluralRECTRND"
msgid "Rounded Rectangles"
msgstr ""
#. xQAn8
-#: include/svx/strings.hrc:44
+#: include/svx/strings.hrc:45
msgctxt "STR_ObjNameSingulQUADRND"
msgid "rounded square"
msgstr ""
#. JHxon
-#: include/svx/strings.hrc:45
+#: include/svx/strings.hrc:46
msgctxt "STR_ObjNamePluralQUADRND"
msgid "Rounded Squares"
msgstr ""
#. 89eHB
-#: include/svx/strings.hrc:46
+#: include/svx/strings.hrc:47
msgctxt "STR_ObjNameSingulPARALRND"
msgid "Rounded Parallelogram"
msgstr ""
#. WvCRG
-#: include/svx/strings.hrc:47
+#: include/svx/strings.hrc:48
msgctxt "STR_ObjNamePluralPARALRND"
msgid "Rounded parallelograms"
msgstr ""
#. NDXG6
-#: include/svx/strings.hrc:48
+#: include/svx/strings.hrc:49
msgctxt "STR_ObjNameSingulCIRC"
msgid "Circle"
msgstr "Агьежь"
#. Bzk99
-#: include/svx/strings.hrc:49
+#: include/svx/strings.hrc:50
msgctxt "STR_ObjNamePluralCIRC"
msgid "Circles"
msgstr "Агьежьқа"
#. 2CxVR
-#: include/svx/strings.hrc:50
+#: include/svx/strings.hrc:51
msgctxt "STR_ObjNameSingulSECT"
msgid "Circle sector"
msgstr "Агьежь асектор"
#. djBb7
-#: include/svx/strings.hrc:51
+#: include/svx/strings.hrc:52
msgctxt "STR_ObjNamePluralSECT"
msgid "Circle sectors"
msgstr "Агьежь асекторқәа"
#. KAhqG
-#: include/svx/strings.hrc:52
+#: include/svx/strings.hrc:53
msgctxt "STR_ObjNameSingulCARC"
msgid "Arc"
msgstr ""
#. ZtPEx
-#: include/svx/strings.hrc:53
+#: include/svx/strings.hrc:54
msgctxt "STR_ObjNamePluralCARC"
msgid "Arcs"
msgstr ""
#. 7mXtq
-#: include/svx/strings.hrc:54
+#: include/svx/strings.hrc:55
msgctxt "STR_ObjNameSingulCCUT"
msgid "Circle segment"
msgstr "Агьежь асегмент"
#. YkhbA
-#: include/svx/strings.hrc:55
+#: include/svx/strings.hrc:56
msgctxt "STR_ObjNamePluralCCUT"
msgid "Circle segments"
msgstr "Агьежь асегментқәа"
#. QsEuy
-#: include/svx/strings.hrc:56
+#: include/svx/strings.hrc:57
msgctxt "STR_ObjNameSingulCIRCE"
msgid "Ellipse"
msgstr "Аеллипс"
#. rUFxb
-#: include/svx/strings.hrc:57
+#: include/svx/strings.hrc:58
msgctxt "STR_ObjNamePluralCIRCE"
msgid "Ellipses"
msgstr "Аеллипсқәа"
#. UADGo
-#: include/svx/strings.hrc:58
+#: include/svx/strings.hrc:59
msgctxt "STR_ObjNameSingulSECTE"
msgid "Ellipse Pie"
msgstr "Аеллипс асектор"
#. afCit
-#: include/svx/strings.hrc:59
+#: include/svx/strings.hrc:60
msgctxt "STR_ObjNamePluralSECTE"
msgid "Ellipse Pies"
msgstr "Аеллипс асекторқәа"
#. 7FXAW
-#: include/svx/strings.hrc:60
+#: include/svx/strings.hrc:61
msgctxt "STR_ObjNameSingulCARCE"
msgid "Elliptical arc"
msgstr ""
#. KdtfM
-#: include/svx/strings.hrc:61
+#: include/svx/strings.hrc:62
msgctxt "STR_ObjNamePluralCARCE"
msgid "Elliptical arcs"
msgstr ""
#. C4jME
-#: include/svx/strings.hrc:62
+#: include/svx/strings.hrc:63
msgctxt "STR_ObjNameSingulCCUTE"
msgid "Ellipse Segment"
msgstr "Аеллипс асегмент"
#. wKC5F
-#: include/svx/strings.hrc:63
+#: include/svx/strings.hrc:64
msgctxt "STR_ObjNamePluralCCUTE"
msgid "Ellipse Segments"
msgstr "Аеллипс асегментқәа"
#. ibJ55
-#: include/svx/strings.hrc:64
+#: include/svx/strings.hrc:65
msgctxt "STR_ObjNameSingulPOLY"
msgid "Polygon"
msgstr "Акәакьрацәа"
#. AZFuB
-#: include/svx/strings.hrc:65
+#: include/svx/strings.hrc:66
msgctxt "STR_ObjNameSingulPOLY_PointCount"
msgid "Polygon %2 corners"
msgstr ""
#. a6z8j
-#: include/svx/strings.hrc:66
+#: include/svx/strings.hrc:67
msgctxt "STR_ObjNamePluralPOLY"
msgid "Polygons"
msgstr "Акәакьрацәақәа"
#. WSEL3
-#: include/svx/strings.hrc:67
+#: include/svx/strings.hrc:68
msgctxt "STR_ObjNameSingulPLIN"
msgid "Polyline"
msgstr "Аҵәаӷәаԥҵәа"
#. eBhxV
-#: include/svx/strings.hrc:68
+#: include/svx/strings.hrc:69
msgctxt "STR_ObjNameSingulPLIN_PointCount"
msgid "Polyline with %2 corners"
msgstr ""
#. NjP7U
-#: include/svx/strings.hrc:69
+#: include/svx/strings.hrc:70
msgctxt "STR_ObjNamePluralPLIN"
msgid "Polylines"
msgstr "Аҵәаӷәаԥҵәақәа"
#. KNPXt
-#: include/svx/strings.hrc:70
+#: include/svx/strings.hrc:71
msgctxt "STR_ObjNameSingulPATHLINE"
msgid "Bézier curve"
msgstr "Безье иҵәаӷәархәа"
#. BhTAu
-#: include/svx/strings.hrc:71
+#: include/svx/strings.hrc:72
msgctxt "STR_ObjNamePluralPATHLINE"
msgid "Bézier curves"
msgstr "Безье иҵәаӷәархәақәа"
#. LU3AK
-#: include/svx/strings.hrc:72
+#: include/svx/strings.hrc:73
msgctxt "STR_ObjNameSingulPATHFILL"
msgid "Bézier curve"
msgstr "Безье иҵәаӷәархәа"
#. vLAWh
-#: include/svx/strings.hrc:73
+#: include/svx/strings.hrc:74
msgctxt "STR_ObjNamePluralPATHFILL"
msgid "Bézier curves"
msgstr "Безье иҵәаӷәархәақәа"
#. FQeae
-#: include/svx/strings.hrc:74
+#: include/svx/strings.hrc:75
msgctxt "STR_ObjNameSingulFREELINE"
msgid "Freeform Line"
msgstr ""
#. c8gFR
-#: include/svx/strings.hrc:75
+#: include/svx/strings.hrc:76
msgctxt "STR_ObjNamePluralFREELINE"
msgid "Freeform Lines"
msgstr ""
#. GSmPG
-#: include/svx/strings.hrc:76
+#: include/svx/strings.hrc:77
msgctxt "STR_ObjNameSingulFREEFILL"
msgid "Freeform Line"
msgstr ""
#. 8k7tC
-#: include/svx/strings.hrc:77
+#: include/svx/strings.hrc:78
msgctxt "STR_ObjNamePluralFREEFILL"
msgid "Freeform Lines"
msgstr ""
#. iwxqj
-#: include/svx/strings.hrc:78
+#: include/svx/strings.hrc:79
msgctxt "STR_ObjNameSingulCOMBLINE"
msgid "Curve"
msgstr "Аҵәаӷәархәа"
#. CjzRc
-#: include/svx/strings.hrc:79
+#: include/svx/strings.hrc:80
msgctxt "STR_ObjNameSingulNATSPLN"
msgid "Natural Spline"
msgstr ""
#. CSFGL
-#: include/svx/strings.hrc:80
+#: include/svx/strings.hrc:81
msgctxt "STR_ObjNamePluralNATSPLN"
msgid "Natural Splines"
msgstr ""
#. jpijx
-#: include/svx/strings.hrc:81
+#: include/svx/strings.hrc:82
msgctxt "STR_ObjNameSingulPERSPLN"
msgid "Periodic Spline"
msgstr ""
#. A2GLR
-#: include/svx/strings.hrc:82
+#: include/svx/strings.hrc:83
msgctxt "STR_ObjNamePluralPERSPLN"
msgid "Periodic Splines"
msgstr ""
#. efEFM
-#: include/svx/strings.hrc:83
+#: include/svx/strings.hrc:84
msgctxt "STR_ObjNameSingulTEXT"
msgid "Text Frame"
msgstr ""
#. MdV7N
-#: include/svx/strings.hrc:84
+#: include/svx/strings.hrc:85
msgctxt "STR_ObjNamePluralTEXT"
msgid "Text Frame"
msgstr ""
#. 3Pvnw
-#: include/svx/strings.hrc:85
+#: include/svx/strings.hrc:86
msgctxt "STR_ObjNameSingulTEXTLNK"
msgid "Linked text frame"
msgstr ""
#. EtTZB
-#: include/svx/strings.hrc:86
+#: include/svx/strings.hrc:87
msgctxt "STR_ObjNamePluralTEXTLNK"
msgid "Linked text frames"
msgstr ""
#. mw75y
-#: include/svx/strings.hrc:87
+#: include/svx/strings.hrc:88
msgctxt "STR_ObjNameSingulTITLETEXT"
msgid "Title text"
msgstr "Ахы атекст"
#. aAKEp
-#: include/svx/strings.hrc:88
+#: include/svx/strings.hrc:89
msgctxt "STR_ObjNamePluralTITLETEXT"
msgid "Title texts"
msgstr "Ахы атекстқәа"
#. 3DMmh
-#: include/svx/strings.hrc:89
+#: include/svx/strings.hrc:90
msgctxt "STR_ObjNameSingulOUTLINETEXT"
msgid "Outline Text"
msgstr "Аструктура атекст"
#. PDZGm
-#: include/svx/strings.hrc:90
+#: include/svx/strings.hrc:91
msgctxt "STR_ObjNamePluralOUTLINETEXT"
msgid "Outline Texts"
msgstr "Аструктура атекстқәа"
#. HspAE
-#: include/svx/strings.hrc:91
+#: include/svx/strings.hrc:92
msgctxt "STR_ObjNameSingulGRAF"
msgid "Image"
msgstr "Асахьа"
#. DzfeY
-#: include/svx/strings.hrc:92
+#: include/svx/strings.hrc:93
msgctxt "STR_ObjNamePluralGRAF"
msgid "Images"
msgstr "Асахьақәа"
#. E9w8q
-#: include/svx/strings.hrc:93
+#: include/svx/strings.hrc:94
#, fuzzy
msgctxt "STR_ObjNameSingulGRAFLNK"
msgid "Linked image"
msgstr "Асахьахь азхьарҧш"
#. YopD6
-#: include/svx/strings.hrc:94
+#: include/svx/strings.hrc:95
#, fuzzy
msgctxt "STR_ObjNamePluralGRAFLNK"
msgid "Linked images"
msgstr "Иҧшаатәуп асахьақәа"
#. wWACk
-#: include/svx/strings.hrc:95
+#: include/svx/strings.hrc:96
msgctxt "STR_ObjNameSingulGRAFNONE"
msgid "Blank image object"
msgstr "Иҭацәу асахьа"
#. uzsE4
-#: include/svx/strings.hrc:96
+#: include/svx/strings.hrc:97
msgctxt "STR_ObjNamePluralGRAFNONE"
msgid "Blank image objects"
msgstr "Иҭацәу асахьақәа"
#. 8Za3o
-#: include/svx/strings.hrc:97
+#: include/svx/strings.hrc:98
msgctxt "STR_ObjNameSingulGRAFNONELNK"
msgid "Blank linked image"
msgstr ""
#. 8W5JS
-#: include/svx/strings.hrc:98
+#: include/svx/strings.hrc:99
msgctxt "STR_ObjNamePluralGRAFNONELNK"
msgid "Blank linked images"
msgstr ""
#. kUuBg
-#: include/svx/strings.hrc:99
+#: include/svx/strings.hrc:100
msgctxt "STR_ObjNameSingulGRAFMTF"
msgid "Metafile"
msgstr "Аметафаил"
#. w5ykB
-#: include/svx/strings.hrc:100
+#: include/svx/strings.hrc:101
msgctxt "STR_ObjNamePluralGRAFMTF"
msgid "Metafiles"
msgstr "Аметафаилқәа"
#. XBDAB
-#: include/svx/strings.hrc:101
+#: include/svx/strings.hrc:102
msgctxt "STR_ObjNameSingulGRAFMTFLNK"
msgid "Linked Metafile"
msgstr ""
#. ACpDE
-#: include/svx/strings.hrc:102
+#: include/svx/strings.hrc:103
msgctxt "STR_ObjNamePluralGRAFMTFLNK"
msgid "Linked Metafiles"
msgstr ""
#. Pbmqw
-#: include/svx/strings.hrc:103
+#: include/svx/strings.hrc:104
msgctxt "STR_ObjNameSingulGRAFBMP"
msgid "Image"
msgstr "Асахьа"
#. WdAhn
-#: include/svx/strings.hrc:104
+#: include/svx/strings.hrc:105
msgctxt "STR_ObjNameSingulGRAFBMPTRANS"
msgid "Image with transparency"
msgstr ""
#. 3FkK6
-#: include/svx/strings.hrc:105
+#: include/svx/strings.hrc:106
#, fuzzy
msgctxt "STR_ObjNameSingulGRAFBMPLNK"
msgid "Linked Image"
msgstr "Асахьахь азхьарҧш"
#. ydd77
-#: include/svx/strings.hrc:106
+#: include/svx/strings.hrc:107
msgctxt "STR_ObjNameSingulGRAFBMPTRANSLNK"
msgid "Linked image with transparency"
msgstr ""
#. FVJeA
-#: include/svx/strings.hrc:107
+#: include/svx/strings.hrc:108
msgctxt "STR_ObjNamePluralGRAFBMP"
msgid "Images"
msgstr "Асахьақәа"
#. mjfjF
-#: include/svx/strings.hrc:108
+#: include/svx/strings.hrc:109
msgctxt "STR_ObjNamePluralGRAFBMPTRANS"
msgid "Images with transparency"
msgstr ""
#. 8kaaN
-#: include/svx/strings.hrc:109
+#: include/svx/strings.hrc:110
#, fuzzy
msgctxt "STR_ObjNamePluralGRAFBMPLNK"
msgid "Linked images"
msgstr "Иҧшаатәуп асахьақәа"
#. DKMiE
-#: include/svx/strings.hrc:110
+#: include/svx/strings.hrc:111
msgctxt "STR_ObjNamePluralGRAFBMPTRANSLNK"
msgid "Linked images with transparency"
msgstr ""
#. aeEoK
-#: include/svx/strings.hrc:111
+#: include/svx/strings.hrc:112
msgctxt "STR_ObjNameSingulCUSTOMSHAPE"
msgid "Shape"
msgstr "Афигура"
#. BZmgL
-#: include/svx/strings.hrc:112
+#: include/svx/strings.hrc:113
msgctxt "STR_ObjNamePluralCUSTOMSHAPE"
msgid "Shapes"
msgstr "Афигурақәа"
#. HBYSq
-#: include/svx/strings.hrc:113
+#: include/svx/strings.hrc:114
msgctxt "STR_ObjNameSingulGRAFSVG"
msgid "SVG"
msgstr "SVG"
#. pzxhb
-#: include/svx/strings.hrc:114
+#: include/svx/strings.hrc:115
msgctxt "STR_ObjNamePluralGRAFSVG"
msgid "SVGs"
msgstr "SVG"
#. v2DTg
-#: include/svx/strings.hrc:115
+#: include/svx/strings.hrc:116
msgctxt "STR_ObjNameSingulGRAFWMF"
msgid "WMF"
msgstr "WMF"
#. LR2x6
-#: include/svx/strings.hrc:116
+#: include/svx/strings.hrc:117
msgctxt "STR_ObjNamePluralGRAFWMF"
msgid "WMFs"
msgstr "WMF"
#. XcDs2
-#: include/svx/strings.hrc:117
+#: include/svx/strings.hrc:118
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "EMF"
msgstr "EMF"
#. JtdP2
-#: include/svx/strings.hrc:118
+#: include/svx/strings.hrc:119
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "EMFs"
msgstr "EMF"
#. H2FkB
-#: include/svx/strings.hrc:119
+#: include/svx/strings.hrc:120
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
msgstr "PDF"
#. tc3Jb
-#: include/svx/strings.hrc:120
+#: include/svx/strings.hrc:121
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
msgstr "PDF"
#. b3os5
-#: include/svx/strings.hrc:121
+#: include/svx/strings.hrc:122
msgctxt "STR_ObjNameSingulOLE2"
msgid "embedded object (OLE)"
msgstr "иаларҵәоу аобиект (OLE)"
#. QMF8w
-#: include/svx/strings.hrc:122
+#: include/svx/strings.hrc:123
msgctxt "STR_ObjNamePluralOLE2"
msgid "Embedded objects (OLE)"
msgstr "Иаларҵәоу аобиектқәа (OLE)"
#. mAAWu
-#: include/svx/strings.hrc:123
+#: include/svx/strings.hrc:124
msgctxt "STR_ObjNameSingulUno"
msgid "Control"
msgstr ""
#. KrTeo
-#: include/svx/strings.hrc:124
+#: include/svx/strings.hrc:125
msgctxt "STR_ObjNamePluralUno"
msgid "Controls"
msgstr ""
#. wfVg2
-#: include/svx/strings.hrc:125
+#: include/svx/strings.hrc:126
msgctxt "STR_ObjNameSingulFrame"
msgid "Frame"
msgstr "Афреим"
#. q72EC
-#: include/svx/strings.hrc:126
+#: include/svx/strings.hrc:127
msgctxt "STR_ObjNamePluralFrame"
msgid "Frames"
msgstr "Арамкақәа"
#. gYhqY
-#: include/svx/strings.hrc:127
+#: include/svx/strings.hrc:128
msgctxt "STR_ObjNameSingulEDGE"
msgid "Object Connectors"
msgstr "Аобиект аиԥшьыга"
#. 9XiCG
-#: include/svx/strings.hrc:128
+#: include/svx/strings.hrc:129
msgctxt "STR_ObjNamePluralEDGE"
msgid "Object Connectors"
msgstr "Аобиект аиԥшьыгақәа"
#. HSDBo
-#: include/svx/strings.hrc:129
+#: include/svx/strings.hrc:130
msgctxt "STR_ObjNameSingulCAPTION"
msgid "Callout"
msgstr ""
#. BdAJu
-#: include/svx/strings.hrc:130
+#: include/svx/strings.hrc:131
msgctxt "STR_ObjNamePluralCAPTION"
msgid "Callouts"
msgstr ""
#. Ezpif
-#: include/svx/strings.hrc:131
+#: include/svx/strings.hrc:132
msgctxt "STR_ObjNameSingulPAGE"
msgid "Preview object"
msgstr "Аобиект аԥхьахәаԥшра"
#. UCECt
-#: include/svx/strings.hrc:132
+#: include/svx/strings.hrc:133
msgctxt "STR_ObjNamePluralPAGE"
msgid "Preview objects"
msgstr "Аобиектқәа рыхәаԥшра"
#. GCVKi
-#: include/svx/strings.hrc:133
+#: include/svx/strings.hrc:134
msgctxt "STR_ObjNameSingulMEASURE"
msgid "Dimension line"
msgstr ""
#. DokjU
-#: include/svx/strings.hrc:134
+#: include/svx/strings.hrc:135
msgctxt "STR_ObjNamePluralMEASURE"
msgid "Dimensioning objects"
msgstr ""
#. iBQEy
-#: include/svx/strings.hrc:135
+#: include/svx/strings.hrc:136
msgctxt "STR_ObjNamePlural"
msgid "Drawing objects"
msgstr "Асахьақәа"
#. xHrgo
-#: include/svx/strings.hrc:136
+#: include/svx/strings.hrc:137
msgctxt "STR_ObjNameNoObj"
msgid "No draw object"
msgstr "Аграфикатә аобиект ада"
#. EEKnk
-#: include/svx/strings.hrc:137
+#: include/svx/strings.hrc:138
msgctxt "STR_ObjNameSingulPlural"
msgid "Draw object(s)"
msgstr "Асахьақәа"
#. LYyRP
-#: include/svx/strings.hrc:138
+#: include/svx/strings.hrc:139
msgctxt "STR_ObjNameSingulCube3d"
msgid "3D cube"
msgstr "3D акуб"
#. ZsF4T
-#: include/svx/strings.hrc:139
+#: include/svx/strings.hrc:140
msgctxt "STR_ObjNamePluralCube3d"
msgid "3D cubes"
msgstr "3D акубқәа"
#. h9hf7
-#: include/svx/strings.hrc:140
+#: include/svx/strings.hrc:141
msgctxt "STR_ObjNameSingulExtrude3d"
msgid "Extrusion object"
msgstr "Аекструзиа аобиект"
#. Ag6Pu
-#: include/svx/strings.hrc:141
+#: include/svx/strings.hrc:142
msgctxt "STR_ObjNamePluralExtrude3d"
msgid "Extrusion objects"
msgstr "Аекструзиа аобиектқәа"
#. L3B8v
-#: include/svx/strings.hrc:142
+#: include/svx/strings.hrc:143
msgctxt "STR_ObjNameSingulLathe3d"
msgid "Rotation object"
msgstr "Аргьежьра аобиект"
#. e3vFm
-#: include/svx/strings.hrc:143
+#: include/svx/strings.hrc:144
msgctxt "STR_ObjNamePluralLathe3d"
msgid "Rotation objects"
msgstr "Аргьежьра аобиектқәа"
#. CE5Gk
-#: include/svx/strings.hrc:144
+#: include/svx/strings.hrc:145
msgctxt "STR_ObjNameSingulObj3d"
msgid "3D object"
msgstr "3D аобиект"
#. pECo3
-#: include/svx/strings.hrc:145
+#: include/svx/strings.hrc:146
msgctxt "STR_ObjNamePluralObj3d"
msgid "3D objects"
msgstr "3D аобиектқәа"
#. Wuqvb
-#: include/svx/strings.hrc:146
+#: include/svx/strings.hrc:147
msgctxt "STR_ObjNameSingulScene3d"
msgid "3D scene"
msgstr "3D асцена"
#. tH8BD
-#: include/svx/strings.hrc:147
+#: include/svx/strings.hrc:148
msgctxt "STR_ObjNamePluralScene3d"
msgid "3D scenes"
msgstr "3D асценақәа"
#. WdWuw
-#: include/svx/strings.hrc:148
+#: include/svx/strings.hrc:149
msgctxt "STR_ObjNameSingulSphere3d"
msgid "Sphere"
msgstr "Ашар"
#. YNXv5
-#: include/svx/strings.hrc:149
+#: include/svx/strings.hrc:150
msgctxt "STR_ObjNamePluralSphere3d"
msgid "Spheres"
msgstr "Ашарқәа"
#. h4GBf
-#: include/svx/strings.hrc:150
+#: include/svx/strings.hrc:151
msgctxt "STR_EditWithCopy"
msgid "with copy"
msgstr "икопиатәуп"
#. NrVyW
-#: include/svx/strings.hrc:151
+#: include/svx/strings.hrc:152
msgctxt "STR_EditPosSize"
msgid "Set position and size for %1"
msgstr ""
#. ac4yY
-#: include/svx/strings.hrc:152
+#: include/svx/strings.hrc:153
msgctxt "STR_EditDelete"
msgid "Delete %1"
msgstr "Ианыхтәуп %1"
#. AweBA
-#: include/svx/strings.hrc:153
+#: include/svx/strings.hrc:154
msgctxt "STR_EditMovToTop"
msgid "Move %1 forward"
msgstr "Ииагатәуп %1 ԥхьаҟа"
#. G7EUR
-#: include/svx/strings.hrc:154
+#: include/svx/strings.hrc:155
msgctxt "STR_EditMovToBtm"
msgid "Move %1 further back"
msgstr "Ииагатәуп %1 шьҭахьҟа"
#. B83UQ
-#: include/svx/strings.hrc:155
+#: include/svx/strings.hrc:156
msgctxt "STR_EditPutToTop"
msgid "Move %1 to front"
msgstr "Ииагатәуп %1 аԥхьатәи аплан ахь"
#. aHzgz
-#: include/svx/strings.hrc:156
+#: include/svx/strings.hrc:157
msgctxt "STR_EditPutToBtm"
msgid "Move %1 to back"
msgstr "Ииагатәуп %1 ашьҭахьтәи аплан ахь"
#. Q6nSk
-#: include/svx/strings.hrc:157
+#: include/svx/strings.hrc:158
msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "Иԥсахтәуп %1 аишьҭагылашьа"
#. rpJs7
-#: include/svx/strings.hrc:158
+#: include/svx/strings.hrc:159
msgctxt "STR_SortShapes"
msgid "Sort shapes"
msgstr ""
#. cALbH
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "Ииагатәуп %1"
#. dskGp
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "Иҧсахтәуп ашәагаа %1"
#. 5QxCS
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "Иргьежьтәуп %1"
#. BD8aF
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "%1 горизонталла ианырԥштәуп"
#. g7Qgy
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "%1 вертикалла ианырԥштәуп"
#. 8MR5T
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "%1 диагональла ианырԥштәуп"
#. zDbgU
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "%1 ианырԥштәуп ишабалак"
#. AFUeA
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr ""
#. QRoy3
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. wvGVC
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. iUJAq
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr ""
#. GRiqx
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "Иаҟәыхтәуп %1"
#. sE8PU
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "Иԥсахтәуп %1 Безье аҷыдаҟазшьа"
#. CzVVY
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "Иԥсахтәуп %1 Безье аҷыдаҟазшьақәа"
#. 5KcDa
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr ""
#. Gbbmq
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr ""
#. Auc4o
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr ""
#. M5Jac
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Иргәыԥтәуп %1"
#. wEEok
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr ""
#. XochA
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "Ихархәатәуп атрибутқәа %1 азы"
#. kzth3
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "Ихархәатәуп астильқәа %1 азы"
#. PDT8V
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "Ианыхтәуп астиль %1 аҟынтәи"
#. 5DwCY
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr ""
#. TPv7Q
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr ""
#. ompqC
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr ""
#. gax8J
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr ""
#. s96Mt
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr ""
#. LAyEj
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr ""
#. jzxvB
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "Еиҟаратәтәуп %1"
#. jocJd
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr ""
#. WFGbz
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr ""
#. SyXzE
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr ""
#. TgGUN
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr ""
#. s3Erz
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr ""
#. apfuW
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr ""
#. ttEmT
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr ""
#. xkGug
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr ""
#. smiFA
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "Еидҵатәуп %1"
#. PypoU
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "Еицҵатәуп %1"
#. 2KfaD
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "Иагырхатәуп %1"
#. gKFow
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr ""
#. M8onz
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "Иеихшатәуп иалху аобиеқтқәа"
#. CnGYu
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "Еиҟаратәтәуп аҭбаара %1"
#. zBTZe
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr ""
#. JWmM2
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "Еидҵатәуп %1"
#. k5kFN
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "Еихшатәуп %1"
#. weAmr
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "Еихшатәуп %1"
#. Yofeq
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "Еихшатәуп %1"
#. hWuuR
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
#. EaVu8
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "Иҭаргылатәуп акәаԥ %1 аҟны"
#. G3DCW
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragInsertGluePoint"
msgid "Insert gluepoint to %1"
msgstr ""
#. 6JqED
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr ""
#. o8CAF
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr ""
#. ghkib
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "Ииагатәуп %1"
#. BCrkD
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "Иҧсахтәуп ашәагаа %1"
#. xonh6
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "Иргьежьтәуп %1"
#. kBYzN
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "%1 горизонталла ианыԥштәуп"
#. CBBXE
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "%1 вертикалла ианыԥштәуп"
#. uHCGD
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "%1 диагональла ианыԥштәуп"
#. vRwXA
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr ""
#. 9xhJw
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr ""
#. Fst87
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr ""
#. jgbKK
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr ""
#. Eo8H6
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. stAcK
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. VbA6t
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr ""
#. YjghP
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr ""
#. ViifK
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Иԥсахтәуп арадиус %1 ала"
#. usEq4
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "Иԥсахтәуп %1"
#. X4GFU
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "Иҧсахтәуп ашәагаа %1"
#. qF4Px
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "Ииагатәуп %1"
#. fKuKa
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr ""
#. ewcHx
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr ""
#. L8rCz
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "Иԥсахтәуп %1"
#. UxCCc
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "Иԥсахтәуп атеқст: абзац %1, ацәаҳәа %2, аиҵагыла %3"
#. 23tL7
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "Иалхуп аобиеқт %1"
#. yQkFZ
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "Акәаԥ %1 аҟынтәи"
#. RGnTk
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr ""
#. YxpLB
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoint"
msgid "Gluepoint from %1"
msgstr ""
#. qCFmV
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 gluepoints from %1"
msgstr ""
#. CDqRQ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "Иазгәаҭатәуп аобиектқәа"
#. SLrPJ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr ""
#. hczKZ
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "Иазгәаҭатәуп акәаԥқәа"
#. 778bF
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr ""
#. BLEE8
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark gluepoints"
msgstr ""
#. eH9Vs
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional gluepoints"
msgstr ""
#. D5ZZA
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "Иаԥҵатәуп %1"
#. 7FoxD
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Иҭаргылатәуп %1"
#. 9hXBp
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "Акопиа ахыхтәуп %1"
#. arzhD
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr ""
#. QTZxE
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "Иԥсахтәуп атеқст %1"
#. un957
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "Иҭаргылатәуп асахьа"
#. vBvUC
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "Ианыхтәуп адаҟьа"
#. rFgUQ
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "Адаҟьа акопиа"
#. EYfZc
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "Иҧсахтәуп адаҟьақәа реишьҭагылашьа"
#. BQRVo
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr ""
#. 79Cxu
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr ""
#. 9P8JF
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "Иҭаргылатәуп адокумент"
#. w3W7h
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "Иҭаргылатәуп аҿыгҳара"
#. 7pifL
-#: include/svx/strings.hrc:258
+#: include/svx/strings.hrc:259
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "Ианыхтәуп аҿыгҳара"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "Иԥсахтәуп аобиект %1 ахьӡ"
#. D4AsZ
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "Иԥсахтәуп аобиект %1 ахы"
#. tqeMT
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr ""
#. XcY5w
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValON"
msgid "on"
msgstr "иаҿ."
#. e6RAB
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "иаҿых."
#. gaXKQ
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "ааи"
#. 65SoV
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "мап"
#. aeEuB
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "Атип 1"
#. BFaLY
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "Атип 2"
#. KFMjw
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "Атип 3"
#. 48UKA
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "Атип 4"
#. DVm64
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "Горизонталла"
#. ZYYeS
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "Вертикалла"
#. HcoYN
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Автоматикала"
#. uZNFq
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "Аҿых."
#. 2ZQvA
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "Ипропорционалны"
#. Ej4Ya
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "Ацәаҳәақәа зегьы хазы."
#. Wr4kE
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr ""
#. 73uL2
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Хыхьла"
#. 3Cde5
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "Ацентр ала"
#. AR3n7
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Ҵаҟала"
#. UmBBe
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr ""
#. dRtWD
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "Еиҵыхуп"
#. kGXVu
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Арымарахь"
#. bDPBk
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "Ацентр ала"
#. tVhNN
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Арыӷьарахь"
#. K8NiD
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr ""
#. H7dgd
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "Еиҵыхуп"
#. q5eQw
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "иаҿых."
#. Roba3
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "алацәҟәра"
#. UDFFC
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr ""
#. A9BQL
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr ""
#. EkPkn
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr ""
#. x3Yd5
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "армарахь"
#. w7PTQ
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "аҩада"
#. oMaiF
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "аргьарахь"
#. tQTCd
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "алада"
#. 6MMYx
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "Истандарту аиԥшьыгатә ҵәаӷәа"
#. SLdM8
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "Аиԥшьыгатә ҵәаӷәа"
#. ZAtDC
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "Аиԥшьыгатә ҵәаӷәаиаша"
#. 9qXds
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "Аиԥшьыгатә ҵәаӷәахәахәа"
#. MGEse
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Астандарт"
#. sNziy
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Арадиус"
#. zGpyM
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "автоматикала"
#. jA4pb
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "аҵәаӷәа аҟны"
#. iqYjg
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr ""
#. h8npu
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "аҵәаӷәа аҵаҟа"
#. WL8XG
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
#, fuzzy
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "Ацентр ала"
#. hy9eX
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "агьежь"
#. 6BdZt
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "Агьежь асектор"
#. j6Bc3
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "Агьежь асегмент"
#. 7sN8d
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr ""
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "Идырым атрибут"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:315
+#: include/svx/strings.hrc:316
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "Аҵәаӷәа астиль"
#. BbP7X
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr ""
#. 4NCnS
-#: include/svx/strings.hrc:317
+#: include/svx/strings.hrc:318
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "Аҵәаӷәа аҭбаара"
#. NuJkv
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "Аҵәаӷәа аҧштәы"
#. NgaPV
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "Аҵәаӷәа алагамҭа"
#. UYBDU
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "Аҵәӷәа анҵәамҭа"
#. DJkAF
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "Аҵәаӷәа алагамҭа аҭбаара"
#. QqA6b
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "Аҵәаӷәа анҵәамҭа аҭбаара"
#. FcHDB
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr ""
#. KnFtT
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr ""
#. 2UZUA
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "Аҵәаӷәа аҵәцара"
#. 5MLYD
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "Аиҧшьыгатә ҵәаӷәақәа"
#. ArqSC
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "Аҵәаӷәақәа ратрибутқәа"
#. dufaT
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "Аҭарҭәара астиль"
#. RDcH6
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "Аҭарҭәара аԥштәы"
#. DJM9B
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "Аградиент"
#. gbABb
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr ""
#. GE68t
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Арастр аҭарҭәара"
#. DV2Ss
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Аҵәцара"
#. eK8kh
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "Аградиенттә шьаҿақәа рыԥхьаӡа"
#. AVtYF
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "Амозаика аҭарҭәара"
#. D7T2o
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "Арастр аҭарҭәара апозициа"
#. NVLGP
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "Арастр аҭарҭәара аҭбаара"
#. PSCTE
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "Арастр аҭарҭәара аҳаракыра"
#. zW4zt
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "Иҵәцоу аградиент"
#. DBBgQ
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr ""
#. PaSqp
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "Амозаика ашәагаа %-ла акәымкәа"
#. fwikV
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr ""
#. FQgvE
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr ""
#. NUEGF
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Арастр амасштабркра"
#. pc9yk
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr ""
#. DH43F
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr ""
#. 8GFpS
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "Аҿаԥшыра аҭарҭәара"
#. 2SvhA
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "Аҭакыра атрибутқәа"
#. TE8CS
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "Атеқсттә еффект астиль"
#. qMnRZ
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "Атексттә еффект аиҟаратәра"
#. fpGEZ
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr ""
#. CUBXL
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "Ашрифт аеффект алагамҭа"
#. JSVHo
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr ""
#. P5W29
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "Атексттә еффект аконтуртә шрифт"
#. LKCDD
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "Атеқсттә еффект агага"
#. oDiYn
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "Атеқсттә еффект агага аҧштәы"
#. sFLRA
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr ""
#. daERW
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr ""
#. LdeJZ
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "Иҵәахтәуп атексттә еффект аконтур"
#. 3sPPg
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr ""
#. q6MHs
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "Агага"
#. dSwen
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "Агага аԥштәы"
#. HcLrC
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "Агага аинтервал X"
#. TMGmk
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "Агага аинтервал Y"
#. u5baB
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "Агага аҵәцара"
#. AtDxf
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "3D агага"
#. FGU8f
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr ""
#. MV529
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "Алегенда атип"
#. GAtWb
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr ""
#. SgHKq
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "Алегенда акәакь"
#. gwcQp
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "Алегенда ацәаҳәа ашьаҿа"
#. 6uEae
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr ""
#. TXjGv
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr ""
#. Z5bQB
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr ""
#. 4TmFK
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr ""
#. V9TG8
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "Алегенда аҵәаӷәа аура"
#. haQgi
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr ""
#. 8sDXi
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CORNER_RADIUS"
msgid "Corner radius"
msgstr ""
#. GEA3m
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "Арамка иминималу аҳаракыра"
#. 3jdRR
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr ""
#. NoJR4
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr ""
#. EexDC
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr ""
#. 3thvB
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr ""
#. 8x2Xa
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr ""
#. WyymX
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr ""
#. vdbvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr ""
#. QzTNc
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "Арамка имаксималу аҳаракыра"
#. CcAnR
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "Арамка иминималу аҭбаара"
#. i6nqD
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "Арамка имаксималу аҭбаара"
#. irtVb
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr ""
#. BGR8n
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr ""
#. ruk5J
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr ""
#. cvDiA
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr ""
#. GuCC5
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr ""
#. ipog5
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr ""
#. pWAHL
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr ""
#. vGEjP
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr ""
#. SdHEU
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr ""
#. LzoA5
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "Атеқст аконтур"
#. tNbcC
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXTCOLUMNS_NUMBER"
msgid "Columns number"
msgstr ""
#. DxZkZ
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXTCOLUMNS_SPACING"
msgid "Columns spacing"
msgstr ""
#. HDtDf
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "Ахархәаҩ иатрибутқәа"
#. F9FzF
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr ""
#. jTAhz
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr ""
#. QDaB6
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "Аиԥшьыгатә ҵәаӷәақәа ртип"
#. CoYH2
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr ""
#. xdvs2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr ""
#. FB4Cj
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr ""
#. uGKvj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr ""
#. FSkBP
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr ""
#. 845KH
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr ""
#. FEDAf
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr ""
#. EnGaG
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr ""
#. 5XFzK
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr ""
#. nBFrd
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr ""
#. x7oEC
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Ашәагаақәа ртип"
#. 2XCPo
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr ""
#. DxA8Z
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr ""
#. LQCsj
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr ""
#. jZBoK
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr ""
#. Bhboy
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr ""
#. jw9E7
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr ""
#. CYFg6
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr ""
#. ocvCK
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr ""
#. cFVVA
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr ""
#. VVAgC
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr ""
#. iFX7y
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr ""
#. DoBGo
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "Ашәага акақәа"
#. 2NBMp
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr ""
#. 4yTAW
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "Ашәага акақәа раарԥшра"
#. NFDC3
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "Атеқст ашәагаақәа рформат"
#. UBjQk
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr ""
#. GDQC3
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr ""
#. DB243
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr ""
#. i3Bah
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr ""
#. qWKC7
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr ""
#. wkrNX
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "Агьежь атип"
#. FRFU8
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr ""
#. FmSKG
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr ""
#. ejn6F
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "Аобиект ихьчоу апозициа"
#. ZPEB9
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "Аобиеқт ихьчоу ашәагаа"
#. BN5CM
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr ""
#. 3Digj
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "Иубарҭоу аобиект"
#. nZLtM
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr ""
#. f3ed2
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "Аҿыгҳара"
#. rb6GC
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "Аобиект ахьӡ"
#. 5zRFi
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr ""
#. 5enZ7
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr ""
#. 2V5Mn
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr ""
#. P6Y6W
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr ""
#. yFnnC
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr ""
#. jEGfd
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr ""
#. YJFnY
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr ""
#. bZFkM
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr ""
#. K5Xuq
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "Алогикатә ҭбаара"
#. 9Niyk
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "Алогикатә ҳаракыра"
#. yFmvh
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr ""
#. zNyKY
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr ""
#. bJv8D
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr ""
#. z7EPp
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr ""
#. Qn4GS
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "Иҧсахтәуп Х ашәагаа хазы-хазы"
#. VCtZa
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Иҧсахтәуп Y ашәагаа хазы-хазы"
#. NxatH
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "Иргьежьлатәуп хазы-хазы"
#. gNVw9
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr ""
#. iCzED
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr ""
#. HQcJt
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "Иҧсахтәуп Х ашәагаақәа ишеибгоу"
#. VcK8z
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Иҧсахтәуп Y ашәагаақәа ишеибгоу"
#. vgGU4
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "Иргьежьлатәуп ишеибгоу"
#. 3faE4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr ""
#. RAEPz
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr ""
#. gtXM3
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr ""
#. YpQDc
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr ""
#. Hp5EK
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr ""
#. Rty4j
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr ""
#. JdeqL
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "Аиагагқәа рыргылара"
#. HMmA6
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "Иаарҧштәуп амаркерқәа"
#. 8Q88u
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr ""
#. inGxX
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "Аномерркра аҩаӡара"
#. 2CtLK
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "Амаркерқәеи аномерркреи"
#. hCE5d
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "Ахьаҵқәа"
#. Y5YFm
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "Абзацбжьаратәи аинтервалқәа"
#. feirn
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Ацәаҳәабжьаратәи аинтервал:"
#. gjAVE
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "Абзацқәа реиҟаратәра"
#. offnT
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "Атабулиациа"
#. kpiTD
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "Ашрифт аҧштәы"
#. X535C
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Акодркра"
#. AEbEz
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "Акегль"
#. UKHSM
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "Ашрифт аҭбаара"
#. SQWpD
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr ""
#. AUR7N
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "Аҵшьра"
#. v2AEJ
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "Ақәшьра"
#. ARvwR
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "Аҵәаӷәара"
#. gcVzb
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "Акурсив"
#. kJVaV
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "Аконтур"
#. CZR4e
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "Агага ацны"
#. PFSUR
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr ""
#. DrBio
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Акернинг"
#. tUVvP
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr ""
#. S9QCU
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "Абжьажьқәа ирыҵшьтәӡам"
#. GuTzF
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "Атабулиациа"
#. U4qgA
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr ""
#. jzBEA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "Зҽызымҧсахуа адырга"
#. tZd9C
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Аҭакырақәа"
#. GeKPD
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Аҟаҧшь"
#. EzAu7
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Аиаҵәа"
#. TmBML
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr ""
#. 7Gqzs
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Ажжара"
#. rziVW
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Аконтраст"
#. CHepz
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Гамма"
#. 2ESVA
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Аҵәцара"
#. uZYFG
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Инверттәуп"
#. 6aFx2
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "Асахьа арежим"
#. Ni9KZ
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr ""
#. kVnke
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "Амедиатә обиеқт"
#. nbHgw
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "Амедиатә обиеқт"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:523
+#: include/svx/strings.hrc:524
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "Иҭаргылатәуп аиҵагыла"
#. SAmd8
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "Ибжьаргылатәуп ацәаҳәа"
#. yFDYp
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Ианыхтәуп аиҵагыла"
#. 9SF9L
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Ианыхтәуп ацәаҳәа"
#. iBbtT
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "Еихшатәуп абларҭақәа"
#. vmzqf
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "Еидҵатәуп абларҭақәа"
#. 3VVmF
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Абларҭақәа рформат"
#. pSCJC
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr ""
#. GdLHf
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr ""
#. fGNto
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "Ианыхтәуп абларҭа иаҵанакуа"
#. B33Cb
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "Атаблица астиль"
#. ZHBAC
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "Атаблица астиль апараметрқәа"
#. eERmE
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Атаблица"
#. XjgSV
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Атаблицақәа"
#. mLDqP
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr "Атеқсттә еффект"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:539
+#: include/svx/strings.hrc:540
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr ""
#. uNL7M
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "Аградиент"
#. a8YoL
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Атеқстура"
#. FDmra
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr ""
#. HcGBQ
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr ""
#. GHj4Q
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "Аҵәаӷәа астиль"
#. fa7EG
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "Мап"
#. mrTdk
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "Аҧштәы"
#. 5bjE5
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr ""
#. yGRGW
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "Ахыцқәа рстильқәа"
#. snuCi
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "Ахыц"
#. 6EvQ7
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "Аквадрат"
#. i6cva
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "Агьежь"
#. emz9g
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- мап -"
#. hGaEK
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Аҵәцара"
#. X4EFw
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "Ацентр ала"
#. FFe8m
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "Ацентр ала акәымкәа"
#. hFhmH
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Астандарт"
#. DdAzc
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr ""
#. RHEXM
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "Аиқәаҵәа-шкәакәа"
#. bcXbA
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. ZWz8Y
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:562
+#: include/svx/strings.hrc:563
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "Аҩежь"
#. 9AUDK
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:568
+#: include/svx/strings.hrc:569
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "Аиқәаҵәа"
#. PwGvV
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Ахәаԥштәы"
#. Dp9Az
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "Ашкәакәа"
#. TGLmD
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "Аҩежь"
#. YpDke
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "Ахьтәы"
#. 7aJCZ
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Апатырқалԥштәы"
#. mZMFN
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Аҟаҧшь"
#. 7xMrN
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr ""
#. ELXiM
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr ""
#. UTexf
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "Индиго"
#. qbcF9
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr ""
#. hQ44j
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr ""
#. JpxBr
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Аиаҵәа"
#. A3aCJ
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "Лаим"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:584
+#: include/svx/strings.hrc:585
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr ""
#. YF2ud
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr ""
#. BaXBj
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr ""
#. masPL
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr ""
#. k5GY4
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr ""
#. KGDDj
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr ""
#. nvB2W
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr ""
#. 8Bg8h
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr ""
#. suGUh
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr ""
#. 5VFSV
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr ""
#. 3Z7KA
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr ""
#. HVPnD
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr ""
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:598
+#: include/svx/strings.hrc:599
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr ""
#. EaFik
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr ""
#. AFByn
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr ""
#. qAGnF
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr ""
#. NC62Q
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr ""
#. st4Zy
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr ""
#. indkC
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr ""
#. VFKuJ
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr ""
#. U3qfW
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr ""
#. dYdEW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr ""
#. qFAAB
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr ""
#. C3U7v
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:612
+#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr ""
#. GgboW
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr ""
#. 583vY
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:628
+#: include/svx/strings.hrc:629
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr "Индиго А"
#. r3rtQ
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:653
+#: include/svx/strings.hrc:654
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr ""
#. CWbzY
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr ""
#. DkKFF
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr ""
#. 5hZu8
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr ""
#. wSEGQ
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr ""
#. pUEkF
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr ""
#. qVhW9
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr ""
#. QV77P
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr ""
#. gYFV6
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Адиаграмма"
#. LXcFL
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr ""
#. QbGU3
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr ""
#. UDfTh
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "Азхьарҧш"
#. FXDuA
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:667
+#: include/svx/strings.hrc:668
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3D"
#. GtMuR
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Аиқәаҵәа 1"
#. AhPLy
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Аиқәаҵәа 2"
#. jVxFC
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr ""
#. FacjB
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr ""
#. uQSDF
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr ""
#. sQpNL
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr ""
#. ACACr
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr ""
#. yy7mJ
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr ""
#. 4THUt
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr ""
#. a8AGf
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr ""
#. B4e9f
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Аиаҵәа"
#. 3mz4G
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr ""
#. gdfFF
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Аҟаҧшь"
#. GsAVb
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. sZbit
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Аҩежь"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:684
+#: include/svx/strings.hrc:685
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr ""
#. Q9rDT
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Афинанстәқәа"
#. 3qSCd
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr ""
#. zbAG7
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr ""
#. EtQJT
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr ""
#. YUtBv
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr ""
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:699
+#: include/svx/strings.hrc:700
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr ""
#. zKt6C
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr ""
#. 5Lbx4
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr ""
#. YXbPg
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Аградиент"
#. mZwMD
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr ""
#. WyGuh
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr ""
#. cLHvA
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr ""
#. Kfkbm
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr ""
#. uiTTS
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr ""
#. SsUvr
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr ""
#. CKwQP
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr ""
#. hi3tb
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr ""
#. b6AwV
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr ""
#. Adprm
#. l means left
-#: include/svx/strings.hrc:713
+#: include/svx/strings.hrc:714
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Адиагональ 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:715
+#: include/svx/strings.hrc:716
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Адиагональ 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:717
+#: include/svx/strings.hrc:718
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Адиагональ 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:719
+#: include/svx/strings.hrc:720
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Адиагональ 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:721
+#: include/svx/strings.hrc:722
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Адиагональ 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:723
+#: include/svx/strings.hrc:724
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Адиагональ 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:725
+#: include/svx/strings.hrc:726
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Адиагональ 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:727
+#: include/svx/strings.hrc:728
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Адиагональ 4r"
#. yqda8
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
#, fuzzy
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Адиагональ 1l"
#. GCtJC
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr ""
#. LCQEB
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr ""
#. oD7FW
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Адиагональ, аҟаҧшь"
#. vuyUG
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr ""
#. mGtyc
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr ""
#. cArVy
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "Акәакь аҟынтәи"
#. gvXLL
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr ""
#. GaTPh
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr ""
#. GE5vm
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr ""
#. BFTnr
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr ""
#. AFKRL
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr ""
#. djBGe
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr ""
#. pwDuE
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr ""
#. y8qpL
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr ""
#. PGt5w
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr ""
#. CyLXB
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr ""
#. vkERJ
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr ""
#. Sq2SE
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr ""
#. DoSmH
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr ""
#. 9XHkg
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Горизонталла"
#. FDG7B
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr ""
#. ZEfzF
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr ""
#. GFRCF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr ""
#. iouxG
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr ""
#. Gta9k
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr ""
#. Tdpw4
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr ""
#. DyVEP
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr ""
#. Uyhuj
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr ""
#. MA6Qs
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr ""
#. Pt24U
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr ""
#. 37T3A
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr ""
#. gLwZp
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr ""
#. gka9C
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr ""
#. BaGs9
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr ""
#. DqGbG
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr ""
#. FCa2X
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr ""
#. BNSiE
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr ""
#. DfiaF
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr ""
#. 4htXp
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr ""
#. FVCCq
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr ""
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:770
+#: include/svx/strings.hrc:771
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr ""
#. CDxDN
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr ""
#. amMze
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr ""
#. bodAW
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr ""
#. Zn2x3
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr ""
#. xXMfH
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Ажәҩан"
#. RYfTi
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr ""
#. jAu7g
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr ""
#. idyKS
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr ""
#. fFZia
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Аҵх"
#. 4ECED
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr ""
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:782
+#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:798
+#: include/svx/strings.hrc:799
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "Иҭацәуп"
#. Q4jUs
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr ""
#. Co6U3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Атеқстура"
#. KFEX5
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 процентк"
#. AAn36
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
#. NLTbt
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
#. vx2XC
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
#. weQqs
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
#. CAdAS
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
#. 5T5vP
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
#. aNdJE
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
#. 3vD8U
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
#. UJmCD
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
#. i9RCR
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
#. 2oEkC
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
#. a3yZ5
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr ""
#. daP9i
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
#. JD5FJ
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
#. eB4wk
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
#. MeoCx
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr ""
#. gAqnG
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
#. DGB5k
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
#. JC7je
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
#. iFiBq
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
#. gWDnG
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
#. vbh6h
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
#. XFemm
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Ацәқәырҧа"
#. icCPR
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
#. 8CqPG
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr ""
#. GFUZF
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr ""
#. bp9ZY
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr ""
#. ZrVMS
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
#. tFas9
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr ""
#. jD9er
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr ""
#. Ds8Ae
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
#. a33Ci
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
#. BCSZY
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
#. RNNkR
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr ""
#. ED3Ga
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "Агоризонталқәа"
#. ENYtZ
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
#. mbjPX
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
#. TxAfM
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr ""
#. 4mGJX
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
#. J4CJa
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. tHgFv
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH2"
msgid "Dot (Rounded)"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. qqS4v
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH20"
msgid "Dash Dot"
msgstr ""
#. 5ZGZy
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH21"
msgid "Long Dot (Rounded)"
msgstr ""
#. Ac2F2
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH22"
msgid "Dash Dot Dot"
msgstr ""
#. mWMXG
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_DASH23"
msgid "Dash (Rounded)"
msgstr ""
#. B6fd2
-#: include/svx/strings.hrc:931
+#: include/svx/strings.hrc:932
msgctxt "RID_SVXSTR_DASH24"
msgid "Long Dash (Rounded)"
msgstr ""
#. ds2VE
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_DASH25"
msgid "Double Dash (Rounded)"
msgstr ""
#. qtCkm
-#: include/svx/strings.hrc:933
+#: include/svx/strings.hrc:934
msgctxt "RID_SVXSTR_DASH26"
msgid "Dash Dot (Rounded)"
msgstr ""
#. psNix
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_DASH27"
msgid "Long Dash Dot (Rounded)"
msgstr ""
#. FWkBJ
-#: include/svx/strings.hrc:935
+#: include/svx/strings.hrc:936
msgctxt "RID_SVXSTR_DASH28"
msgid "Double Dash Dot (Rounded)"
msgstr ""
#. eiCNz
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_DASH29"
msgid "Dash Dot Dot (Rounded)"
msgstr ""
#. BbE5B
-#: include/svx/strings.hrc:937
+#: include/svx/strings.hrc:938
msgctxt "RID_SVXSTR_DASH30"
msgid "Double Dash Dot Dot (Rounded)"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:939
+#: include/svx/strings.hrc:940
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr ""
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:941
+#: include/svx/strings.hrc:942
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:943
+#: include/svx/strings.hrc:944
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Аромб"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:945
+#: include/svx/strings.hrc:946
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:947
+#: include/svx/strings.hrc:948
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:949
+#: include/svx/strings.hrc:950
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr ""
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:951
+#: include/svx/strings.hrc:952
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:953
+#: include/svx/strings.hrc:954
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:955
+#: include/svx/strings.hrc:956
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:957
+#: include/svx/strings.hrc:958
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:959
+#: include/svx/strings.hrc:960
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Агьежь"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:961
+#: include/svx/strings.hrc:962
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Аквадрат"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:963
+#: include/svx/strings.hrc:964
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Ахыц"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:965
+#: include/svx/strings.hrc:966
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:967
+#: include/svx/strings.hrc:968
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr ""
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:969
+#: include/svx/strings.hrc:970
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr ""
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:971
+#: include/svx/strings.hrc:972
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Аромб"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:973
+#: include/svx/strings.hrc:974
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr ""
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:975
+#: include/svx/strings.hrc:976
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr ""
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:977
+#: include/svx/strings.hrc:978
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr ""
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:979
+#: include/svx/strings.hrc:980
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:981
+#: include/svx/strings.hrc:982
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:983
+#: include/svx/strings.hrc:984
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:985
+#: include/svx/strings.hrc:986
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:987
+#: include/svx/strings.hrc:988
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:989
+#: include/svx/strings.hrc:990
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:991
+#: include/svx/strings.hrc:992
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:993
+#: include/svx/strings.hrc:994
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1003
+#: include/svx/strings.hrc:1004
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr ""
#. hGytB
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr ""
#. opj2M
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr ""
#. tC5jE
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr ""
#. 3T9pJ
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr ""
#. N5FWG
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
#. Nhtbq
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. apBBr
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr ""
#. BseGn
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Қәҿиарала еиҭашьақәыргылоуп"
#. LfjDh
-#: include/svx/strings.hrc:1015
+#: include/svx/strings.hrc:1016
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr ""
#. BEAbm
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr ""
#. 5ye7z
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr ""
#. tEbUT
-#: include/svx/strings.hrc:1018
+#: include/svx/strings.hrc:1019
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr ""
#. EaAMF
-#: include/svx/strings.hrc:1019
+#: include/svx/strings.hrc:1020
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr ""
#. AicJe
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr ""
#. ZbeCG
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "Ихыркәшатәуп"
#. BBeKk
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "Аҵыхәтәантәи аҵакы"
#. mENBU
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "пт"
#. fRyqX
-#: include/svx/strings.hrc:1025
+#: include/svx/strings.hrc:1026
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "Асахьа аекспорт"
#. xXhtG
-#: include/svx/strings.hrc:1026
+#: include/svx/strings.hrc:1027
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "Еиқәырхатәуп асахьа"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
#. Heqmn
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr ""
#. AC56T
-#: include/svx/strings.hrc:1031
+#: include/svx/strings.hrc:1032
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr ""
#. 4DonY
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr ""
#. EL9V9
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr ""
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[Зегьы]"
#. RZVDm
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr ""
#. YNjeD
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Атема ҿыц"
#. 5uYha
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr ""
#. 78DGx
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr ""
#. zGEez
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Амаркерқәа"
#. MwX9z
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Аофис"
#. dAwiC
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Абираҟқәа"
#. Ccn8V
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Аблок-схемақәа"
#. 6ouMS
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr ""
#. 8GPFu
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Асахьақәа"
#. sqh2w
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Аҿаҧшырақәа"
#. B3KuT
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Аҩынтәи адаҟьа"
#. WR8JQ
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr ""
#. EbEZ6
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr ""
#. GALA8
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr ""
#. ZMoiA
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr ""
#. hNaiH
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Акомпиутерқәа"
#. mrvvG
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr ""
#. HhrDx
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr ""
#. 2jVzE
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Афинансқәа"
#. cmF3B
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr ""
#. as3XM
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "Афигурақәа"
#. gGyFP
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr ""
#. 5NrPj
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Адыргақәа"
#. AiXUK
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr ""
#. uRxP4
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Ахыцқәа"
#. c3WXh
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr ""
#. pmiE7
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Аклавиатура"
#. LYdAf
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Аамҭа"
#. 4UGrY
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Апрезентациа"
#. a46Xm
-#: include/svx/strings.hrc:1069
+#: include/svx/strings.hrc:1070
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Амзар"
#. YpuGv
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Анавигациа"
#. gAJH4
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr ""
#. ETEJu
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Афинансқәа"
#. rNez6
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Акомпиутерқәа"
#. ioX7y
-#: include/svx/strings.hrc:1074
+#: include/svx/strings.hrc:1075
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr ""
#. MmYFp
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr ""
#. EKFgg
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr ""
#. GgrBp
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr ""
#. E6onK
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Иалкаау ахәҭа акьыҧхьра"
#. HzX9m
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr ""
#. 3UyC8
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "Зегьы"
#. UxfS3
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "Алкаара"
#. KTgDd
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr ""
#. N6KLd
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr ""
#. AB6Vj
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr ""
#. NBBEB
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr ""
#. d9n5U
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr ""
#. A2mcf
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr ""
#. onGib
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr ""
#. XLQFD
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr ""
#. v5wRm
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr ""
#. 4DGjm
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr ""
#. kRzVE
-#: include/svx/strings.hrc:1094
+#: include/svx/strings.hrc:1095
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr ""
#. CSmTh
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr ""
#. eYrvo
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr ""
#. G4Ckx
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr ""
#. LGHsL
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr ""
#. HPevm
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr ""
#. GvKjC
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr ""
#. gmzHb
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr ""
#. DE5kt
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr ""
#. K5dY9
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr ""
#. TFBK3
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr ""
#. c7adj
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Астандарт"
#. djHis
-#: include/svx/strings.hrc:1107
+#: include/svx/strings.hrc:1108
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr ""
#. PURr6
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr ""
#. 9Ckww
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr ""
#. cDG4s
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "Еиҭа амаркерқәа..."
#. uDT6G
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr ""
#. q2Le9
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Адаҟьақәа"
#. jfL9n
-#: include/svx/strings.hrc:1113
+#: include/svx/strings.hrc:1114
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Ирыцқьатәуп аформатркра"
#. f6nP8
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "Еиҳаны астильқәа..."
#. DPbrc
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "Еиҭа апараметрқәа..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "Агарнитура"
#. SKCYy
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr ""
#. CVvXU
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr ""
#. xqzJj
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
#. aVTAG
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_THEME_COLORS"
msgid "Theme colors"
msgstr ""
#. 6BoWp
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
#. D6gmu
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_THEME_COLOR1"
msgid "Background - Dark 1"
msgstr ""
#. JBJhM
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_THEME_COLOR2"
msgid "Text - Light 1"
msgstr ""
#. C7MSY
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_THEME_COLOR3"
msgid "Background - Dark 2"
msgstr ""
#. YdMAB
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_THEME_COLOR4"
msgid "Text - Light 2"
msgstr ""
#. NAAZJ
-#: include/svx/strings.hrc:1127
+#: include/svx/strings.hrc:1128
msgctxt "RID_SVXSTR_THEME_COLOR5"
msgid "Accent 1"
msgstr ""
#. 6txaB
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXSTR_THEME_COLOR6"
msgid "Accent 2"
msgstr ""
#. fECsk
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXSTR_THEME_COLOR7"
msgid "Accent 3"
msgstr ""
#. 4DH3P
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXSTR_THEME_COLOR8"
msgid "Accent 4"
msgstr ""
#. dUUDX
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXSTR_THEME_COLOR9"
msgid "Accent 5"
msgstr ""
#. 73ZEk
-#: include/svx/strings.hrc:1132
+#: include/svx/strings.hrc:1133
msgctxt "RID_SVXSTR_THEME_COLOR10"
msgid "Accent 6"
msgstr ""
#. VKjfB
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVXSTR_THEME_COLOR11"
msgid "Hyperlink"
msgstr ""
#. DBfXC
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_THEME_COLOR12"
msgid "Followed Hyperlink"
msgstr ""
#. sNGoN
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_THEME_EFFECT1"
msgid "%1, 80% Lighter"
msgstr ""
#. uQBgP
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_THEME_EFFECT2"
msgid "%1, 60% Lighter"
msgstr ""
#. sEpvU
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_THEME_EFFECT3"
msgid "%1, 40% Lighter"
msgstr ""
#. XSfNG
-#: include/svx/strings.hrc:1138
+#: include/svx/strings.hrc:1139
msgctxt "RID_SVXSTR_THEME_EFFECT4"
msgid "%1, 25% Darker"
msgstr ""
#. 3xjEA
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_THEME_EFFECT5"
msgid "%1, 50% Darker"
msgstr ""
#. DJGyY
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Аекструзиа"
#. TyWTi
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr ""
#. DKFYE
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Инарҳәтәуп ҵаҟа"
#. 2Rrxc
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Инарҳәтәуп хыхь"
#. eDpJK
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Инарҳәтәуп армарахь"
#. CWDSN
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Инарҳәтәуп арӷьарахь"
#. CxYgt
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr ""
#. c5JCp
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr ""
#. KDSyh
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr ""
#. JpzeS
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr ""
#. j4AR9
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr ""
#. yA2xm
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr ""
#. DFEZP
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr ""
#. uPyWe
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Атеқсттә еффектқәа"
#. 7RVov
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Ихархәатәуп атеқсттә еффект аформа"
#. h3CLw
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr ""
#. 6h2dG
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr ""
#. eKHcV
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr ""
#. oo88Y
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr ""
#. 4sz83
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Астиль"
#. fEHXC
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "и"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr ""
#. CUEEW
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Акәакьтә кәаҧ алхра"
#. cQmVp
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Хыхьла арымарахь"
#. TtnJn
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr ""
#. UERVC
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Хыхьла арыӷьарахь"
#. CznfN
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr ""
#. jvzC7
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Ацентр ала"
#. HPtYD
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr ""
#. v4SqB
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Ҵаҟала арымарахь"
#. daA8a
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr ""
#. DGWf8
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Ҵаҟала арыӷьарахь"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr ""
#. aMva8
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Ара шәара ишәылшоит ишәыҧсахыр аконтур."
#. DXEuF
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Иҷыдоу асимвол алхра"
#. JfRzP
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr ""
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Асимвол акод "
#. HECeC
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr ""
#. w4wm8
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Аформақәа"
#. cz8aS
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr ""
#. JG7Es
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Аҷыдаҟазшьақәа:"
#. YQvBF
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Аформа аҷыдаҟазшьақәа"
#. qS9Rn
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr ""
#. PzEVD
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Аформа"
#. FWPxF
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Аформа"
#. Ba4Gy
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr ""
#. wtZqP
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr ""
#. HvXRK
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Аҭаҩра"
#. HmTfB
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "аҟынтә"
#. NZ68L
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Аҭакыра алхра:"
#. vGXiw
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr ""
#. zzFRi
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr ""
#. fS8JJ
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr ""
#. Qb4Gk
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr ""
#. zSJQe
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6708,338 +6714,338 @@ msgid ""
msgstr ""
#. Kb7sF
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr ""
#. pKEQb
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Аиҵагыла"
#. FXRKA
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr ""
#. hXjTN
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr ""
#. BWpyC
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Ианыхтәуп #"
#. ZeaDk
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Ианыхтәуп # аобиеқт(қәа)"
#. VgGrE
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1214
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr ""
#. FoXgt
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr ""
#. ZGDAr
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "Атеқсттә ҭыкыра"
#. CBmAL
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr ""
#. xwuJF
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr ""
#. WiNUf
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Ахьӡынҵа"
#. a7gAj
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Арыцхә аҭакыра"
#. EaBTj
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr ""
#. DWfsm
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr ""
#. TYjnr
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr ""
#. B6MEP
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr ""
#. DEn9D
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr ""
#. V4iMu
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "Акнопка"
#. TreFC
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr ""
#. NFysA
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "Аҭыҧдырга"
#. E5mMK
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "Агәыҧ"
#. 5474w
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "Аграфикатә кнопка"
#. qT2Ed
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr ""
#. 6Qvho
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "Афаил алхра"
#. uEYBR
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
#, fuzzy
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Атаблица"
#. 3SUEn
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr ""
#. VtEN6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr ""
#. eGgm4
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr ""
#. yME46
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Гәыҧ-гәыҧла алкаара"
#. s94UU
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr ""
#. PzA5d
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr ""
#. ZyBEz
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Арыцхә)"
#. guA5u
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Аамҭа)"
#. 2wgdY
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr ""
#. BUYuD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr ""
#. AcTBB
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Ма"
#. 6RPtu
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr ""
#. iEoGb
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr ""
#. Da6gx
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr ""
#. ZoEuu
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr ""
#. 75ECE
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr ""
#. tzFv5
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr ""
#. y6Z26
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr ""
#. F8FgA
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Адырқәа рбаза иаҵанакуам атаблица «#»."
#. EDcU7
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr ""
#. YBFF5
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr ""
#. cECTG
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr ""
#. VkeLY
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr ""
#. z9bf9
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr ""
#. CEg85
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr ""
#. ZGAAQ
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr ""
#. W4uM2
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (аҧхьара мацараз)"
#. DgfNh
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Ари афаил ыҟоуп. Ихҩылаатәума?"
#. dSYCi
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object# аҭыҧдырга"
#. JpaM6
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -7047,7 +7053,7 @@ msgid ""
msgstr ""
#. y5Dyt
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -7055,7 +7061,7 @@ msgid ""
msgstr ""
#. VEzGF
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -7063,13 +7069,13 @@ msgid ""
msgstr ""
#. 3hF6H
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr ""
#. AWEbJ
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -7078,7 +7084,7 @@ msgid ""
msgstr ""
#. SGiK5
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -7087,1013 +7093,1013 @@ msgid ""
msgstr ""
#. 2zzHP
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr ""
#. 4nAtc
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr ""
#. qrFQD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Ахьӡ «%1» ыҟоуп. Иалышәх даҽа хьӡык."
#. DKkaw
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr ""
#. xcAaD
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "Put"
#. tkRR3
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "Get"
#. fsyAL
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Мап"
#. Bjxmg
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "Аекземплиар"
#. affmF
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Адокумент"
#. gJLHj
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Аидҳәалара: "
#. AEHco
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Азхьарҧш: "
#. iLaBC
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Аҟаҵара: "
#. HBV5Q
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Аметод: "
#. dAN2F
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Иалаԥсахтәуп "
#. QMiqA
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Иацҵатәуп аелемент"
#. C9YBB
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Аелемент аредакциа азутәуп"
#. XAh7B
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Ианыхтәуп аелемент"
#. CLHER
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Иацҵатәуп атрибут"
#. 6Ycoo
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Атрибут аредакциа азутәуп"
#. 6dSAd
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Ианыхтәуп атрибут"
#. Ljhja
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr ""
#. CHTrw
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr ""
#. yYwEG
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr ""
#. yVch8
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr ""
#. AX58u
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr ""
#. DFxmD
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr ""
#. qvvD7
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Аелемент"
#. U4Btb
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Атрибут"
#. Prceg
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1303
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Аидҳәалара"
#. iFARB
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr ""
#. BTmNa
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr ""
#. 5WjQZ
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Арымарахь"
#. JC7pc
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Арыӷьарахь"
#. MhfuC
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Ацентр ала"
#. kX7GR
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr ""
#. 7vecp
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr ""
#. qqCSF
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. 2BBEb
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr ""
#. xZprv
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr ""
#. Yydkh
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr ""
#. BRmFY
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr ""
#. Swq5S
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "Адокумент ҧсахын. Шәақәыӷәӷәа аиқәырхараз."
#. tRWKa
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr ""
#. 7C8GH
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Адокумент аҭагалара..."
#. YbNsP
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Ирдуны"
#. 2YBJE
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Ирхәыҷны"
#. n9EyG
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
#. vNTaU
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr ""
#. 2Bufm
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Адаҟьа зегьы"
#. 2UBAF
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Адаҟьа аҭбаара ала"
#. YBg9X
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr ""
#. Wi5Fy
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Астильқәа алаҵаны"
#. BJSzf
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Абзац астильқәа"
#. ARuQM
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Абларҭа астильқәа"
#. 7ChAu
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
#. CVSwo
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
#. Diftw
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Аҧшааратә цәаҳәа ҧшаам"
#. xACuY
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr ""
#. CGo5w
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
#. nDCC4
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr ""
#. sDL47
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1362
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Ииашам ажәамаӡа"
#. JGJ9F
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Ажәамаӡақәа еиқәшәаӡом"
#. VHTRb
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Асанҭыр хәыҷқәа"
#. AiNrB
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Асанҭыр дуқәа"
#. Vtk8J
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr ""
#. bQFBw
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Асанҭыр дуқәа"
#. 5eJDd
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr ""
#. D8zQC
-#: include/svx/strings.hrc:1369
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr ""
#. QCULV
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Аномерркра 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Аномерркра 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Аномерркра (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr ""
#. BPgDJ
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr ""
#. GooHz
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr ""
#. k6waJ
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1379
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr ""
#. ZiWKK
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1380
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr ""
#. oDTBg
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. m56fN
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. RyTLW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr ""
#. GAfTp
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Инумеррку"
#. gjEgN
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr ""
#. DZ2kE
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
#. TV9Mc
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr ""
#. tiXu5
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr ""
#. nEJiF
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1390
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "ZIP -фаил аҧҵара ауам."
#. CC6Sw
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr ""
#. c69eB
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. nsioo
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. DzJ9Y
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. HTTW5
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. H9jn7
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Иҧшаатәуп"
#. WbEFL
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr ""
#. 59ENV
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) пикс.)"
#. JEkzY
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1404
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) в $(DPI) dpi"
#. n8VBe
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) кб"
#. Xgeqc
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "асахьа GIF"
#. G2q7M
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "асахьа JPEG"
#. oGKBg
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1409
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "асахьа PNG"
#. Fkrjs
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "асахьа TIFF"
#. VWyEb
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "асахьа WMF"
#. pCpoE
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "асахьа MET"
#. DELaB
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1413
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "асахьа PICT"
#. 3AZAG
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "асахьа SVG"
#. aCEJW
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "асахьа BMP"
#. NBoWH
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "идырӡам"
#. 8LBFX
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr ""
#. xLF42
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr ""
#. fw5hA
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Аҟаҧшь"
#. CiQvY
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Аиаҵәа"
#. BhvBe
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr ""
#. HSP36
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr ""
#. w5BYP
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr ""
#. EZUjS
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Гамма"
#. ernMB
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr ""
#. LdkNB
-#: include/svx/strings.hrc:1428
+#: include/svx/strings.hrc:1429
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr ""
#. TJmBu
-#: include/svx/strings.hrc:1430
+#: include/svx/strings.hrc:1431
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr ""
#. WQqju
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr ""
#. ipfz6
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr ""
#. MLR44
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr ""
#. vUDeh
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr ""
#. EFBbE
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr ""
#. 7HeyP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr ""
#. HCuWQ
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr ""
#. zD9BB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Адаҟьа ахҳәаа: "
#. a4eSJ
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr ""
#. DuQGP
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1441
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr ""
#. nWQ7R
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr ""
#. PxkPZ
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr ""
#. B7YEa
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr ""
#. vPbGB
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Мап"
#. akGGo
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Альбомтә"
#. bbcaZ
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Ашәҟәытә"
#. BQtGg
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Арымарахь"
#. JWFLj
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Арыӷьарахь"
#. bxvGx
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Зегьы"
#. S3nm4
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr ""
#. dcvEJ
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Автор: "
#. 2siC9
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Арыцхә: "
#. pWoLe
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Атеқст: "
#. pAABc
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Асимвол аҿаҧшыра"
#. Deknh
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr ""
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8101,2117 +8107,2117 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr ""
#. bcjRA
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr ""
#. h6THj
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr ""
#. o4EF9
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr ""
#. W3CGs
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr ""
#. yZjF6
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr ""
#. EASZR
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr ""
#. wBjC4
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr ""
#. Dh8Es
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr ""
#. jGT5E
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr ""
#. DQgLS
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr ""
#. kXEQY
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr ""
#. Cb8g4
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr ""
#. ZmDCd
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr ""
#. hZDFV
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr ""
#. c3CqD
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr ""
#. EfVnG
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr ""
#. iWzLc
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr ""
#. omacG
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr ""
#. Cdwzw
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
#. BhEGN
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr ""
#. 6YkEo
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr ""
#. J5qn4
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr ""
#. 4UEFU
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr ""
#. C5yzo
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr ""
#. EvjbD
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr ""
#. HqFTh
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr ""
#. npAc8
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr ""
#. AHAB4
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr ""
#. gMEFL
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr ""
#. uVYXp
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr ""
#. LEQg6
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr ""
#. D9KFj
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr ""
#. yaxYV
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Аԥара асимволқәа"
#. jzA5i
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr ""
#. CHNBZ
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr ""
#. cDkEd
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Ахыҧхьаӡаратә формақәа"
#. j25Fp
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Ахыцқәа"
#. p5Tbx
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr ""
#. ckgof
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr ""
#. 8rXdw
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr ""
#. D4J8A
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr ""
#. hXwgf
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr ""
#. AD9HJ
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr ""
#. vViaR
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr ""
#. ok7ks
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr ""
#. sKty5
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Еиуеиԥшым адыргаҷқәа"
#. yDpNT
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr ""
#. Cth4P
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr ""
#. Bo4iK
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr ""
#. i2Cdr
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr ""
#. 9YYLD
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr ""
#. F9UFG
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr ""
#. yeRDE
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr ""
#. kPFs9
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr ""
#. 6tAx6
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "Аишьашәалара"
#. VakXP
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr ""
#. XzS6D
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr ""
#. JVCP5
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr ""
#. Y33VK
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr ""
#. 8yYiM
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr ""
#. BEfFQ
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr ""
#. NCsAG
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr ""
#. adi8G
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr ""
#. vLBhn
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr ""
#. i6R3B
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr ""
#. 7EDCh
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr ""
#. WWoWx
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr ""
#. dkDXh
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Испециалу"
#. GQSEx
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr ""
#. BL66x
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr ""
#. cuQ2k
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr ""
#. wtKAB
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr ""
#. GPFqC
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr ""
#. 7AovD
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr ""
#. G3GQF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr ""
#. YzBDD
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr ""
#. 3XZRw
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr ""
#. nZnQc
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr ""
#. HBwZE
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr ""
#. TTFkh
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr ""
#. 2jALB
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr ""
#. 2iHJN
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr ""
#. ABgr9
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr ""
#. a4q6S
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr ""
#. k638K
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr ""
#. pKFTg
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr ""
#. TJHGp
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr ""
#. nujxa
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr ""
#. neD93
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr ""
#. C6LwC
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr ""
#. giR4r
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr ""
#. EqFxm
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr ""
#. VeZNe
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr ""
#. Tvkgh
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr ""
#. CuThH
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr ""
#. nBtk5
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr ""
#. vvMNk
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr ""
#. aiySp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr ""
#. PEGiu
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr ""
#. tRBTP
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr ""
#. 8sgGF
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr ""
#. CdXvH
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr ""
#. jFWRQ
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr ""
#. jhzoc
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr ""
#. B66QG
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr ""
#. j8cuG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr ""
#. AE5wq
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr ""
#. 9mgNF
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr ""
#. d5JWE
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr ""
#. XnzyB
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr ""
#. R5W9H
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr ""
#. QYf7A
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr ""
#. 63BBg
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr ""
#. ykowm
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr ""
#. GGdze
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr ""
#. WLLAP
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr ""
#. EyZR2
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr ""
#. o3AQ6
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr ""
#. BVieL
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr ""
#. DwAEz
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr ""
#. 3GDP5
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr ""
#. BfGBm
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr ""
#. cL7Vo
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr ""
#. MQoBs
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr ""
#. fCpRM
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr ""
#. zyW2q
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr ""
#. GWxb8
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr ""
#. 8ZJmr
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr ""
#. RR6Er
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr ""
#. K3GsF
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr ""
#. y4HCg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr ""
#. KUnXb
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr ""
#. zDaXa
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr ""
#. 9Z24A
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr ""
#. CANHf
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr ""
#. X8DEc
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr ""
#. fYpFz
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr ""
#. 3Gzxx
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr ""
#. zKCVG
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr ""
#. U8zrU
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr ""
#. B2yF8
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr ""
#. J4KdA
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr ""
#. eGPjC
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr ""
#. XboFE
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr ""
#. tBJi3
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr ""
#. Qrowh
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr ""
#. aZKS5
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Ивертикалу аформақәа"
#. ihUDF
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr ""
#. Z3AAi
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr ""
#. 428ER
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr ""
#. SqFfT
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr ""
#. yMmow
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr ""
#. V6CsB
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr ""
#. GNBwz
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr ""
#. VBPZE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr ""
#. 9msGJ
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr ""
#. i6Gx9
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr ""
#. WrXXX
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr ""
#. FhhAQ
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr ""
#. eHvUh
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr ""
#. ZkKwE
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr ""
#. pBASG
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr ""
#. GoQpd
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr ""
#. 6pufg
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr ""
#. bmFny
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr ""
#. EaXay
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Чамтәи"
#. qYaAV
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr ""
#. At8Tk
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr ""
#. ryGAF
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr ""
#. EYLa8
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr ""
#. TPN6m
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr ""
#. G5GLd
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr ""
#. EyMaF
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr ""
#. r2YQs
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr ""
#. feZ2Q
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr ""
#. H4FpF
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr ""
#. BgKLG
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr ""
#. bVNYf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr ""
#. riEM3
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr ""
#. CQMqK
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr ""
#. gDEUp
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr ""
#. UsAq2
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr ""
#. g5H7j
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr ""
#. upBjC
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr ""
#. GQ3XX
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr ""
#. HGVSu
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr ""
#. ryvor
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr ""
#. RTxUc
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr ""
#. 7E6G8
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr ""
#. Ab3wu
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr ""
#. 5gN8e
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr ""
#. D7rcV
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr ""
#. d44Dq
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr ""
#. CLuJC
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr ""
#. FpFeH
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr ""
#. Swfzy
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr ""
#. bMYVC
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr ""
#. Dqcpa
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr ""
#. 8eCZn
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr ""
#. 8LVFp
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr ""
#. 9SrgK
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr ""
#. cQEzt
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr ""
#. n4oND
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr ""
#. xibkG
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr ""
#. xyswt
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr ""
#. TqExt
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr ""
#. wtMts
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr ""
#. WgGuX
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr ""
#. fBitP
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr ""
#. CWvjP
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr ""
#. D7mEf
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr ""
#. 8ouWH
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr ""
#. z3gG4
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr ""
#. mFAeA
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr ""
#. b5m8K
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr ""
#. Xrkei
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr ""
#. hG9Na
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr ""
#. rTKpL
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr ""
#. CAKEC
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr ""
#. pTsMT
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr ""
#. HNCk9
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr ""
#. 8TGuM
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr ""
#. wNozk
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Аҵәаӷәатә"
#. SjAev
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr ""
#. jC4Ue
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr ""
#. y7tCX
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr ""
#. EZADa
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr ""
#. iGUzh
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr ""
#. ho93C
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr ""
#. S69GG
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr ""
#. RTgGA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Нева"
#. JJrpR
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Осеидж"
#. o3qMt
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr ""
#. DH39v
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr ""
#. jPSFu
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr ""
#. rbMNp
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. 9UAmW
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr ""
#. QFLaj
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr ""
#. CYEeS
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr ""
#. ABqB6
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr ""
#. DmagG
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr ""
#. tjuhJ
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr ""
#. naYAA
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr ""
#. JGVtT
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr ""
#. pkBYF
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr ""
#. SEVKT
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr ""
#. NpBis
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr ""
#. ssh5F
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
#. LzhYZ
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1806
+#: include/svx/strings.hrc:1807
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1812
+#: include/svx/strings.hrc:1813
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1814
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
#. o8fB8
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
#. 6NnM2
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
#. fRcEu
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr ""
#. uqzE7
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr ""
#. 6ecLB
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr ""
#. B6KZc
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
@@ -10220,19 +10226,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
#. Q2kMw
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
@@ -10645,440 +10651,440 @@ msgid "Vertical text alignment"
msgstr "Атеқст вертикалла аиҟаратәра"
#. DPZws
-#: svx/inc/fieldunit.hrc:30
+#: svx/inc/fieldunit.hrc:31
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Millimeter"
msgstr "Амиллиметрқәа"
#. RWGZH
-#: svx/inc/fieldunit.hrc:31
+#: svx/inc/fieldunit.hrc:32
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Centimeter"
msgstr "Асантиметрқәа"
#. Uy6BJ
-#: svx/inc/fieldunit.hrc:32
+#: svx/inc/fieldunit.hrc:33
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Meter"
msgstr "Аметрқәа"
#. ej2m5
-#: svx/inc/fieldunit.hrc:33
+#: svx/inc/fieldunit.hrc:34
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Kilometer"
msgstr "Акилометрқәа"
#. EFSC2
-#: svx/inc/fieldunit.hrc:34
+#: svx/inc/fieldunit.hrc:35
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Inch"
msgstr "Адиуимқәа"
#. pcGHS
-#: svx/inc/fieldunit.hrc:35
+#: svx/inc/fieldunit.hrc:36
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Foot"
msgstr "Афутқәа"
#. 5a3Dq
-#: svx/inc/fieldunit.hrc:36
+#: svx/inc/fieldunit.hrc:37
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Miles"
msgstr "Мили"
#. zpCki
-#: svx/inc/fieldunit.hrc:37
+#: svx/inc/fieldunit.hrc:38
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Pica"
msgstr ""
#. aTBVj
-#: svx/inc/fieldunit.hrc:38
+#: svx/inc/fieldunit.hrc:39
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Point"
msgstr "Апункт"
#. tkSdX
-#: svx/inc/fieldunit.hrc:39
+#: svx/inc/fieldunit.hrc:40
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Char"
msgstr "Асимвол"
#. DyFjJ
-#: svx/inc/fieldunit.hrc:40
+#: svx/inc/fieldunit.hrc:41
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Line"
msgstr "Ацәаҳәа"
#. QYjeZ
-#: svx/inc/fmstring.hrc:27
+#: svx/inc/fmstring.hrc:29
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "LIKE"
msgstr "LIKE"
#. iRDFU
-#: svx/inc/fmstring.hrc:28
+#: svx/inc/fmstring.hrc:30
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "NOT"
msgstr "NOT"
#. JBngM
-#: svx/inc/fmstring.hrc:29
+#: svx/inc/fmstring.hrc:31
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "EMPTY"
msgstr "EMPTY"
#. zpTCG
-#: svx/inc/fmstring.hrc:30
+#: svx/inc/fmstring.hrc:32
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "TRUE"
msgstr "TRUE"
#. DYBeJ
-#: svx/inc/fmstring.hrc:31
+#: svx/inc/fmstring.hrc:33
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "FALSE"
msgstr "FALSE"
#. mtAA5
-#: svx/inc/fmstring.hrc:32
+#: svx/inc/fmstring.hrc:34
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "IS"
msgstr "IS"
#. YWtNJ
-#: svx/inc/fmstring.hrc:33
+#: svx/inc/fmstring.hrc:35
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "BETWEEN"
msgstr "BETWEEN"
#. 47bZX
-#: svx/inc/fmstring.hrc:34
+#: svx/inc/fmstring.hrc:36
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "OR"
msgstr "OR"
#. 9ZBAf
-#: svx/inc/fmstring.hrc:35
+#: svx/inc/fmstring.hrc:37
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "AND"
msgstr "AND"
#. xZ65E
-#: svx/inc/fmstring.hrc:36
+#: svx/inc/fmstring.hrc:38
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Average"
msgstr "Ибжьаратәу"
#. cTfDS
-#: svx/inc/fmstring.hrc:37
+#: svx/inc/fmstring.hrc:39
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Count"
msgstr "Ахыҧхьаӡара"
#. TFaGE
-#: svx/inc/fmstring.hrc:38
+#: svx/inc/fmstring.hrc:40
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Maximum"
msgstr "Амаксимум"
#. gGpDF
-#: svx/inc/fmstring.hrc:39
+#: svx/inc/fmstring.hrc:41
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Minimum"
msgstr "Аминимум"
#. 3YcTD
-#: svx/inc/fmstring.hrc:40
+#: svx/inc/fmstring.hrc:42
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Sum"
msgstr "Аицҵалыҵ"
#. GwMS7
-#: svx/inc/fmstring.hrc:41
+#: svx/inc/fmstring.hrc:43
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Every"
msgstr ""
#. M6DCS
-#: svx/inc/fmstring.hrc:42
+#: svx/inc/fmstring.hrc:44
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Any"
msgstr ""
#. AyNgd
-#: svx/inc/fmstring.hrc:43
+#: svx/inc/fmstring.hrc:45
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Some"
msgstr "алагамҭа"
#. QYQ2c
-#: svx/inc/fmstring.hrc:44
+#: svx/inc/fmstring.hrc:46
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_POP"
msgstr "STDDEV_POP"
#. DsDPW
-#: svx/inc/fmstring.hrc:45
+#: svx/inc/fmstring.hrc:47
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_SAMP"
msgstr "STDDEV_SAMP"
#. RqHwF
-#: svx/inc/fmstring.hrc:46
+#: svx/inc/fmstring.hrc:48
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_SAMP"
msgstr "VAR_SAMP"
#. id43S
-#: svx/inc/fmstring.hrc:47
+#: svx/inc/fmstring.hrc:49
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_POP"
msgstr "VAR_POP"
#. mjjoD
-#: svx/inc/fmstring.hrc:48
+#: svx/inc/fmstring.hrc:50
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Collect"
msgstr ""
#. GcZBA
-#: svx/inc/fmstring.hrc:49
+#: svx/inc/fmstring.hrc:51
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Fusion"
msgstr "Аидҵара"
#. gpKQz
-#: svx/inc/fmstring.hrc:50
+#: svx/inc/fmstring.hrc:52
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Intersection"
msgstr ""
#. 8DMsd
-#: svx/inc/formnavi.hrc:27
+#: svx/inc/formnavi.hrc:29
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit"
msgid "~Text Box"
msgstr ""
#. LaRik
-#: svx/inc/formnavi.hrc:28
+#: svx/inc/formnavi.hrc:30
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
msgid "~Button"
msgstr ""
#. qjKaG
-#: svx/inc/formnavi.hrc:29
+#: svx/inc/formnavi.hrc:31
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
msgid "La~bel field"
msgstr ""
#. sq3AT
-#: svx/inc/formnavi.hrc:30
+#: svx/inc/formnavi.hrc:32
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
msgid "L~ist Box"
msgstr ""
#. agpbk
-#: svx/inc/formnavi.hrc:31
+#: svx/inc/formnavi.hrc:33
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
msgid "~Check Box"
msgstr ""
#. 9WA4B
-#: svx/inc/formnavi.hrc:32
+#: svx/inc/formnavi.hrc:34
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
msgid "~Radio Button"
msgstr ""
#. PpgmW
-#: svx/inc/formnavi.hrc:33
+#: svx/inc/formnavi.hrc:35
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
msgid "G~roup Box"
msgstr ""
#. A8Dbz
-#: svx/inc/formnavi.hrc:34
+#: svx/inc/formnavi.hrc:36
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
msgstr ""
#. HRAoH
-#: svx/inc/formnavi.hrc:35
+#: svx/inc/formnavi.hrc:37
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
msgid "I~mage Button"
msgstr ""
#. gZZqq
-#: svx/inc/formnavi.hrc:36
+#: svx/inc/formnavi.hrc:38
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
msgid "~File Selection"
msgstr ""
#. EEADE
-#: svx/inc/formnavi.hrc:37
+#: svx/inc/formnavi.hrc:39
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
msgid "~Date Field"
msgstr ""
#. gDr8N
-#: svx/inc/formnavi.hrc:38
+#: svx/inc/formnavi.hrc:40
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
msgid "Tim~e Field"
msgstr ""
#. jAbfP
-#: svx/inc/formnavi.hrc:39
+#: svx/inc/formnavi.hrc:41
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
msgid "~Numerical Field"
msgstr ""
#. ryXjj
-#: svx/inc/formnavi.hrc:40
+#: svx/inc/formnavi.hrc:42
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
msgid "C~urrency Field"
msgstr ""
#. GXHFr
-#: svx/inc/formnavi.hrc:41
+#: svx/inc/formnavi.hrc:43
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
msgid "~Pattern Field"
msgstr ""
#. a7jCc
-#: svx/inc/formnavi.hrc:42
+#: svx/inc/formnavi.hrc:44
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
msgid "Ima~ge Control"
msgstr ""
#. WDsBh
-#: svx/inc/formnavi.hrc:43
+#: svx/inc/formnavi.hrc:45
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
msgid "Fo~rmatted Field"
msgstr ""
#. aEXn5
-#: svx/inc/formnavi.hrc:44
+#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
msgstr ""
#. cGxjA
-#: svx/inc/formnavi.hrc:45
+#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
msgstr ""
#. HYbc6
-#: svx/inc/formnavi.hrc:46
+#: svx/inc/formnavi.hrc:48
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
#. d7vkX
-#: svx/inc/frmsel.hrc:30
+#: svx/inc/frmsel.hrc:31
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Border setting"
msgstr ""
#. CBSYv
-#: svx/inc/frmsel.hrc:31
+#: svx/inc/frmsel.hrc:32
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Left border line"
msgstr ""
#. YAWUD
-#: svx/inc/frmsel.hrc:32
+#: svx/inc/frmsel.hrc:33
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Right border line"
msgstr ""
#. VH67W
-#: svx/inc/frmsel.hrc:33
+#: svx/inc/frmsel.hrc:34
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Top border line"
msgstr ""
#. MLMaA
-#: svx/inc/frmsel.hrc:34
+#: svx/inc/frmsel.hrc:35
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Bottom border line"
msgstr ""
#. ZqTGF
-#: svx/inc/frmsel.hrc:35
+#: svx/inc/frmsel.hrc:36
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Horizontal border line"
msgstr ""
#. jzGHA
-#: svx/inc/frmsel.hrc:36
+#: svx/inc/frmsel.hrc:37
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Vertical border line"
msgstr ""
#. DodCu
-#: svx/inc/frmsel.hrc:37
+#: svx/inc/frmsel.hrc:38
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from top left to bottom right"
msgstr ""
#. wfJ23
-#: svx/inc/frmsel.hrc:38
+#: svx/inc/frmsel.hrc:39
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from bottom left to top right"
msgstr ""
#. dTBRy
-#: svx/inc/frmsel.hrc:43
+#: svx/inc/frmsel.hrc:44
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Border setting"
msgstr ""
#. LhEua
-#: svx/inc/frmsel.hrc:44
+#: svx/inc/frmsel.hrc:45
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Left border line"
msgstr ""
#. DAuHi
-#: svx/inc/frmsel.hrc:45
+#: svx/inc/frmsel.hrc:46
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Right border line"
msgstr ""
#. BYUTR
-#: svx/inc/frmsel.hrc:46
+#: svx/inc/frmsel.hrc:47
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Top border line"
msgstr ""
#. QAnid
-#: svx/inc/frmsel.hrc:47
+#: svx/inc/frmsel.hrc:48
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Bottom border line"
msgstr ""
#. kDBDR
-#: svx/inc/frmsel.hrc:48
+#: svx/inc/frmsel.hrc:49
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Horizontal border line"
msgstr ""
#. Em9YX
-#: svx/inc/frmsel.hrc:49
+#: svx/inc/frmsel.hrc:50
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Vertical border line"
msgstr ""
#. oDFKb
-#: svx/inc/frmsel.hrc:50
+#: svx/inc/frmsel.hrc:51
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from top left to bottom right"
msgstr ""
#. 5EYDA
-#: svx/inc/frmsel.hrc:51
+#: svx/inc/frmsel.hrc:52
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr ""
@@ -11120,500 +11126,500 @@ msgstr ""
#. hPpj7
#. SVX_NUM_NUMBER_NONE
-#: svx/inc/numberingtype.hrc:29
+#: svx/inc/numberingtype.hrc:31
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "None"
msgstr "Мап"
#. dQWBh
#. SVX_NUM_CHAR_SPECIAL
-#: svx/inc/numberingtype.hrc:30
+#: svx/inc/numberingtype.hrc:32
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Bullet"
msgstr "Амаркер"
#. GfQQK
#. SVX_NUM_BITMAP
-#: svx/inc/numberingtype.hrc:31
+#: svx/inc/numberingtype.hrc:33
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Graphics"
msgstr "Аграфика"
#. DfEKa
#. SVX_NUM_BITMAP|0x80
-#: svx/inc/numberingtype.hrc:32
+#: svx/inc/numberingtype.hrc:34
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Linked graphics"
msgstr ""
#. AF3ts
#. SVX_NUM_ARABIC
-#: svx/inc/numberingtype.hrc:33
+#: svx/inc/numberingtype.hrc:35
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
#. bBGa7
#. SVX_NUM_CHARS_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:34
+#: svx/inc/numberingtype.hrc:36
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
#. 5MDDu
#. SVX_NUM_CHARS_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:35
+#: svx/inc/numberingtype.hrc:37
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, b, c, ..."
msgstr "a, b, c, ..."
#. qGL48
#. SVX_NUM_ROMAN_UPPER
-#: svx/inc/numberingtype.hrc:36
+#: svx/inc/numberingtype.hrc:38
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
#. tZAzS
#. SVX_NUM_ROMAN_LOWER
-#: svx/inc/numberingtype.hrc:37
+#: svx/inc/numberingtype.hrc:39
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
#. hbCEG
#. TEXT_NUMBER
-#: svx/inc/numberingtype.hrc:38
+#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
msgstr ""
#. ymefj
#. TEXT_CARDINAL
-#: svx/inc/numberingtype.hrc:39
+#: svx/inc/numberingtype.hrc:41
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
msgstr ""
#. uPBZs
#. TEXT_ORDINAL
-#: svx/inc/numberingtype.hrc:40
+#: svx/inc/numberingtype.hrc:42
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
msgstr ""
#. 2QoAG
#. SVX_NUM_CHARS_UPPER_LETTER_N
-#: svx/inc/numberingtype.hrc:41
+#: svx/inc/numberingtype.hrc:43
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ..."
#. 7Snqt
#. SVX_NUM_CHARS_LOWER_LETTER_N
-#: svx/inc/numberingtype.hrc:42
+#: svx/inc/numberingtype.hrc:44
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
#. 2jYQi
#. SYMBOL_CHICAGO
-#: svx/inc/numberingtype.hrc:43
+#: svx/inc/numberingtype.hrc:45
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "*, †, ‡, §, **, ††, ..."
msgstr ""
#. GG8gr
#. NATIVE_NUMBERING
-#: svx/inc/numberingtype.hrc:44
+#: svx/inc/numberingtype.hrc:46
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Native Numbering"
msgstr "Амилаҭтә номерркра"
#. yLB7R
#. CHARS_CYRILLIC_UPPER_LETTER_BG
-#: svx/inc/numberingtype.hrc:45
+#: svx/inc/numberingtype.hrc:47
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (аболгартә)"
#. JHskj
#. CHARS_CYRILLIC_LOWER_LETTER_BG
-#: svx/inc/numberingtype.hrc:46
+#: svx/inc/numberingtype.hrc:48
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (аболгартә)"
#. sqKyt
#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:47
+#: svx/inc/numberingtype.hrc:49
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (аболгартә)"
#. QtcCE
#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:48
+#: svx/inc/numberingtype.hrc:50
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (аболгартә)"
#. DeUDb
#. CHARS_CYRILLIC_UPPER_LETTER_RU
-#: svx/inc/numberingtype.hrc:49
+#: svx/inc/numberingtype.hrc:51
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (аурыстә)"
#. kAHJb
#. CHARS_CYRILLIC_LOWER_LETTER_RU
-#: svx/inc/numberingtype.hrc:50
+#: svx/inc/numberingtype.hrc:52
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (аурыстә)"
#. kHAr7
#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:51
+#: svx/inc/numberingtype.hrc:53
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (аурыстә)"
#. Dkve7
#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:52
+#: svx/inc/numberingtype.hrc:54
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (аурыстә)"
#. EdfYn
#. CHARS_CYRILLIC_UPPER_LETTER_SR
-#: svx/inc/numberingtype.hrc:53
+#: svx/inc/numberingtype.hrc:55
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (аурыстә)"
#. oFJkn
#. CHARS_CYRILLIC_LOWER_LETTER_SR
-#: svx/inc/numberingtype.hrc:54
+#: svx/inc/numberingtype.hrc:56
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (асербтә)"
#. oA7CM
#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:55
+#: svx/inc/numberingtype.hrc:57
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (асербтә)"
#. Eom7M
#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:56
+#: svx/inc/numberingtype.hrc:58
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (асербтә)"
#. SDSQ6
#. CHARS_GREEK_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:57
+#: svx/inc/numberingtype.hrc:59
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Α, Β, Γ, ... (Greek)"
msgstr ""
#. CMFjw
#. CHARS_GREEK_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:58
+#: svx/inc/numberingtype.hrc:60
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "α, β, γ, ... (Greek)"
msgstr ""
#. 8Cxkk
#. NUMBER_HEBREW
-#: svx/inc/numberingtype.hrc:59
+#: svx/inc/numberingtype.hrc:61
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...י, יא...כ, ..."
msgstr ""
#. n2sV8
#. CHARS_HEBREW
-#: svx/inc/numberingtype.hrc:60
+#: svx/inc/numberingtype.hrc:62
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...ת, אא...תת, ..."
msgstr ""
#. nR8RG
#. NUMBER_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:61
+#: svx/inc/numberingtype.hrc:63
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "١, ٢, ٣, ٤, ... (Arabic)"
msgstr ""
#. jEE4r
#. NUMBER_EAST_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:62
+#: svx/inc/numberingtype.hrc:64
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "۱, ۲, ۳, ۴, ... (Farsi)"
msgstr ""
#. YFYp2
#. NUMBER_INDIC_DEVANAGARI
-#: svx/inc/numberingtype.hrc:63
+#: svx/inc/numberingtype.hrc:65
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "१, २, ३, ..."
msgstr ""
#. Vd6uV
#. enum SvxRotateMode ----------------------------------------------------
-#: svx/inc/rotationstrings.hrc:18
+#: svx/inc/rotationstrings.hrc:20
msgctxt "RID_SVXITEMS_ROTATE_MODE_STANDARD"
msgid "Rotation only within cell"
msgstr ""
#. r8WzF
-#: svx/inc/rotationstrings.hrc:19
+#: svx/inc/rotationstrings.hrc:21
msgctxt "RID_SVXITEMS_ROTATE_MODE_TOP"
msgid "From upper cell edge"
msgstr ""
#. E7EVi
-#: svx/inc/rotationstrings.hrc:20
+#: svx/inc/rotationstrings.hrc:22
msgctxt "RID_SVXITEMS_ROTATE_MODE_CENTER"
msgid "From vertical middle cell"
msgstr ""
#. NEwyu
-#: svx/inc/rotationstrings.hrc:21
+#: svx/inc/rotationstrings.hrc:23
msgctxt "RID_SVXITEMS_ROTATE_MODE_BOTTOM"
msgid "From lower cell edge"
msgstr ""
#. Je56M
-#: svx/inc/samecontent.hrc:18
+#: svx/inc/samecontent.hrc:20
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
msgstr "Адаҟьақәа зегьы"
#. kKCQR
-#: svx/inc/samecontent.hrc:19
+#: svx/inc/samecontent.hrc:21
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First Page"
msgstr "Актәи адаҟьа"
#. MHuCA
-#: svx/inc/samecontent.hrc:20
+#: svx/inc/samecontent.hrc:22
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "Left and Right Pages"
msgstr "Армарахтәии арӷьарахьтәии адаҟьақәа"
#. XH8p4
-#: svx/inc/samecontent.hrc:21
+#: svx/inc/samecontent.hrc:23
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First, Left and Right Pages"
msgstr "Актәи, армарахтәии арӷьарахьтәии адаҟьақәа"
#. F9hHK
-#: svx/inc/spacing.hrc:24
+#: svx/inc/spacing.hrc:26
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "None"
msgstr ""
#. GAuJk
-#: svx/inc/spacing.hrc:25
+#: svx/inc/spacing.hrc:27
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. DB9aM
-#: svx/inc/spacing.hrc:26
+#: svx/inc/spacing.hrc:28
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small (1/8″)"
msgstr ""
#. 5PhsT
-#: svx/inc/spacing.hrc:27
+#: svx/inc/spacing.hrc:29
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. 3LSyH
-#: svx/inc/spacing.hrc:28
+#: svx/inc/spacing.hrc:30
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. NzRZJ
-#: svx/inc/spacing.hrc:29
+#: svx/inc/spacing.hrc:31
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. JBwJZ
-#: svx/inc/spacing.hrc:30
+#: svx/inc/spacing.hrc:32
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Large (3/4″)"
msgstr ""
#. AwWUq
-#: svx/inc/spacing.hrc:31
+#: svx/inc/spacing.hrc:33
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. SGERK
-#: svx/inc/spacing.hrc:38
+#: svx/inc/spacing.hrc:40
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "None"
msgstr ""
#. ZAZbV
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:40
+#: svx/inc/spacing.hrc:42
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Small (%1)"
msgstr ""
#. DJAZx
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:42
+#: svx/inc/spacing.hrc:44
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small (%1)"
msgstr ""
#. scXTX
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:44
+#: svx/inc/spacing.hrc:46
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small Medium (%1)"
msgstr ""
#. zN8GJ
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:46
+#: svx/inc/spacing.hrc:48
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium (%1)"
msgstr ""
#. cbhBF
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:48
+#: svx/inc/spacing.hrc:50
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium Large (%1)"
msgstr ""
#. 8kTDK
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:50
+#: svx/inc/spacing.hrc:52
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Large (%1)"
msgstr ""
#. etG35
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:52
+#: svx/inc/spacing.hrc:54
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Large (%1)"
msgstr ""
#. F7GxF
-#: svx/inc/spacing.hrc:59
+#: svx/inc/spacing.hrc:61
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "None"
msgstr ""
#. ZNunF
-#: svx/inc/spacing.hrc:60
+#: svx/inc/spacing.hrc:62
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. BUnaC
-#: svx/inc/spacing.hrc:61
+#: svx/inc/spacing.hrc:63
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small (1/8″)"
msgstr ""
#. oBhFP
-#: svx/inc/spacing.hrc:62
+#: svx/inc/spacing.hrc:64
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. tDBA3
-#: svx/inc/spacing.hrc:63
+#: svx/inc/spacing.hrc:65
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. fDRCW
-#: svx/inc/spacing.hrc:64
+#: svx/inc/spacing.hrc:66
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. Ls2Jq
-#: svx/inc/spacing.hrc:65
+#: svx/inc/spacing.hrc:67
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4″)"
msgstr ""
#. DLXcU
-#: svx/inc/spacing.hrc:66
+#: svx/inc/spacing.hrc:68
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. phGfi
-#: svx/inc/spacing.hrc:73
+#: svx/inc/spacing.hrc:75
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "None"
msgstr ""
#. XVMbm
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:75
+#: svx/inc/spacing.hrc:77
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Small (%1)"
msgstr ""
#. L3BfG
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:77
+#: svx/inc/spacing.hrc:79
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small (%1)"
msgstr ""
#. 2VGHi
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:79
+#: svx/inc/spacing.hrc:81
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small Medium (%1)"
msgstr ""
#. Z7Wot
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:81
+#: svx/inc/spacing.hrc:83
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium (%1)"
msgstr ""
#. CS6Zz
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:83
+#: svx/inc/spacing.hrc:85
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium Large (%1)"
msgstr ""
#. BaS7j
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:85
+#: svx/inc/spacing.hrc:87
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Large (%1)"
msgstr ""
#. gAc3E
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:87
+#: svx/inc/spacing.hrc:89
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Large (%1)"
msgstr ""
@@ -11732,1129 +11738,1129 @@ msgid ""
msgstr ""
#. xnBAZ
-#: svx/inc/swframeposstrings.hrc:28
+#: svx/inc/swframeposstrings.hrc:30
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left"
msgstr "Арымарахь"
#. GHBGu
-#: svx/inc/swframeposstrings.hrc:29
+#: svx/inc/swframeposstrings.hrc:31
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right"
msgstr "Арыӷьарахь"
#. aEeds
-#: svx/inc/swframeposstrings.hrc:30
+#: svx/inc/swframeposstrings.hrc:32
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From left"
msgstr "Арымарахь"
#. ivTxP
-#: svx/inc/swframeposstrings.hrc:31
+#: svx/inc/swframeposstrings.hrc:33
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inside"
msgstr "Аҩныҵҟа"
#. U5FyC
-#: svx/inc/swframeposstrings.hrc:32
+#: svx/inc/swframeposstrings.hrc:34
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outside"
msgstr "Адәныҟа"
#. 67K4H
-#: svx/inc/swframeposstrings.hrc:33
+#: svx/inc/swframeposstrings.hrc:35
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From inside"
msgstr "Аҩныҵҟа"
#. W2X2D
-#: svx/inc/swframeposstrings.hrc:34
+#: svx/inc/swframeposstrings.hrc:36
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph area"
msgstr ""
#. CrRe5
-#: svx/inc/swframeposstrings.hrc:35 svx/inc/swframeposstrings.hrc:52
+#: svx/inc/swframeposstrings.hrc:37 svx/inc/swframeposstrings.hrc:54
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph text area"
msgstr ""
#. MT34e
-#: svx/inc/swframeposstrings.hrc:36
+#: svx/inc/swframeposstrings.hrc:38
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left page border"
msgstr "Адаҟьа армарахьтәи аҵкар"
#. edC8Z
-#: svx/inc/swframeposstrings.hrc:37
+#: svx/inc/swframeposstrings.hrc:39
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right page border"
msgstr "Адаҟьа арӷьарахьтәи аҵкар"
#. dCGE9
-#: svx/inc/swframeposstrings.hrc:38
+#: svx/inc/swframeposstrings.hrc:40
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left paragraph border"
msgstr ""
#. 3pAVN
-#: svx/inc/swframeposstrings.hrc:39
+#: svx/inc/swframeposstrings.hrc:41
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right paragraph border"
msgstr ""
#. qvFns
-#: svx/inc/swframeposstrings.hrc:40
+#: svx/inc/swframeposstrings.hrc:42
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner page border"
msgstr "Адаҟьа аҩныҵҟатәи аҵкар"
#. XwtPT
-#: svx/inc/swframeposstrings.hrc:41
+#: svx/inc/swframeposstrings.hrc:43
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer page border"
msgstr "Адаҟьа адәныҟатәи аҵкар"
#. oF2mP
-#: svx/inc/swframeposstrings.hrc:42
+#: svx/inc/swframeposstrings.hrc:44
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner paragraph border"
msgstr ""
#. Hffsf
-#: svx/inc/swframeposstrings.hrc:43
+#: svx/inc/swframeposstrings.hrc:45
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer paragraph border"
msgstr ""
#. ey4rc
-#: svx/inc/swframeposstrings.hrc:44
+#: svx/inc/swframeposstrings.hrc:46
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire page"
msgstr "Адаҟьа зегьы"
#. WJocu
-#: svx/inc/swframeposstrings.hrc:45
+#: svx/inc/swframeposstrings.hrc:47
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area"
msgstr ""
#. jY8xQ
-#: svx/inc/swframeposstrings.hrc:46
+#: svx/inc/swframeposstrings.hrc:48
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area top"
msgstr ""
#. vWEe2
-#: svx/inc/swframeposstrings.hrc:47
+#: svx/inc/swframeposstrings.hrc:49
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area bottom"
msgstr ""
#. XG9Bj
-#: svx/inc/swframeposstrings.hrc:48
+#: svx/inc/swframeposstrings.hrc:50
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Base line"
msgstr ""
#. A3DbQ
-#: svx/inc/swframeposstrings.hrc:49
+#: svx/inc/swframeposstrings.hrc:51
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Character"
msgstr "Асимвол"
#. Qyopb
-#: svx/inc/swframeposstrings.hrc:50
+#: svx/inc/swframeposstrings.hrc:52
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Row"
msgstr "АЦӘАҲӘА"
#. PPkKE
-#: svx/inc/swframeposstrings.hrc:51
+#: svx/inc/swframeposstrings.hrc:53
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Margin"
msgstr "Аҭакыра"
#. FCKGJ
-#: svx/inc/swframeposstrings.hrc:53
+#: svx/inc/swframeposstrings.hrc:55
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left frame border"
msgstr ""
#. dvJgp
-#: svx/inc/swframeposstrings.hrc:54
+#: svx/inc/swframeposstrings.hrc:56
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right frame border"
msgstr ""
#. 8wUyB
-#: svx/inc/swframeposstrings.hrc:55
+#: svx/inc/swframeposstrings.hrc:57
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire frame"
msgstr "Арамка зегьы"
#. FRNBs
-#: svx/inc/swframeposstrings.hrc:56
+#: svx/inc/swframeposstrings.hrc:58
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Frame text area"
msgstr ""
#. CEgLN
-#: svx/inc/swframeposstrings.hrc:57
+#: svx/inc/swframeposstrings.hrc:59
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner frame border"
msgstr ""
#. UroG3
-#: svx/inc/swframeposstrings.hrc:58
+#: svx/inc/swframeposstrings.hrc:60
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer frame border"
msgstr ""
#. hMCeD
-#: svx/inc/swframeposstrings.hrc:59
+#: svx/inc/swframeposstrings.hrc:61
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top"
msgstr "Хыхьла"
#. zvKGF
-#: svx/inc/swframeposstrings.hrc:60
+#: svx/inc/swframeposstrings.hrc:62
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom"
msgstr "Ҵаҟала"
#. zLzw8
-#: svx/inc/swframeposstrings.hrc:61 svx/inc/swframeposstrings.hrc:62
+#: svx/inc/swframeposstrings.hrc:63 svx/inc/swframeposstrings.hrc:64
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Center"
msgstr "Ацентр ала"
#. HKRAf
-#: svx/inc/swframeposstrings.hrc:63
+#: svx/inc/swframeposstrings.hrc:65
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From top"
msgstr "Хыхьала"
#. o7Td5
-#: svx/inc/swframeposstrings.hrc:64
+#: svx/inc/swframeposstrings.hrc:66
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From bottom"
msgstr "Ҵаҟала"
#. bF2Nd
-#: svx/inc/swframeposstrings.hrc:65
+#: svx/inc/swframeposstrings.hrc:67
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Below"
msgstr "Илаҟәны"
#. Q9AZn
-#: svx/inc/swframeposstrings.hrc:66
+#: svx/inc/swframeposstrings.hrc:68
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From right"
msgstr "Арыӷьарахь"
#. Y6y4s
-#: svx/inc/swframeposstrings.hrc:67
+#: svx/inc/swframeposstrings.hrc:69
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top page border"
msgstr ""
#. ZyAri
-#: svx/inc/swframeposstrings.hrc:68
+#: svx/inc/swframeposstrings.hrc:70
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom page border"
msgstr ""
#. 2vRtm
-#: svx/inc/swframeposstrings.hrc:69
+#: svx/inc/swframeposstrings.hrc:71
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top paragraph border"
msgstr ""
#. AAFLn
-#: svx/inc/swframeposstrings.hrc:70
+#: svx/inc/swframeposstrings.hrc:72
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom paragraph border"
msgstr ""
#. dmVNj
-#: svx/inc/swframeposstrings.hrc:71
+#: svx/inc/swframeposstrings.hrc:73
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Line of text"
msgstr "Ацәаҳәа атеқст аҟынтәи"
#. gKq8G
-#: svx/inc/tabwin.hrc:27
+#: svx/inc/tabwin.hrc:29
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Table"
msgstr "Атаблица"
#. 4mnUW
-#: svx/inc/tabwin.hrc:28
+#: svx/inc/tabwin.hrc:30
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Query"
msgstr "Азыҳәара"
#. rfs4A
-#: svx/inc/tabwin.hrc:29
+#: svx/inc/tabwin.hrc:31
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "SQL"
msgstr "SQL"
#. QF2ZT
-#: svx/inc/txenctab.hrc:32
+#: svx/inc/txenctab.hrc:33
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Windows-1252/WinLatin 1)"
msgstr ""
#. VbWZR
-#: svx/inc/txenctab.hrc:33
+#: svx/inc/txenctab.hrc:34
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh)"
msgstr ""
#. 5yMG7
-#: svx/inc/txenctab.hrc:34
+#: svx/inc/txenctab.hrc:35
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-850/International)"
msgstr ""
#. KYDEk
-#: svx/inc/txenctab.hrc:35
+#: svx/inc/txenctab.hrc:36
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-437/US)"
msgstr ""
#. 3MbrA
-#: svx/inc/txenctab.hrc:36
+#: svx/inc/txenctab.hrc:37
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-860/Portuguese)"
msgstr ""
#. bdxAU
-#: svx/inc/txenctab.hrc:37
+#: svx/inc/txenctab.hrc:38
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-861/Icelandic)"
msgstr ""
#. kMQ9X
-#: svx/inc/txenctab.hrc:38
+#: svx/inc/txenctab.hrc:39
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-863/French (Can.))"
msgstr ""
#. YTGtN
-#: svx/inc/txenctab.hrc:39
+#: svx/inc/txenctab.hrc:40
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-865/Nordic)"
msgstr ""
#. 7f2UV
-#: svx/inc/txenctab.hrc:40
+#: svx/inc/txenctab.hrc:41
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ASCII/US)"
msgstr ""
#. Hksxs
-#: svx/inc/txenctab.hrc:41
+#: svx/inc/txenctab.hrc:42
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-1)"
msgstr ""
#. PBDdu
-#: svx/inc/txenctab.hrc:42
+#: svx/inc/txenctab.hrc:43
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-2)"
msgstr ""
#. MFqWF
-#: svx/inc/txenctab.hrc:43
+#: svx/inc/txenctab.hrc:44
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Latin 3 (ISO-8859-3)"
msgstr ""
#. WBkLV
-#: svx/inc/txenctab.hrc:44
+#: svx/inc/txenctab.hrc:45
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (ISO-8859-4)"
msgstr ""
#. b5SPH
-#: svx/inc/txenctab.hrc:45
+#: svx/inc/txenctab.hrc:46
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (ISO-8859-5)"
msgstr ""
#. wFCbj
-#: svx/inc/txenctab.hrc:46
+#: svx/inc/txenctab.hrc:47
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (ISO-8859-6)"
msgstr ""
#. qTzCE
-#: svx/inc/txenctab.hrc:47
+#: svx/inc/txenctab.hrc:48
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (ISO-8859-7)"
msgstr ""
#. MmChj
-#: svx/inc/txenctab.hrc:48
+#: svx/inc/txenctab.hrc:49
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (ISO-8859-8)"
msgstr ""
#. 3bHAV
-#: svx/inc/txenctab.hrc:49
+#: svx/inc/txenctab.hrc:50
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (ISO-8859-9)"
msgstr ""
#. phdte
-#: svx/inc/txenctab.hrc:50
+#: svx/inc/txenctab.hrc:51
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-14)"
msgstr ""
#. MpHUZ
-#: svx/inc/txenctab.hrc:51
+#: svx/inc/txenctab.hrc:52
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-15/EURO)"
msgstr ""
#. JgVnj
-#: svx/inc/txenctab.hrc:52
+#: svx/inc/txenctab.hrc:53
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-737)"
msgstr ""
#. EQi6s
-#: svx/inc/txenctab.hrc:53
+#: svx/inc/txenctab.hrc:54
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (DOS/OS2-775)"
msgstr ""
#. SDvMf
-#: svx/inc/txenctab.hrc:54
+#: svx/inc/txenctab.hrc:55
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (DOS/OS2-852)"
msgstr ""
#. 3FrUC
-#: svx/inc/txenctab.hrc:55
+#: svx/inc/txenctab.hrc:56
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-855)"
msgstr ""
#. G8q5c
-#: svx/inc/txenctab.hrc:56
+#: svx/inc/txenctab.hrc:57
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (DOS/OS2-857)"
msgstr ""
#. kBvdY
-#: svx/inc/txenctab.hrc:57
+#: svx/inc/txenctab.hrc:58
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (DOS/OS2-862)"
msgstr ""
#. to6H6
-#: svx/inc/txenctab.hrc:58
+#: svx/inc/txenctab.hrc:59
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (DOS/OS2-864)"
msgstr ""
#. BH6K4
-#: svx/inc/txenctab.hrc:59
+#: svx/inc/txenctab.hrc:60
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-866/Russian)"
msgstr ""
#. ms8Dk
-#: svx/inc/txenctab.hrc:60
+#: svx/inc/txenctab.hrc:61
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-869/Modern)"
msgstr ""
#. U9RbL
-#: svx/inc/txenctab.hrc:61
+#: svx/inc/txenctab.hrc:62
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Windows-1250/WinLatin 2)"
msgstr ""
#. fRRMB
-#: svx/inc/txenctab.hrc:62
+#: svx/inc/txenctab.hrc:63
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Windows-1251)"
msgstr ""
#. 7D9eT
-#: svx/inc/txenctab.hrc:63
+#: svx/inc/txenctab.hrc:64
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Windows-1253)"
msgstr ""
#. sa8W8
-#: svx/inc/txenctab.hrc:64
+#: svx/inc/txenctab.hrc:65
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Windows-1254)"
msgstr ""
#. ZxMJy
-#: svx/inc/txenctab.hrc:65
+#: svx/inc/txenctab.hrc:66
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (Windows-1255)"
msgstr ""
#. 4GLZX
-#: svx/inc/txenctab.hrc:66
+#: svx/inc/txenctab.hrc:67
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (Windows-1256)"
msgstr ""
#. errzy
-#: svx/inc/txenctab.hrc:67
+#: svx/inc/txenctab.hrc:68
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (Windows-1257)"
msgstr ""
#. SSo9X
-#: svx/inc/txenctab.hrc:68
+#: svx/inc/txenctab.hrc:69
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Vietnamese (Windows-1258)"
msgstr ""
#. udrZT
-#: svx/inc/txenctab.hrc:69
+#: svx/inc/txenctab.hrc:70
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh)"
msgstr ""
#. g2Z7z
-#: svx/inc/txenctab.hrc:70
+#: svx/inc/txenctab.hrc:71
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Croatian)"
msgstr ""
#. 9jpM6
-#: svx/inc/txenctab.hrc:71
+#: svx/inc/txenctab.hrc:72
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh)"
msgstr ""
#. YB8BU
-#: svx/inc/txenctab.hrc:72
+#: svx/inc/txenctab.hrc:73
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Apple Macintosh)"
msgstr ""
#. rEWLF
-#: svx/inc/txenctab.hrc:73
+#: svx/inc/txenctab.hrc:74
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh/Icelandic)"
msgstr ""
#. eCAET
-#: svx/inc/txenctab.hrc:74
+#: svx/inc/txenctab.hrc:75
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Romanian)"
msgstr ""
#. T4VVK
-#: svx/inc/txenctab.hrc:75
+#: svx/inc/txenctab.hrc:76
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Apple Macintosh)"
msgstr ""
#. a8GDk
-#: svx/inc/txenctab.hrc:76
+#: svx/inc/txenctab.hrc:77
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh/Ukrainian)"
msgstr ""
#. 4RBWC
-#: svx/inc/txenctab.hrc:77
+#: svx/inc/txenctab.hrc:78
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Apple Macintosh)"
msgstr ""
#. 6WCbw
-#: svx/inc/txenctab.hrc:78
+#: svx/inc/txenctab.hrc:79
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Apple Macintosh)"
msgstr ""
#. DyADW
-#: svx/inc/txenctab.hrc:79
+#: svx/inc/txenctab.hrc:80
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Apple Macintosh)"
msgstr ""
#. BXQq2
-#: svx/inc/txenctab.hrc:80
+#: svx/inc/txenctab.hrc:81
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Apple Macintosh)"
msgstr ""
#. 6eezP
-#: svx/inc/txenctab.hrc:81
+#: svx/inc/txenctab.hrc:82
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Windows-932)"
msgstr ""
#. FuA86
-#: svx/inc/txenctab.hrc:82
+#: svx/inc/txenctab.hrc:83
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Windows-936)"
msgstr ""
#. Rgvx2
-#: svx/inc/txenctab.hrc:83
+#: svx/inc/txenctab.hrc:84
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-949)"
msgstr ""
#. VrtX4
-#: svx/inc/txenctab.hrc:84
+#: svx/inc/txenctab.hrc:85
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Windows-950)"
msgstr ""
#. XYyEd
-#: svx/inc/txenctab.hrc:85
+#: svx/inc/txenctab.hrc:86
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Shift-JIS)"
msgstr ""
#. k5M56
-#: svx/inc/txenctab.hrc:86
+#: svx/inc/txenctab.hrc:87
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-2312)"
msgstr ""
#. PFzZY
-#: svx/inc/txenctab.hrc:87
+#: svx/inc/txenctab.hrc:88
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-18030)"
msgstr ""
#. gb9bm
-#: svx/inc/txenctab.hrc:88
+#: svx/inc/txenctab.hrc:89
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (GBT-12345)"
msgstr ""
#. C69XX
-#: svx/inc/txenctab.hrc:89
+#: svx/inc/txenctab.hrc:90
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GBK/GB-2312-80)"
msgstr ""
#. UP3uw
-#: svx/inc/txenctab.hrc:90
+#: svx/inc/txenctab.hrc:91
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Big5)"
msgstr ""
#. DaFZR
-#: svx/inc/txenctab.hrc:91
+#: svx/inc/txenctab.hrc:92
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (BIG5-HKSCS)"
msgstr ""
#. qEQVA
-#: svx/inc/txenctab.hrc:92
+#: svx/inc/txenctab.hrc:93
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (EUC-JP)"
msgstr ""
#. auzHg
-#: svx/inc/txenctab.hrc:93
+#: svx/inc/txenctab.hrc:94
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (EUC-CN)"
msgstr ""
#. ndTrZ
-#: svx/inc/txenctab.hrc:94
+#: svx/inc/txenctab.hrc:95
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (EUC-TW)"
msgstr ""
#. 6pPLL
-#: svx/inc/txenctab.hrc:95
+#: svx/inc/txenctab.hrc:96
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (ISO-2022-JP)"
msgstr ""
#. tWf3P
-#: svx/inc/txenctab.hrc:96
+#: svx/inc/txenctab.hrc:97
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (ISO-2022-CN)"
msgstr ""
#. XMFCL
-#: svx/inc/txenctab.hrc:97
+#: svx/inc/txenctab.hrc:98
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-R)"
msgstr ""
#. 2pFce
-#: svx/inc/txenctab.hrc:98
+#: svx/inc/txenctab.hrc:99
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-7)"
msgstr ""
#. FXEDd
-#: svx/inc/txenctab.hrc:99
+#: svx/inc/txenctab.hrc:100
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-8)"
msgstr ""
#. PKDvB
-#: svx/inc/txenctab.hrc:100
+#: svx/inc/txenctab.hrc:101
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-10)"
msgstr ""
#. QGYqt
-#: svx/inc/txenctab.hrc:101
+#: svx/inc/txenctab.hrc:102
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-13)"
msgstr ""
#. Vx6bY
-#: svx/inc/txenctab.hrc:102
+#: svx/inc/txenctab.hrc:103
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (EUC-KR)"
msgstr ""
#. 5CBHm
-#: svx/inc/txenctab.hrc:103
+#: svx/inc/txenctab.hrc:104
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (ISO-2022-KR)"
msgstr ""
#. nLGik
-#: svx/inc/txenctab.hrc:104
+#: svx/inc/txenctab.hrc:105
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-Johab-1361)"
msgstr ""
#. QBgZo
-#: svx/inc/txenctab.hrc:105
+#: svx/inc/txenctab.hrc:106
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-16)"
msgstr ""
#. JGdVV
-#: svx/inc/txenctab.hrc:106
+#: svx/inc/txenctab.hrc:107
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (ISO-8859-11/TIS-620)"
msgstr ""
#. monLB
-#: svx/inc/txenctab.hrc:107
+#: svx/inc/txenctab.hrc:108
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (Windows-874)"
msgstr ""
#. USeUF
-#: svx/inc/txenctab.hrc:108
+#: svx/inc/txenctab.hrc:109
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-U)"
msgstr ""
#. vrLQe
-#: svx/inc/txenctab.hrc:109
+#: svx/inc/txenctab.hrc:110
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (PT154)"
msgstr ""
#. rKPau
-#: svx/source/dialog/page.hrc:30
+#: svx/source/dialog/page.hrc:31
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A6"
msgstr "A6"
#. URac3
-#: svx/source/dialog/page.hrc:31
+#: svx/source/dialog/page.hrc:32
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A5"
msgstr "A5"
#. EPudF
-#: svx/source/dialog/page.hrc:32
+#: svx/source/dialog/page.hrc:33
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A4"
msgstr "A4"
#. qdkCd
-#: svx/source/dialog/page.hrc:33
+#: svx/source/dialog/page.hrc:34
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A3"
msgstr "A3"
#. HTZUv
-#: svx/source/dialog/page.hrc:34
+#: svx/source/dialog/page.hrc:35
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. cCYrf
-#: svx/source/dialog/page.hrc:35
+#: svx/source/dialog/page.hrc:36
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. xXp6C
-#: svx/source/dialog/page.hrc:36
+#: svx/source/dialog/page.hrc:37
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. A5BnL
-#: svx/source/dialog/page.hrc:37
+#: svx/source/dialog/page.hrc:38
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Letter"
msgstr "Letter"
#. sx5cV
-#: svx/source/dialog/page.hrc:38
+#: svx/source/dialog/page.hrc:39
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Legal"
msgstr "Legal"
#. Pkxcm
-#: svx/source/dialog/page.hrc:39
+#: svx/source/dialog/page.hrc:40
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Long Bond"
msgstr "Long Bond"
#. JMsqY
-#: svx/source/dialog/page.hrc:40
+#: svx/source/dialog/page.hrc:41
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Tabloid"
msgstr "Tabloid"
#. UBtQK
-#: svx/source/dialog/page.hrc:41
+#: svx/source/dialog/page.hrc:42
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. Ruu59
-#: svx/source/dialog/page.hrc:42
+#: svx/source/dialog/page.hrc:43
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. CFdsg
-#: svx/source/dialog/page.hrc:43
+#: svx/source/dialog/page.hrc:44
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. PCV4H
-#: svx/source/dialog/page.hrc:44
+#: svx/source/dialog/page.hrc:45
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "16 Kai"
msgstr "16 Kai"
#. GfVjG
-#: svx/source/dialog/page.hrc:45
+#: svx/source/dialog/page.hrc:46
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "32 Kai"
msgstr "32 Kai"
#. FJBrB
-#: svx/source/dialog/page.hrc:46
+#: svx/source/dialog/page.hrc:47
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Big 32 Kai"
msgstr "32 Kai идуу"
#. by7kM
-#: svx/source/dialog/page.hrc:47
+#: svx/source/dialog/page.hrc:48
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "User"
msgstr ""
#. EGzYq
-#: svx/source/dialog/page.hrc:48
+#: svx/source/dialog/page.hrc:49
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "DL Envelope"
msgstr ""
#. YFzCy
-#: svx/source/dialog/page.hrc:49
+#: svx/source/dialog/page.hrc:50
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6 Envelope"
msgstr ""
#. Vcc7P
-#: svx/source/dialog/page.hrc:50
+#: svx/source/dialog/page.hrc:51
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6/5 Envelope"
msgstr ""
#. XsMRE
-#: svx/source/dialog/page.hrc:51
+#: svx/source/dialog/page.hrc:52
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C5 Envelope"
msgstr ""
#. uFwGu
-#: svx/source/dialog/page.hrc:52
+#: svx/source/dialog/page.hrc:53
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C4 Envelope"
msgstr ""
#. dCpd2
-#: svx/source/dialog/page.hrc:53
+#: svx/source/dialog/page.hrc:54
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#6¾ Envelope"
msgstr ""
#. zy6rP
-#: svx/source/dialog/page.hrc:54
+#: svx/source/dialog/page.hrc:55
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#7¾ (Monarch) Envelope"
msgstr ""
#. m4N6Q
-#: svx/source/dialog/page.hrc:55
+#: svx/source/dialog/page.hrc:56
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#9 Envelope"
msgstr ""
#. JsBkZ
-#: svx/source/dialog/page.hrc:56
+#: svx/source/dialog/page.hrc:57
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#10 Envelope"
msgstr ""
#. 7FeU9
-#: svx/source/dialog/page.hrc:57
+#: svx/source/dialog/page.hrc:58
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#11 Envelope"
msgstr ""
#. 6sqhV
-#: svx/source/dialog/page.hrc:58
+#: svx/source/dialog/page.hrc:59
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#12 Envelope"
msgstr ""
#. 8uXDq
-#: svx/source/dialog/page.hrc:59
+#: svx/source/dialog/page.hrc:60
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Japanese Postcard"
msgstr ""
#. N2J2b
-#: svx/source/dialog/page.hrc:64
+#: svx/source/dialog/page.hrc:65
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A6"
msgstr "A6"
#. 78f4A
-#: svx/source/dialog/page.hrc:65
+#: svx/source/dialog/page.hrc:66
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A5"
msgstr "A5"
#. i6x38
-#: svx/source/dialog/page.hrc:66
+#: svx/source/dialog/page.hrc:67
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A4"
msgstr "A4"
#. Dmqus
-#: svx/source/dialog/page.hrc:67
+#: svx/source/dialog/page.hrc:68
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A3"
msgstr "A3"
#. XjWtg
-#: svx/source/dialog/page.hrc:68
+#: svx/source/dialog/page.hrc:69
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A2"
msgstr "А2"
#. yqBrH
-#: svx/source/dialog/page.hrc:69
+#: svx/source/dialog/page.hrc:70
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A1"
msgstr "А1"
#. Ao3sz
-#: svx/source/dialog/page.hrc:70
+#: svx/source/dialog/page.hrc:71
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A0"
msgstr "А0"
#. jvpHD
-#: svx/source/dialog/page.hrc:71
+#: svx/source/dialog/page.hrc:72
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. DGqE3
-#: svx/source/dialog/page.hrc:72
+#: svx/source/dialog/page.hrc:73
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. JrZiW
-#: svx/source/dialog/page.hrc:73
+#: svx/source/dialog/page.hrc:74
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. 8zZQc
-#: svx/source/dialog/page.hrc:74
+#: svx/source/dialog/page.hrc:75
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Letter"
msgstr "Letter"
#. NKMub
-#: svx/source/dialog/page.hrc:75
+#: svx/source/dialog/page.hrc:76
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Legal"
msgstr "Legal"
#. GyH6H
-#: svx/source/dialog/page.hrc:76
+#: svx/source/dialog/page.hrc:77
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Long Bond"
msgstr "Long Bond"
#. gWjE2
-#: svx/source/dialog/page.hrc:77
+#: svx/source/dialog/page.hrc:78
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Tabloid"
msgstr "Tabloid"
#. 5Dddp
-#: svx/source/dialog/page.hrc:78
+#: svx/source/dialog/page.hrc:79
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. sYcjZ
-#: svx/source/dialog/page.hrc:79
+#: svx/source/dialog/page.hrc:80
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. f9tD2
-#: svx/source/dialog/page.hrc:80
+#: svx/source/dialog/page.hrc:81
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. DGFbZ
-#: svx/source/dialog/page.hrc:81
+#: svx/source/dialog/page.hrc:82
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "16 Kai"
msgstr "16 Kai"
#. JbFMy
-#: svx/source/dialog/page.hrc:82
+#: svx/source/dialog/page.hrc:83
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "32 Kai"
msgstr "32 Kai"
#. E3CDE
-#: svx/source/dialog/page.hrc:83
+#: svx/source/dialog/page.hrc:84
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Big 32 Kai"
msgstr "32 Kai идуу"
#. rSAv7
-#: svx/source/dialog/page.hrc:84
+#: svx/source/dialog/page.hrc:85
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "User"
msgstr ""
#. z3HXV
-#: svx/source/dialog/page.hrc:85
+#: svx/source/dialog/page.hrc:86
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "DL Envelope"
msgstr ""
#. k2HBd
-#: svx/source/dialog/page.hrc:86
+#: svx/source/dialog/page.hrc:87
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6 Envelope"
msgstr ""
#. t43Ta
-#: svx/source/dialog/page.hrc:87
+#: svx/source/dialog/page.hrc:88
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6/5 Envelope"
msgstr ""
#. jfDNz
-#: svx/source/dialog/page.hrc:88
+#: svx/source/dialog/page.hrc:89
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C5 Envelope"
msgstr ""
#. h2cDh
-#: svx/source/dialog/page.hrc:89
+#: svx/source/dialog/page.hrc:90
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C4 Envelope"
msgstr ""
#. j4Hms
-#: svx/source/dialog/page.hrc:90
+#: svx/source/dialog/page.hrc:91
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Dia Slide"
msgstr "Dia Slide"
#. ePYVT
-#: svx/source/dialog/page.hrc:91
+#: svx/source/dialog/page.hrc:92
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 4:3"
msgstr "Аекран 4:3"
#. pWa4A
-#: svx/source/dialog/page.hrc:92
+#: svx/source/dialog/page.hrc:93
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:9"
msgstr "Аекран 16:9"
#. T62Dx
-#: svx/source/dialog/page.hrc:93
+#: svx/source/dialog/page.hrc:94
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:10"
msgstr "Аекран 16:10"
#. hwMzF
-#: svx/source/dialog/page.hrc:94
+#: svx/source/dialog/page.hrc:95
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Widescreen"
msgstr ""
#. HqpFJ
-#: svx/source/dialog/page.hrc:95
+#: svx/source/dialog/page.hrc:96
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (4:3)"
msgstr ""
#. PFU8U
-#: svx/source/dialog/page.hrc:96
+#: svx/source/dialog/page.hrc:97
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:9)"
msgstr ""
#. 48LFY
-#: svx/source/dialog/page.hrc:97
+#: svx/source/dialog/page.hrc:98
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:10)"
msgstr ""
#. ryFz3
-#: svx/source/dialog/page.hrc:98
+#: svx/source/dialog/page.hrc:99
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Japanese Postcard"
msgstr ""
@@ -16293,19 +16299,19 @@ msgid "Direction:"
msgstr ""
#. GPC8q
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1009
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1013
msgctxt "findreplacedialog-mobile|rows"
msgid "Ro_ws"
msgstr ""
#. xCeTz
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1028
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1032
msgctxt "findreplacedialog-mobile|cols"
msgid "Colum_ns"
msgstr ""
#. fPE4f
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1072
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1076
msgctxt "findreplacedialog-mobile|label3"
msgid "Other _options"
msgstr ""
@@ -16635,55 +16641,55 @@ msgid "Search i_n:"
msgstr ""
#. GGhEA
-#: svx/uiconfig/ui/findreplacedialog.ui:1069
+#: svx/uiconfig/ui/findreplacedialog.ui:1070
msgctxt "findreplacedialog|calcsearchin"
msgid "Formulas"
msgstr "Аформулақәа"
#. bpBeC
-#: svx/uiconfig/ui/findreplacedialog.ui:1070
+#: svx/uiconfig/ui/findreplacedialog.ui:1071
msgctxt "findreplacedialog|calcsearchin"
msgid "Values"
msgstr "Аҵакқәа"
#. zSUYq
-#: svx/uiconfig/ui/findreplacedialog.ui:1071
+#: svx/uiconfig/ui/findreplacedialog.ui:1072
msgctxt "findreplacedialog|calcsearchin"
msgid "Comments"
msgstr ""
#. K4WuW
-#: svx/uiconfig/ui/findreplacedialog.ui:1096
+#: svx/uiconfig/ui/findreplacedialog.ui:1097
msgctxt "findreplacedialog|searchdir"
msgid "Direction:"
msgstr ""
#. p2HBA
-#: svx/uiconfig/ui/findreplacedialog.ui:1113
+#: svx/uiconfig/ui/findreplacedialog.ui:1119
msgctxt "findreplacedialog|rows"
msgid "Ro_ws"
msgstr "Ацәа_ҳәақәа"
#. uib5F
-#: svx/uiconfig/ui/findreplacedialog.ui:1132
+#: svx/uiconfig/ui/findreplacedialog.ui:1138
msgctxt "findreplacedialog|cols"
msgid "Colum_ns"
msgstr "Аиҵагыла_қәа"
#. Q6fG8
-#: svx/uiconfig/ui/findreplacedialog.ui:1176
+#: svx/uiconfig/ui/findreplacedialog.ui:1182
msgctxt "findreplacedialog|label3"
msgid "Other _options"
msgstr "Егьырҭ апараметрқәа"
#. CPpFA
-#: svx/uiconfig/ui/findreplacedialog.ui:1183
+#: svx/uiconfig/ui/findreplacedialog.ui:1189
msgctxt "findreplacedialog|extended_tip|label3"
msgid "Shows more or fewer search options. Click this label again to hide the extended search options."
msgstr ""
#. YpLau
-#: svx/uiconfig/ui/findreplacedialog.ui:1219
+#: svx/uiconfig/ui/findreplacedialog.ui:1222
msgctxt "findreplacedialog|extended_tip|FindReplaceDialog"
msgid "Finds or replaces text or formats in the current document."
msgstr ""
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index f52cc138ba7..e03ec7bc036 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: 2022-02-09 16:46+0100\n"
+"POT-Creation-Date: 2022-04-01 00:20+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"
@@ -190,193 +190,193 @@ msgid "_Yes"
msgstr ""
#. DdjvG
-#: sw/inc/app.hrc:29
+#: sw/inc/app.hrc:31
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "All Styles"
msgstr "Астильқәа зегьы"
#. aF6kb
-#: sw/inc/app.hrc:30
+#: sw/inc/app.hrc:32
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Иҵәаху астильқәа"
#. Sn6Pr
-#: sw/inc/app.hrc:31
+#: sw/inc/app.hrc:33
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Ахархәара змоу астильқәа"
#. dPsnN
-#: sw/inc/app.hrc:32
+#: sw/inc/app.hrc:34
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
#. LL8tn
-#: sw/inc/app.hrc:33
+#: sw/inc/app.hrc:35
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Automatic"
msgstr "Автоматикала"
#. W2ZFq
-#: sw/inc/app.hrc:34
+#: sw/inc/app.hrc:36
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Text Styles"
msgstr "Атеқст астильқәа"
#. j6CkD
-#: sw/inc/app.hrc:35
+#: sw/inc/app.hrc:37
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Chapter Styles"
msgstr "Ахқәа рстильқәа"
#. KgUsu
-#: sw/inc/app.hrc:36
+#: sw/inc/app.hrc:38
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "List Styles"
msgstr "Ахьӡынҵақәа рстильқәа"
#. ZYAsP
-#: sw/inc/app.hrc:37
+#: sw/inc/app.hrc:39
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Index Styles"
msgstr "Аҭыҧрбагақәа рстильқәа"
#. CXarp
-#: sw/inc/app.hrc:38
+#: sw/inc/app.hrc:40
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Special Styles"
msgstr "Иҷыдоу астильқәа"
#. M9it7
-#: sw/inc/app.hrc:39
+#: sw/inc/app.hrc:41
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "HTML Styles"
msgstr "HTML астильқәа"
#. TeuD3
-#: sw/inc/app.hrc:40
+#: sw/inc/app.hrc:42
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Conditional Styles"
msgstr "Аҭагылазаашьатә стильқәа"
#. EBcnz
-#: sw/inc/app.hrc:46
+#: sw/inc/app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "All Styles"
msgstr "Астильқәа Зегьы"
#. vmFjs
-#: sw/inc/app.hrc:47
+#: sw/inc/app.hrc:49
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Иҵәаху астильқәа"
#. NG33n
-#: sw/inc/app.hrc:48
+#: sw/inc/app.hrc:50
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Ахархәара змоу астильқәа"
#. yubqD
-#: sw/inc/app.hrc:49
+#: sw/inc/app.hrc:51
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
#. hPACX
-#: sw/inc/app.hrc:55
+#: sw/inc/app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "All Styles"
msgstr "Астильқәа зегьы"
#. NPGpT
-#: sw/inc/app.hrc:56
+#: sw/inc/app.hrc:58
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Иҵәаху астильқәа"
#. R8bb3
-#: sw/inc/app.hrc:57
+#: sw/inc/app.hrc:59
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Ахархәара змоу астильқәа"
#. RFmiE
-#: sw/inc/app.hrc:58
+#: sw/inc/app.hrc:60
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
#. ADhCx
-#: sw/inc/app.hrc:64
+#: sw/inc/app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
msgid "All Styles"
msgstr "Астильқәа зегьы"
#. kGzjB
-#: sw/inc/app.hrc:65
+#: sw/inc/app.hrc:67
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Иҵәаху астильқәа"
#. CAEy6
-#: sw/inc/app.hrc:66
+#: sw/inc/app.hrc:68
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Ахархәара змоу астильқәа"
#. jQvqy
-#: sw/inc/app.hrc:67
+#: sw/inc/app.hrc:69
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
#. xFSbd
-#: sw/inc/app.hrc:73
+#: sw/inc/app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
msgid "All Styles"
msgstr "Астильқәа зегьы"
#. DCRLB
-#: sw/inc/app.hrc:74
+#: sw/inc/app.hrc:76
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Иҵәаху астильқәа"
#. 4BdCR
-#: sw/inc/app.hrc:75
+#: sw/inc/app.hrc:77
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Ахархәара змоу астильқәа"
#. A4VNy
-#: sw/inc/app.hrc:76
+#: sw/inc/app.hrc:78
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
#. DwpVB
-#: sw/inc/app.hrc:82
+#: sw/inc/app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
msgid "All Styles"
msgstr "Астильқәа зегьы"
#. TPRKY
-#: sw/inc/app.hrc:83
+#: sw/inc/app.hrc:85
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Иҵәаху астильқәа"
#. Y9EKT
-#: sw/inc/app.hrc:84
+#: sw/inc/app.hrc:86
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Ахархәара змоу астильқәа"
#. UFVRD
-#: sw/inc/app.hrc:85
+#: sw/inc/app.hrc:87
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Ахархәаҩ истильқәа"
@@ -617,55 +617,55 @@ msgid ""
msgstr ""
#. daCFp
-#: sw/inc/flddinf.hrc:27
+#: sw/inc/flddinf.hrc:29
msgctxt "flddocinfopage|liststore1"
msgid "Author"
msgstr "Автор"
#. syKG4
-#: sw/inc/flddinf.hrc:28
+#: sw/inc/flddinf.hrc:30
msgctxt "flddocinfopage|liststore1"
msgid "Time"
msgstr "Аамҭа"
#. YVmE7
-#: sw/inc/flddinf.hrc:29
+#: sw/inc/flddinf.hrc:31
msgctxt "flddocinfopage|liststore1"
msgid "Date"
msgstr "Арыцхә"
#. 2J6uc
-#: sw/inc/flddinf.hrc:30
+#: sw/inc/flddinf.hrc:32
msgctxt "flddocinfopage|liststore1"
msgid "Date Time Author"
msgstr "Арыцхә Аамҭа Автор"
#. FzXBo
-#: sw/inc/fldref.hrc:27
+#: sw/inc/fldref.hrc:29
msgctxt "fldrefpage|liststore1"
msgid "Bookmarks"
msgstr "Агәылаҵақәа"
#. aGQG8
-#: sw/inc/fldref.hrc:28
+#: sw/inc/fldref.hrc:30
msgctxt "fldrefpage|liststore1"
msgid "Footnotes"
msgstr "Албаагақәа"
#. DyZeU
-#: sw/inc/fldref.hrc:29
+#: sw/inc/fldref.hrc:31
msgctxt "fldrefpage|liststore1"
msgid "Endnotes"
msgstr "Анҵәамҭатә лбаагақәа"
#. Cit9Z
-#: sw/inc/fldref.hrc:30
+#: sw/inc/fldref.hrc:32
msgctxt "fldrefpage|liststore1"
msgid "Headings"
msgstr "Ахқәа"
#. 95WGQ
-#: sw/inc/fldref.hrc:31
+#: sw/inc/fldref.hrc:33
msgctxt "fldrefpage|liststore1"
msgid "Numbered Paragraphs"
msgstr "Иномеррку абзацқәа"
@@ -2033,190 +2033,190 @@ msgid "Writing Mode"
msgstr ""
#. QBR3s
-#: sw/inc/mmaddressblockpage.hrc:27
+#: sw/inc/mmaddressblockpage.hrc:29
msgctxt "RA_SALUTATION"
msgid "Dear"
msgstr "Ҳаҭыр зқәу"
#. xc8LH
-#: sw/inc/mmaddressblockpage.hrc:28
+#: sw/inc/mmaddressblockpage.hrc:30
msgctxt "RA_SALUTATION"
msgid "Hello"
msgstr "Абзиара шәымаз"
#. 3dVR9
-#: sw/inc/mmaddressblockpage.hrc:29
+#: sw/inc/mmaddressblockpage.hrc:31
msgctxt "RA_SALUTATION"
msgid "Hi"
msgstr "Салам"
#. G4dAq
-#: sw/inc/mmaddressblockpage.hrc:34
+#: sw/inc/mmaddressblockpage.hrc:36
msgctxt "RA_PUNCTUATION"
msgid ","
msgstr ","
#. xpSNV
-#: sw/inc/mmaddressblockpage.hrc:35
+#: sw/inc/mmaddressblockpage.hrc:37
msgctxt "RA_PUNCTUATION"
msgid ":"
msgstr ":"
#. CBNXb
-#: sw/inc/mmaddressblockpage.hrc:36
+#: sw/inc/mmaddressblockpage.hrc:38
msgctxt "RA_PUNCTUATION"
msgid "!"
msgstr "!"
#. av4Wm
-#: sw/inc/mmaddressblockpage.hrc:37
+#: sw/inc/mmaddressblockpage.hrc:39
msgctxt "RA_PUNCTUATION"
msgid "(none)"
msgstr "(мап)"
#. ujBVU
-#: sw/inc/optload.hrc:30
+#: sw/inc/optload.hrc:31
msgctxt "STR_ARR_METRIC"
msgid "Millimeter"
msgstr "Амиллиметр"
#. a9SsD
-#: sw/inc/optload.hrc:31
+#: sw/inc/optload.hrc:32
msgctxt "STR_ARR_METRIC"
msgid "Centimeter"
msgstr "Асантиметр"
#. 2RuJU
-#: sw/inc/optload.hrc:32
+#: sw/inc/optload.hrc:33
msgctxt "STR_ARR_METRIC"
msgid "Meter"
msgstr "Аметр"
#. s4zrG
-#: sw/inc/optload.hrc:33
+#: sw/inc/optload.hrc:34
msgctxt "STR_ARR_METRIC"
msgid "Kilometer"
msgstr "Акилометр"
#. SGXPk
-#: sw/inc/optload.hrc:34
+#: sw/inc/optload.hrc:35
msgctxt "STR_ARR_METRIC"
msgid "Inch"
msgstr "адиуим"
#. 3kDJD
-#: sw/inc/optload.hrc:35
+#: sw/inc/optload.hrc:36
msgctxt "STR_ARR_METRIC"
msgid "Foot"
msgstr "Афутқәа"
#. Z9v2E
-#: sw/inc/optload.hrc:36
+#: sw/inc/optload.hrc:37
msgctxt "STR_ARR_METRIC"
msgid "Miles"
msgstr "Мили"
#. ngFw4
-#: sw/inc/optload.hrc:37
+#: sw/inc/optload.hrc:38
msgctxt "STR_ARR_METRIC"
msgid "Pica"
msgstr "Пика"
#. C2njC
-#: sw/inc/optload.hrc:38
+#: sw/inc/optload.hrc:39
msgctxt "STR_ARR_METRIC"
msgid "Point"
msgstr "Акәаҧ"
#. FcXWG
-#: sw/inc/optload.hrc:39
+#: sw/inc/optload.hrc:40
msgctxt "STR_ARR_METRIC"
msgid "Char"
msgstr "Асимвол"
#. ZZCxd
-#: sw/inc/optload.hrc:40
+#: sw/inc/optload.hrc:41
msgctxt "STR_ARR_METRIC"
msgid "Line"
msgstr "Ацәаҳәа"
#. qQBCu
-#: sw/inc/outline.hrc:27
+#: sw/inc/outline.hrc:29
#, fuzzy
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 1"
msgstr "Хьӡыда"
#. fJyA3
-#: sw/inc/outline.hrc:28
+#: sw/inc/outline.hrc:30
#, fuzzy
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 2"
msgstr "Хьӡыда"
#. MLeBF
-#: sw/inc/outline.hrc:29
+#: sw/inc/outline.hrc:31
#, fuzzy
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 3"
msgstr "Хьӡыда"
#. reXad
-#: sw/inc/outline.hrc:30
+#: sw/inc/outline.hrc:32
#, fuzzy
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 4"
msgstr "Хьӡыда"
#. Fgpbv
-#: sw/inc/outline.hrc:31
+#: sw/inc/outline.hrc:33
#, fuzzy
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 5"
msgstr "Хьӡыда"
#. Ea4d6
-#: sw/inc/outline.hrc:32
+#: sw/inc/outline.hrc:34
#, fuzzy
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 6"
msgstr "Хьӡыда"
#. UcAcC
-#: sw/inc/outline.hrc:33
+#: sw/inc/outline.hrc:35
#, fuzzy
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 7"
msgstr "Хьӡыда"
#. Dv26U
-#: sw/inc/outline.hrc:34
+#: sw/inc/outline.hrc:36
#, fuzzy
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 8"
msgstr "Хьӡыда"
#. XxC5o
-#: sw/inc/outline.hrc:35
+#: sw/inc/outline.hrc:37
#, fuzzy
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 9"
msgstr "Хьӡыда"
#. TTBSc
-#: sw/inc/pageformatpanel.hrc:23
+#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
msgstr "Мап"
#. eNMWm
-#: sw/inc/pageformatpanel.hrc:24
+#: sw/inc/pageformatpanel.hrc:26
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
msgstr "Иҭшәақәо"
#. MHtci
-#: sw/inc/pageformatpanel.hrc:25
+#: sw/inc/pageformatpanel.hrc:27
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
msgstr "Абжьаратәқәа"
@@ -2225,38 +2225,38 @@ msgstr "Абжьаратәқәа"
#. Normal (0.75")
#. Normal (1")
#. Normal (1.25")
-#: sw/inc/pageformatpanel.hrc:27 sw/inc/pageformatpanel.hrc:29
-#: sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:29 sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (%1)"
msgstr ""
#. DjCNK
-#: sw/inc/pageformatpanel.hrc:32
+#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
msgstr "Иҭбаақәо"
#. JDMQe
-#: sw/inc/pageformatpanel.hrc:33
+#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Mirrored"
msgstr "Ианырԥшқәоу"
#. J9o3y
-#: sw/inc/pageformatpanel.hrc:39
+#: sw/inc/pageformatpanel.hrc:41
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
msgstr "Мап"
#. LxZSX
-#: sw/inc/pageformatpanel.hrc:40
+#: sw/inc/pageformatpanel.hrc:42
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
msgstr "Иҭшәақәо"
#. EDy4U
-#: sw/inc/pageformatpanel.hrc:41
+#: sw/inc/pageformatpanel.hrc:43
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
msgstr "Абжьаратәқәа"
@@ -2265,20 +2265,20 @@ msgstr "Абжьаратәқәа"
#. Normal (1.9 cm)
#. Normal (2.54 cm)
#. Normal (3.18 cm)
-#: sw/inc/pageformatpanel.hrc:43 sw/inc/pageformatpanel.hrc:45
-#: sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:45 sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:49
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (%1)"
msgstr ""
#. oJfxD
-#: sw/inc/pageformatpanel.hrc:48
+#: sw/inc/pageformatpanel.hrc:50
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
msgstr "Иҭбаақәо"
#. H9Qqx
-#: sw/inc/pageformatpanel.hrc:49
+#: sw/inc/pageformatpanel.hrc:51
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr "Ианырԥшқәоу"
@@ -9261,280 +9261,292 @@ msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Ихархәоуп абзац астиль"
-#. sgEbW
+#. WghdP
#: sw/inc/strings.hrc:1283
+msgctxt "STR_REDLINE_COMMENT_ADDED"
+msgid "Comment added"
+msgstr ""
+
+#. 2KNu9
+#: sw/inc/strings.hrc:1284
+msgctxt "STR_REDLINE_COMMENT_DELETED"
+msgid "Comment deleted"
+msgstr ""
+
+#. sgEbW
+#: sw/inc/strings.hrc:1285
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Адаҟьа "
#. 3DpEx
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1286
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Адаҟьа %1 %2 аҟынтәи"
#. HSbzS
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1287
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Адаҟьа %1 %2 аҟынтәи (адаҟьа %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1288
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:1288
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. aAtmp
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Асахьа"
#. UBDMK
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-аобиеқт"
#. xEWbo
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Афреим"
#. hfJns
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Атаблица"
#. GRqNY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1295
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Атаблица ацәаҳәа"
#. CDQY4
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1296
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Атаблица абларҭа"
#. 2Db9T
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1297
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. 63FuG
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1298
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Хыхтәи аколонтитул"
#. aDuAY
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1299
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1302
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "HTML (%PRODUCTNAME %PRODUCTVERSION) адокумент"
#. y2GBv
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Ахы"
#. AipGR
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1305
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Аиҟәшага"
#. CoSEf
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1306
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. JdTF4
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1307
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:1306
+#: sw/inc/strings.hrc:1308
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Ахархәаҩ иҭыԥрбага"
#. t5uWs
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1309
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<мап>"
#. vSSnJ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1310
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<мап>"
#. NSx98
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1311
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Ахы аномер"
#. FH365
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Аелемент"
#. xZjtZ
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Атабулиациа ашьаҿа"
#. aXW8y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Атеқсттә"
#. MCUd2
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1324
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Адаҟьа аномер"
#. pXqw3
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Ахы аинформациа"
#. DRBSD
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1326
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Агиперзхьарҧш алагамҭа"
#. Ytn5g
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1327
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Агиперзхьарҧш анҵәамҭа"
#. hRo3J
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1328
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Абиблиографиатә зхьарԥш:"
#. ZKG5v
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1329
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Асимволқәа рстиль: "
#. d9BES
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1330
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Аструктура атеқст"
#. kwoGP
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1331
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:1330
+#: sw/inc/strings.hrc:1332
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Шәрықәыӷәӷәала армарахьтәии арӷьарахьтәии ахыцқәа аструктура аелементқәа рнапхгара алхразы"
#. 59eRi
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1333
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:1332
+#: sw/inc/strings.hrc:1334
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
@@ -9543,260 +9555,260 @@ msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Абазатә ҵәаӷәа хыхьла"
#. 5GiEA
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Абазатә ҵәаӷәа ҵаҟала"
#. sdyVF
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Абазатә ҵәаӷәа ацентр ала"
#. NAXyZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1342
#, fuzzy
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Ибжьаргылатәуп аобиеқт(қәа)"
#. 5C6Rc
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1343
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Иҧсахтәуп аобиеқт"
#. 3QFYB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1344
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Ашаблон: "
#. oUhnK
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1345
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Аҿыкәырша"
#. T2SH2
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1346
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Аҿаҧшыра"
#. K6Yvs
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1348
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Абзац астиль: "
#. Fsanh
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1349
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:1349
+#: sw/inc/strings.hrc:1351
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION еилоу адокумент"
#. kWe9j
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1353
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1354
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Иҭагалоуп ииашам ажәамаӡа."
#. oUR7Y
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1355
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Ажәамаӡа ықәыргылам."
#. GBVqD
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1357
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Аиагагақәа рыргылара хыркәшоуп"
#. rZBXF
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1358
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Мап (аорфографиа гәаҭатәӡам)"
#. Z8EjG
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1359
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Иқәыргылатәуп абызшәа ишыҟаз"
#. YEXdS
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1360
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Иҵегь..."
#. QecQ3
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1361
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Ибжьажьтәуп"
#. aaiBM
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1362
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Аилыркаарақәа..."
#. kSDGu
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1364
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Испециалу аҵакырақәа ргәаҭара аҿыхуп. Зегь акоуп игәаҭатәума?"
#. KiAdJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Иауам адокументқәа реидҵара."
#. FqsCt
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1366
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:1365
+#: sw/inc/strings.hrc:1367
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Ахалагаратә теқст аҭагалара ауам."
#. K9qMS
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1368
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Ахкынҵа «Аервис/Апараметрқәа/%1/Акьыԥхьра» аҟны афакс-принтер ықәыргылаӡам."
#. XWQ8w
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1369
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML адокумент"
#. qVZBx
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1370
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Атеқсттә документ"
#. qmmPU
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Ахыҵхырҭа арбам."
#. 2LgDJ
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1372
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. AcAD8
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1373
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Аструктура "
#. DE9FZ
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1374
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Албаага ариашара/анҵәамҭатә лбаага"
#. EzBCZ
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1375
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Иԥшаатәу ажәа ԥсахуп XX нтә."
#. fgywB
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1376
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ацәаҳәа "
#. GUc4a
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1377
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Аиҵагыла "
#. yMyuo
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "Ахалагаратә теқст аекспорт..."
#. ywFCb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1379
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Ахыҵхырҭа акопиақәа рекспорт..."
#. BT3M3
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1381
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Иацҵатәуп"
#. ZR9aw
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1382
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Адәықәҵара: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1383
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Қәҿиарала идәықәҵоуп"
#. fmHmE
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1384
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Адәықәҵара амуӡеит"
#. yAAPM
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1386
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:1386
+#: sw/inc/strings.hrc:1388
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Аформула атеқст"
#. RmBFW
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1390
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9805,7 +9817,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1396
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9814,254 +9826,254 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1401
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Иҵабыргуп "
#. xAKRC
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1402
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Иҵабыргӡам"
#. pDAHz
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1403
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Анапаҵаҩра ҵабыргӡам"
#. etEEx
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1404
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Анапаҵаҩуп"
#. BK7ub
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1405
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Абзац анапаҵаҩра"
#. kZKCf
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1407
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Авизиттә картақәа"
#. ECFij
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1409
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Mail архиарақәа"
#. PwrB9
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1411
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Ибжьаргылатәуп"
#. NL48o
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1412
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Ианыхтәуп"
#. PW4Bz
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1413
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Атрибутқәа"
#. yfgiq
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Иԥшаатәу аилкаа"
#. fhLzk
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Альтенативатә елемент"
#. gD4D3
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1-тәи ацаԥха"
#. BFszo
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2-тәи ацаԥха"
#. EoAB8
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1419
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Акомментари"
#. Shstx
-#: sw/inc/strings.hrc:1418
+#: sw/inc/strings.hrc:1420
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Ҳасаб азутәуп арегистр"
#. 8Cjvb
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1421
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Ажәа мацара"
#. zD8rb
-#: sw/inc/strings.hrc:1420
+#: sw/inc/strings.hrc:1422
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ааи"
#. 4tTop
-#: sw/inc/strings.hrc:1421
+#: sw/inc/strings.hrc:1423
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Мап"
#. KhKwa
-#: sw/inc/strings.hrc:1423
+#: sw/inc/strings.hrc:1425
#, fuzzy
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Даҽакы:"
#. YiRsr
-#: sw/inc/utlui.hrc:27
+#: sw/inc/utlui.hrc:29
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Remove empty paragraphs"
msgstr "Ианыхтәуп иҭацәу абзацқәа"
#. zWFE6
-#: sw/inc/utlui.hrc:28
+#: sw/inc/utlui.hrc:30
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Use replacement table"
msgstr "Ихархәатәуп алаԥсахрақәа ртаблица"
#. EQfLp
-#: sw/inc/utlui.hrc:29
+#: sw/inc/utlui.hrc:31
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Correct TWo INitial CApitals"
msgstr "Ириашалатәуп анбан ДУқәа ҨБа ажәа алагамҭаҿ"
#. JBCDA
-#: sw/inc/utlui.hrc:30
+#: sw/inc/utlui.hrc:32
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Capitalize first letter of sentences"
msgstr "Ҳәоу цыԥхьаӡа иалагалатәуп нбан дула"
#. eGLb9
-#: sw/inc/utlui.hrc:31
+#: sw/inc/utlui.hrc:33
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace \"standard\" quotes with %1custom%2 quotes"
msgstr ""
#. dgZCx
-#: sw/inc/utlui.hrc:32
+#: sw/inc/utlui.hrc:34
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace Custom Styles"
msgstr "Иалаԥсахлатәуп ахархәаҩ истильқәа"
#. zXHk9
-#: sw/inc/utlui.hrc:33
+#: sw/inc/utlui.hrc:35
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Bullets replaced"
msgstr "Амаркерқәа ҧсахуп"
#. p7V6t
-#: sw/inc/utlui.hrc:34
+#: sw/inc/utlui.hrc:36
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic _underline_"
msgstr "Автоматикала_иаҵшьлатәуп_"
#. Hzt7q
-#: sw/inc/utlui.hrc:35
+#: sw/inc/utlui.hrc:37
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic *bold*"
msgstr "Автоматикала *абжажәпа*"
#. oMfhs
-#: sw/inc/utlui.hrc:36
+#: sw/inc/utlui.hrc:38
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1/2 ... with ½ ..."
msgstr "Иԥсахлатәуп 1/2 ... ½ ...ала"
#. UCK6y
-#: sw/inc/utlui.hrc:37
+#: sw/inc/utlui.hrc:39
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "URL recognition"
msgstr "Еилкаалатәуп URL"
#. MD9fC
-#: sw/inc/utlui.hrc:38
+#: sw/inc/utlui.hrc:40
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace dashes"
msgstr ""
#. YABTx
-#: sw/inc/utlui.hrc:39
+#: sw/inc/utlui.hrc:41
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1st... with 1^st..."
msgstr ""
#. ebBjY
-#: sw/inc/utlui.hrc:40
+#: sw/inc/utlui.hrc:42
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine single line paragraphs"
msgstr "Еидҵалатәуп цәаҳәактәи абзацқәа"
#. Gtaxa
-#: sw/inc/utlui.hrc:41
+#: sw/inc/utlui.hrc:43
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body\" Style"
msgstr "Иқәыргылатәуп астиль «Ихадоу атеқст»"
#. P8xFp
-#: sw/inc/utlui.hrc:42 sw/inc/utlui.hrc:44
+#: sw/inc/utlui.hrc:44 sw/inc/utlui.hrc:46
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body indent\" Style"
msgstr "Иқәыргылатәуп астиль «Ихадоу атеқст ахьаҵ ацны»"
#. UUEwQ
-#: sw/inc/utlui.hrc:43
+#: sw/inc/utlui.hrc:45
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Hanging indent\" Style"
msgstr "Иқәыргылатәуп астиль «Шьҭахьҟатәи ахьаҵ»"
#. qv2KD
-#: sw/inc/utlui.hrc:45
+#: sw/inc/utlui.hrc:47
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Heading $(ARG1)\" Style"
msgstr "Иқәыргылатәуп астиль «Ахы $(ARG1)»"
#. orFXE
-#: sw/inc/utlui.hrc:46
+#: sw/inc/utlui.hrc:48
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Bullet\" or \"Numbering\" Style"
msgstr "Иқәыргылатәуп астиль «Ахьӡынҵа» ма «Аномерркра»"
#. yGoaB
-#: sw/inc/utlui.hrc:47
+#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine paragraphs"
msgstr "Еидҵатәуп абзацқәа"
#. rpT9U
-#: sw/inc/utlui.hrc:48
+#: sw/inc/utlui.hrc:50
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr ""
#. FHPwi
-#: sw/inc/utlui.hrc:49
+#: sw/inc/utlui.hrc:51
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
msgstr ""
@@ -12108,173 +12120,173 @@ msgid "Width and Spacing"
msgstr "Аҭбаареи аинтервали"
#. aBAZn
-#: sw/uiconfig/swriter/ui/columnpage.ui:442
+#: sw/uiconfig/swriter/ui/columnpage.ui:439
#, fuzzy
msgctxt "columnpage|linestyleft"
msgid "St_yle:"
msgstr "Астиль:"
#. iTh5i
-#: sw/uiconfig/swriter/ui/columnpage.ui:456
+#: sw/uiconfig/swriter/ui/columnpage.ui:453
msgctxt "columnpage|linewidthft"
msgid "_Width:"
msgstr "_Аҭбаара:"
#. fEm38
-#: sw/uiconfig/swriter/ui/columnpage.ui:470
+#: sw/uiconfig/swriter/ui/columnpage.ui:467
#, fuzzy
msgctxt "columnpage|lineheightft"
msgid "H_eight:"
msgstr "Аҳаракыра:"
#. vKEyi
-#: sw/uiconfig/swriter/ui/columnpage.ui:484
+#: sw/uiconfig/swriter/ui/columnpage.ui:481
#, fuzzy
msgctxt "columnpage|lineposft"
msgid "_Position:"
msgstr "Аҭыҧ:"
#. yhqBe
-#: sw/uiconfig/swriter/ui/columnpage.ui:507
+#: sw/uiconfig/swriter/ui/columnpage.ui:504
msgctxt "columnpage|extended_tip|linestylelb"
msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"."
msgstr ""
#. DcSGt
-#: sw/uiconfig/swriter/ui/columnpage.ui:521
+#: sw/uiconfig/swriter/ui/columnpage.ui:518
#, fuzzy
msgctxt "columnpage|lineposlb"
msgid "Top"
msgstr "Хыхьла"
#. MKcWL
-#: sw/uiconfig/swriter/ui/columnpage.ui:522
+#: sw/uiconfig/swriter/ui/columnpage.ui:519
msgctxt "columnpage|lineposlb"
msgid "Centered"
msgstr "Ацентр ала"
#. CxCJF
-#: sw/uiconfig/swriter/ui/columnpage.ui:523
+#: sw/uiconfig/swriter/ui/columnpage.ui:520
#, fuzzy
msgctxt "columnpage|lineposlb"
msgid "Bottom"
msgstr "Ҵаҟала"
#. Akv5r
-#: sw/uiconfig/swriter/ui/columnpage.ui:527
+#: sw/uiconfig/swriter/ui/columnpage.ui:524
msgctxt "columnpage|extended_tip|lineposlb"
msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%."
msgstr ""
#. FMShH
-#: sw/uiconfig/swriter/ui/columnpage.ui:545
+#: sw/uiconfig/swriter/ui/columnpage.ui:542
msgctxt "columnpage|extended_tip|lineheightmf"
msgid "Enter the length of the separator line as a percentage of the height of the column area."
msgstr ""
#. kkGNR
-#: sw/uiconfig/swriter/ui/columnpage.ui:589
+#: sw/uiconfig/swriter/ui/columnpage.ui:586
msgctxt "columnpage|linecolorft"
msgid "_Color:"
msgstr "_Аҧштәы:"
#. 9o7DQ
-#: sw/uiconfig/swriter/ui/columnpage.ui:623
+#: sw/uiconfig/swriter/ui/columnpage.ui:620
msgctxt "columnpage|label11"
msgid "Separator Line"
msgstr "Аиҟәшагатә ҵәаӷәа"
#. 7SaDT
-#: sw/uiconfig/swriter/ui/columnpage.ui:672
+#: sw/uiconfig/swriter/ui/columnpage.ui:669
#, fuzzy
msgctxt "columnpage|label3"
msgid "Columns:"
msgstr "Аиҵагылақәа"
#. aF466
-#: sw/uiconfig/swriter/ui/columnpage.ui:691
+#: sw/uiconfig/swriter/ui/columnpage.ui:688
msgctxt "columnpage|extended_tip|colsnf"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr ""
#. X9vG6
-#: sw/uiconfig/swriter/ui/columnpage.ui:714
+#: sw/uiconfig/swriter/ui/columnpage.ui:711
msgctxt "columnpage|balance"
msgid "Evenly distribute contents _to all columns"
msgstr "Аҵанакы еиҟараны ирзеихшатәуп аиҵаҩқәа"
#. BYYDE
-#: sw/uiconfig/swriter/ui/columnpage.ui:722
+#: sw/uiconfig/swriter/ui/columnpage.ui:719
msgctxt "columnpage|extended_tip|balance"
msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically."
msgstr ""
#. bV6Pg
-#: sw/uiconfig/swriter/ui/columnpage.ui:742
+#: sw/uiconfig/swriter/ui/columnpage.ui:739
#, fuzzy
msgctxt "columnpage|liststore2"
msgid "Selection"
msgstr "Алхра"
#. qA5MH
-#: sw/uiconfig/swriter/ui/columnpage.ui:743
+#: sw/uiconfig/swriter/ui/columnpage.ui:740
#, fuzzy
msgctxt "columnpage|liststore2"
msgid "Current Section"
msgstr "Уажәтәи алкаара"
#. VSvpa
-#: sw/uiconfig/swriter/ui/columnpage.ui:744
+#: sw/uiconfig/swriter/ui/columnpage.ui:741
#, fuzzy
msgctxt "columnpage|liststore2"
msgid "Selected section"
msgstr "Ианыхтәуп аҟәша"
#. Mo9GL
-#: sw/uiconfig/swriter/ui/columnpage.ui:745
+#: sw/uiconfig/swriter/ui/columnpage.ui:742
msgctxt "columnpage|liststore2"
msgid "Frame"
msgstr "Афреим"
#. mBmAm
-#: sw/uiconfig/swriter/ui/columnpage.ui:746
+#: sw/uiconfig/swriter/ui/columnpage.ui:743
#, fuzzy
msgctxt "columnpage|liststore2"
msgid "Page Style: "
msgstr "Атаблицақәа рстиль"
#. F7MQT
-#: sw/uiconfig/swriter/ui/columnpage.ui:750
+#: sw/uiconfig/swriter/ui/columnpage.ui:747
msgctxt "columnpage|extended_tip|applytolb"
msgid "Select the item that you want to apply the column layout to."
msgstr ""
#. AJFqx
-#: sw/uiconfig/swriter/ui/columnpage.ui:763
+#: sw/uiconfig/swriter/ui/columnpage.ui:760
msgctxt "columnpage|applytoft"
msgid "_Apply to:"
msgstr "Ихархәатәуп азы:"
#. rzBnm
-#: sw/uiconfig/swriter/ui/columnpage.ui:790
+#: sw/uiconfig/swriter/ui/columnpage.ui:787
msgctxt "columnpage|textdirectionft"
msgid "Text _direction:"
msgstr "Атеқст ахырхарҭа:"
#. dcDde
-#: sw/uiconfig/swriter/ui/columnpage.ui:834
+#: sw/uiconfig/swriter/ui/columnpage.ui:831
msgctxt "columnpage|extended_tip|valueset"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr ""
#. fEbMc
-#: sw/uiconfig/swriter/ui/columnpage.ui:849
+#: sw/uiconfig/swriter/ui/columnpage.ui:846
msgctxt "columnpage|label2"
msgid "Settings"
msgstr "Архиарақәа"
#. 3dGYz
-#: sw/uiconfig/swriter/ui/columnpage.ui:904
+#: sw/uiconfig/swriter/ui/columnpage.ui:901
msgctxt "columnpage|extended_tip|ColumnPage"
msgid "Specifies the number of columns and the column layout for a page style, frame, or section."
msgstr ""
@@ -15104,184 +15116,184 @@ msgid "Position"
msgstr "Аҭыҧ"
#. okHEF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:86
+#: sw/uiconfig/swriter/ui/footnotepage.ui:92
#, fuzzy
msgctxt "footnotepage|offset"
msgid "Start at"
msgstr "Алагамҭа арыцхә"
#. T7pFk
-#: sw/uiconfig/swriter/ui/footnotepage.ui:98
+#: sw/uiconfig/swriter/ui/footnotepage.ui:104
msgctxt "footnotepage|label11"
msgid "After"
msgstr ""
#. iA9We
-#: sw/uiconfig/swriter/ui/footnotepage.ui:108
+#: sw/uiconfig/swriter/ui/footnotepage.ui:114
msgctxt "footnotepage|pospagecb"
msgid "End of page"
msgstr "Адаҟьа анҵәамҭаҿ"
#. zqfGN
-#: sw/uiconfig/swriter/ui/footnotepage.ui:120
+#: sw/uiconfig/swriter/ui/footnotepage.ui:126
msgctxt "footnotepage|extended_tip|pospagecb"
msgid "Displays footnotes at the bottom of the page."
msgstr ""
#. 8zwoB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:131
+#: sw/uiconfig/swriter/ui/footnotepage.ui:137
msgctxt "footnotepage|posdoccb"
msgid "End of document"
msgstr ""
#. xvD3V
-#: sw/uiconfig/swriter/ui/footnotepage.ui:143
+#: sw/uiconfig/swriter/ui/footnotepage.ui:149
msgctxt "footnotepage|extended_tip|posdoccb"
msgid "Displays footnotes at the end of the document as endnotes."
msgstr ""
#. BGVTw
-#: sw/uiconfig/swriter/ui/footnotepage.ui:161
+#: sw/uiconfig/swriter/ui/footnotepage.ui:167
msgctxt "footnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box."
msgstr ""
#. RWgzD
-#: sw/uiconfig/swriter/ui/footnotepage.ui:175
+#: sw/uiconfig/swriter/ui/footnotepage.ui:181
#, fuzzy
msgctxt "footnotepage|liststore1"
msgid "Per page"
msgstr "Адаҟьаҟны"
#. MELvZ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:176
+#: sw/uiconfig/swriter/ui/footnotepage.ui:182
msgctxt "footnotepage|liststore1"
msgid "Per chapter"
msgstr ""
#. oD7zV
-#: sw/uiconfig/swriter/ui/footnotepage.ui:177
+#: sw/uiconfig/swriter/ui/footnotepage.ui:183
#, fuzzy
msgctxt "footnotepage|liststore1"
msgid "Per document"
msgstr "Иаҧҵатәуп адокумент"
#. BDrKx
-#: sw/uiconfig/swriter/ui/footnotepage.ui:181
+#: sw/uiconfig/swriter/ui/footnotepage.ui:187
msgctxt "footnotepage|extended_tip|countinglb"
msgid "Select the numbering option for the footnotes."
msgstr ""
#. 7GqFA
-#: sw/uiconfig/swriter/ui/footnotepage.ui:198
+#: sw/uiconfig/swriter/ui/footnotepage.ui:204
msgctxt "footnotepage|extended_tip|prefix"
msgid "Enter the text that you want to display in front of the footnote number in the note text."
msgstr ""
#. 7rE4w
-#: sw/uiconfig/swriter/ui/footnotepage.ui:215
+#: sw/uiconfig/swriter/ui/footnotepage.ui:221
msgctxt "footnotepage|extended_tip|suffix"
msgid "Enter the text that you want to display after the footnote number in the note text."
msgstr ""
#. YAUrj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:230
+#: sw/uiconfig/swriter/ui/footnotepage.ui:236
msgctxt "footnotepage|extended_tip|numberinglb"
msgid "Select the numbering scheme that you want to use."
msgstr ""
#. Gzv4E
-#: sw/uiconfig/swriter/ui/footnotepage.ui:248
+#: sw/uiconfig/swriter/ui/footnotepage.ui:254
msgctxt "footnotepage|label3"
msgid "Autonumbering"
msgstr ""
#. NRpEM
-#: sw/uiconfig/swriter/ui/footnotepage.ui:281
+#: sw/uiconfig/swriter/ui/footnotepage.ui:287
msgctxt "footnotepage|label17"
msgid "End of footnote"
msgstr ""
#. cQefG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:293
+#: sw/uiconfig/swriter/ui/footnotepage.ui:299
msgctxt "footnotepage|label18"
msgid "Start of next page"
msgstr "Анаҩстәи адаҟьа алагамҭаҿ"
#. CUWNP
-#: sw/uiconfig/swriter/ui/footnotepage.ui:311
+#: sw/uiconfig/swriter/ui/footnotepage.ui:317
msgctxt "footnotepage|extended_tip|contfromed"
msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". Writer automatically inserts the number of the previous page."
msgstr ""
#. 2X7QW
-#: sw/uiconfig/swriter/ui/footnotepage.ui:330
+#: sw/uiconfig/swriter/ui/footnotepage.ui:336
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". Writer automatically inserts the number of the following page."
msgstr ""
#. ZEhG2
-#: sw/uiconfig/swriter/ui/footnotepage.ui:345
+#: sw/uiconfig/swriter/ui/footnotepage.ui:351
msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr ""
#. jHwyG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:376
+#: sw/uiconfig/swriter/ui/footnotepage.ui:382
msgctxt "footnotepage|label4"
msgid "Paragraph"
msgstr "Абзац"
#. 95fCg
-#: sw/uiconfig/swriter/ui/footnotepage.ui:388
+#: sw/uiconfig/swriter/ui/footnotepage.ui:394
msgctxt "footnotepage|pagestyleft"
msgid "Page"
msgstr "Адаҟьа"
#. RFDnB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:403
+#: sw/uiconfig/swriter/ui/footnotepage.ui:409
msgctxt "footnotepage|extended_tip|parastylelb"
msgid "Select the paragraph style for the footnote text. Only special styles can be selected."
msgstr ""
#. bhosj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:419
+#: sw/uiconfig/swriter/ui/footnotepage.ui:425
msgctxt "footnotepage|extended_tip|pagestylelb"
msgid "Select the page style that you want to use for footnotes."
msgstr ""
#. ESqR9
-#: sw/uiconfig/swriter/ui/footnotepage.ui:435
+#: sw/uiconfig/swriter/ui/footnotepage.ui:441
msgctxt "footnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for footnote anchors in the text area of your document."
msgstr ""
#. EfWvJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:451
+#: sw/uiconfig/swriter/ui/footnotepage.ui:457
msgctxt "footnotepage|extended_tip|charstylelb"
msgid "Select the character style that you want to use for the footnote numbers in the footnote area."
msgstr ""
#. ZP5bQ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:464
+#: sw/uiconfig/swriter/ui/footnotepage.ui:470
msgctxt "footnotepage|label15"
msgid "Text area"
msgstr "Атеқст аҭакыра"
#. aYFwJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:476
+#: sw/uiconfig/swriter/ui/footnotepage.ui:482
msgctxt "footnotepage|label16"
msgid "Footnote area"
msgstr ""
#. j8ZuF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:490
+#: sw/uiconfig/swriter/ui/footnotepage.ui:496
msgctxt "footnotepage|label12"
msgid "Styles"
msgstr "Астильқәа"
#. soD9k
-#: sw/uiconfig/swriter/ui/footnotepage.ui:504
+#: sw/uiconfig/swriter/ui/footnotepage.ui:510
msgctxt "footnotepage|extended_tip|FootnotePage"
msgid "Specifies the formatting for footnotes."
msgstr ""
@@ -16457,127 +16469,127 @@ msgid "New User-defined Index"
msgstr ""
#. zTEFk
-#: sw/uiconfig/swriter/ui/indexentry.ui:213
+#: sw/uiconfig/swriter/ui/indexentry.ui:210
msgctxt "indexentry|label3"
msgid "Entry"
msgstr ""
#. jcbjL
-#: sw/uiconfig/swriter/ui/indexentry.ui:229
+#: sw/uiconfig/swriter/ui/indexentry.ui:226
msgctxt "indexentry|key1ft"
msgid "1st key"
msgstr ""
#. B47KE
-#: sw/uiconfig/swriter/ui/indexentry.ui:245
+#: sw/uiconfig/swriter/ui/indexentry.ui:242
msgctxt "indexentry|key2ft"
msgid "2nd key"
msgstr ""
#. ReqDn
-#: sw/uiconfig/swriter/ui/indexentry.ui:260
+#: sw/uiconfig/swriter/ui/indexentry.ui:257
msgctxt "indexentry|levelft"
msgid "Level"
msgstr ""
#. QybEJ
-#: sw/uiconfig/swriter/ui/indexentry.ui:291
+#: sw/uiconfig/swriter/ui/indexentry.ui:288
msgctxt "indexentry|phonetic0ft"
msgid "Phonetic reading"
msgstr ""
#. JCtnw
-#: sw/uiconfig/swriter/ui/indexentry.ui:307
+#: sw/uiconfig/swriter/ui/indexentry.ui:304
msgctxt "indexentry|phonetic1ft"
msgid "Phonetic reading"
msgstr ""
#. C6FQC
-#: sw/uiconfig/swriter/ui/indexentry.ui:323
+#: sw/uiconfig/swriter/ui/indexentry.ui:320
msgctxt "indexentry|phonetic2ft"
msgid "Phonetic reading"
msgstr ""
#. JbXGT
-#: sw/uiconfig/swriter/ui/indexentry.ui:413
+#: sw/uiconfig/swriter/ui/indexentry.ui:410
msgctxt "indexentry|sync|tooltip_text"
msgid "Update entry from selection"
msgstr ""
#. B5PWe
-#: sw/uiconfig/swriter/ui/indexentry.ui:462
+#: sw/uiconfig/swriter/ui/indexentry.ui:459
msgctxt "indexentry|mainentrycb"
msgid "Main entry"
msgstr ""
#. 4QfoT
-#: sw/uiconfig/swriter/ui/indexentry.ui:476
+#: sw/uiconfig/swriter/ui/indexentry.ui:473
msgctxt "indexentry|applytoallcb"
msgid "Apply to all similar texts"
msgstr ""
#. ZdMSz
-#: sw/uiconfig/swriter/ui/indexentry.ui:490
+#: sw/uiconfig/swriter/ui/indexentry.ui:487
msgctxt "indexentry|searchcasesensitivecb"
msgid "Match case"
msgstr ""
#. 8Q9RW
-#: sw/uiconfig/swriter/ui/indexentry.ui:505
+#: sw/uiconfig/swriter/ui/indexentry.ui:502
msgctxt "indexentry|searchcasewordonlycb"
msgid "Whole words only"
msgstr ""
#. 62yyk
-#: sw/uiconfig/swriter/ui/indexentry.ui:539
+#: sw/uiconfig/swriter/ui/indexentry.ui:536
msgctxt "indexentry|previous|tooltip_text"
msgid "Previous entry"
msgstr ""
#. Vd86J
-#: sw/uiconfig/swriter/ui/indexentry.ui:542
+#: sw/uiconfig/swriter/ui/indexentry.ui:539
msgctxt "indexentry|extended_tip|previous"
msgid "Jumps to the previous index entry of the same type in the document."
msgstr ""
#. VsuQU
-#: sw/uiconfig/swriter/ui/indexentry.ui:560
+#: sw/uiconfig/swriter/ui/indexentry.ui:557
msgctxt "indexentry|next|tooltip_text"
msgid "Next entry"
msgstr ""
#. WsgJC
-#: sw/uiconfig/swriter/ui/indexentry.ui:563
+#: sw/uiconfig/swriter/ui/indexentry.ui:560
msgctxt "indexentry|extended_tip|next"
msgid "Jumps to the next index entry of the same type in the document."
msgstr ""
#. KnhCr
-#: sw/uiconfig/swriter/ui/indexentry.ui:581
+#: sw/uiconfig/swriter/ui/indexentry.ui:578
msgctxt "indexentry|first|tooltip_text"
msgid "Previous entry (same name)"
msgstr ""
#. 3dGEa
-#: sw/uiconfig/swriter/ui/indexentry.ui:584
+#: sw/uiconfig/swriter/ui/indexentry.ui:581
msgctxt "indexentry|extended_tip|first"
msgid "Jumps to the previous index entry of the same type and with the same name in the document."
msgstr ""
#. 2mkMr
-#: sw/uiconfig/swriter/ui/indexentry.ui:602
+#: sw/uiconfig/swriter/ui/indexentry.ui:599
msgctxt "indexentry|last|tooltip_text"
msgid "Next entry (same name)"
msgstr ""
#. gYHoh
-#: sw/uiconfig/swriter/ui/indexentry.ui:605
+#: sw/uiconfig/swriter/ui/indexentry.ui:602
msgctxt "indexentry|extended_tip|last"
msgid "Jumps to the next index entry of the same type and with the same name in the document."
msgstr ""
#. dLE2B
-#: sw/uiconfig/swriter/ui/indexentry.ui:633
+#: sw/uiconfig/swriter/ui/indexentry.ui:630
#, fuzzy
msgctxt "indexentry|label1"
msgid "Selection"
@@ -17154,74 +17166,104 @@ msgctxt "insertbreak|linerb-atkobject"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr ""
+#. 88jq6
+#: sw/uiconfig/swriter/ui/insertbreak.ui:122
+msgctxt "insertbreak|clearft"
+msgid "Restart Location:"
+msgstr ""
+
+#. fJEqu
+#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+msgctxt "insertbreak|clearlb0"
+msgid "[None]"
+msgstr ""
+
+#. dGBC7
+#: sw/uiconfig/swriter/ui/insertbreak.ui:141
+msgctxt "insertbreak|clearlb1"
+msgid "Left"
+msgstr ""
+
+#. HbijZ
+#: sw/uiconfig/swriter/ui/insertbreak.ui:142
+msgctxt "insertbreak|clearlb2"
+msgid "Right"
+msgstr ""
+
+#. AAg7H
+#: sw/uiconfig/swriter/ui/insertbreak.ui:143
+msgctxt "insertbreak|clearlb3"
+msgid "Next Full Line"
+msgstr ""
+
#. gqCuB
-#: sw/uiconfig/swriter/ui/insertbreak.ui:119
+#: sw/uiconfig/swriter/ui/insertbreak.ui:154
msgctxt "insertbreak|columnrb"
msgid "Column break"
msgstr ""
#. poiJj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:128
+#: sw/uiconfig/swriter/ui/insertbreak.ui:163
msgctxt "insertbreak|columnrb-atkobject"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column."
msgstr ""
#. 9GAAp
-#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+#: sw/uiconfig/swriter/ui/insertbreak.ui:175
msgctxt "insertbreak|pagerb"
msgid "Page break"
msgstr "Адаҟьа аимҟьара"
#. G7e9T
-#: sw/uiconfig/swriter/ui/insertbreak.ui:149
+#: sw/uiconfig/swriter/ui/insertbreak.ui:184
msgctxt "insertbreak|pagerb-atkobject"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
msgstr ""
#. qAj3x
-#: sw/uiconfig/swriter/ui/insertbreak.ui:164
+#: sw/uiconfig/swriter/ui/insertbreak.ui:199
msgctxt "insertbreak|styleft"
msgid "Page Style:"
msgstr ""
#. BWnND
-#: sw/uiconfig/swriter/ui/insertbreak.ui:181
+#: sw/uiconfig/swriter/ui/insertbreak.ui:216
msgctxt "insertbreak|liststore1"
msgid "[None]"
msgstr ""
#. 8WDUc
-#: sw/uiconfig/swriter/ui/insertbreak.ui:185
+#: sw/uiconfig/swriter/ui/insertbreak.ui:220
msgctxt "insertbreak|stylelb-atkobject"
msgid "Select the page style for the page that follows the manual page break."
msgstr ""
#. LbNq3
-#: sw/uiconfig/swriter/ui/insertbreak.ui:197
+#: sw/uiconfig/swriter/ui/insertbreak.ui:232
msgctxt "insertbreak|pagenumcb"
msgid "Change page number"
msgstr "Иҧсахтәуп адаҟьа аномер"
#. cfsdj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:206
+#: sw/uiconfig/swriter/ui/insertbreak.ui:241
msgctxt "insertbreak|pagenumcb-atkobject"
msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break."
msgstr ""
#. iWGZG
-#: sw/uiconfig/swriter/ui/insertbreak.ui:229
+#: sw/uiconfig/swriter/ui/insertbreak.ui:264
msgctxt "insertbreak|pagenumsb-atkobject"
msgid "Enter the new page number for the page that follows the manual page break."
msgstr ""
#. uAMAX
-#: sw/uiconfig/swriter/ui/insertbreak.ui:245
+#: sw/uiconfig/swriter/ui/insertbreak.ui:280
msgctxt "insertbreak|label1"
msgid "Type"
msgstr "Атип"
#. fYmmW
-#: sw/uiconfig/swriter/ui/insertbreak.ui:269
+#: sw/uiconfig/swriter/ui/insertbreak.ui:304
msgctxt "insertbreak|extended_tip|BreakDialog"
msgid "Inserts a manual line break, column break or a page break at the current cursor position."
msgstr ""
@@ -20378,206 +20420,218 @@ msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
-#. dajzZ
+#. iH6Pr
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
+msgctxt "navigatorcontextmenu|STR_COPY_ENTRY"
+msgid "_Copy"
+msgstr ""
+
+#. dajzZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. axFMf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Move Chapter Up"
msgstr ""
#. Radwp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Move Chapter Down"
msgstr ""
#. FJZdw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Outline Level"
msgstr ""
#. GRZmf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:162
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:170
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:178
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:192
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
-msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
-msgid "Outline Level"
-msgstr ""
-
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:212
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:242
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:250
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:258
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:266
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:274
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:282
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:290
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:298
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:306
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:314
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:322
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
+#. vBGAw
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:330
+msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
+msgid "Sort Alphabetically"
+msgstr ""
+
+#. cECoG
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:344
+msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
+msgid "Outline Level"
+msgstr ""
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:358
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:372
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:392
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr ""
@@ -24273,20 +24327,20 @@ msgid "Default"
msgstr "Астандарт"
#. 8fEFG
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:469
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:466
msgctxt "outlinepositionpage|extended_tip|standard"
msgid "Resets the indent and the spacing values to the default values."
msgstr ""
#. bLuru
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:490
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:487
#, fuzzy
msgctxt "outlinepositionpage|label10"
msgid "Position and Spacing"
msgstr "Аҭыҧи ашәагааи"
#. ogECa
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:534
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:531
msgctxt "outlinepositionpage|label17"
msgid "Preview"
msgstr ""
@@ -26804,287 +26858,287 @@ msgid "Order"
msgstr ""
#. NioK5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:170
+#: sw/uiconfig/swriter/ui/sortdialog.ui:178
msgctxt "sortdialog|up1"
msgid "Ascending"
msgstr "Еиҵоу-еиҳаула"
#. ASaRk
-#: sw/uiconfig/swriter/ui/sortdialog.ui:182
+#: sw/uiconfig/swriter/ui/sortdialog.ui:191
msgctxt "sortdialog|extended_tip|up1"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr ""
#. yVqST
-#: sw/uiconfig/swriter/ui/sortdialog.ui:193
+#: sw/uiconfig/swriter/ui/sortdialog.ui:202
msgctxt "sortdialog|down1"
msgid "Descending"
msgstr "Еиҳау-еиҵоула"
#. YS8zz
-#: sw/uiconfig/swriter/ui/sortdialog.ui:205
+#: sw/uiconfig/swriter/ui/sortdialog.ui:215
msgctxt "sortdialog|extended_tip|down1"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr ""
#. P9D2w
-#: sw/uiconfig/swriter/ui/sortdialog.ui:228
+#: sw/uiconfig/swriter/ui/sortdialog.ui:238
msgctxt "sortdialog|up2"
msgid "Ascending"
msgstr "Еиҵоу-еиҳаула"
#. TMLam
-#: sw/uiconfig/swriter/ui/sortdialog.ui:240
+#: sw/uiconfig/swriter/ui/sortdialog.ui:251
msgctxt "sortdialog|extended_tip|up2"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr ""
#. haL8p
-#: sw/uiconfig/swriter/ui/sortdialog.ui:251
+#: sw/uiconfig/swriter/ui/sortdialog.ui:262
msgctxt "sortdialog|down2"
msgid "Descending"
msgstr "Еиҳау-еиҵоула"
#. HMoq2
-#: sw/uiconfig/swriter/ui/sortdialog.ui:263
+#: sw/uiconfig/swriter/ui/sortdialog.ui:275
msgctxt "sortdialog|extended_tip|down2"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr ""
#. PHxUv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:286
+#: sw/uiconfig/swriter/ui/sortdialog.ui:298
msgctxt "sortdialog|up3"
msgid "Ascending"
msgstr "Еиҵоу-еиҳаула"
#. jL5gX
-#: sw/uiconfig/swriter/ui/sortdialog.ui:298
+#: sw/uiconfig/swriter/ui/sortdialog.ui:311
msgctxt "sortdialog|extended_tip|up3"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr ""
#. zsggE
-#: sw/uiconfig/swriter/ui/sortdialog.ui:309
+#: sw/uiconfig/swriter/ui/sortdialog.ui:322
msgctxt "sortdialog|down3"
msgid "Descending"
msgstr "Еиҳау-еиҵоула"
#. 8LdjH
-#: sw/uiconfig/swriter/ui/sortdialog.ui:321
+#: sw/uiconfig/swriter/ui/sortdialog.ui:335
msgctxt "sortdialog|extended_tip|down3"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr ""
#. 3yLB6
-#: sw/uiconfig/swriter/ui/sortdialog.ui:338
+#: sw/uiconfig/swriter/ui/sortdialog.ui:352
msgctxt "sortdialog|key1"
msgid "Key 1"
msgstr ""
#. GXMCr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:348
+#: sw/uiconfig/swriter/ui/sortdialog.ui:368
msgctxt "sortdialog|extended_tip|key1"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. XDgAf
-#: sw/uiconfig/swriter/ui/sortdialog.ui:359
+#: sw/uiconfig/swriter/ui/sortdialog.ui:379
msgctxt "sortdialog|key2"
msgid "Key 2"
msgstr ""
#. CgEiB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:368
+#: sw/uiconfig/swriter/ui/sortdialog.ui:394
msgctxt "sortdialog|extended_tip|key2"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. 8yfoN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:379
+#: sw/uiconfig/swriter/ui/sortdialog.ui:405
msgctxt "sortdialog|key3"
msgid "Key 3"
msgstr ""
#. yS2ky
-#: sw/uiconfig/swriter/ui/sortdialog.ui:388
+#: sw/uiconfig/swriter/ui/sortdialog.ui:420
msgctxt "sortdialog|extended_tip|key3"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. pFZY3
-#: sw/uiconfig/swriter/ui/sortdialog.ui:411
+#: sw/uiconfig/swriter/ui/sortdialog.ui:443
msgctxt "sortdialog|extended_tip|colsb1"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr ""
#. n2S79
-#: sw/uiconfig/swriter/ui/sortdialog.ui:434
+#: sw/uiconfig/swriter/ui/sortdialog.ui:466
msgctxt "sortdialog|extended_tip|colsb2"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr ""
#. ckwsF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:457
+#: sw/uiconfig/swriter/ui/sortdialog.ui:489
msgctxt "sortdialog|extended_tip|colsb3"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr ""
#. 5bX9W
-#: sw/uiconfig/swriter/ui/sortdialog.ui:478
+#: sw/uiconfig/swriter/ui/sortdialog.ui:510
msgctxt "sortdialog|typelb1-atkobject"
msgid "Key type"
msgstr ""
#. rAGDj
-#: sw/uiconfig/swriter/ui/sortdialog.ui:479
+#: sw/uiconfig/swriter/ui/sortdialog.ui:511
msgctxt "sortdialog|extended_tip|typelb1"
msgid "Select the sorting option that you want to use."
msgstr ""
#. FxBUC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:501
+#: sw/uiconfig/swriter/ui/sortdialog.ui:533
msgctxt "sortdialog|typelb2-atkobject"
msgid "Key type"
msgstr ""
#. efrcu
-#: sw/uiconfig/swriter/ui/sortdialog.ui:502
+#: sw/uiconfig/swriter/ui/sortdialog.ui:534
msgctxt "sortdialog|extended_tip|typelb2"
msgid "Select the sorting option that you want to use."
msgstr ""
#. 9D3Mg
-#: sw/uiconfig/swriter/ui/sortdialog.ui:523
+#: sw/uiconfig/swriter/ui/sortdialog.ui:555
msgctxt "sortdialog|typelb3-atkobject"
msgid "Key type"
msgstr ""
#. RjtNn
-#: sw/uiconfig/swriter/ui/sortdialog.ui:524
+#: sw/uiconfig/swriter/ui/sortdialog.ui:556
msgctxt "sortdialog|extended_tip|typelb3"
msgid "Select the sorting option that you want to use."
msgstr ""
#. m3EJC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:542
+#: sw/uiconfig/swriter/ui/sortdialog.ui:574
msgctxt "sortdialog|1"
msgid "Sort Criteria"
msgstr ""
#. dY8Rr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:580
+#: sw/uiconfig/swriter/ui/sortdialog.ui:612
msgctxt "sortdialog|columns"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. PviSN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:589
+#: sw/uiconfig/swriter/ui/sortdialog.ui:621
msgctxt "sortdialog|extended_tip|columns"
msgid "Sorts the columns in the table according to the current sort options."
msgstr ""
#. d7odM
-#: sw/uiconfig/swriter/ui/sortdialog.ui:600
+#: sw/uiconfig/swriter/ui/sortdialog.ui:632
msgctxt "sortdialog|rows"
msgid "Rows"
msgstr "Ацәаҳәақәа"
#. vsSra
-#: sw/uiconfig/swriter/ui/sortdialog.ui:609
+#: sw/uiconfig/swriter/ui/sortdialog.ui:641
msgctxt "sortdialog|extended_tip|rows"
msgid "Sorts the rows in the table or the paragraphs in the selection according to the current sort options."
msgstr ""
#. C4Fuq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:624
+#: sw/uiconfig/swriter/ui/sortdialog.ui:656
msgctxt "sortdialog|label3"
msgid "Direction"
msgstr ""
#. JGBYA
-#: sw/uiconfig/swriter/ui/sortdialog.ui:654
+#: sw/uiconfig/swriter/ui/sortdialog.ui:686
#, fuzzy
msgctxt "sortdialog|tabs"
msgid "Tabs"
msgstr "abs"
#. dE3Av
-#: sw/uiconfig/swriter/ui/sortdialog.ui:663
+#: sw/uiconfig/swriter/ui/sortdialog.ui:695
msgctxt "sortdialog|extended_tip|tabs"
msgid "If the selected paragraphs correspond to a list separated by tabs, select this option."
msgstr ""
#. 7GWNt
-#: sw/uiconfig/swriter/ui/sortdialog.ui:675
+#: sw/uiconfig/swriter/ui/sortdialog.ui:707
msgctxt "sortdialog|character"
msgid "Character "
msgstr "Асимвол "
#. 9yFT9
-#: sw/uiconfig/swriter/ui/sortdialog.ui:688
+#: sw/uiconfig/swriter/ui/sortdialog.ui:722
msgctxt "sortdialog|extended_tip|character"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr ""
#. ECCA5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:718
+#: sw/uiconfig/swriter/ui/sortdialog.ui:753
msgctxt "sortdialog|extended_tip|separator"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr ""
#. XC5zv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:729
+#: sw/uiconfig/swriter/ui/sortdialog.ui:764
msgctxt "sortdialog|delimpb"
msgid "Select..."
msgstr "Алхра..."
#. VhhBB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:739
+#: sw/uiconfig/swriter/ui/sortdialog.ui:774
msgctxt "sortdialog|extended_tip|delimpb"
msgid "Opens the Special Characters dialog, where you can select the character that you want to use as a separator."
msgstr ""
#. BX6Mq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:760
+#: sw/uiconfig/swriter/ui/sortdialog.ui:795
#, fuzzy
msgctxt "sortdialog|label4"
msgid "Separator"
msgstr "Аиҟәшага"
#. bBbUV
-#: sw/uiconfig/swriter/ui/sortdialog.ui:808
+#: sw/uiconfig/swriter/ui/sortdialog.ui:843
msgctxt "sortdialog|extended_tip|langlb"
msgid "Select the language that defines the sorting rules."
msgstr ""
#. gEcoc
-#: sw/uiconfig/swriter/ui/sortdialog.ui:817
+#: sw/uiconfig/swriter/ui/sortdialog.ui:852
#, fuzzy
msgctxt "sortdialog|label1"
msgid "Language"
msgstr "Абызшәақәа"
#. QnviQ
-#: sw/uiconfig/swriter/ui/sortdialog.ui:837
+#: sw/uiconfig/swriter/ui/sortdialog.ui:872
msgctxt "sortdialog|matchcase"
msgid "Match case"
msgstr ""
#. Nd8XG
-#: sw/uiconfig/swriter/ui/sortdialog.ui:847
+#: sw/uiconfig/swriter/ui/sortdialog.ui:882
msgctxt "sortdialog|extended_tip|matchcase"
msgid "Distinguishes between uppercase and lowercase letters when you sort a table. For Asian languages special handling applies."
msgstr ""
#. Adw2Y
-#: sw/uiconfig/swriter/ui/sortdialog.ui:856
+#: sw/uiconfig/swriter/ui/sortdialog.ui:891
#, fuzzy
msgctxt "sortdialog|label2"
msgid "Setting"
msgstr "Архиарақәа"
#. pCcXF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:894
+#: sw/uiconfig/swriter/ui/sortdialog.ui:926
msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Sorts the selected paragraphs or table rows alphabetically or numerically."
msgstr ""
@@ -27518,249 +27572,249 @@ msgid "_Break"
msgstr ""
#. LEfit
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:59
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:65
msgctxt "tabletextflowpage|extended_tip|break"
msgid "Select this check box, and then select the type of break that you want to associate with the table."
msgstr ""
#. 85dHS
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:70
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:76
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Адаҟьа"
#. LUPNA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:82
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:88
msgctxt "tabletextflowpage|extended_tip|page"
msgid "Inserts a page break before or after the table."
msgstr ""
#. ATESc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:93
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:99
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Аиҵагыла"
#. bU9Sj
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:105
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:111
msgctxt "tabletextflowpage|extended_tip|column"
msgid "Inserts a column break before or after the table on a multi-column page."
msgstr ""
#. bFvFr
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:116
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:122
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr ""
#. wCFtD
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:128
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:134
msgctxt "tabletextflowpage|extended_tip|before"
msgid "Inserts a page or column break before the table."
msgstr ""
#. x9LiQ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:139
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:145
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr ""
#. y4ECA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:157
msgctxt "tabletextflowpage|extended_tip|after"
msgid "Inserts a page or column break after the table."
msgstr ""
#. ZKgd9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:183
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Иҧсахтәуп адаҟьа астиль"
#. NMMdy
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:189
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:195
msgctxt "tabletextflowpage|extended_tip|pagestyle"
msgid "Applies the page style that you specify to the first page that follows the page break."
msgstr ""
#. 4ifHW
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:200
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:206
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Адаҟьа аномер:"
#. b8xXZ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|extended_tip|pagenonf"
msgid "Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked."
msgstr ""
#. 5oC83
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:242
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:248
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Иҧсахтәуп адаҟьа астиль"
#. NENyo
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:243
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:249
msgctxt "tabletextflowpage|extended_tip|pagestylelb"
msgid "Select the page style that you want to apply to the first page that follows the break."
msgstr ""
#. CZpDc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:260
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:266
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
#. QXXZK
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:268
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
msgctxt "tabletextflowpage|extended_tip|split"
msgid "Allows a page break or column break between the rows of a table."
msgstr ""
#. SKeze
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:279
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:285
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr ""
#. HYN9t
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:295
msgctxt "tabletextflowpage|extended_tip|splitrow"
msgid "Allows a page break or column break inside a row of the table."
msgstr ""
#. jGCyC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr ""
#. iFwuV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:308
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:314
msgctxt "tabletextflowpage|extended_tip|keep"
msgid "Keeps the table and the following paragraph together when you insert the break."
msgstr ""
#. QAY45
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:327
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:333
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Атеқст аориентациа"
#. JsEEP
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:341
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:347
msgctxt "tabletextflowpage|liststore1"
msgid "Horizontal"
msgstr "Горизонталла"
#. RgbAV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:342
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
msgstr ""
#. 7yaYB
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:349
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
msgstr ""
#. 5CGH9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:344
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:350
msgctxt "tabletextflowpage|liststore1"
msgid "Use superordinate object settings"
msgstr ""
#. FJnts
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:354
msgctxt "tabletextflowpage|extended_tip|textorientation"
msgid "Select the orientation for the text in the cells."
msgstr ""
#. tWodL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:371
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:377
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr ""
#. EpMSY
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:379
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:385
msgctxt "tabletextflowpage|extended_tip|headline"
msgid "Repeats the table heading on a new page when the table spans more than one page."
msgstr ""
#. 7R7Gn
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:398
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:404
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
#. KEVNR
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:411
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:417
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "Ацәаҳәақәа"
#. hLzfu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:427
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:433
msgctxt "tabletextflowpage|extended_tip|repeatheadernf"
msgid "Enter the number of rows to include in the heading."
msgstr ""
#. yLhbA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:454
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Адаҟьаҟны аҭыԥ"
#. FRUDs
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:484
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:490
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
#. YLPEL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:498
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
#, fuzzy
msgctxt "tabletextflowpage|liststore2"
msgid "Top"
msgstr "Хыхьла"
#. 5Pb5v
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:499
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:505
msgctxt "tabletextflowpage|liststore2"
msgid "Centered"
msgstr "Ацентр ала"
#. 4aZFz
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:500
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:506
#, fuzzy
msgctxt "tabletextflowpage|liststore2"
msgid "Bottom"
msgstr "Ҵаҟала"
#. SwHrE
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:510
msgctxt "tabletextflowpage|extended_tip|vertorient"
msgid "Specify the vertical text alignment for the cells in the table."
msgstr ""
#. ZtGTC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:519
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:525
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Аиҟаратәра"
#. GJKSu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:533
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:539
msgctxt "tabletextflowpage|extended_tip|TableTextFlowPage"
msgid "Set the text flow options for the text before and after the table."
msgstr ""
diff --git a/source/ab/uui/messages.po b/source/ab/uui/messages.po
index d6fb9974148..6f9fd6ca5ad 100644
--- a/source/ab/uui/messages.po
+++ b/source/ab/uui/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-11-19 15:45+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
"PO-Revision-Date: 2021-02-12 17:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/ab/>\n"
@@ -40,11 +40,11 @@ msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "Ахықәкы ыҟоуп."
-#. KgnBz
+#. KneVX
#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
-"You are about to save/export a password protected basic library containing module(s) \n"
+"You are about to save/export a password protected BASIC library containing module(s) \n"
"$(ARG1)\n"
"which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?"
msgstr ""
diff --git a/source/ab/vcl/messages.po b/source/ab/vcl/messages.po
index a4fd03ea622..d830d397010 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: 2022-02-09 16:47+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\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"
@@ -850,350 +850,221 @@ msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "Иарбанзаалак атип"
-#. FD7Bf
-#: vcl/inc/strings.hrc:70
-msgctxt "STR_FPICKER_AUTO_EXTENSION"
-msgid "~Automatic file name extension"
-msgstr ""
-
-#. 9ECLu
-#: vcl/inc/strings.hrc:71
-msgctxt "STR_FPICKER_PASSWORD"
-msgid "Save with pass~word"
-msgstr "Еиқәырхатәуп ажәамаӡа шацу"
-
-#. nyers
-#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:73
-msgctxt "STR_FPICKER_GPGENCRYPT"
-msgid "Encrypt with ~GPG key"
-msgstr "Ишифррктәуп GPG ацаԥхала"
-
-#. Z2MmL
-#: vcl/inc/strings.hrc:74
-msgctxt "STR_FPICKER_FILTER_OPTIONS"
-msgid "~Edit filter settings"
-msgstr "Афильтр апараметрқәа рыриашара"
-
-#. ZDE7y
-#: vcl/inc/strings.hrc:75
-msgctxt "STR_FPICKER_READONLY"
-msgid "~Read-only"
-msgstr "Аҧхьараз мацараз"
-
-#. EYvCH
-#: vcl/inc/strings.hrc:76
-msgctxt "STR_FPICKER_INSERT_AS_LINK"
-msgid "Insert as ~Link"
-msgstr "Ибжьаргылатәуп азхьарҧш еиҧш"
-
-#. zpPD6
-#: vcl/inc/strings.hrc:77
-msgctxt "STR_FPICKER_SHOW_PREVIEW"
-msgid "Pr~eview"
-msgstr "Ахәаҧшра"
-
-#. L7QTs
-#: vcl/inc/strings.hrc:78
-#, fuzzy
-msgctxt "STR_FPICKER_PLAY"
-msgid "~Play"
-msgstr "Идәықәҵатәуп"
-
-#. rPLAU
-#: vcl/inc/strings.hrc:79
-msgctxt "STR_FPICKER_VERSION"
-msgid "~Version:"
-msgstr "Аверсиа:"
-
-#. dMPHM
-#: vcl/inc/strings.hrc:80
-msgctxt "STR_FPICKER_TEMPLATES"
-msgid "S~tyles:"
-msgstr "Астильқәа:"
-
-#. TeuRr
-#: vcl/inc/strings.hrc:81
-#, fuzzy
-msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
-msgid "Frame Style: "
-msgstr "Адаҟьа астиль: "
-
-#. Cq63y
-#: vcl/inc/strings.hrc:82
-msgctxt "STR_FPICKER_IMAGE_ANCHOR"
-msgid "A~nchor: "
-msgstr ""
-
-#. 7yacA
-#: vcl/inc/strings.hrc:83
-msgctxt "STR_FPICKER_SELECTION"
-msgid "~Selection"
-msgstr "Алкаара"
-
-#. QFCuE
-#: vcl/inc/strings.hrc:84
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
-msgid "Select Path"
-msgstr "Иалхтәуп амҩа"
-
-#. AoCzG
-#: vcl/inc/strings.hrc:85
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
-msgid "Please select a folder."
-msgstr "Иалышәх аҭаӡ."
-
-#. vcC7G
-#: vcl/inc/strings.hrc:86
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
-msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
-msgstr "Афаил ахьӡ \"$filename$\" змоу ыҟоуп. Иалаԥсахтәума иара?"
-
-#. MKKjJ
-#: vcl/inc/strings.hrc:87
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
-msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
-msgstr ""
-
-#. pF5CC
-#: vcl/inc/strings.hrc:88
-msgctxt "STR_FPICKER_ALLFORMATS"
-msgid "All Formats"
-msgstr "Аформатқәа зегьы"
-
-#. xJLGT
-#: vcl/inc/strings.hrc:89
-msgctxt "STR_FPICKER_OPEN"
-msgid "Open"
-msgstr "Иаарттәуп"
-
-#. W5xGp
-#: vcl/inc/strings.hrc:90
-msgctxt "STR_FPICKER_SAVE"
-msgid "Save"
-msgstr "Еиқәырхатәуп"
-
-#. QxrYy
-#: vcl/inc/strings.hrc:91
-msgctxt "STR_FPICKER_TYPE"
-msgid "File ~type"
-msgstr "Афаил атип"
-
#. qfg3C
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:70
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "Ашрифтқәа асистема аҟны иԥшаам."
#. rWAuM
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:72
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "Адаҟьақәа ыҟам"
#. SFF7G
-#: vcl/inc/strings.hrc:96
+#: vcl/inc/strings.hrc:73
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr "Ахәаԥшра аҿыхуп"
#. xMtCc
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:74
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "Икьыҧхьтәуп афаил ахь..."
#. GBDRJ
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:75
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "Иқәыргылоу апринтер"
#. 8BSG2
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:76
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "Иҭажәгал афакс аномер"
#. GtHUE
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:77
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "Напыла"
#. yPJTL
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:79
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr ""
#. Dk4vc
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:81
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "АцП аишьҭацақәа: "
#. 5DyEd
-#: vcl/inc/strings.hrc:105
+#: vcl/inc/strings.hrc:82
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "АоС "
#. Yqrwo
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:83
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr ""
#. HnDDn
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:84
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr "Skia/Vulkan"
#. f5k6D
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:85
msgctxt "SV_APP_SKIA_METAL"
msgid "Skia/Metal"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:86
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr "Skia/арастр"
#. ZitRE
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:87
#, fuzzy
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "Астандарт"
#. 4gWk5
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:89
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "Аинформациа"
#. 5gAyW
-#: vcl/inc/strings.hrc:113
+#: vcl/inc/strings.hrc:90
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "Агәаҽанҵара"
#. buqyG
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:91
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "Агха"
#. 3CTTS
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:92
#, fuzzy
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "Архиара"
#. drUB5
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:94
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "ианыхтәуп ацәаҳәа"
#. cxFKH
-#: vcl/inc/strings.hrc:118
+#: vcl/inc/strings.hrc:95
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "ианыхтәуп ацәаҳәақәа ҧыҭк"
#. 7KPRL
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:96
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "ибжьаргылатәуп ацәаҳәақәа ҧыҭк"
#. R2cyr
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:97
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "иҭаргылатәуп '$1'"
#. 66FYV
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:98
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "ианыхтәуп '$1' "
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:124
+#: vcl/inc/strings.hrc:101
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ацәаҳәа: %1, Аиҵагыла: %2"
#. 5RjLF
-#: vcl/inc/strings.hrc:125
+#: vcl/inc/strings.hrc:102
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Иҭацәу аҭакыра"
#. TcNJT
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:104
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "Амш"
#. DhSTi
-#: vcl/inc/strings.hrc:128
+#: vcl/inc/strings.hrc:105
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "Амчыбжь"
#. 5Eyy3
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:106
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Иахьа"
#. rSVhV
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:108
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Ашьаҿақәа"
#. wEp9A
-#: vcl/inc/strings.hrc:132
+#: vcl/inc/strings.hrc:109
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Ихиоуп"
#. ygXBw
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:110
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Анаҩс >"
#. 5MSDe
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:111
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Шьҭахьҟа"
#. urFMt
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:113
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. eCq2K
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:115
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
msgid "Default file formats not registered"
msgstr ""
#. TDctx
-#: vcl/inc/strings.hrc:139
+#: vcl/inc/strings.hrc:116
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
msgid ""
"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
@@ -1202,7 +1073,7 @@ msgid ""
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:141
+#: vcl/inc/strings.hrc:118
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
@@ -1210,31 +1081,31 @@ msgid ""
msgstr ""
#. 4jvA7
-#: vcl/inc/strings.hrc:143
+#: vcl/inc/strings.hrc:120
msgctxt "STR_GBU"
msgid "Graphics Backend used: %1"
msgstr ""
#. FBgmu
-#: vcl/inc/strings.hrc:144
+#: vcl/inc/strings.hrc:121
msgctxt "STR_PASSED"
msgid "Passed Tests: %1"
msgstr ""
#. 3nqZp
-#: vcl/inc/strings.hrc:145
+#: vcl/inc/strings.hrc:122
msgctxt "STR_QUIRKY"
msgid "Quirky Tests: %1"
msgstr ""
#. KhjFD
-#: vcl/inc/strings.hrc:146
+#: vcl/inc/strings.hrc:123
msgctxt "STR_FAILED"
msgid "Failed Tests: %1"
msgstr ""
#. uKGQi
-#: vcl/inc/strings.hrc:147
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SKIPPED"
msgid "Skipped Tests: %1"
msgstr ""
diff --git a/source/af/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po b/source/af/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
index 4e952f7674d..98b8fa0fdba 100644
--- a/source/af/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/af/connectivity/registry/mysql_jdbc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2021-09-24 08:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistrymysql_jdbcorgopenofficeofficedataaccess/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: 1547811086.000000\n"
#. ny8vx
@@ -35,13 +35,3 @@ msgctxt ""
"value.text"
msgid "MySQL (ODBC)"
msgstr "MySQL (ODBC.)"
-
-#. rcnrk
-#: Drivers.xcu
-msgctxt ""
-"Drivers.xcu\n"
-".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
-"DriverTypeDisplayName\n"
-"value.text"
-msgid "MySQL (Native)"
-msgstr "MySQL (standaard)"
diff --git a/source/af/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po b/source/af/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
index 77f77246e4a..222ee53004a 100644
--- a/source/af/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
+++ b/source/af/connectivity/registry/mysqlc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2020-05-15 19:39+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/connectivityregistrymysqlcorgopenofficeofficedataaccess/af/>\n"
@@ -13,15 +13,15 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496399.000000\n"
-#. NHVFU
+#. bTkZz
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "MySQL Connector"
-msgstr "MySQL Koppeling"
+msgid "MySQL/MariaDB Connector"
+msgstr ""
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 49d0abd8f6c..f2847d788df 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-18 12:16+0100\n"
-"PO-Revision-Date: 2022-02-17 14:39+0000\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
+"PO-Revision-Date: 2022-03-09 06:26+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"
@@ -2153,11 +2153,11 @@ msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
msgstr "(Klik op enige toets om die gevolglike biskaart-beeld te sien)"
-#. YFfQV
+#. BT9KG
#: cui/inc/strings.hrc:403
msgctxt "RID_CUISTR_ZIPFAIL"
-msgid "Creation of Zip file failed!"
-msgstr "Skepping van die Zip lêer het gevaal!"
+msgid "Creation of ZIP file failed."
+msgstr ""
#. 9QSQr
#: cui/inc/strings.hrc:404
@@ -2242,11 +2242,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"
msgstr "Om na alle uitdrukkings tussen hakies te soek, kies »Wysig ▸ Vind & vervang ... ▸ Teksveld: Soek ▸\" \\ ([^)] + \\) \"« (klik op die merkblokkie \"Regular expressions”)."
-#. DUvk6
+#. jpiRT
#: cui/inc/tipoftheday.hrc:62
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon style."
-msgstr "Om 'n ander ikoon-stel te gebruik, kies 'Tools' ▸ Options ... ▸% PRODUCTNAME ▸ View ▸ Area: User interface ▸ Dropdown menu: Symbol style «."
+msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon Theme."
+msgstr ""
#. RejqP
#: cui/inc/tipoftheday.hrc:63
@@ -2733,7 +2733,7 @@ msgstr "Kies \"Hiërargiese aansig\" in die \"Styles\"-sybalk om die verband tus
#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat Styles..."
-msgstr ""
+msgstr "Jy kan style aanwend om die tabelle in jou dokument konsekwent te maak. Kies een uit die vooraf gedefinieerde Styles (F11) of via Tabel ▸ Outo Formaat Styles..."
#. UuBRE
#: cui/inc/tipoftheday.hrc:145
@@ -2770,7 +2770,7 @@ msgstr "Om slegs die grootste waardes in 'n Calc-tabel te vertoon, kies \"Data
#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert ▸ Table of Contents and Index (or right-click and Edit Index to edit a previously inserted index). In the Entries tab delete the page number (#) from Structure line."
-msgstr ""
+msgstr "Om die bladsynommer van jou inhoudsopgawe te verwyder, gaan na \"Voeg in ▸ Inhoudsopgawe en Indeks\" (of regs-muiskliek en \"Wysig Indeks\" om 'n voorheen ingevoegde indeks te wysig). In die Inskrywings-oortjie verwyder die bladsynommer (#) van Struktuurlyn."
#. JPu6C
#: cui/inc/tipoftheday.hrc:151
@@ -3059,12 +3059,12 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr "Gebruik 'n konkordansielêer om al die gidsinskrywings outomaties alfabeties in \"Writer\" te merk."
-#. BnMpb
+#. DBfad
#. local help missing
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
-msgstr "Om \"Draw/Impress\"-objekte akkuraat te posisioneer, kies »Format ▸ Align« of die konteks-kieslys: Dit is gesentreer op die bladsy wanneer 'n voorwerp, of op die groep gekies word respektiewelik."
+msgid "Use Format ▸ Align Objects in Impress or Shape ▸ Align Objects in Draw (or the context menu) for precise positioning of objects: it centers on the page if one object is selected or works on the group respectively."
+msgstr ""
#. TijVG
#: cui/inc/tipoftheday.hrc:198
@@ -4390,7 +4390,7 @@ msgstr "%PRODUCTNAME"
#: cui/uiconfig/ui/accelconfigpage.ui:164
msgctxt "accelconfigpage|extended_tip|office"
msgid "Displays shortcut keys that are common to all the office suite applications."
-msgstr ""
+msgstr "Vertoon kortpadsleutels wat algemeen is vir al die kantoorpakkettoepassings."
#. jjhUE
#: cui/uiconfig/ui/accelconfigpage.ui:176
@@ -4402,7 +4402,7 @@ msgstr "$(MODULE)"
#: cui/uiconfig/ui/accelconfigpage.ui:185
msgctxt "accelconfigpage|extended_tip|module"
msgid "Displays shortcut keys for the current office suite application."
-msgstr ""
+msgstr "Vertoon kortpadsleutels vir die huidige kantoorpakkettoepassing."
#. R2nhJ
#: cui/uiconfig/ui/accelconfigpage.ui:212
@@ -4446,71 +4446,77 @@ msgctxt "accelconfigpage|extended_tip|save"
msgid "Saves the current shortcut key configuration, so that you can load it later."
msgstr "Stoor die huidige snel-toetskombinasie sodat dit in die toekoms gelaai kan word."
-#. mJmga
-#: cui/uiconfig/ui/accelconfigpage.ui:297
+#. oSRQ7
+#: cui/uiconfig/ui/accelconfigpage.ui:295
+msgctxt "accelconfigpage|tooltip|reset"
+msgid "Unsaved modifications to shortcut keys are reverted."
+msgstr ""
+
+#. stv4J
+#: cui/uiconfig/ui/accelconfigpage.ui:298
msgctxt "accelconfigpage|extended_tip|reset"
-msgid "Resets modified values back to the default values."
-msgstr "Stel die gewysigde waardes terug na die verstek-waardes."
+msgid "Revert any changes made to keyboard shortcuts to the assignments that were present when this dialog was opened."
+msgstr ""
#. BKAsD
-#: cui/uiconfig/ui/accelconfigpage.ui:348
+#: cui/uiconfig/ui/accelconfigpage.ui:349
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr "Tik om te soek"
#. nGtvW
-#: cui/uiconfig/ui/accelconfigpage.ui:352
+#: cui/uiconfig/ui/accelconfigpage.ui:353
msgctxt "accelconfigpage|extended_tip|searchEntry"
msgid "Type here to search in the list of functions."
msgstr "Tik hier om die lys van funksies te deursoek."
#. T5FGo
-#: cui/uiconfig/ui/accelconfigpage.ui:374
+#: cui/uiconfig/ui/accelconfigpage.ui:375
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "_Kategorie"
#. xfWzA
-#: cui/uiconfig/ui/accelconfigpage.ui:388
+#: cui/uiconfig/ui/accelconfigpage.ui:389
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "_Funksie"
#. 7PCeb
-#: cui/uiconfig/ui/accelconfigpage.ui:402
+#: cui/uiconfig/ui/accelconfigpage.ui:403
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr "S_leutels"
#. 8DnFJ
-#: cui/uiconfig/ui/accelconfigpage.ui:446
+#: cui/uiconfig/ui/accelconfigpage.ui:447
msgctxt "accelconfigpage|extended_tip|category"
msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
msgstr "Vertoon 'n lys van die beskikbare funksiekategorieë. Om sekere snel-toetse aan style toe te ken, open die kategorie \"Styles\"."
#. wGm8q
-#: cui/uiconfig/ui/accelconfigpage.ui:493
+#: cui/uiconfig/ui/accelconfigpage.ui:494
msgctxt "accelconfigpage|extended_tip|function"
msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
msgstr "Kies 'n funksie om aan 'n sneltoets kortpad toe te ken, klik op die kombinasie wat u wil hê in die sleutelbord snel-toetslys en klik dan op \"Verander\". As 'n funksie reeds 'n sleutelkombinasie het, word dit in die Sleutellys getoon."
#. PzCaG
-#: cui/uiconfig/ui/accelconfigpage.ui:539
+#: cui/uiconfig/ui/accelconfigpage.ui:540
msgctxt "accelconfigpage|extended_tip|keys"
msgid "Displays the shortcut keys that are assigned to the selected function."
msgstr "Vertoon die gelyste sneltoetssleutels wat toegeken is aan die gekose funksie."
#. CqdJF
-#: cui/uiconfig/ui/accelconfigpage.ui:563
+#: cui/uiconfig/ui/accelconfigpage.ui:564
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "F_unksies"
#. kVeWd
-#: cui/uiconfig/ui/accelconfigpage.ui:576
+#: cui/uiconfig/ui/accelconfigpage.ui:577
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
-msgstr ""
+msgstr "Bepaal of wysig die kortpadsleutels vir die office-pakket bevele, of 'Basic' makro's."
#. 3zZvu
#: cui/uiconfig/ui/acorexceptpage.ui:56
@@ -7544,24 +7550,28 @@ msgid "HSB"
msgstr "HSB"
#. sesZZ
+#. This is the C of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:639
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr "_Siaan:"
#. Gw7rx
+#. This is the M of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:654
msgctxt "colorpickerdialog|label6"
msgid "_Magenta:"
msgstr "_Magenta:"
#. Uv2KG
+#. This is the Y of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:669
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
msgstr "_Geel:"
#. aFvbe
+#. This is the K of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:684
msgctxt "colorpickerdialog|label8"
msgid "_Key:"
@@ -7598,7 +7608,7 @@ msgid "CMYK"
msgstr "CMYK"
#. HuUmH
-#: cui/uiconfig/ui/colorpickerdialog.ui:815
+#: cui/uiconfig/ui/colorpickerdialog.ui:812
msgctxt "extended tip | ColorPicker"
msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
msgstr "Definieer pasgemaakte kleure deur 'n tweedimensionele grafiese en numeriese gradiëntgebied van die Kies 'n kleur dialoog te gebruik."
@@ -9089,7 +9099,7 @@ msgstr "Stoor in:"
#: cui/uiconfig/ui/eventsconfigpage.ui:147
msgctxt "eventsconfigpage|extended_tip|savein"
msgid "Select first where to save the event binding, in the current document or in the office suite."
-msgstr ""
+msgstr "Kies eers waar u die gebeurtenisbinding wil stoor, in die huidige dokument of in die office-pakket."
#. C6KwW
#: cui/uiconfig/ui/eventsconfigpage.ui:186
@@ -9155,7 +9165,7 @@ msgstr "Begin die soektog of kanselleer 'n soektog."
#: cui/uiconfig/ui/fmsearchdialog.ui:52
msgctxt "fmsearchdialog|extended_tip|close"
msgid "Closes the dialog. The settings of the last search will be saved until you quit the office suite."
-msgstr ""
+msgstr "Sluit die dialoogblok. Die instellings van die laaste soekpoging sal gestoor word, totdat office-suite gestop word."
#. UPeyv
#: cui/uiconfig/ui/fmsearchdialog.ui:144
@@ -11260,7 +11270,7 @@ msgstr "Voer _in..."
#: cui/uiconfig/ui/iconselectordialog.ui:168
msgctxt "iconselectordialog|extended_tip|importButton"
msgid "Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of the office suite."
-msgstr ""
+msgstr "Voeg nuwe ikone by die lys van ikone. Jy sien 'n lêer oopmaak-dialoog wat die geselekteerde ikoon of ikone in die interne ikoongids van die office-pakket invoer."
#. 46d7Z
#: cui/uiconfig/ui/iconselectordialog.ui:180
@@ -12504,7 +12514,7 @@ msgstr "Voer 'n string karakters in die teksveld in om die soektog na opdragte t
#: cui/uiconfig/ui/menuassignpage.ui:445
msgctxt "menuassignpage|extended_tip|savein"
msgid "Select the location where the menu is to be attached. If attached to an office suite module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active."
-msgstr ""
+msgstr "Kies die plek waar die keuse-lys aangeheg moet word. Indien aan 'noffice-pakketmodule geheg, is die kieslys beskikbaar vir alle lêers wat in daardie module oopgemaak is. Indien aan die lêer geheg, sal die kieslys slegs beskikbaar wees wanneer daardie lêer oopgemaak en aktief is."
#. D35vJ
#: cui/uiconfig/ui/menuassignpage.ui:456
@@ -12642,7 +12652,7 @@ msgstr "Pasmaak"
#: cui/uiconfig/ui/menuassignpage.ui:998
msgctxt "menuassignpage|extended_tip|MenuAssignPage"
msgid "Lets you customize the office suite menus for all modules."
-msgstr ""
+msgstr "Laat u die office-pakket-keuselyste aanpas vir alle modules."
#. Mcir5
#: cui/uiconfig/ui/mosaicdialog.ui:21
@@ -13660,7 +13670,7 @@ msgstr "Laat geanimeerde _beelde toe"
#: cui/uiconfig/ui/optaccessibilitypage.ui:75
msgctxt "extended_tip|animatedgraphics"
msgid "Previews animated graphics, such as GIF images."
-msgstr ""
+msgstr "Voorskou van animasie-grafika, soos GIF beelde."
#. 3Q66x
#: cui/uiconfig/ui/optaccessibilitypage.ui:87
@@ -13672,7 +13682,7 @@ msgstr "Laat geanimeerde _teks toe"
#: cui/uiconfig/ui/optaccessibilitypage.ui:95
msgctxt "extended_tip|animatedtext"
msgid "Previews animated text, such as blinking and scrolling."
-msgstr ""
+msgstr "Voorskou geanimeerde teks, soos flikker en blaai."
#. 2A83C
#: cui/uiconfig/ui/optaccessibilitypage.ui:111
@@ -13690,7 +13700,7 @@ msgstr "Bespeur outomaties hoëkontrasmo~dus van bedryfstelsel"
#: cui/uiconfig/ui/optaccessibilitypage.ui:148
msgctxt "extended_tip|autodetecthc"
msgid "Switches the office suite into high contrast mode when the system background color is very dark."
-msgstr ""
+msgstr "Skakel die office-pakket oor na hoë kontrasmodus wanneer die stelselagtergrondkleur baie donker is."
#. Sc8Cq
#: cui/uiconfig/ui/optaccessibilitypage.ui:160
@@ -13702,7 +13712,7 @@ msgstr "Gebruik outomatiese font~kleur vir skermvertoon"
#: cui/uiconfig/ui/optaccessibilitypage.ui:168
msgctxt "extended_tip|autofontcolor"
msgid "Displays fonts in the office suite using the system color settings. This option only affects the screen display."
-msgstr ""
+msgstr "Vertoon lettertipes in dieoffice-pakket deur die stelselkleur instellings te gebruik. Hierdie opsie beïnvloed slegs die skerm se vertoning."
#. n24Cd
#: cui/uiconfig/ui/optaccessibilitypage.ui:180
@@ -13726,7 +13736,7 @@ msgstr "Opsies vir hoëkontrasvoorkoms"
#: cui/uiconfig/ui/optaccessibilitypage.ui:219
msgctxt "extended_tip|OptAccessibilityPage"
msgid "Sets options that make the office suite programs more accessible for users with reduced sight, limited dexterity or other disabilities."
-msgstr ""
+msgstr "Stel opsies wat die office-pakketprogramme meer toeganklik maak vir gebruikers met verminderde sig, beperkte behendigheid of ander gestremdhede."
#. kishx
#: cui/uiconfig/ui/optadvancedpage.ui:55
@@ -13738,7 +13748,7 @@ msgstr "Gebr_uik Java-looptydomgewing"
#: cui/uiconfig/ui/optadvancedpage.ui:64
msgctxt "extended_tip|javaenabled"
msgid "Allows you to run extensions written with Java."
-msgstr ""
+msgstr "Laat toe dat u uitbreidings te loop wat in Java geskryf is."
#. DFVFw
#: cui/uiconfig/ui/optadvancedpage.ui:90
@@ -13798,7 +13808,7 @@ msgstr "Weergawe"
#: cui/uiconfig/ui/optadvancedpage.ui:257
msgctxt "extended_tip|javas"
msgid "Select the JRE that you want to use. On some systems, you must wait a minute until the list gets populated. On some systems, you must restart the office suite to use your changed setting."
-msgstr ""
+msgstr "Kies die JRE wat u wil gebruik. Op sommige stelsels moet jy 'n minuut wag totdat die lys gevul word. Op sommige stelsels moet jy die office-pakket herbegin om jou veranderde instelling te gebruik."
#. erNBk
#: cui/uiconfig/ui/optadvancedpage.ui:285
@@ -13852,7 +13862,7 @@ msgstr "Open kundige opstelling"
#: cui/uiconfig/ui/optadvancedpage.ui:412
msgctxt "extended_tip|expertconfig"
msgid "Opens the Expert Configuration dialog for advanced settings and configuration."
-msgstr ""
+msgstr "Maak die Gevorderde-konfigurasie-dialoog oop vir gevorderde instellings en konfigurasie."
#. ZLtrh
#: cui/uiconfig/ui/optadvancedpage.ui:427
@@ -13924,7 +13934,7 @@ msgstr "Eie kleure"
#: cui/uiconfig/ui/optappearancepage.ui:257
msgctxt "extended_tip|OptAppearancePage"
msgid "Sets the colors for the user interface."
-msgstr ""
+msgstr "Stel die kleure vir die gebruikerskoppelvlak."
#. nRFne
#: cui/uiconfig/ui/optasianpage.ui:27
@@ -14290,7 +14300,7 @@ msgstr "Konteks"
#: cui/uiconfig/ui/optctlpage.ui:239
msgctxt "extended_tip|numerals"
msgid "Selects the type of numerals used within text, text in objects, fields, and controls, in all office suite modules. Only cell contents of Calc are not affected."
-msgstr ""
+msgstr "Kies die tipe syfers wat binne-in teks, teks in objekte, velde en kontroles gebruik word, in alle e-pakketmodules. Slegs selinhoud van Calc word nie geraak nie."
#. kWczF
#: cui/uiconfig/ui/optctlpage.ui:254
@@ -14370,7 +14380,7 @@ msgstr "[S]"
#: cui/uiconfig/ui/optfltrembedpage.ui:129
msgctxt "extended_tip|checklbcontainer"
msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loaded from a Microsoft format [L] and/or when saved to to a Microsoft format [S]. "
-msgstr ""
+msgstr "Die [L] en [S]-merkblokkies vertoon die inskrywings vir die paar OLE-objekte wat omgeskakel kan word wanneer dit vanaf 'n Microsoft-formaat [L] gelaai word en/of wanneer na 'n Microsoft-formaat [S] gestoor word. "
#. x5kfq
#. The [L] here is repeated as the column title for the "Load" column of this options page
@@ -14408,7 +14418,7 @@ msgstr "Teks merking"
#: cui/uiconfig/ui/optfltrembedpage.ui:239
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
-msgstr ""
+msgstr "Microsoft Office het twee karakterkenmerke soortgelyk is aan Writer se karakter agtergrond. Kies die toepaslike kenmerk (uitligting of verdowwing) wat jy wil gebruik tydens uitskryf met Microsoft Office-lêerformate."
#. Dnrx7
#: cui/uiconfig/ui/optfltrembedpage.ui:251
@@ -14420,7 +14430,7 @@ msgstr "Skakering"
#: cui/uiconfig/ui/optfltrembedpage.ui:260
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
-msgstr ""
+msgstr "Microsoft Office het twee karakterkenmerke soortgelyk is aan Writer se karakter agtergrond. Kies die toepaslike kenmerk (uitligting of verdowwing) wat jy wil gebruik tydens uitskryf met Microsoft Office-lêerformate."
#. gKwdG
#: cui/uiconfig/ui/optfltrembedpage.ui:283
@@ -14438,7 +14448,7 @@ msgstr "Skep 'n MSO grendellêer"
#: cui/uiconfig/ui/optfltrembedpage.ui:319
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
-msgstr ""
+msgstr "Merk hierdie merkblokkie om 'n Microsoft Office-slotlêer bykomend tot hierdieoffice-pakket se eie slotlêer te genereer."
#. Sg5Bw
#: cui/uiconfig/ui/optfltrembedpage.ui:335
@@ -14462,7 +14472,7 @@ msgstr "Laai Basi_c-kode"
#: cui/uiconfig/ui/optfltrpage.ui:35
msgctxt "extended_tip|wo_basic"
msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub."
-msgstr ""
+msgstr "Laai en stoor die Basic kode van 'n Microsoft-dokument as 'n spesiale Basic module saam met die dokument. Die gedeaktiveerde Microsoft Basic-kode is sigbaar in die Basic Ontwikkelingsomgewing tussen Sub en End Sub."
#. AChYC
#: cui/uiconfig/ui/optfltrpage.ui:46
@@ -14486,7 +14496,7 @@ msgstr "Stoor _oorspronklike Basic-kode"
#: cui/uiconfig/ui/optfltrpage.ui:74
msgctxt "extended_tip|wo_saveorig"
msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
-msgstr ""
+msgstr "Spesifiseer dat die oorspronklike Microsoft Basic-kode wat in die dokument vervat is, in 'n spesiale interne geheue gehou word solank die dokument in die office-pakket gelaai bly. Wanneer die dokument in Microsoft-formaat gestoor word, word die Microsoft Basic weer gestoor met die kode in 'n onveranderde vorm."
#. W6nED
#: cui/uiconfig/ui/optfltrpage.ui:89
@@ -14504,7 +14514,7 @@ msgstr "L_aai Basic-kode"
#: cui/uiconfig/ui/optfltrpage.ui:126
msgctxt "extended_tip|ex_basic"
msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub."
-msgstr ""
+msgstr "Laai en stoor die Basic kode van 'n Microsoft-dokument as 'n spesiale Basic module saam met die dokument. Die gedeaktiveerde Microsoft Basic-kode is sigbaar in die Basic Ontwikkelingsomgewing tussen Sub en End Sub."
#. S6ozV
#: cui/uiconfig/ui/optfltrpage.ui:137
@@ -14528,7 +14538,7 @@ msgstr "S_toor oorspronklike Basic-kode"
#: cui/uiconfig/ui/optfltrpage.ui:165
msgctxt "extended_tip|ex_saveorig"
msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
-msgstr ""
+msgstr "Spesifiseer dat die oorspronklike Microsoft Basic-kode wat in die dokument vervat is, in 'n spesiale interne geheue gehou word solank die dokument in die office-pakket gelaai bly. Wanneer die dokument in Microsoft-formaat gestoor word, word die Microsoft Basic weer gestoor met die kode in 'n onveranderde vorm."
#. a5EkB
#: cui/uiconfig/ui/optfltrpage.ui:180
@@ -14546,7 +14556,7 @@ msgstr "Laai Ba_sic-kode"
#: cui/uiconfig/ui/optfltrpage.ui:217
msgctxt "extended_tip|pp_basic"
msgid "Loads and saves the Basic code from a Microsoft document as a special Basic module with the document. The disabled Microsoft Basic code is visible in the Basic IDE between Sub and End Sub."
-msgstr ""
+msgstr "Laai en stoor die Basic kode van 'n Microsoft-dokument as 'n spesiale Basic module saam met die dokument. Die gedeaktiveerde Microsoft Basic-kode is sigbaar in die Basic Ontwikkelingsomgewing tussen Sub en End Sub."
#. VSdyY
#: cui/uiconfig/ui/optfltrpage.ui:228
@@ -14558,7 +14568,7 @@ msgstr "Stoor oorspronklik_e Basic-kode"
#: cui/uiconfig/ui/optfltrpage.ui:236
msgctxt "extended_tip|pp_saveorig"
msgid "Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in the office suite. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form."
-msgstr ""
+msgstr "Spesifiseer dat die oorspronklike Microsoft Basic-kode wat in die dokument vervat is, in 'n spesiale interne geheue gehou word solank die dokument in die office-pakket gelaai bly. Wanneer die dokument in Microsoft-formaat gestoor word, word die Microsoft Basic weer gestoor met die kode in 'n onveranderde vorm."
#. sazZt
#: cui/uiconfig/ui/optfltrpage.ui:251
@@ -14846,7 +14856,7 @@ msgstr "%PRODUCTNAME Lêer Assosiasies"
#: cui/uiconfig/ui/optgeneralpage.ui:437
msgctxt "extended_tip | OptGeneralPage"
msgid "Specifies the general settings for the office suite."
-msgstr ""
+msgstr "Spesifikasie van algemene instellings vir die office suite."
#. FsiDE
#: cui/uiconfig/ui/opthtmlpage.ui:86
@@ -14960,7 +14970,7 @@ msgstr "_Trek onbekende HTML-etikette as velde in"
#: cui/uiconfig/ui/opthtmlpage.ui:372
msgctxt "extended_tip|unknowntag"
msgid "Mark this check box if you want tags that are not recognized by Writer/Web to be imported as fields."
-msgstr ""
+msgstr "Merk hierdie merkblokkie as u wil hê dat etikette wat nie deur Writer/Web herken word nie as velde ingevoer moet word."
#. VFTrU
#: cui/uiconfig/ui/opthtmlpage.ui:383
@@ -15026,7 +15036,7 @@ msgstr "Wys _waarskuwing"
#: cui/uiconfig/ui/opthtmlpage.ui:533
msgctxt "extended_tip|starbasicwarning"
msgid "If this field is marked, when exporting to HTML a warning is shown that Basic macros will be lost."
-msgstr ""
+msgstr "As hierdie veld gemerk is, word 'n aanmaning gewys dat Basic makro's verlore sal gaan wanneer u in HTML uitskryf."
#. puyKW
#: cui/uiconfig/ui/opthtmlpage.ui:544
@@ -15038,7 +15048,7 @@ msgstr "LibreOffice _BASIC"
#: cui/uiconfig/ui/opthtmlpage.ui:553
msgctxt "extended_tip|starbasic"
msgid "Mark this check box to include the Basic instructions when exporting to HTML format."
-msgstr ""
+msgstr "Merk hierdie veld, sodat Basic makro's ingesluit word, wanneer u in HTML-formaat uitskryf."
#. sEnBN
#: cui/uiconfig/ui/opthtmlpage.ui:568
@@ -15350,7 +15360,7 @@ msgstr "Gebr_uikerkoppelvlak:"
#: cui/uiconfig/ui/optlanguagespage.ui:80
msgctxt "extended_tip|userinterface"
msgid "Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack."
-msgstr ""
+msgstr "Kies die taal vir gebruik in die gebruikerskoppelvlak, byvoorbeeld keuselyste, dialoogvensters, hulplêers. Jy moet ten minstens een addisionele taalpakket geïnstalleer het."
#. e8VE3
#: cui/uiconfig/ui/optlanguagespage.ui:95
@@ -15398,7 +15408,7 @@ msgstr "Komplekse teksuitleg:"
#: cui/uiconfig/ui/optlanguagespage.ui:250
msgctxt "extended_tip|ctlsupport"
msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout."
-msgstr ""
+msgstr "Aktiveer komplekse teksuitleg ondersteuning. Jy kan nou die instellings wysig wat ooreenstem met komplekse teksuitleg."
#. mpLF7
#: cui/uiconfig/ui/optlanguagespage.ui:261
@@ -15410,7 +15420,7 @@ msgstr "Asiatiese:"
#: cui/uiconfig/ui/optlanguagespage.ui:269
msgctxt "extended_tip|asiansupport"
msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings."
-msgstr ""
+msgstr "Aktiveer ondersteuning vir asiatiese tale. Jy kan nou die instellings wysig wat ooreenstem met die asiatiese taal."
#. QwDAK
#: cui/uiconfig/ui/optlanguagespage.ui:282
@@ -15698,7 +15708,7 @@ msgstr "_Kontroleer outomaties vir bywerkings"
#: cui/uiconfig/ui/optonlineupdatepage.ui:39
msgctxt "extended_tip|autocheck"
msgid "Mark to check for online updates periodically, then select the time interval how often to automatically check for online updates."
-msgstr ""
+msgstr "Merk die periodiese nagaan vir aanlyn opdaterings, kies dan die tydinterval en hoe gereeld aanlyn opdaterings outomaties nagegaan moet word."
#. Hbe2C
#: cui/uiconfig/ui/optonlineupdatepage.ui:57
@@ -15848,7 +15858,7 @@ msgstr "Opsies vir aanlynbywerkings"
#: cui/uiconfig/ui/optonlineupdatepage.ui:453
msgctxt "extended_tip|OptOnlineUpdatePage"
msgid "Specifies some options for the automatic notification and downloading of online updates to the office suite."
-msgstr ""
+msgstr "Merk vir die gereelde nagaan van aanlyn opdaterings, kies dan die tydinterval hoe gereeld sal aanlyn opdatering nagegaan gaan word."
#. QYxCN
#: cui/uiconfig/ui/optopenclpage.ui:24
@@ -15932,7 +15942,7 @@ msgstr "Kliek hier om die dialoogvenster \"Select Path of Edit Paths\" te vertoo
#: cui/uiconfig/ui/optpathspage.ui:210
msgctxt "OptPathsPage"
msgid "This section contains the default paths to important folders of the office suite. These paths can be edited by the user."
-msgstr ""
+msgstr "Hierdie afdeling bevat die verstekpaaie na belangrike leêrhouers vir die office-pakket. Hierdie paaie kan deur die gebruiker gewysig word."
#. pQEWv
#: cui/uiconfig/ui/optproxypage.ui:26
@@ -16106,7 +16116,7 @@ msgstr "Stoor _Outoherwin-inligting elke:"
#: cui/uiconfig/ui/optsavepage.ui:119
msgctxt "autosave"
msgid "Specifies that the office suite saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval."
-msgstr ""
+msgstr "Spesifiseer dat dieoffice-pakket die inligting stoor wat nodig is om alle oop dokumente te herstel in geval van 'n onderbreking. U kan die stoor tydinterval spesifiseer."
#. ipCBG
#: cui/uiconfig/ui/optsavepage.ui:137
@@ -16130,7 +16140,7 @@ msgstr "Stoor ook die dokument outomaties"
#: cui/uiconfig/ui/optsavepage.ui:173
msgctxt "userautosave"
msgid "Specifies that the office suite saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Spesifiseer dat die office-pakket alle oop dokumente stoor wanneer outoherstel inligting gestoor word. Gebruik dieselfde tydinterval as AutoRecovery."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:184
@@ -16178,7 +16188,7 @@ msgstr "M_aak altyd ’n rugsteunkopie"
#: cui/uiconfig/ui/optsavepage.ui:249
msgctxt "backup"
msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time the office suite creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
-msgstr ""
+msgstr "Stoor die vorige weergawe van 'n dokument as 'n rugsteunkopie wanneer jy 'n dokument stoor. Elke keer as die kantoorpakket 'n rugsteunkopie skep, word die vorige rugsteunkopie vervang. Die vorige rugsteunkopie kry die uitbreiding .BAK."
#. NaGCU
#: cui/uiconfig/ui/optsavepage.ui:264
@@ -16413,7 +16423,7 @@ msgstr "_Stoor wagwoorde vir webverbindings permanent"
#: cui/uiconfig/ui/optsecuritypage.ui:251
msgctxt "extended_tip|savepassword"
msgid "If enabled, all passwords that you use to access files from web servers will be securely stored. You can retrieve the passwords from the list after you enter the master password."
-msgstr ""
+msgstr "As dit geaktiveer is, sal alle wagwoorde wat jy gebruik om toegang tot lêers vanaf webbedieners te verkry, veilig gestoor word. Jy kan die wagwoorde van die lys af haal nadat jy die hoofwagwoord ingevoer het."
#. Gyqwf
#: cui/uiconfig/ui/optsecuritypage.ui:270
@@ -17177,176 +17187,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Outomaties"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Hoë kontras"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Klassiek"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Kies die simboolstyl vir die simbole in die nutsbalke en dialoogvensters."
#. SXzWW
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "_Theme:"
-msgstr ""
+msgstr "_Skema:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Voeg meer ikoon-temas by via die uitbreiding"
#. F7kTw
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Theme"
-msgstr ""
+msgstr "Ikoon Skema"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Benodig herbegin"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Gebruik harde_wareversnelling"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Gaan direk toegang tot die hardeware-kenmerke van die grafiese skerm-kaart om die skermvertoon te verbeter."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Gebruik anti-aliasing"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "As dit ondersteun word, kan u skakeling vir voorwerpe aan of afskakel. As \"anti-aliasing\" geaktiveer is, lyk die meeste grafiese voorwerpe gladder en met minder artefakte."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Gebruik Skia vir alle Vertoning"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Forseer die vertoning van die Skia-sagteware"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Herlaai is nodig. Aktivering voorkom die gebruik van grafiese drywers."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Skia is huidig Aktief."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Skia is huidig Gedeaktiveerd."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Grafika-afvoer"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Wys voo_rskou van fonte"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Vertoon die name van die selekteerbare lettertipes in die toepaslike lettertipe, byvoorbeeld in die \"Lettertipe\"-veld op die \"Formateer\"-werkbalk."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Anti-aliasing van die skerm lettertipes"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Laat teks gladder op die skerm vertoon."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "va_naf:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Voer in die kleinste lettergrootte, waarop gelykmaking toegepas moet word."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Fontlyste"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Doen Grafiese Toetse"
@@ -17376,219 +17362,219 @@ msgid "_Orientation:"
msgstr "_Oriëntasie:"
#. mtFWf
-#: cui/uiconfig/ui/pageformatpage.ui:131
+#: cui/uiconfig/ui/pageformatpage.ui:135
msgctxt "pageformatpage|radiobuttonPortrait"
msgid "_Portrait"
msgstr "_Portret"
#. LGkU8
-#: cui/uiconfig/ui/pageformatpage.ui:150
+#: cui/uiconfig/ui/pageformatpage.ui:154
msgctxt "pageformatpage|radiobuttonLandscape"
msgid "L_andscape"
msgstr "L_andskap"
#. PTwDK
-#: cui/uiconfig/ui/pageformatpage.ui:172
+#: cui/uiconfig/ui/pageformatpage.ui:176
msgctxt "pageformatpage|labelTextFlow"
msgid "_Text direction:"
msgstr "_Teksrigting:"
#. FmMdc
-#: cui/uiconfig/ui/pageformatpage.ui:228
+#: cui/uiconfig/ui/pageformatpage.ui:232
msgctxt "pageformatpage|labelPaperTray"
msgid "Paper _tray:"
msgstr "Papie_rlaai:"
#. u8DFb
-#: cui/uiconfig/ui/pageformatpage.ui:260
+#: cui/uiconfig/ui/pageformatpage.ui:264
msgctxt "pageformatpage|labelPaperFormat"
msgid "Paper Format"
msgstr "Bladsyformaat"
#. 479hs
-#: cui/uiconfig/ui/pageformatpage.ui:305
+#: cui/uiconfig/ui/pageformatpage.ui:309
msgctxt "pageformatpage|labelLeftMargin"
msgid "Left:"
msgstr "Links:"
#. EoGm2
-#: cui/uiconfig/ui/pageformatpage.ui:319
+#: cui/uiconfig/ui/pageformatpage.ui:323
msgctxt "pageformatpage|labelInner"
msgid "I_nner:"
msgstr "Bi_nnekant:"
#. 7FFiR
-#: cui/uiconfig/ui/pageformatpage.ui:357
+#: cui/uiconfig/ui/pageformatpage.ui:361
msgctxt "pageformatpage|labelRightMargin"
msgid "Right:"
msgstr "Regs:"
#. RfnGu
-#: cui/uiconfig/ui/pageformatpage.ui:371
+#: cui/uiconfig/ui/pageformatpage.ui:375
msgctxt "pageformatpage|labelOuter"
msgid "O_uter:"
msgstr "B_uitekant:"
#. tGMLA
-#: cui/uiconfig/ui/pageformatpage.ui:404
+#: cui/uiconfig/ui/pageformatpage.ui:408
msgctxt "pageformatpage|labelTopMargin"
msgid "Top:"
msgstr "Bo:"
#. eaqBS
-#: cui/uiconfig/ui/pageformatpage.ui:430
+#: cui/uiconfig/ui/pageformatpage.ui:434
msgctxt "pageformatpage|labelBottomMargin"
msgid "Bottom:"
msgstr "Onder:"
#. TYx6B
-#: cui/uiconfig/ui/pageformatpage.ui:456
+#: cui/uiconfig/ui/pageformatpage.ui:460
msgctxt "pageformatpage|labelGutterMargin"
msgid "Gutter:"
msgstr "Spasieërder:"
#. Tvwu6
-#: cui/uiconfig/ui/pageformatpage.ui:484
+#: cui/uiconfig/ui/pageformatpage.ui:488
msgctxt "pageformatpage|labelMargins"
msgid "Margins"
msgstr "Kantlyne"
#. WcuCU
-#: cui/uiconfig/ui/pageformatpage.ui:517
+#: cui/uiconfig/ui/pageformatpage.ui:521
msgctxt "pageformatpage|labelPageLayout"
msgid "_Page layout:"
msgstr "B_laduitleg:"
#. vnXWF
-#: cui/uiconfig/ui/pageformatpage.ui:531
+#: cui/uiconfig/ui/pageformatpage.ui:535
msgctxt "pageformatpage|labelPageNumbers"
msgid "Page numbers:"
msgstr "Bladsy Nommers:"
#. tyvA3
-#: cui/uiconfig/ui/pageformatpage.ui:543
+#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
msgstr "Gebruik bladsy ly_n-spasiëring"
#. DtZQG
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:547
+#: cui/uiconfig/ui/pageformatpage.ui:551
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
msgstr "Maak bladsy-lynspasiëring (register-true) geldend deur die geselekteerde Verwysingstyl te gebruik"
#. p2egb
-#: cui/uiconfig/ui/pageformatpage.ui:552
+#: cui/uiconfig/ui/pageformatpage.ui:556
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr "As dit geldend is, sal alle paragraafstyle met die opsie bladsy-lynspasiëring opsie geaktiveer beïnvloed word, met die veronderstelling dat die lynspasiëring van die Verwysingstyl is. Dit sal hulle in lyn bring met 'n onsigbare vertikale bladsyrooster, ongeag hul lettergrootte, sodat elke lyn dieselfde hoogte het."
#. 46djR
-#: cui/uiconfig/ui/pageformatpage.ui:566
+#: cui/uiconfig/ui/pageformatpage.ui:570
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr "Regs en links"
#. xetCH
-#: cui/uiconfig/ui/pageformatpage.ui:567
+#: cui/uiconfig/ui/pageformatpage.ui:571
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr "Spieëlbeeld"
#. 47EHF
-#: cui/uiconfig/ui/pageformatpage.ui:568
+#: cui/uiconfig/ui/pageformatpage.ui:572
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr "Net regs"
#. ALSy9
-#: cui/uiconfig/ui/pageformatpage.ui:569
+#: cui/uiconfig/ui/pageformatpage.ui:573
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr "Net links"
#. Fhvzk
-#: cui/uiconfig/ui/pageformatpage.ui:591
+#: cui/uiconfig/ui/pageformatpage.ui:595
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "Tabelbelyning:"
#. 79BH9
-#: cui/uiconfig/ui/pageformatpage.ui:603
+#: cui/uiconfig/ui/pageformatpage.ui:607
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "Hori_sontaal"
#. krxQZ
-#: cui/uiconfig/ui/pageformatpage.ui:617
+#: cui/uiconfig/ui/pageformatpage.ui:621
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "_Vertikaal"
#. FPLFK
-#: cui/uiconfig/ui/pageformatpage.ui:631
+#: cui/uiconfig/ui/pageformatpage.ui:635
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr "_Pas objek by papierformaat aan"
#. bqcXW
-#: cui/uiconfig/ui/pageformatpage.ui:648
+#: cui/uiconfig/ui/pageformatpage.ui:651
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
msgstr "Verwysings_tyl:"
#. FnoPF
-#: cui/uiconfig/ui/pageformatpage.ui:672
+#: cui/uiconfig/ui/pageformatpage.ui:675
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
msgstr "Spasieërder posisie:"
#. LF4Ex
-#: cui/uiconfig/ui/pageformatpage.ui:687
+#: cui/uiconfig/ui/pageformatpage.ui:690
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Left"
msgstr "Links"
#. DSBY5
-#: cui/uiconfig/ui/pageformatpage.ui:688
+#: cui/uiconfig/ui/pageformatpage.ui:691
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "Bo"
#. AosV5
-#: cui/uiconfig/ui/pageformatpage.ui:704
+#: cui/uiconfig/ui/pageformatpage.ui:701
msgctxt "pageformatpage|checkRtlGutter"
msgid "Gutter on right side of page"
msgstr "Spasiëerlyn aan regter sykant van bladsy"
#. cuazP
-#: cui/uiconfig/ui/pageformatpage.ui:718
+#: cui/uiconfig/ui/pageformatpage.ui:715
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr "Agtergrond sluit kantlyne in"
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:722
+#: cui/uiconfig/ui/pageformatpage.ui:719
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr "Enige agtergrond sal die kantlyne van die bladsy insluit"
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:727
+#: cui/uiconfig/ui/pageformatpage.ui:724
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr "Indien geaktiveer, sal enige agtergrond die hele bladsy, insluitend kantlyne dek. Indien gedeaktiveer, sal enige agtergrond die bladsy dek net binne die kantlyne."
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:742
+#: cui/uiconfig/ui/pageformatpage.ui:754
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Uitlegopstelling"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:763
+#: cui/uiconfig/ui/pageformatpage.ui:775
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -18306,7 +18292,7 @@ msgstr "Keuse"
#: cui/uiconfig/ui/pickoutlinepage.ui:58
msgctxt "pickoutlinepage|extended_tip|PickOutlinePage"
msgid "Displays the different styles that you can apply to a hierarchical list. Up to nine outline levels in a list hierarchy are supported."
-msgstr ""
+msgstr "Vertoon die verskillende style wat jy op 'n hiërargiese lys kan toepas. Tot nege uiteensettingvlakke in 'n lyshiërargie word ondersteun."
#. hRP6U
#: cui/uiconfig/ui/positionpage.ui:62
@@ -19162,7 +19148,7 @@ msgstr "Makro’s"
#: cui/uiconfig/ui/scriptorganizer.ui:266
msgctxt "scriptorganizer|extended_tip|ScriptOrganizerDialog"
msgid "Select a macro or script from My Macros, Application Macros, or an open document. To view the available macros or scripts, double-click an entry."
-msgstr ""
+msgstr "Kies 'n makro of skripkode vanuit My Makro's, Toepassingsmakro's of 'n oop dokument. Om die beskikbare makro's of skripsies te sien, dubbelklik op 'n inskrywing."
#. U3sDy
#: cui/uiconfig/ui/searchattrdialog.ui:22
@@ -20254,7 +20240,7 @@ msgstr "I_gnoreer almal"
#: cui/uiconfig/ui/spellingdialog.ui:546
msgctxt "spellingdialog|extended_tip|ignoreall"
msgid "Skips all occurrences of the unknown word until the end of the current office suite session and continues with the spellcheck."
-msgstr ""
+msgstr "Slaan alle voorkomste van die onbekende woord oor tot aan die einde van die huidige office-pakketsessie en gaan voort met die speltoets."
#. ZZNQM
#: cui/uiconfig/ui/spellingdialog.ui:557
@@ -20824,7 +20810,7 @@ msgstr "_Outomaties"
#: cui/uiconfig/ui/textanimtabpage.ui:482
msgctxt "textanimtabpage|extended_tip|TSB_AUTO"
msgid "Automatically determine the amount of time to wait before repeating the effect. To manually assign the delay period, clear this checkbox, and then enter a value in the Automatic box."
-msgstr ""
+msgstr "Bepaal outomaties die hoeveelheid wagtyd voordat die effek herhaal word. Om die vertragingstydperk handmatig te bepaal, maak hierdie merkblokkie skoon en voer dan 'n waarde in die Outomatiese blokkie in."
#. aagEf
#: cui/uiconfig/ui/textanimtabpage.ui:505
@@ -21036,11 +21022,11 @@ msgctxt "textcolumnstabpage|extended_tip|MTR_FLD_COL_SPACING"
msgid "Enter the amount of space to leave between the columns."
msgstr "Voer die hoeveelheid ruimte vir tussen kolom ruimtes in."
-#. 4u4bL
+#. 7Fgep
#: cui/uiconfig/ui/textcolumnstabpage.ui:108
msgctxt "textcolumnstabpage|extended_tip|TextColumnsPage"
-msgid "Sets the columns layout properties for text in the selected drawing or text object."
-msgstr "Stel die kolom uitleg eienskappe vir teks in die geselekteerde tekening of teks objek."
+msgid "Sets the columns’ layout properties for text in the selected drawing or text object."
+msgstr ""
#. 3Huae
#: cui/uiconfig/ui/textdialog.ui:8
@@ -21316,97 +21302,97 @@ msgstr "Spesifiseer die koppelteken- en paginerings-opsies"
#: cui/uiconfig/ui/themetabpage.ui:30
msgctxt "themetabpage|lbThemeName"
msgid "Name:"
-msgstr ""
+msgstr "Naam:"
#. GxAud
#: cui/uiconfig/ui/themetabpage.ui:60
msgctxt "themetabpage|general"
msgid "General"
-msgstr ""
+msgstr "Algemeen:"
#. PFDEf
#: cui/uiconfig/ui/themetabpage.ui:92
msgctxt "themetabpage|lbColorSetName"
msgid "Name:"
-msgstr ""
+msgstr "Naam:"
#. 4GfYQ
#: cui/uiconfig/ui/themetabpage.ui:121
msgctxt "themetabpage|lbDk1"
msgid "Background - Dark 1:"
-msgstr ""
+msgstr "Agtergrond - Donker 1:"
#. J3qNF
#: cui/uiconfig/ui/themetabpage.ui:136
msgctxt "themetabpage|lbLt1"
msgid "Text - Light 1:"
-msgstr ""
+msgstr "Teks - Lig 1:"
#. zFCDe
#: cui/uiconfig/ui/themetabpage.ui:151
msgctxt "themetabpage|lbDk2"
msgid "Background - Dark 2:"
-msgstr ""
+msgstr "Agtergrond - Donker 2:"
#. RVZjG
#: cui/uiconfig/ui/themetabpage.ui:166
msgctxt "themetabpage|lbLt2"
msgid "Text - Light 2:"
-msgstr ""
+msgstr "Teks - Lig 2:"
#. kwdwQ
#: cui/uiconfig/ui/themetabpage.ui:181
msgctxt "themetabpage|lbAccent1"
msgid "Accent 1:"
-msgstr ""
+msgstr "Aksent 1:"
#. iBrgD
#: cui/uiconfig/ui/themetabpage.ui:196
msgctxt "themetabpage|lbAccent2"
msgid "Accent 2:"
-msgstr ""
+msgstr "Aksent 2:"
#. jA7Cn
#: cui/uiconfig/ui/themetabpage.ui:211
msgctxt "themetabpage|lbAccent3"
msgid "Accent 3:"
-msgstr ""
+msgstr "Aksent 3:"
#. oPgoC
#: cui/uiconfig/ui/themetabpage.ui:226
msgctxt "themetabpage|lbAccent4"
msgid "Accent 4:"
-msgstr ""
+msgstr "Aksent 4:"
#. n8AAc
#: cui/uiconfig/ui/themetabpage.ui:241
msgctxt "themetabpage|lbAccent5"
msgid "Accent 5:"
-msgstr ""
+msgstr "Aksent 5:"
#. pi44r
#: cui/uiconfig/ui/themetabpage.ui:256
msgctxt "themetabpage|lbAccent6"
msgid "Accent 6:"
-msgstr ""
+msgstr "Aksent 6:"
#. CeB9H
#: cui/uiconfig/ui/themetabpage.ui:271
msgctxt "themetabpage|lbHlink"
msgid "Hyperlink:"
-msgstr ""
+msgstr "Hiperskakel:"
#. B722M
#: cui/uiconfig/ui/themetabpage.ui:286
msgctxt "themetabpage|lbFolHlink"
msgid "Followed Hyperlink:"
-msgstr ""
+msgstr "Gevolgde Hiperskakel:"
#. jRFtE
#: cui/uiconfig/ui/themetabpage.ui:543
msgctxt "themetabpage|colorSet"
msgid "Color Set"
-msgstr ""
+msgstr "Kleur stel:"
#. 5BskL
#: cui/uiconfig/ui/thesaurus.ui:23
@@ -21880,7 +21866,7 @@ msgstr "Voeg sp_asie in agterna"
#: cui/uiconfig/ui/wordcompletionpage.ui:107
msgctxt "wordcompletionpage|extended_tip|appendspace"
msgid "If you do not add punctuation after the word then a space is added automatically."
-msgstr ""
+msgstr "As jy nie leestekens na die woord byvoeg nie, word 'n spasie outomaties bygevoeg."
#. YyYGC
#: cui/uiconfig/ui/wordcompletionpage.ui:118
@@ -21952,7 +21938,7 @@ msgstr "_Wanneer ’n dokument gesluit word, verwyder die woorde uit die lys wat
#: cui/uiconfig/ui/wordcompletionpage.ui:343
msgctxt "wordcompletionpage|extended_tip|whenclosing"
msgid "When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit office suite."
-msgstr ""
+msgstr "Wanneer dit geaktiveer is, word die lys skoongemaak tydens die sluit van die huidige dokument. Wanneer gedeaktiveer, maak die huidige Woordvoltooiingslys beskikbaar vir ander dokumente nadat jy die huidige dokument gesluit het. Die lys bly beskikbaar totdat jy die office-pakket verlaat."
#. f7oAK
#: cui/uiconfig/ui/wordcompletionpage.ui:358
@@ -22105,37 +22091,37 @@ msgid "In columns view layout you see pages in a given number of columns side by
msgstr "In die kolomuitleg word die bladsye vertoon volgens die gegewe aantal kolomme langs mekaar. Voer die aantal kolomme in."
#. opsyv
-#: cui/uiconfig/ui/zoomdialog.ui:367
+#: cui/uiconfig/ui/zoomdialog.ui:366
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr "Kolomme"
#. psRyA
-#: cui/uiconfig/ui/zoomdialog.ui:368
+#: cui/uiconfig/ui/zoomdialog.ui:367
msgctxt "zoomdialog|extended_tip|columnssb"
msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
msgstr "In die kolomuitleg word die bladsye langs mekaar vertoon volgens die aantal kolomme wat gestel is. Voer die aantal kolomme in."
#. rhLet
-#: cui/uiconfig/ui/zoomdialog.ui:387
+#: cui/uiconfig/ui/zoomdialog.ui:386
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr "Boekmodus"
#. egdNS
-#: cui/uiconfig/ui/zoomdialog.ui:400
+#: cui/uiconfig/ui/zoomdialog.ui:398
msgctxt "zoomdialog|extended_tip|bookmode"
msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number."
msgstr "In die boekmodus sien u twee bladsye langs mekaar, soos in 'n oop boek. Die eerste bladsy is 'n regterkantste bladsy met 'n onewe bladsynommer."
#. pdZqi
-#: cui/uiconfig/ui/zoomdialog.ui:416
+#: cui/uiconfig/ui/zoomdialog.ui:414
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "Aansiguitleg"
#. DWWgJ
-#: cui/uiconfig/ui/zoomdialog.ui:448
+#: cui/uiconfig/ui/zoomdialog.ui:446
msgctxt "zoomdialog|extended_tip|ZoomDialog"
msgid "Reduces or enlarges the screen display."
-msgstr ""
+msgstr "Verminder of vergroot die skermvertoning."
diff --git a/source/af/dbaccess/messages.po b/source/af/dbaccess/messages.po
index 2a89e91d3fd..d6a8cead12d 100644
--- a/source/af/dbaccess/messages.po
+++ b/source/af/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/af/>\n"
@@ -1907,11 +1907,11 @@ msgctxt "STR_WRITER_PATH_OR_FILE"
msgid "Path to the Writer document"
msgstr "Koppeling na die \"Writer\" dokument"
-#. zQxCp
+#. JScWd
#: dbaccess/inc/strings.hrc:335
msgctxt "STR_MYSQL_DATABASE_NAME"
-msgid "Name of the MySQL database"
-msgstr "Naam van die MySQL-databasis"
+msgid "Name of the MySQL/MariaDB database"
+msgstr ""
#. uhRMQ
#: dbaccess/inc/strings.hrc:336
@@ -2097,11 +2097,11 @@ msgctxt "STR_PAGETITLE_ORACLE"
msgid "Set up Oracle database connection"
msgstr "Stel Oracle-databasisverbinding op"
-#. KbAqW
+#. rdZFv
#: dbaccess/inc/strings.hrc:368
msgctxt "STR_PAGETITLE_MYSQL"
-msgid "Set up MySQL connection"
-msgstr "Stel MySQL-verbinding op"
+msgid "Set up MySQL/MariaDB connection"
+msgstr ""
#. uJuNs
#: dbaccess/inc/strings.hrc:369
@@ -2121,11 +2121,11 @@ msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
msgid "Set up user authentication"
msgstr "Stel gebruikerstawing op"
-#. YgsyA
+#. twW6d
#: dbaccess/inc/strings.hrc:372
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
-msgid "Set up MySQL server data"
-msgstr "Stel MySQL-bedienerdata op"
+msgid "Set up MySQL/MariaDB server data"
+msgstr ""
#. 6Fy7C
#: dbaccess/inc/strings.hrc:373
@@ -2139,27 +2139,25 @@ msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
msgstr "Nuwe databasis"
-#. DoGLb
+#. f5EbK
#: dbaccess/inc/strings.hrc:375
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "Stel 'n verbinding aan 'n MySQL-databasis op met JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. B5kEC
+#. tqpeM
#: dbaccess/inc/strings.hrc:376
msgctxt "STR_MYSQLJDBC_HELPTEXT"
msgid ""
-"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-"Tik asseblief die inligting in, nodig om aan 'n MySQL-databasis dmv. JDBC te verbind. Let op dat 'n JDBC-drywerklas op u stelsel geïnstalleer- en met %PRODUCTNAME geregistreer moet wees.\n"
-"Kontak asseblief u stelseladministrateur indien u onseker is oor die volgende instellings."
-#. uGTyY
+#. Lrd3G
#: dbaccess/inc/strings.hrc:377
msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
-msgid "MySQL JDBC d~river class:"
-msgstr "MySQL-JDBC-d~rywerklas:"
+msgid "MySQL/MariaDB JDBC d~river class:"
+msgstr ""
#. cBiSe
#: dbaccess/inc/strings.hrc:378
@@ -3063,11 +3061,11 @@ msgctxt "dbwizmysqlintropage|jdbc"
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr "Verbind met JDBC (Java Database Connectivity)"
-#. AW2n6
+#. 3haAx
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:93
msgctxt "dbwizmysqlintropage|directly"
-msgid "Connect directly"
-msgstr "Koppel direk"
+msgid "Connect directly (using MariaDB C connector)"
+msgstr ""
#. C9PFE
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:112
@@ -3075,23 +3073,23 @@ msgctxt "dbwizmysqlintropage|label1"
msgid "How do you want to connect to your MySQL database?"
msgstr "Hoe wil u aan die MySQL-databasis verbind?"
-#. pdEL5
+#. C9PGh
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:128
msgctxt "dbwizmysqlintropage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "Stel verbinding na ’n MySQL-databasis op"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
-#. E8ACc
+#. 3cSEi
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:35
msgctxt "dbwizmysqlnativepage|helptext"
-msgid "Please enter the required information to connect to a MySQL database."
-msgstr "Tik asseblief die vereiste inligting in om aan 'n MySQL-databasis te verbind."
+msgid "Please enter the required information to connect to a MySQL/MariaDB database."
+msgstr ""
-#. 2HCAG
+#. 4uetU
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:70
msgctxt "dbwizmysqlnativepage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "Stel ’n verbinding aan ’n MySQL-databasis op"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
#. AEty7
#: dbaccess/uiconfig/ui/dbwizspreadsheetpage.ui:55
@@ -4602,17 +4600,17 @@ msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Specifies the sort criteria for the data display."
msgstr "Spesifiseer die sorteer kriteria vir data vertoning."
-#. CsLXB
+#. nDP3A
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
msgctxt "specialjdbcconnectionpage|header"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "Stel 'n verbinding aan 'n MySQL-databasis op met JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. oxw5Q
+#. EVDCG
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:39
msgctxt "specialjdbcconnectionpage|helpLabel"
-msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
-msgstr "Tik asseblief die nodige inligting in om aan ’n MySQL-databasis te verbind met JDBC. Let op dat ’n JDBC-drywerklas op u stelsel geïnstalleer moet wees en met %PRODUCTNAME geregistreer moet wees. Kontak gerus u stelseladministrateur indien u onseker is oor die volgende instellings. "
+msgid "Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
+msgstr ""
#. GchzZ
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:64
@@ -4638,11 +4636,11 @@ msgctxt "specialjdbcconnectionpage|portNumDefLabel"
msgid "Default: 3306"
msgstr "Verstek: 3306"
-#. dhiYx
+#. o9YhU
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:188
msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
-msgid "MySQL JDBC d_river class:"
-msgstr "MySQL-JDBC-d_rywerklas:"
+msgid "MySQL/MariaDB JDBC d_river class:"
+msgstr ""
#. 8oG6P
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:212
diff --git a/source/af/dictionaries/ckb.po b/source/af/dictionaries/ckb.po
index c147e6db20f..7090a66f9f8 100644
--- a/source/af/dictionaries/ckb.po
+++ b/source/af/dictionaries/ckb.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-02-18 12:38+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-02-27 12:39+0000\n"
+"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariesckb/af/>\n"
+"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
#. UGHNx
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Central Kurdish (Sorani) spelling dictionary"
-msgstr ""
+msgstr "Sentraal Kurdies (Sorani) spelling woordeboek"
diff --git a/source/af/fpicker/messages.po b/source/af/fpicker/messages.po
index 6df2d5f4022..fb2ca8e75a0 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-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\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"
@@ -492,8 +492,20 @@ msgstr ""
"\n"
"Wil u dit vervang?"
-#. z6Eo3
+#. t4wDh
#: include/fpicker/strings.hrc:32
+msgctxt "STR_SVT_ALREADYEXISTOVERWRITE_SECONDARY"
+msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
+msgstr ""
+
+#. cBvCB
+#: include/fpicker/strings.hrc:33
+msgctxt "STR_SVT_ALLFORMATS"
+msgid "All Formats"
+msgstr ""
+
+#. z6Eo3
+#: include/fpicker/strings.hrc:34
msgctxt "STR_SVT_DELETESERVICE"
msgid ""
"Are you sure you want to delete the service?\n"
@@ -501,31 +513,31 @@ msgid ""
msgstr "Wil u definitief die diens “$servicename$” skrap?"
#. KegFE
-#: include/fpicker/strings.hrc:33
+#: include/fpicker/strings.hrc:35
msgctxt "STR_SVT_ROOTLABEL"
msgid "Root"
msgstr "Wortel"
#. sWRTd
-#: include/fpicker/strings.hrc:34
+#: include/fpicker/strings.hrc:36
msgctxt "STR_FILTERNAME_ALL"
msgid "All files"
msgstr "Alle lêers"
#. FBggE
-#: include/fpicker/strings.hrc:35
+#: include/fpicker/strings.hrc:37
msgctxt "STR_FILEDLG_OPEN"
msgid "Open"
msgstr "Open"
#. wJYsA
-#: include/fpicker/strings.hrc:36
+#: include/fpicker/strings.hrc:38
msgctxt "STR_FILEDLG_TYPE"
msgid "File ~type"
msgstr "Lêer~tipe"
#. EEBg4
-#: include/fpicker/strings.hrc:37
+#: include/fpicker/strings.hrc:39
msgctxt "STR_FILEDLG_SAVE"
msgid "Save"
msgstr "Stoor"
diff --git a/source/af/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/af/instsetoo_native/inc_openoffice/windows/msi_languages.po
index c502ceb4503..017010fb0bb 100644
--- a/source/af/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/af/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-03-31 10:35+0200\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2020-07-04 09:02+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://weblate.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/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.1.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1548055275.000000\n"
#. tBfTE
@@ -2455,15 +2455,6 @@ msgctxt ""
msgid "&Cancel"
msgstr "&Kanselleer"
-#. rvG8Q
-#: Control.ulf
-msgctxt ""
-"Control.ulf\n"
-"OOO_CONTROL_206\n"
-"LngText.text"
-msgid "error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here"
-msgstr "foutteks kom hier foutteks kom hier foutteks kom hier foutteks kom hier foutteks kom hier foutteks kom hier foutteks kom hier foutteks kom hier foutteks kom hier foutteks kom hier"
-
#. D6Bgs
#: Control.ulf
msgctxt ""
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 916391ff54a..255b804a285 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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-02-11 21:39+0000\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
+"PO-Revision-Date: 2022-03-06 00:34+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"
@@ -464,7 +464,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Duplicate Sheet"
-msgstr ""
+msgstr "Duplikaatblad"
#. Ui6br
#: CalcCommands.xcu
@@ -2086,6 +2086,26 @@ msgctxt ""
msgid "F~ourier Analysis..."
msgstr "Fourier Analise..."
+#. aTBPM
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertSparkline\n"
+"Label\n"
+"value.text"
+msgid "Insert Sparkline..."
+msgstr ""
+
+#. CoZgJ
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:DeleteSparkline\n"
+"Label\n"
+"value.text"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dTXDB
#: CalcCommands.xcu
msgctxt ""
@@ -2116,16 +2136,6 @@ msgctxt ""
msgid "Data ~Validation..."
msgstr "Data~validering..."
-#. xxDxd
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "Skrap rye"
-
#. wZAYL
#: CalcCommands.xcu
msgctxt ""
@@ -2136,16 +2146,6 @@ msgctxt ""
msgid "Insert"
msgstr "Voeg in"
-#. jgGQR
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "Skrap kolomme"
-
#. 5PPGW
#: CalcCommands.xcu
msgctxt ""
@@ -2276,26 +2276,6 @@ msgctxt ""
msgid "Delete All Comments"
msgstr "Skrap alle opmerkings"
-#. PzCtT
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comm~ent"
-msgstr "Maak opm~erking"
-
-#. HAWW3
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"PopupLabel\n"
-"value.text"
-msgid "Insert Co~mment"
-msgstr "Voeg op~merking in"
-
#. uUwKE
#: CalcCommands.xcu
msgctxt ""
@@ -2354,7 +2334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Hidden Row/Column Indicator"
-msgstr ""
+msgstr "Wys versteekte ry/kolom-aanwyser"
#. nZGvm
#: CalcCommands.xcu
@@ -2364,7 +2344,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Hidden Row/Column Indicator"
-msgstr ""
+msgstr "Versteek ry/kolom-aanwyser"
#. PMfQA
#: CalcCommands.xcu
@@ -2374,7 +2354,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show the indicator for hidden rows and columns"
-msgstr ""
+msgstr "Wys die aanwyser vir versteekte rye en kolomme"
#. 2TbE2
#: CalcCommands.xcu
@@ -3196,16 +3176,6 @@ msgctxt ""
msgid "~Show Sheet..."
msgstr "~Wys vel..."
-#. BARqL
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Voeg selle saam"
-
#. APBqu
#: CalcCommands.xcu
msgctxt ""
@@ -10586,26 +10556,6 @@ msgctxt ""
msgid "Tas~k Pane"
msgstr "Taa~kpaneel"
-#. EAawg
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Voeg selle saam"
-
-#. eQphw
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells"
-msgstr "Verdeel selle"
-
#. Bvk8Q
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10736,26 +10686,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "Kolomme Invoeg"
-#. momxn
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Row"
-msgstr "Skrap ry"
-
-#. YzuWU
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Column"
-msgstr "Skrap kolom"
-
#. yTCcA
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10866,16 +10796,6 @@ msgctxt ""
msgid "~Table..."
msgstr "~Tabel..."
-#. apmru
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comme~nt"
-msgstr "Opmerki~ng"
-
#. XUrBD
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21918,6 +21838,26 @@ msgctxt ""
msgid "~Merge"
msgstr "~Voeg saam"
+#. rAjSP
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:MergeCells\n"
+"Label\n"
+"value.text"
+msgid "Merge Cells"
+msgstr ""
+
+#. ktF7K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SplitCell\n"
+"Label\n"
+"value.text"
+msgid "Split Cells..."
+msgstr ""
+
#. 2gYcx
#: GenericCommands.xcu
msgctxt ""
@@ -26408,6 +26348,66 @@ msgctxt ""
msgid "Insert Column"
msgstr "Voeg kolom in"
+#. LhLtz
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"Label\n"
+"value.text"
+msgid "Delete Columns"
+msgstr ""
+
+#. AG4Qy
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Columns"
+msgstr ""
+
+#. KxsdA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected columns"
+msgstr ""
+
+#. VL8Wa
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"Label\n"
+"value.text"
+msgid "Delete Rows"
+msgstr ""
+
+#. uAPr9
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Rows"
+msgstr ""
+
+#. wjm8K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected rows"
+msgstr ""
+
#. poXFa
#: GenericCommands.xcu
msgctxt ""
@@ -29088,6 +29088,16 @@ msgctxt ""
msgid "Slide"
msgstr "Skyfie"
+#. zDinJ
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.DrawPageDeck\n"
+"Title\n"
+"value.text"
+msgid "Page"
+msgstr ""
+
#. E9FJB
#: Sidebar.xcu
msgctxt ""
@@ -32388,66 +32398,6 @@ msgctxt ""
msgid "Columns ~Before"
msgstr "Kolomme voor"
-#. rzDZU
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "Skrap rye"
-
-#. DDmHu
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Rows"
-msgstr "~Rye"
-
-#. mBMTr
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected rows"
-msgstr "Skrap geselekteerde rye"
-
-#. WGcRm
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "Skrap kolomme"
-
-#. P6wy9
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Columns"
-msgstr "~Kolomme"
-
-#. rhbdp
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected columns"
-msgstr "Skrap geselekteerde kolomme"
-
#. RxF66
#: WriterCommands.xcu
msgctxt ""
@@ -32478,26 +32428,6 @@ msgctxt ""
msgid "Delete table"
msgstr "Skrap Tabel"
-#. f2Fpk
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells..."
-msgstr "Verdeel selle..."
-
-#. DqRgD
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Voeg selle saam"
-
#. TTVL5
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index 006d681b75a..2218a160c46 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: 2022-02-18 12:18+0100\n"
-"PO-Revision-Date: 2022-02-06 08:57+0000\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
+"PO-Revision-Date: 2022-02-27 12:39+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"
@@ -3251,6 +3251,18 @@ msgctxt "STR_INDENTCELL"
msgid "Indent: "
msgstr "Inkeping: "
+#. HWAmv
+#: sc/inc/globstr.hrc:542
+msgctxt "STR_UNDO_INSERT_SPARKLINE"
+msgid "Insert Sparkline Group"
+msgstr ""
+
+#. LiBMo
+#: sc/inc/globstr.hrc:543
+msgctxt "STR_UNDO_DELETE_SPARKLINE"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dB8cp
#: sc/inc/pvfundlg.hrc:28
msgctxt "SCSTR_DPFUNCLISTBOX"
@@ -16690,19 +16702,19 @@ msgstr "Skuif selle links"
#: sc/inc/strings.hrc:51
msgctxt "SCSTR_COLUMN_LETTER"
msgid "Column %1"
-msgstr ""
+msgstr "Kolom %1"
#. CJrpZ
#: sc/inc/strings.hrc:52
msgctxt "SCSTR_COLUMN"
msgid "Column"
-msgstr ""
+msgstr "Kolom"
#. Bjnch
#: sc/inc/strings.hrc:53
msgctxt "SCSTR_ROW"
msgid "Row"
-msgstr ""
+msgstr "Ry"
#. 7p8BN
#: sc/inc/strings.hrc:54
@@ -27218,11 +27230,11 @@ msgctxt "pastespecial|PasteSpecial"
msgid "Paste Special"
msgstr "Plak spesiaal"
-#. diPtG
+#. 9DVsp
#: sc/uiconfig/scalc/ui/pastespecial.ui:130
msgctxt "pastespecial|paste_values_only|label"
-msgid "_Values Only"
-msgstr "Slegs _Waardes"
+msgid "Values Only"
+msgstr ""
#. XyU8o
#: sc/uiconfig/scalc/ui/pastespecial.ui:134
@@ -27236,11 +27248,11 @@ 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
+#. qDbrz
#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
-msgid "Values & _Formats"
-msgstr "Waardes & _Formate"
+msgid "Values & Formats"
+msgstr ""
#. 7GuDi
#: sc/uiconfig/scalc/ui/pastespecial.ui:157
@@ -27254,11 +27266,11 @@ 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
+#. uCJBB
#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
-msgid "Formats Onl_y"
-msgstr "Slegs Formate"
+msgid "Formats Only"
+msgstr ""
#. Cvyjn
#: sc/uiconfig/scalc/ui/pastespecial.ui:180
@@ -27272,11 +27284,11 @@ 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
+#. osqEX
#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
-msgid "_Transpose All"
-msgstr "Alles _Transponeer"
+msgid "Transpose All"
+msgstr ""
#. sbLGi
#: sc/uiconfig/scalc/ui/pastespecial.ui:203
@@ -27290,11 +27302,11 @@ 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
+#. B28BC
#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
-msgid "_Run immediately"
-msgstr "Di_rek Uitvoer"
+msgid "Run immediately"
+msgstr ""
#. 7a9JE
#: sc/uiconfig/scalc/ui/pastespecial.ui:238
@@ -27308,11 +27320,11 @@ msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr "Instellings"
-#. g6DfA
+#. huhPQ
#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
-msgid "_All"
-msgstr "_Alles"
+msgid "All"
+msgstr ""
#. Labin
#: sc/uiconfig/scalc/ui/pastespecial.ui:298
@@ -27320,11 +27332,11 @@ 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
+#. sg69o
#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
-msgid "_Numbers"
-msgstr "_Getalle"
+msgid "Numbers"
+msgstr ""
#. SCVEu
#: sc/uiconfig/scalc/ui/pastespecial.ui:317
@@ -27332,11 +27344,11 @@ msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr "Voeg selle in wat syfers bevat."
-#. BSEWE
+#. APG3W
#: sc/uiconfig/scalc/ui/pastespecial.ui:328
msgctxt "pastespecial|text"
-msgid "Te_xt"
-msgstr "Te_ks"
+msgid "Text"
+msgstr ""
#. JWDk5
#: sc/uiconfig/scalc/ui/pastespecial.ui:336
@@ -27344,11 +27356,11 @@ msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr "Voeg selle in wat teks bevat."
-#. DBaJD
+#. HEwjB
#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
-msgid "_Date & time"
-msgstr "_Datum & Tyd"
+msgid "Date & time"
+msgstr ""
#. jq6Md
#: sc/uiconfig/scalc/ui/pastespecial.ui:355
@@ -27356,11 +27368,11 @@ msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr "Voeg selle in wat datum en tyd waardes bevat."
-#. aHXF8
+#. HKgB9
#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
-msgid "For_mats"
-msgstr "Formate"
+msgid "Formats"
+msgstr ""
#. ehyEf
#: sc/uiconfig/scalc/ui/pastespecial.ui:374
@@ -27368,11 +27380,11 @@ msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr "Voeg by sel formate."
-#. NT4Am
+#. vAFRC
#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
-msgid "_Comments"
-msgstr "_Opmerkings"
+msgid "Comments"
+msgstr ""
#. 3uP7i
#: sc/uiconfig/scalc/ui/pastespecial.ui:393
@@ -27380,11 +27392,11 @@ 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
+#. 5n5r7
#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
-msgid "Ob_jects"
-msgstr "Ob_jekte"
+msgid "Objects"
+msgstr ""
#. DZsnr
#: sc/uiconfig/scalc/ui/pastespecial.ui:412
@@ -27392,11 +27404,11 @@ 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
+#. 2wYuG
#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
-msgid "F_ormulas"
-msgstr "F_ormules"
+msgid "Formulas"
+msgstr ""
#. Na5Ba
#: sc/uiconfig/scalc/ui/pastespecial.ui:431
@@ -27410,11 +27422,11 @@ msgctxt "pastespecial|label1"
msgid "Paste"
msgstr "Plak"
-#. fonBJ
+#. SKs5y
#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
-msgid "Don't sh_ift"
-msgstr "_Nie verskuif nie"
+msgid "Don't shift"
+msgstr ""
#. q3Xv3
#: sc/uiconfig/scalc/ui/pastespecial.ui:486
@@ -27422,11 +27434,11 @@ msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr "Ingevoegde selle vervang die teikenselle."
-#. RuiU6
+#. 4hD8A
#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
-msgid "_Down"
-msgstr "_Afwaarts"
+msgid "Down"
+msgstr ""
#. BNALN
#: sc/uiconfig/scalc/ui/pastespecial.ui:507
@@ -27434,11 +27446,11 @@ 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
+#. Psyof
#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
-msgid "_Right"
-msgstr "_Regs"
+msgid "Right"
+msgstr ""
#. GEFe7
#: sc/uiconfig/scalc/ui/pastespecial.ui:528
@@ -27452,11 +27464,11 @@ msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr "Selle verskuif"
-#. nuJd9
+#. JXJTf
#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
-msgid "As _Link"
-msgstr "As Koppe_ling"
+msgid "As Link"
+msgstr ""
#. Bg9dc
#: sc/uiconfig/scalc/ui/pastespecial.ui:596
@@ -27464,11 +27476,11 @@ 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
+#. 7yzbi
#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
-msgid "Trans_pose"
-msgstr "Trans_poneer"
+msgid "Transpose"
+msgstr ""
#. P3eE4
#: sc/uiconfig/scalc/ui/pastespecial.ui:615
@@ -27476,11 +27488,11 @@ 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
+#. 3VcAr
#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
-msgid "_Skip empty cells"
-msgstr "Leë selle oor_slaan"
+msgid "Skip empty cells"
+msgstr ""
#. BodqB
#: sc/uiconfig/scalc/ui/pastespecial.ui:630
@@ -27500,11 +27512,11 @@ msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr "Opsies"
-#. nJiy4
+#. ekYg5
#: sc/uiconfig/scalc/ui/pastespecial.ui:681
msgctxt "pastespecial|none"
-msgid "Non_e"
-msgstr "G_een"
+msgid "None"
+msgstr ""
#. 7GKDG
#: sc/uiconfig/scalc/ui/pastespecial.ui:690
@@ -27512,11 +27524,11 @@ 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
+#. QhQnq
#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
-msgid "_Add"
-msgstr "_Voeg by"
+msgid "Add"
+msgstr ""
#. bNyh2
#: sc/uiconfig/scalc/ui/pastespecial.ui:711
@@ -27524,11 +27536,11 @@ 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
+#. 4SmrC
#: sc/uiconfig/scalc/ui/pastespecial.ui:723
msgctxt "pastespecial|subtract"
-msgid "_Subtract"
-msgstr "_Trek af"
+msgid "Subtract"
+msgstr ""
#. 2SKbT
#: sc/uiconfig/scalc/ui/pastespecial.ui:732
@@ -27536,11 +27548,11 @@ 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
+#. 4HCRU
#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
-msgid "_Multiply"
-msgstr "_Vermenigvuldig"
+msgid "Multiply"
+msgstr ""
#. jkRDm
#: sc/uiconfig/scalc/ui/pastespecial.ui:753
@@ -27548,11 +27560,11 @@ 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
+#. 55rBT
#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
-msgid "_Divide"
-msgstr "_Deel"
+msgid "Divide"
+msgstr ""
#. 9VKdS
#: sc/uiconfig/scalc/ui/pastespecial.ui:774
@@ -30267,307 +30279,307 @@ msgid "Optimize result to"
msgstr "Optimaliseer resultaat na"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:155
+#: sc/uiconfig/scalc/ui/solverdlg.ui:162
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "_Deur selle te wysig"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:166
+#: sc/uiconfig/scalc/ui/solverdlg.ui:173
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minim_um"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:178
+#: sc/uiconfig/scalc/ui/solverdlg.ui:185
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:189
+#: sc/uiconfig/scalc/ui/solverdlg.ui:196
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Maksimum"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:201
+#: sc/uiconfig/scalc/ui/solverdlg.ui:208
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:226
+#: sc/uiconfig/scalc/ui/solverdlg.ui:233
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:269
+#: sc/uiconfig/scalc/ui/solverdlg.ui:276
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr "Tik of klik op die selverwysing van die teikensel. Hierdie veld bevat die verwysing na die sel waarvan die waarde geoptimaliseer moet word."
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:312
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Waarde van"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:317
+#: sc/uiconfig/scalc/ui/solverdlg.ui:324
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:342
+#: sc/uiconfig/scalc/ui/solverdlg.ui:349
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr "Voer in die selle-reeks wat gewysig moet word."
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:428
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_Sel verwysing"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:442
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operator"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:456
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "_Waardes"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:476
+#: sc/uiconfig/scalc/ui/solverdlg.ui:483
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Sel verwysing"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:495
+#: sc/uiconfig/scalc/ui/solverdlg.ui:502
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Sel verwysing"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:514
+#: sc/uiconfig/scalc/ui/solverdlg.ui:521
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Sel verwysing"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:533
+#: sc/uiconfig/scalc/ui/solverdlg.ui:540
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Sel verwysing"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:591
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:592
+#: sc/uiconfig/scalc/ui/solverdlg.ui:599
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:593
+#: sc/uiconfig/scalc/ui/solverdlg.ui:600
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:594
+#: sc/uiconfig/scalc/ui/solverdlg.ui:601
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Heelgetal"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:595
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binêr"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:599
+#: sc/uiconfig/scalc/ui/solverdlg.ui:606
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operator"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:613
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:614
+#: sc/uiconfig/scalc/ui/solverdlg.ui:621
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:615
+#: sc/uiconfig/scalc/ui/solverdlg.ui:622
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:616
+#: sc/uiconfig/scalc/ui/solverdlg.ui:623
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Heelgetal"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:617
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binêr"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:621
+#: sc/uiconfig/scalc/ui/solverdlg.ui:628
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operator"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:635
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:636
+#: sc/uiconfig/scalc/ui/solverdlg.ui:643
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:637
+#: sc/uiconfig/scalc/ui/solverdlg.ui:644
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:638
+#: sc/uiconfig/scalc/ui/solverdlg.ui:645
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Heelgetal"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:639
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binêr"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:643
+#: sc/uiconfig/scalc/ui/solverdlg.ui:650
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operator"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:657
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:658
+#: sc/uiconfig/scalc/ui/solverdlg.ui:665
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:659
+#: sc/uiconfig/scalc/ui/solverdlg.ui:666
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:660
+#: sc/uiconfig/scalc/ui/solverdlg.ui:667
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Heelgetal"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:661
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binêr"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:665
+#: sc/uiconfig/scalc/ui/solverdlg.ui:672
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operator"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:685
+#: sc/uiconfig/scalc/ui/solverdlg.ui:692
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Waarde"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:705
+#: sc/uiconfig/scalc/ui/solverdlg.ui:712
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Waarde"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:725
+#: sc/uiconfig/scalc/ui/solverdlg.ui:732
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Waarde"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:745
+#: sc/uiconfig/scalc/ui/solverdlg.ui:752
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Waarde"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:803
+#: sc/uiconfig/scalc/ui/solverdlg.ui:810
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Verwyder"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:815
+#: sc/uiconfig/scalc/ui/solverdlg.ui:822
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Verwyder"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:827
+#: sc/uiconfig/scalc/ui/solverdlg.ui:834
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Verwyder"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:839
+#: sc/uiconfig/scalc/ui/solverdlg.ui:846
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Verwyder"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:862
+#: sc/uiconfig/scalc/ui/solverdlg.ui:869
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Beperkende voorwaardes"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:895
+#: sc/uiconfig/scalc/ui/solverdlg.ui:899
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr "Open die \"Oplosser\"-dialoog. Met die oplosser kan u wiskundeprobleme oplos met verskeie onbekende veranderlikes en 'n aantal beperkinge op die veranderlikes met behulp van teikensoek metodes."
@@ -30675,13 +30687,13 @@ msgid "Sort"
msgstr "Sorteer"
#. BMbZ7
-#: sc/uiconfig/scalc/ui/sortdialog.ui:139
+#: sc/uiconfig/scalc/ui/sortdialog.ui:112
msgctxt "sortdialog|criteria"
msgid "Sort Criteria"
msgstr "Sorteer Kiteria"
#. gMSdg
-#: sc/uiconfig/scalc/ui/sortdialog.ui:186
+#: sc/uiconfig/scalc/ui/sortdialog.ui:135
msgctxt "sortdialog|options"
msgid "Options"
msgstr "Opsies"
@@ -30974,6 +30986,102 @@ msgctxt "sortwarning|sorttip"
msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
msgstr "Wenk: die sorteerarea kan outomaties herken word. Plaas die wyser binne 'n lys en voer 'n sorteer uit. Die hele reeks aangrensende nie-leë selle word gesorteer."
+#. 5YeNV
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:8
+msgctxt "SparklineDialog"
+msgid "Sparkline Dialog"
+msgstr ""
+
+#. Atj7n
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:161
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Input range:"
+msgstr ""
+
+#. gYQBd
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:178
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Output range:"
+msgstr ""
+
+#. faM2q
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:197
+msgctxt "SparklineDialog|label-data"
+msgid "Data"
+msgstr ""
+
+#. mcBDU
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:231
+msgctxt "SparklineDialog|label-series"
+msgid "Series:"
+msgstr ""
+
+#. N5L8b
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:246
+msgctxt "SparklineDialog|label-negative"
+msgid "Negative Points:"
+msgstr ""
+
+#. y5dsG
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:318
+msgctxt "SparklineDialog|label-low"
+msgid "Low Points:"
+msgstr ""
+
+#. LRGMH
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:390
+msgctxt "SparklineDialog|label-high"
+msgid "High Points:"
+msgstr ""
+
+#. WSgFy
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:426
+msgctxt "SparklineDialog|label-marker"
+msgid "Marker:"
+msgstr ""
+
+#. 6kVrt
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:556
+msgctxt "SparklineDialog|label-first"
+msgid "First Points:"
+msgstr ""
+
+#. tdvGa
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:572
+msgctxt "SparklineDialog|label-last"
+msgid "Last Points:"
+msgstr ""
+
+#. UAFwj
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:588
+msgctxt "SparklineDialog|label-type"
+msgid "Type:"
+msgstr ""
+
+#. gxMQL
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:608
+msgctxt "SparklineDialog|line-radiobutton"
+msgid "Line"
+msgstr ""
+
+#. VPdbn
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:627
+msgctxt "SparklineDialog|column-radiobutton"
+msgid "Column"
+msgstr ""
+
+#. oLsAN
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:646
+msgctxt "SparklineDialog|stacked-radiobutton"
+msgid "Stacked"
+msgstr ""
+
+#. 9uKMb
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:688
+msgctxt "SparklineDialog|label-properties"
+msgid "Properties"
+msgstr ""
+
#. p9BBw
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29
msgctxt "splitcolumnentry|name"
diff --git a/source/af/scp2/source/ooo.po b/source/af/scp2/source/ooo.po
index 4412a8b3ccd..0a40a39308d 100644
--- a/source/af/scp2/source/ooo.po
+++ b/source/af/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-02-21 15:23+0100\n"
-"PO-Revision-Date: 2021-09-14 10:10+0000\n"
+"PO-Revision-Date: 2022-02-27 12:39+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/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: 1560975729.000000\n"
#. CYBGJ
@@ -4487,7 +4487,7 @@ msgctxt ""
"STR_NAME_MODULE_EXTENSION_DICTIONARY_CKB\n"
"LngText.text"
msgid "Central Kurdish"
-msgstr ""
+msgstr "Sentraal Koerdies"
#. xEtQ6
#: module_ooo.ulf
@@ -4496,7 +4496,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_CKB\n"
"LngText.text"
msgid "Central Kurdish spelling dictionary"
-msgstr ""
+msgstr "Sentraal Koerdies spelling woordeboek"
#. CCE5q
#: module_ooo.ulf
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 2d55785cd85..d7872f852ac 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-21 15:23+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2022-02-11 21:39+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
@@ -9070,11 +9070,11 @@ msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
msgstr "Volle HD (1_920 × 1080 piksels)"
-#. GuDqe
+#. CA9F9
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1195
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
-msgid "Select a full hd resolution for a very high quality slide display."
-msgstr "Selekteer a vol HD resolusie vir 'n baie hoë kwaliteit skyfie vertoning."
+msgid "Select a full HD resolution for a very high-quality slide display."
+msgstr ""
#. zsvW6
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1211
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 635d98b2964..b570e31b976 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-09 16:46+0100\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
"PO-Revision-Date: 2022-02-04 11:39+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/af/>\n"
@@ -1652,334 +1652,346 @@ msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr "Leer meer"
+#. BSyb4
+#: include/sfx2/strings.hrc:293
+msgctxt "STR_REFRESH_MASTER_PASSWORD"
+msgid "The master password is stored in an outdated format, you should refresh it"
+msgstr ""
+
+#. ysChU
+#: include/sfx2/strings.hrc:294
+msgctxt "STR_REFRESH_PASSWORD"
+msgid "Refresh Password"
+msgstr ""
+
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Grys Elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Byekorf"
#. uwaPH
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blou Kromme"
#. hHRDz
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Bloudruk Planne"
#. MAnPU
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Bonbon"
#. jEiAn
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Geel Motief"
#. QDNuB
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Woudvoël"
#. TT8G5
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Verfrissend"
#. C5N9D
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasie"
#. fCKG9
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ligte"
#. pcLWs
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Florerende Vryheid"
#. xo2gC
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis."
#. FFDBk
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Middernag Blou"
#. yiCzk
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuur Illustrasie"
#. cCZzC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Potlood"
#. Ji4Cw
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavier"
#. mrbiq
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio."
#. ysBGy
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Vordering"
#. gtPt9
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sonsondergang"
#. 73Y2e
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradisioneel"
#. MSY8y
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Helder"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Samevatting"
#. hCpfD
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Verstek"
#. d7Hyk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne sakebrief sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne sakebrief sans-serif"
#. XdU49
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visetekaartjie met logo"
#. UAmSj
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Eenvoudig"
#. W7NVH
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:331
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Verwyder"
#. JReRY
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:332
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles uitwis"
#. yC8Gs
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:334
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wagwoordlengte"
#. FKFmJ
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:335
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Die wagwoord wat u ingevoer het, veroorsaak probleme met versoenbaarheid. Voer 'n wagwoord, wat korter as 52 grepe is of langer is as 55 grepe."
#. jBQFN
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-Klik, om die skakel: %{link} te open"
#. jC3AK
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:338
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Kliek om die skakel: %{link} te open"
#. eFJMp
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:340
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(gebruik deur: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:342
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Spreiblad"
#. 3UZXB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Voorlegging"
#. noN5s
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:345
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Tekening"
#. QpuFo
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Onlangs gebruik"
#. EcAjb
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Geen onlangse karakters"
#. tfjbD
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Herstel Alle _Verstek Sjablone"
#. GWuDE
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:350
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Herstel ~Verstek Teks Dokument"
#. j5eV8
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Herstel ~Verstek Spreiblad"
#. mWp3t
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Herstel ~Verstek Voorlegging"
#. wfExB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Herstel ~Verstek Tekening"
#. BFaGA
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Intrek"
#. 8Cwfk
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "~Uitbreidings"
#. idGvM
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Hernoem"
#. EyjE3
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:357
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Hernoem Kategorie"
#. T79Eb
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nuwe Kategorie"
@@ -2050,289 +2062,289 @@ msgid "_Yes"
msgstr "_Ja"
#. F5rSU
-#: sfx2/inc/dinfdlg.hrc:27
+#: sfx2/inc/dinfdlg.hrc:29
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Checked by"
msgstr "Gekontroleer deur"
#. BCYGG
-#: sfx2/inc/dinfdlg.hrc:28
+#: sfx2/inc/dinfdlg.hrc:30
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Client"
msgstr "Kliënt"
#. nSrT3
-#: sfx2/inc/dinfdlg.hrc:29
+#: sfx2/inc/dinfdlg.hrc:31
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date completed"
msgstr "Datum voltooi"
#. HEaEC
-#: sfx2/inc/dinfdlg.hrc:30
+#: sfx2/inc/dinfdlg.hrc:32
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Department"
msgstr "Afdeling"
#. TxAux
-#: sfx2/inc/dinfdlg.hrc:31
+#: sfx2/inc/dinfdlg.hrc:33
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Destinations"
msgstr "Doelstellings"
#. f3nqh
-#: sfx2/inc/dinfdlg.hrc:32
+#: sfx2/inc/dinfdlg.hrc:34
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Disposition"
msgstr "Struktuur"
#. uznMD
-#: sfx2/inc/dinfdlg.hrc:33
+#: sfx2/inc/dinfdlg.hrc:35
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Division"
msgstr "Afdeling"
#. 6DuFF
-#: sfx2/inc/dinfdlg.hrc:34
+#: sfx2/inc/dinfdlg.hrc:36
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Document number"
msgstr "Dokumentnommer"
#. XXKuP
-#: sfx2/inc/dinfdlg.hrc:35
+#: sfx2/inc/dinfdlg.hrc:37
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Editor"
msgstr "Hersiener"
#. hRRmF
-#: sfx2/inc/dinfdlg.hrc:36
+#: sfx2/inc/dinfdlg.hrc:38
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Email"
msgstr "E-pos"
#. xNvDx
-#: sfx2/inc/dinfdlg.hrc:37
+#: sfx2/inc/dinfdlg.hrc:39
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Forward to"
msgstr "Deurstuur na"
#. xwv85
-#: sfx2/inc/dinfdlg.hrc:38
+#: sfx2/inc/dinfdlg.hrc:40
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Group"
msgstr "Groep"
#. u59Qp
-#: sfx2/inc/dinfdlg.hrc:39
+#: sfx2/inc/dinfdlg.hrc:41
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Info"
msgstr "Inligting"
#. Ltq9H
-#: sfx2/inc/dinfdlg.hrc:40
+#: sfx2/inc/dinfdlg.hrc:42
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Language"
msgstr "Taal"
#. bv3HC
-#: sfx2/inc/dinfdlg.hrc:41
+#: sfx2/inc/dinfdlg.hrc:43
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Mailstop"
msgstr "Geen kennisgewings nie"
#. AFGi2
-#: sfx2/inc/dinfdlg.hrc:42
+#: sfx2/inc/dinfdlg.hrc:44
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Matter"
msgstr "Onderwerp"
#. wGAD6
-#: sfx2/inc/dinfdlg.hrc:43
+#: sfx2/inc/dinfdlg.hrc:45
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Office"
msgstr "Kantoor"
#. ZqphY
-#: sfx2/inc/dinfdlg.hrc:44
+#: sfx2/inc/dinfdlg.hrc:46
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Owner"
msgstr "Eienaar"
#. mK8Th
-#: sfx2/inc/dinfdlg.hrc:45
+#: sfx2/inc/dinfdlg.hrc:47
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Project"
msgstr "Projek"
#. zFeHt
-#: sfx2/inc/dinfdlg.hrc:46
+#: sfx2/inc/dinfdlg.hrc:48
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Publisher"
msgstr "Uitgewer"
#. pF2eJ
-#: sfx2/inc/dinfdlg.hrc:47
+#: sfx2/inc/dinfdlg.hrc:49
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Purpose"
msgstr "Doel"
#. GTPFZ
-#: sfx2/inc/dinfdlg.hrc:48
+#: sfx2/inc/dinfdlg.hrc:50
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Received from"
msgstr "Ontvang van"
#. dvGyQ
-#: sfx2/inc/dinfdlg.hrc:49
+#: sfx2/inc/dinfdlg.hrc:51
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded by"
msgstr "Opgeneem deur"
#. GjVXD
-#: sfx2/inc/dinfdlg.hrc:50
+#: sfx2/inc/dinfdlg.hrc:52
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded date"
msgstr "Opgename datum"
#. o5oXa
-#: sfx2/inc/dinfdlg.hrc:51
+#: sfx2/inc/dinfdlg.hrc:53
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Reference"
msgstr "Verwysing"
#. ex26g
-#: sfx2/inc/dinfdlg.hrc:52
+#: sfx2/inc/dinfdlg.hrc:54
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Source"
msgstr "Bron"
#. 4HSZB
-#: sfx2/inc/dinfdlg.hrc:53
+#: sfx2/inc/dinfdlg.hrc:55
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Status"
msgstr "Status"
#. U3RdC
-#: sfx2/inc/dinfdlg.hrc:54
+#: sfx2/inc/dinfdlg.hrc:56
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Telephone number"
msgstr "Telefoonnommer"
#. Geeuu
-#: sfx2/inc/dinfdlg.hrc:55
+#: sfx2/inc/dinfdlg.hrc:57
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Typist"
msgstr "Tikster"
#. xxHtR
-#: sfx2/inc/dinfdlg.hrc:56
+#: sfx2/inc/dinfdlg.hrc:58
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "URL"
msgstr "URL"
#. CxTQY
-#: sfx2/inc/dinfdlg.hrc:71
+#: sfx2/inc/dinfdlg.hrc:73
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Text"
msgstr "Teks"
#. MMGFi
-#: sfx2/inc/dinfdlg.hrc:72
+#: sfx2/inc/dinfdlg.hrc:74
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "DateTime"
msgstr "Datum & tyd"
#. GvJMH
-#: sfx2/inc/dinfdlg.hrc:73
+#: sfx2/inc/dinfdlg.hrc:75
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date"
msgstr "Datum"
#. GyrbX
-#: sfx2/inc/dinfdlg.hrc:74
+#: sfx2/inc/dinfdlg.hrc:76
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Duration"
msgstr "Duur"
#. CxZ4Z
-#: sfx2/inc/dinfdlg.hrc:75
+#: sfx2/inc/dinfdlg.hrc:77
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Number"
msgstr "Nommer"
#. CDgvL
-#: sfx2/inc/dinfdlg.hrc:76
+#: sfx2/inc/dinfdlg.hrc:78
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Yes or no"
msgstr "Ja of nee"
#. AxhLy
-#: sfx2/inc/doctempl.hrc:27
+#: sfx2/inc/doctempl.hrc:29
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "My Templates"
msgstr "My sjablone"
#. 5aNp8
-#: sfx2/inc/doctempl.hrc:28
+#: sfx2/inc/doctempl.hrc:30
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Styles"
msgstr "Style"
#. t5QK9
-#: sfx2/inc/doctempl.hrc:29
+#: sfx2/inc/doctempl.hrc:31
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Business Correspondence"
msgstr "Sakekorrespondensie"
#. Y79e8
-#: sfx2/inc/doctempl.hrc:30
+#: sfx2/inc/doctempl.hrc:32
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Other Business Documents"
msgstr "Ander sakedokumente"
#. 2RCC9
-#: sfx2/inc/doctempl.hrc:31
+#: sfx2/inc/doctempl.hrc:33
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Personal Correspondence and Documents"
msgstr "Persoonlike korrespondensie en dokumente"
#. 6Dgiz
-#: sfx2/inc/doctempl.hrc:32
+#: sfx2/inc/doctempl.hrc:34
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Forms and Contracts"
msgstr "Vorms en kontrakte"
#. VCKTG
-#: sfx2/inc/doctempl.hrc:33
+#: sfx2/inc/doctempl.hrc:35
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Finances"
msgstr "Finansies"
#. HmqGP
-#: sfx2/inc/doctempl.hrc:34
+#: sfx2/inc/doctempl.hrc:36
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Education"
msgstr "Opleiding"
#. xopM8
-#: sfx2/inc/doctempl.hrc:35
+#: sfx2/inc/doctempl.hrc:37
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentation Backgrounds"
msgstr "Aanbiedingsagtergronde"
#. tSQLA
-#: sfx2/inc/doctempl.hrc:36
+#: sfx2/inc/doctempl.hrc:38
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentations"
msgstr "Voorleggings"
#. KuNzz
-#: sfx2/inc/doctempl.hrc:37
+#: sfx2/inc/doctempl.hrc:39
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Miscellaneous"
msgstr "Allerlei"
#. SC4E5
-#: sfx2/inc/doctempl.hrc:38
+#: sfx2/inc/doctempl.hrc:40
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "Etikette"
diff --git a/source/af/starmath/messages.po b/source/af/starmath/messages.po
index d11e847a544..1794307fe48 100644
--- a/source/af/starmath/messages.po
+++ b/source/af/starmath/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: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-09-17 15:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/af/>\n"
@@ -13,413 +13,413 @@ 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: 1548164561.000000\n"
#. GrDhX
-#: starmath/inc/smmod.hrc:16
+#: starmath/inc/smmod.hrc:18
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Greek"
msgstr "Grieks"
#. bApbv
-#: starmath/inc/smmod.hrc:17
+#: starmath/inc/smmod.hrc:19
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Special"
msgstr "Spesiaal"
#. aXhLc
-#: starmath/inc/smmod.hrc:22
+#: starmath/inc/smmod.hrc:24
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "alpha"
msgstr "alfa"
#. rhVhw
-#: starmath/inc/smmod.hrc:23
+#: starmath/inc/smmod.hrc:25
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ALPHA"
msgstr "ALFA"
#. U3CqD
-#: starmath/inc/smmod.hrc:24
+#: starmath/inc/smmod.hrc:26
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "beta"
msgstr "beta"
#. pEoCL
-#: starmath/inc/smmod.hrc:25
+#: starmath/inc/smmod.hrc:27
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "BETA"
msgstr "BETA"
#. D2jkQ
-#: starmath/inc/smmod.hrc:26
+#: starmath/inc/smmod.hrc:28
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "gamma"
msgstr "gamma"
#. 4Cw8A
-#: starmath/inc/smmod.hrc:27
+#: starmath/inc/smmod.hrc:29
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "GAMMA"
msgstr "GAMMA"
#. uMmke
-#: starmath/inc/smmod.hrc:28
+#: starmath/inc/smmod.hrc:30
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "delta"
msgstr "delta"
#. dBy8u
-#: starmath/inc/smmod.hrc:29
+#: starmath/inc/smmod.hrc:31
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "DELTA"
msgstr "DELTA"
#. CrJqB
-#: starmath/inc/smmod.hrc:30
+#: starmath/inc/smmod.hrc:32
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "epsilon"
msgstr "epsilon"
#. jSZ7F
-#: starmath/inc/smmod.hrc:31
+#: starmath/inc/smmod.hrc:33
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "EPSILON"
msgstr "EPSILON"
#. kRvNs
-#: starmath/inc/smmod.hrc:32
+#: starmath/inc/smmod.hrc:34
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "zeta"
msgstr "zeta"
#. YA3sh
-#: starmath/inc/smmod.hrc:33
+#: starmath/inc/smmod.hrc:35
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ZETA"
msgstr "ZETA"
#. kEWFU
-#: starmath/inc/smmod.hrc:34
+#: starmath/inc/smmod.hrc:36
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "eta"
msgstr "eta"
#. r8ivE
-#: starmath/inc/smmod.hrc:35
+#: starmath/inc/smmod.hrc:37
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ETA"
msgstr "ETA"
#. CaW5B
-#: starmath/inc/smmod.hrc:36
+#: starmath/inc/smmod.hrc:38
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "theta"
msgstr "theta"
#. MUaj7
-#: starmath/inc/smmod.hrc:37
+#: starmath/inc/smmod.hrc:39
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "THETA"
msgstr "THETA"
#. FAdCp
-#: starmath/inc/smmod.hrc:38
+#: starmath/inc/smmod.hrc:40
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "iota"
msgstr "iota"
#. 2RFqS
-#: starmath/inc/smmod.hrc:39
+#: starmath/inc/smmod.hrc:41
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "IOTA"
msgstr "IOTA"
#. E6LBi
-#: starmath/inc/smmod.hrc:40
+#: starmath/inc/smmod.hrc:42
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "kappa"
msgstr "kappa"
#. PGGyZ
-#: starmath/inc/smmod.hrc:41
+#: starmath/inc/smmod.hrc:43
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "KAPPA"
msgstr "KAPPA"
#. QhGid
-#: starmath/inc/smmod.hrc:42
+#: starmath/inc/smmod.hrc:44
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "lambda"
msgstr "lambda"
#. JBLgu
-#: starmath/inc/smmod.hrc:43
+#: starmath/inc/smmod.hrc:45
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "LAMBDA"
msgstr "LAMBDA"
#. AkyEU
-#: starmath/inc/smmod.hrc:44
+#: starmath/inc/smmod.hrc:46
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "mu"
msgstr "mu"
#. t4RFD
-#: starmath/inc/smmod.hrc:45
+#: starmath/inc/smmod.hrc:47
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "MU"
msgstr "MU"
#. DwBRA
-#: starmath/inc/smmod.hrc:46
+#: starmath/inc/smmod.hrc:48
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "nu"
msgstr "nu"
#. sDc6Z
-#: starmath/inc/smmod.hrc:47
+#: starmath/inc/smmod.hrc:49
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "NU"
msgstr "NU"
#. dMns2
-#: starmath/inc/smmod.hrc:48
+#: starmath/inc/smmod.hrc:50
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "xi"
msgstr "xi"
#. 2cEVh
-#: starmath/inc/smmod.hrc:49
+#: starmath/inc/smmod.hrc:51
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "XI"
msgstr "XI"
#. PWUDK
-#: starmath/inc/smmod.hrc:50
+#: starmath/inc/smmod.hrc:52
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omicron"
msgstr "omicron"
#. ZvPw7
-#: starmath/inc/smmod.hrc:51
+#: starmath/inc/smmod.hrc:53
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMICRON"
msgstr "OMICRON"
#. VmDhA
-#: starmath/inc/smmod.hrc:52
+#: starmath/inc/smmod.hrc:54
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "pi"
msgstr "pi"
#. A3eoZ
-#: starmath/inc/smmod.hrc:53
+#: starmath/inc/smmod.hrc:55
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PI"
msgstr "PI"
#. Pu9vL
-#: starmath/inc/smmod.hrc:54
+#: starmath/inc/smmod.hrc:56
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "rho"
msgstr "rho"
#. HjNFe
-#: starmath/inc/smmod.hrc:55
+#: starmath/inc/smmod.hrc:57
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "RHO"
msgstr "RHO"
#. 9Aa3V
-#: starmath/inc/smmod.hrc:56
+#: starmath/inc/smmod.hrc:58
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "sigma"
msgstr "sigma"
#. JLWqn
-#: starmath/inc/smmod.hrc:57
+#: starmath/inc/smmod.hrc:59
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "SIGMA"
msgstr "SIGMA"
#. NTuqk
-#: starmath/inc/smmod.hrc:58
+#: starmath/inc/smmod.hrc:60
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tau"
msgstr "tau"
#. GdhQ5
-#: starmath/inc/smmod.hrc:59
+#: starmath/inc/smmod.hrc:61
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "TAU"
msgstr "TAU"
#. 6djSp
-#: starmath/inc/smmod.hrc:60
+#: starmath/inc/smmod.hrc:62
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "upsilon"
msgstr "upsilon"
#. ymFBb
-#: starmath/inc/smmod.hrc:61
+#: starmath/inc/smmod.hrc:63
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "UPSILON"
msgstr "UPSILON"
#. YxRXi
-#: starmath/inc/smmod.hrc:62
+#: starmath/inc/smmod.hrc:64
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "phi"
msgstr "phi"
#. enCD7
-#: starmath/inc/smmod.hrc:63
+#: starmath/inc/smmod.hrc:65
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PHI"
msgstr "PHI"
#. GcQPF
-#: starmath/inc/smmod.hrc:64
+#: starmath/inc/smmod.hrc:66
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "chi"
msgstr "chi"
#. 6SBnr
-#: starmath/inc/smmod.hrc:65
+#: starmath/inc/smmod.hrc:67
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "CHI"
msgstr "CHI"
#. NAmaK
-#: starmath/inc/smmod.hrc:66
+#: starmath/inc/smmod.hrc:68
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "psi"
msgstr "psi"
#. GLZ2h
-#: starmath/inc/smmod.hrc:67
+#: starmath/inc/smmod.hrc:69
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PSI"
msgstr "PSI"
#. JEF5A
-#: starmath/inc/smmod.hrc:68
+#: starmath/inc/smmod.hrc:70
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omega"
msgstr "omega"
#. 9QKj8
-#: starmath/inc/smmod.hrc:69
+#: starmath/inc/smmod.hrc:71
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMEGA"
msgstr "OMEGA"
#. YQGDY
-#: starmath/inc/smmod.hrc:70
+#: starmath/inc/smmod.hrc:72
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varepsilon"
msgstr "varepsilon"
#. VLAFM
-#: starmath/inc/smmod.hrc:71
+#: starmath/inc/smmod.hrc:73
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "vartheta"
msgstr "vartheta"
#. UJB26
-#: starmath/inc/smmod.hrc:72
+#: starmath/inc/smmod.hrc:74
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varpi"
msgstr "varpi"
#. BCNqp
-#: starmath/inc/smmod.hrc:73
+#: starmath/inc/smmod.hrc:75
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varrho"
msgstr "varrho"
#. SUNDb
-#: starmath/inc/smmod.hrc:74
+#: starmath/inc/smmod.hrc:76
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varsigma"
msgstr "varsigma"
#. cHCgN
-#: starmath/inc/smmod.hrc:75
+#: starmath/inc/smmod.hrc:77
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varphi"
msgstr "varphi"
#. c9n9F
-#: starmath/inc/smmod.hrc:76
+#: starmath/inc/smmod.hrc:78
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "element"
msgstr "element"
#. yXYWE
-#: starmath/inc/smmod.hrc:77
+#: starmath/inc/smmod.hrc:79
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "noelement"
msgstr "geenelement"
#. nDkSp
-#: starmath/inc/smmod.hrc:78
+#: starmath/inc/smmod.hrc:80
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlylessthan"
msgstr "strengminderas"
#. 9AZxy
-#: starmath/inc/smmod.hrc:79
+#: starmath/inc/smmod.hrc:81
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlygreaterthan"
msgstr "strengmeeras"
#. 4F3qH
-#: starmath/inc/smmod.hrc:80
+#: starmath/inc/smmod.hrc:82
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "notequal"
msgstr "niegelykaan"
#. 6UYC3
-#: starmath/inc/smmod.hrc:81
+#: starmath/inc/smmod.hrc:83
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "identical"
msgstr "identies"
#. 38B2B
-#: starmath/inc/smmod.hrc:82
+#: starmath/inc/smmod.hrc:84
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tendto"
msgstr "neigna"
#. kDCC4
-#: starmath/inc/smmod.hrc:83
+#: starmath/inc/smmod.hrc:85
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "infinite"
msgstr "oneindig"
#. CnJUL
-#: starmath/inc/smmod.hrc:84
+#: starmath/inc/smmod.hrc:86
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "angle"
msgstr "hoek"
#. MVfFZ
-#: starmath/inc/smmod.hrc:85
+#: starmath/inc/smmod.hrc:87
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "perthousand"
msgstr "perduisend"
#. tqFYX
-#: starmath/inc/smmod.hrc:86
+#: starmath/inc/smmod.hrc:88
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "and"
msgstr "en"
#. jFASF
-#: starmath/inc/smmod.hrc:87
+#: starmath/inc/smmod.hrc:89
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "or"
msgstr "of"
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index 0f29fa987b3..f8bfd96777b 100644
--- a/source/af/svtools/messages.po
+++ b/source/af/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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2022-02-04 11:39+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/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: 1560975732.000000\n"
#. fLdeV
@@ -1799,115 +1799,115 @@ msgid "_Yes"
msgstr "_Ja"
#. tBGDJ
-#: svtools/inc/borderline.hrc:17
+#: svtools/inc/borderline.hrc:18
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "None"
msgstr "Geen"
#. Xx4Fb
-#: svtools/inc/borderline.hrc:18
+#: svtools/inc/borderline.hrc:19
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Solid"
msgstr "Solied"
#. Paqxg
-#: svtools/inc/borderline.hrc:19
+#: svtools/inc/borderline.hrc:20
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dotted"
msgstr "Stippels"
#. Bucas
-#: svtools/inc/borderline.hrc:20
+#: svtools/inc/borderline.hrc:21
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dashed"
msgstr "Strepies"
#. 6XEca
-#: svtools/inc/borderline.hrc:21
+#: svtools/inc/borderline.hrc:22
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double"
msgstr "Dubbel"
#. fB75B
-#: svtools/inc/borderline.hrc:22
+#: svtools/inc/borderline.hrc:23
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Small Gap"
msgstr "Dun-dik, klein gaping"
#. MwnWC
-#: svtools/inc/borderline.hrc:23
+#: svtools/inc/borderline.hrc:24
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Medium Gap"
msgstr "Dun-dik, middelslag gaping"
#. V2QAy
-#: svtools/inc/borderline.hrc:24
+#: svtools/inc/borderline.hrc:25
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Large Gap"
msgstr "Dun-dik, groot gaping"
#. 4pwSe
-#: svtools/inc/borderline.hrc:25
+#: svtools/inc/borderline.hrc:26
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Small Gap"
msgstr "Dik-dun, klein gaping"
#. PYjTF
-#: svtools/inc/borderline.hrc:26
+#: svtools/inc/borderline.hrc:27
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Medium Gap"
msgstr "Dik-dun, middelslag gaping"
#. EYXfK
-#: svtools/inc/borderline.hrc:27
+#: svtools/inc/borderline.hrc:28
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Large Gap"
msgstr "Dik-dun, groot gaping"
#. 7gh6t
-#: svtools/inc/borderline.hrc:28
+#: svtools/inc/borderline.hrc:29
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Embossed"
msgstr "Geëmbosseer"
#. WK8Yy
-#: svtools/inc/borderline.hrc:29
+#: svtools/inc/borderline.hrc:30
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Engraved"
msgstr "Gegraveer"
#. NDS6G
-#: svtools/inc/borderline.hrc:30
+#: svtools/inc/borderline.hrc:31
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Outset"
msgstr "Buite"
#. 7m7iw
-#: svtools/inc/borderline.hrc:31
+#: svtools/inc/borderline.hrc:32
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Inset"
msgstr "Binne"
#. F9rwV
-#: svtools/inc/borderline.hrc:32
+#: svtools/inc/borderline.hrc:33
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Fine Dashed"
msgstr "Fyn strepies"
#. GyT7A
-#: svtools/inc/borderline.hrc:33
+#: svtools/inc/borderline.hrc:34
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double Thin"
msgstr "Fyn dubbel"
#. FyVvE
-#: svtools/inc/borderline.hrc:34
+#: svtools/inc/borderline.hrc:35
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot"
msgstr "Streep-stip"
#. 7yoVE
-#: svtools/inc/borderline.hrc:35
+#: svtools/inc/borderline.hrc:36
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot Dot"
msgstr "Streep-stip-stip"
@@ -2563,2473 +2563,2473 @@ msgid "$(ERR) activating object"
msgstr "$(ERR) tydens aktivering van objek"
#. jGYA8
-#: svtools/inc/langtab.hrc:28
+#: svtools/inc/langtab.hrc:29
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "[None]"
msgstr "[Geen]"
#. aUWzb
-#: svtools/inc/langtab.hrc:29
+#: svtools/inc/langtab.hrc:30
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Unknown"
msgstr "Onbekend"
#. AQgxZ
-#: svtools/inc/langtab.hrc:30 svtools/inc/langtab.hrc:31
+#: svtools/inc/langtab.hrc:31 svtools/inc/langtab.hrc:32
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Default"
msgstr "Verstek"
#. hsqmD
-#: svtools/inc/langtab.hrc:32
+#: svtools/inc/langtab.hrc:33
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (South Africa)"
msgstr "Afrikaans (Suid-Afrika)"
#. TVGco
-#: svtools/inc/langtab.hrc:33
+#: svtools/inc/langtab.hrc:34
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Albanian"
msgstr "Albanees"
#. unNc6
-#: svtools/inc/langtab.hrc:34
+#: svtools/inc/langtab.hrc:35
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic"
msgstr "Arabies"
#. yStAU
-#: svtools/inc/langtab.hrc:35
+#: svtools/inc/langtab.hrc:36
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Algeria)"
msgstr "Arabies (Algerië)"
#. 6GPFd
-#: svtools/inc/langtab.hrc:36
+#: svtools/inc/langtab.hrc:37
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Bahrain)"
msgstr "Arabies (Bahrein)"
#. tvtct
-#: svtools/inc/langtab.hrc:37
+#: svtools/inc/langtab.hrc:38
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Chad)"
msgstr "Arabies (Tjad)"
#. sAaq7
-#: svtools/inc/langtab.hrc:38
+#: svtools/inc/langtab.hrc:39
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Comoros)"
msgstr "Arabies (Comore)"
#. CtwpU
-#: svtools/inc/langtab.hrc:39
+#: svtools/inc/langtab.hrc:40
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Djibouti)"
msgstr "Arabies (Djibouti)"
#. XgGyg
-#: svtools/inc/langtab.hrc:40
+#: svtools/inc/langtab.hrc:41
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Egypt)"
msgstr "Arabies (Egipte)"
#. iwYQR
-#: svtools/inc/langtab.hrc:41
+#: svtools/inc/langtab.hrc:42
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Eritrea)"
msgstr "Arabies (Eritrea)"
#. nKF3r
-#: svtools/inc/langtab.hrc:42
+#: svtools/inc/langtab.hrc:43
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Iraq)"
msgstr "Arabies (Irak)"
#. JdGNA
-#: svtools/inc/langtab.hrc:43
+#: svtools/inc/langtab.hrc:44
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Israel)"
msgstr "Arabies (Israel)"
#. bVjMH
-#: svtools/inc/langtab.hrc:44
+#: svtools/inc/langtab.hrc:45
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Jordan)"
msgstr "Arabies (Jordanië)"
#. 2tQFC
-#: svtools/inc/langtab.hrc:45
+#: svtools/inc/langtab.hrc:46
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Kuwait)"
msgstr "Arabies (Koeweit)"
#. EvECi
-#: svtools/inc/langtab.hrc:46
+#: svtools/inc/langtab.hrc:47
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Lebanon)"
msgstr "Arabies (Libanon)"
#. AWBGA
-#: svtools/inc/langtab.hrc:47
+#: svtools/inc/langtab.hrc:48
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Libya)"
msgstr "Arabies (Libië)"
#. FBSpG
-#: svtools/inc/langtab.hrc:48
+#: svtools/inc/langtab.hrc:49
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Mauritania)"
msgstr "Arabies (Mauritanië)"
#. YmCZY
-#: svtools/inc/langtab.hrc:49
+#: svtools/inc/langtab.hrc:50
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Morocco)"
msgstr "Arabies (Marokko)"
#. VB6tk
-#: svtools/inc/langtab.hrc:50
+#: svtools/inc/langtab.hrc:51
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Oman)"
msgstr "Arabies (Oman)"
#. ErqSh
-#: svtools/inc/langtab.hrc:51
+#: svtools/inc/langtab.hrc:52
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Palestine)"
msgstr "Arabies (Palestina)"
#. nURdz
-#: svtools/inc/langtab.hrc:52
+#: svtools/inc/langtab.hrc:53
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Qatar)"
msgstr "Arabies (Katar)"
#. FdyFU
-#: svtools/inc/langtab.hrc:53
+#: svtools/inc/langtab.hrc:54
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Saudi Arabia)"
msgstr "Arabies (Saoedi-Arabië)"
#. x8UtA
-#: svtools/inc/langtab.hrc:54
+#: svtools/inc/langtab.hrc:55
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Somalia)"
msgstr "Arabies (Somalië)"
#. y9ptg
-#: svtools/inc/langtab.hrc:55
+#: svtools/inc/langtab.hrc:56
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Sudan)"
msgstr "Arabies (Soedan)"
#. caDrq
-#: svtools/inc/langtab.hrc:56
+#: svtools/inc/langtab.hrc:57
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Syria)"
msgstr "Arabies (Sirië)"
#. TqKZQ
-#: svtools/inc/langtab.hrc:57
+#: svtools/inc/langtab.hrc:58
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Tunisia)"
msgstr "Arabies (Tunisië)"
#. VfYi2
-#: svtools/inc/langtab.hrc:58
+#: svtools/inc/langtab.hrc:59
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (UAE)"
msgstr "Arabies(UAE)"
#. f7D5o
-#: svtools/inc/langtab.hrc:59
+#: svtools/inc/langtab.hrc:60
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Yemen)"
msgstr "Arabies (Jemen)"
#. vDhQJ
-#: svtools/inc/langtab.hrc:60
+#: svtools/inc/langtab.hrc:61
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aragonese"
msgstr "Aragonees"
#. yE4TR
-#: svtools/inc/langtab.hrc:61
+#: svtools/inc/langtab.hrc:62
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Armenia)"
msgstr "Armeens, Oos (Armenië)"
#. bacGJ
-#: svtools/inc/langtab.hrc:62
+#: svtools/inc/langtab.hrc:63
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Assamese"
msgstr "Assamees"
#. xAg9Q
-#: svtools/inc/langtab.hrc:63
+#: svtools/inc/langtab.hrc:64
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Latin"
msgstr "Azerbeidjans, Latyn"
#. juADB
-#: svtools/inc/langtab.hrc:64
+#: svtools/inc/langtab.hrc:65
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Cyrillic"
msgstr "Azerbeidjans, Cyrillies"
#. C3C7G
-#: svtools/inc/langtab.hrc:65
+#: svtools/inc/langtab.hrc:66
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Basque"
msgstr "Baskies"
#. dJPsj
-#: svtools/inc/langtab.hrc:66
+#: svtools/inc/langtab.hrc:67
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (India)"
msgstr "Bengaals (Indië)"
#. K6cbb
-#: svtools/inc/langtab.hrc:67
+#: svtools/inc/langtab.hrc:68
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bulgarian"
msgstr "Bulgaars"
#. sBBmA
-#: svtools/inc/langtab.hrc:68
+#: svtools/inc/langtab.hrc:69
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Belarusian"
msgstr "Witrussies"
#. 3SEoJ
-#: svtools/inc/langtab.hrc:69
+#: svtools/inc/langtab.hrc:70
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan"
msgstr "Katalaans"
#. PoUeZ
-#: svtools/inc/langtab.hrc:70
+#: svtools/inc/langtab.hrc:71
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan (Valencian)"
msgstr "Katalaans (Valencia)"
#. ErGw2
-#: svtools/inc/langtab.hrc:71
+#: svtools/inc/langtab.hrc:72
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (traditional)"
msgstr "Sjinees (tradisioneel)"
#. Gbige
-#: svtools/inc/langtab.hrc:72
+#: svtools/inc/langtab.hrc:73
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (simplified)"
msgstr "Sjinees (vereenvoudig)"
#. WzgGw
-#: svtools/inc/langtab.hrc:73
+#: svtools/inc/langtab.hrc:74
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Hong Kong)"
msgstr "Sjinees (Hongkong)"
#. Kfrv5
-#: svtools/inc/langtab.hrc:74
+#: svtools/inc/langtab.hrc:75
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Singapore)"
msgstr "Sjinees (Singapoer)"
#. BSHqu
-#: svtools/inc/langtab.hrc:75
+#: svtools/inc/langtab.hrc:76
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Macau)"
msgstr "Sjinees (Macau)"
#. FMwd9
-#: svtools/inc/langtab.hrc:76
+#: svtools/inc/langtab.hrc:77
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Church Slavic"
msgstr "Kerk-Slawies"
#. cAkoV
-#: svtools/inc/langtab.hrc:77
+#: svtools/inc/langtab.hrc:78
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Croatian"
msgstr "Kroaties"
#. DjdDj
-#: svtools/inc/langtab.hrc:78
+#: svtools/inc/langtab.hrc:79
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Czech"
msgstr "Tsjeggies"
#. xnGM2
-#: svtools/inc/langtab.hrc:79
+#: svtools/inc/langtab.hrc:80
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Danish"
msgstr "Deens"
#. yMGyj
-#: svtools/inc/langtab.hrc:80
+#: svtools/inc/langtab.hrc:81
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Netherlands)"
msgstr "Nederlands (Nederland)"
#. qgJE9
-#: svtools/inc/langtab.hrc:81
+#: svtools/inc/langtab.hrc:82
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Belgium)"
msgstr "Nederlands (België)"
#. STsDT
-#: svtools/inc/langtab.hrc:82
+#: svtools/inc/langtab.hrc:83
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (USA)"
msgstr "Engels (VSA)"
#. aCBBC
-#: svtools/inc/langtab.hrc:83
+#: svtools/inc/langtab.hrc:84
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (UK)"
msgstr "Engels (VK)"
#. 46Cte
-#: svtools/inc/langtab.hrc:84
+#: svtools/inc/langtab.hrc:85
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English, OED spelling (UK)"
msgstr "Engels, OED-spelling (VK)"
#. XCJAF
-#: svtools/inc/langtab.hrc:85
+#: svtools/inc/langtab.hrc:86
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Australia)"
msgstr "Engels (Australië)"
#. KPGdA
-#: svtools/inc/langtab.hrc:86
+#: svtools/inc/langtab.hrc:87
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Canada)"
msgstr "Engels (Kanada)"
#. vGWET
-#: svtools/inc/langtab.hrc:87
+#: svtools/inc/langtab.hrc:88
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (New Zealand)"
msgstr "Engels (Nieu-Seeland)"
#. JpNB4
-#: svtools/inc/langtab.hrc:88
+#: svtools/inc/langtab.hrc:89
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ireland)"
msgstr "Engels (Ierland)"
#. RYtwA
-#: svtools/inc/langtab.hrc:89
+#: svtools/inc/langtab.hrc:90
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (South Africa)"
msgstr "Engels (Suid-Afrika)"
#. fEWbR
-#: svtools/inc/langtab.hrc:90
+#: svtools/inc/langtab.hrc:91
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Jamaica)"
msgstr "Engels (Jamaika)"
#. 4tDmL
-#: svtools/inc/langtab.hrc:91
+#: svtools/inc/langtab.hrc:92
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Caribbean)"
msgstr "Engels (Karibiese Eilande)"
#. craLz
-#: svtools/inc/langtab.hrc:92
+#: svtools/inc/langtab.hrc:93
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Belize)"
msgstr "Engels (Belize)"
#. oAnX9
-#: svtools/inc/langtab.hrc:93
+#: svtools/inc/langtab.hrc:94
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Trinidad)"
msgstr "Engels (Trinidad)"
#. DbBaG
-#: svtools/inc/langtab.hrc:94
+#: svtools/inc/langtab.hrc:95
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zimbabwe)"
msgstr "Engels (Zimbabwe)"
#. bGuDT
-#: svtools/inc/langtab.hrc:95
+#: svtools/inc/langtab.hrc:96
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Philippines)"
msgstr "Engels (Filippyne)"
#. sf7j9
-#: svtools/inc/langtab.hrc:96
+#: svtools/inc/langtab.hrc:97
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (India)"
msgstr "Engels (Indië)"
#. uqECc
-#: svtools/inc/langtab.hrc:97
+#: svtools/inc/langtab.hrc:98
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Estonian"
msgstr "Estnies"
#. AGGnV
-#: svtools/inc/langtab.hrc:98
+#: svtools/inc/langtab.hrc:99
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Finnish"
msgstr "Fins"
#. UyH2X
-#: svtools/inc/langtab.hrc:99
+#: svtools/inc/langtab.hrc:100
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Faroese"
msgstr "Faroëes"
#. riCt7
-#: svtools/inc/langtab.hrc:100
+#: svtools/inc/langtab.hrc:101
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Persian"
msgstr "Persies"
#. FSxwV
-#: svtools/inc/langtab.hrc:101
+#: svtools/inc/langtab.hrc:102
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (France)"
msgstr "Frans (Frankryk)"
#. LGkgS
-#: svtools/inc/langtab.hrc:102
+#: svtools/inc/langtab.hrc:103
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Belgium)"
msgstr "Frans (België)"
#. TFQ8G
-#: svtools/inc/langtab.hrc:103
+#: svtools/inc/langtab.hrc:104
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Canada)"
msgstr "Frans (Kanada)"
#. 8NnQa
-#: svtools/inc/langtab.hrc:104
+#: svtools/inc/langtab.hrc:105
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Switzerland)"
msgstr "Frans (Switserland)"
#. DkXiH
-#: svtools/inc/langtab.hrc:105
+#: svtools/inc/langtab.hrc:106
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Luxembourg)"
msgstr "Frans (Luxemburg)"
#. 8BeKQ
-#: svtools/inc/langtab.hrc:106
+#: svtools/inc/langtab.hrc:107
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Monaco)"
msgstr "Frans (Monaco)"
#. DoQUZ
-#: svtools/inc/langtab.hrc:107
+#: svtools/inc/langtab.hrc:108
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gascon"
msgstr "Gaskons"
#. 6m5ud
-#: svtools/inc/langtab.hrc:108
+#: svtools/inc/langtab.hrc:109
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Germany)"
msgstr "Duits (Duitsland)"
#. bTDdf
-#: svtools/inc/langtab.hrc:109
+#: svtools/inc/langtab.hrc:110
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Switzerland)"
msgstr "Duits (Switserland)"
#. H6rUb
-#: svtools/inc/langtab.hrc:110
+#: svtools/inc/langtab.hrc:111
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Austria)"
msgstr "Duits (Oostenryk)"
#. EXUrT
-#: svtools/inc/langtab.hrc:111
+#: svtools/inc/langtab.hrc:112
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Luxembourg)"
msgstr "Duits (Luxemburg)"
#. wYXvd
-#: svtools/inc/langtab.hrc:112
+#: svtools/inc/langtab.hrc:113
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Liechtenstein)"
msgstr "Duits (Liechtenstein)"
#. yBvcg
-#: svtools/inc/langtab.hrc:113
+#: svtools/inc/langtab.hrc:114
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek"
msgstr "Grieks"
#. QzGHA
-#: svtools/inc/langtab.hrc:114
+#: svtools/inc/langtab.hrc:115
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gujarati"
msgstr "Goedjarati"
#. gU5Y9
-#: svtools/inc/langtab.hrc:115
+#: svtools/inc/langtab.hrc:116
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hebrew"
msgstr "Hebreeus"
#. vkmai
-#: svtools/inc/langtab.hrc:116
+#: svtools/inc/langtab.hrc:117
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hindi"
msgstr "Hindi"
#. FdD6d
-#: svtools/inc/langtab.hrc:117
+#: svtools/inc/langtab.hrc:118
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian"
msgstr "Hongaars"
#. sRD2B
-#: svtools/inc/langtab.hrc:118
+#: svtools/inc/langtab.hrc:119
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Icelandic"
msgstr "Yslands"
#. K95FW
-#: svtools/inc/langtab.hrc:119
+#: svtools/inc/langtab.hrc:120
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Indonesian"
msgstr "Indonesies"
#. dshDi
-#: svtools/inc/langtab.hrc:120
+#: svtools/inc/langtab.hrc:121
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Italy)"
msgstr "Italiaans (Italië)"
#. DELVB
-#: svtools/inc/langtab.hrc:121
+#: svtools/inc/langtab.hrc:122
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Switzerland)"
msgstr "Italiaans (Switserland)"
#. ruFE2
-#: svtools/inc/langtab.hrc:122
+#: svtools/inc/langtab.hrc:123
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Japanese"
msgstr "Japannees"
#. qFQYv
-#: svtools/inc/langtab.hrc:123
+#: svtools/inc/langtab.hrc:124
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kannada"
msgstr "Kannada"
#. HBG3C
-#: svtools/inc/langtab.hrc:124
+#: svtools/inc/langtab.hrc:125
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (Kashmir)"
msgstr "Kasjmier (Kasjmier)"
#. DwhmJ
-#: svtools/inc/langtab.hrc:125
+#: svtools/inc/langtab.hrc:126
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (India)"
msgstr "Kasjmier (Indië)"
#. UMfCV
-#: svtools/inc/langtab.hrc:126
+#: svtools/inc/langtab.hrc:127
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kazakh"
msgstr "Kasaks"
#. fABxX
-#: svtools/inc/langtab.hrc:127
+#: svtools/inc/langtab.hrc:128
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Konkani"
msgstr "Konkani"
#. 5XXpX
-#: svtools/inc/langtab.hrc:128
+#: svtools/inc/langtab.hrc:129
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Korean (RoK)"
msgstr "Koreaans (RvK)"
#. Ynb76
-#: svtools/inc/langtab.hrc:129
+#: svtools/inc/langtab.hrc:130
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latvian"
msgstr "Letties"
#. C4VrT
-#: svtools/inc/langtab.hrc:130
+#: svtools/inc/langtab.hrc:131
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lithuanian"
msgstr "Litaus"
#. zPNto
-#: svtools/inc/langtab.hrc:131
+#: svtools/inc/langtab.hrc:132
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Macedonian"
msgstr "Masedonies"
#. nVTHg
-#: svtools/inc/langtab.hrc:132
+#: svtools/inc/langtab.hrc:133
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Malaysia)"
msgstr "Maleis (Maleisië)"
#. fwb55
-#: svtools/inc/langtab.hrc:133
+#: svtools/inc/langtab.hrc:134
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Brunei Darussalam)"
msgstr "Maleis (Brunei Darussalam)"
#. 8niko
-#: svtools/inc/langtab.hrc:134
+#: svtools/inc/langtab.hrc:135
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malayalam"
msgstr "Malabaars"
#. wX45Q
-#: svtools/inc/langtab.hrc:135
+#: svtools/inc/langtab.hrc:136
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manipuri"
msgstr "Manipuri"
#. wdBgL
-#: svtools/inc/langtab.hrc:136
+#: svtools/inc/langtab.hrc:137
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Marathi"
msgstr "Marathi"
#. gkEEQ
-#: svtools/inc/langtab.hrc:137
+#: svtools/inc/langtab.hrc:138
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (Nepal)"
msgstr "Nepalees (Nepal)"
#. LaDAA
-#: svtools/inc/langtab.hrc:138
+#: svtools/inc/langtab.hrc:139
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (India)"
msgstr "Nepalees (Indië)"
#. 7HpyY
-#: svtools/inc/langtab.hrc:139
+#: svtools/inc/langtab.hrc:140
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Bokmål"
msgstr "Noors, Bokmål"
#. kCv9u
-#: svtools/inc/langtab.hrc:140
+#: svtools/inc/langtab.hrc:141
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Nynorsk"
msgstr "Noors, Nynorsk"
#. 3BNF8
-#: svtools/inc/langtab.hrc:141
+#: svtools/inc/langtab.hrc:142
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Odia"
msgstr "Oria"
#. KEoWD
-#: svtools/inc/langtab.hrc:142
+#: svtools/inc/langtab.hrc:143
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Polish"
msgstr "Pools"
#. yyj9v
-#: svtools/inc/langtab.hrc:143
+#: svtools/inc/langtab.hrc:144
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Angola)"
msgstr "Portugees (Angola)"
#. hZAXE
-#: svtools/inc/langtab.hrc:144
+#: svtools/inc/langtab.hrc:145
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Portugal)"
msgstr "Portugees (Portugal)"
#. A5CG3
-#: svtools/inc/langtab.hrc:145
+#: svtools/inc/langtab.hrc:146
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Brazil)"
msgstr "Portugees (Brasilië)"
#. EGfKG
-#: svtools/inc/langtab.hrc:146
+#: svtools/inc/langtab.hrc:147
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punjabi"
msgstr "Pandjabi"
#. 4ATDT
-#: svtools/inc/langtab.hrc:147
+#: svtools/inc/langtab.hrc:148
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rhaeto-Romance"
msgstr "Reto-Romaans"
#. TLUGG
-#: svtools/inc/langtab.hrc:148
+#: svtools/inc/langtab.hrc:149
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Romania)"
msgstr "Roemeens (Roemenië)"
#. uCPF7
-#: svtools/inc/langtab.hrc:149
+#: svtools/inc/langtab.hrc:150
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Moldova)"
msgstr "Roemeens (Moldowa)"
#. tJTih
-#: svtools/inc/langtab.hrc:150
+#: svtools/inc/langtab.hrc:151
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Russian"
msgstr "Russies"
#. Rih6F
-#: svtools/inc/langtab.hrc:151
+#: svtools/inc/langtab.hrc:152
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sanskrit"
msgstr "Sanskrit"
#. CyZtm
-#: svtools/inc/langtab.hrc:152
+#: svtools/inc/langtab.hrc:153
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia and Montenegro)"
msgstr "Serwies, Cyrillies (Serwië en Montenegro)"
#. sFnB8
-#: svtools/inc/langtab.hrc:153
+#: svtools/inc/langtab.hrc:154
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia and Montenegro)"
msgstr "Serwies, Latyn (Serwië en Montenegro)"
#. WbsFA
-#: svtools/inc/langtab.hrc:154
+#: svtools/inc/langtab.hrc:155
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia)"
msgstr "Serwies, Cyrillies (Serwië)"
#. WL3zM
-#: svtools/inc/langtab.hrc:155
+#: svtools/inc/langtab.hrc:156
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia)"
msgstr "Serwies, Latyns (Serwië)"
#. JFnsJ
-#: svtools/inc/langtab.hrc:156
+#: svtools/inc/langtab.hrc:157
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Montenegro)"
msgstr "Serwies, Cyrillies (Montenegro)"
#. AHpmF
-#: svtools/inc/langtab.hrc:157
+#: svtools/inc/langtab.hrc:158
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Montenegro)"
msgstr "Serwies, Latyn (Montenegro)"
#. JcJT4
-#: svtools/inc/langtab.hrc:158
+#: svtools/inc/langtab.hrc:159
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin"
msgstr "Serwies, Latyn"
#. ubCyV
-#: svtools/inc/langtab.hrc:159
+#: svtools/inc/langtab.hrc:160
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sidama"
msgstr "Sidama"
#. 66wdH
-#: svtools/inc/langtab.hrc:160
+#: svtools/inc/langtab.hrc:161
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Devanagari"
msgstr "Sindhi, Devanagari"
#. RF77g
-#: svtools/inc/langtab.hrc:161
+#: svtools/inc/langtab.hrc:162
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Arabic"
msgstr "Sindhi, Arabies"
#. E8DXb
-#: svtools/inc/langtab.hrc:162
+#: svtools/inc/langtab.hrc:163
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovak"
msgstr "Slowaaks"
#. GS6BZ
-#: svtools/inc/langtab.hrc:163
+#: svtools/inc/langtab.hrc:164
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovenian"
msgstr "Sloweens"
#. bCFN3
-#: svtools/inc/langtab.hrc:164
+#: svtools/inc/langtab.hrc:165
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Spain)"
msgstr "Spaans (Spanje)"
#. AXKJF
-#: svtools/inc/langtab.hrc:165
+#: svtools/inc/langtab.hrc:166
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Mexico)"
msgstr "Spaans (Meksiko)"
#. 4ExjA
-#: svtools/inc/langtab.hrc:166
+#: svtools/inc/langtab.hrc:167
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Guatemala)"
msgstr "Spaans (Guatemala)"
#. ndaNA
-#: svtools/inc/langtab.hrc:167
+#: svtools/inc/langtab.hrc:168
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Costa Rica)"
msgstr "Spaans (Costa Rica)"
#. rAYvf
-#: svtools/inc/langtab.hrc:168
+#: svtools/inc/langtab.hrc:169
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Panama)"
msgstr "Spaans (Panama)"
#. rwjDV
-#: svtools/inc/langtab.hrc:169
+#: svtools/inc/langtab.hrc:170
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Dom. Rep.)"
msgstr "Spaans (Dom. Rep.)"
#. aeV5T
-#: svtools/inc/langtab.hrc:170
+#: svtools/inc/langtab.hrc:171
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Venezuela)"
msgstr "Spaans (Venezuela)"
#. H4CHi
-#: svtools/inc/langtab.hrc:171
+#: svtools/inc/langtab.hrc:172
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Colombia)"
msgstr "Spaans (Kolombië)"
#. NkaU2
-#: svtools/inc/langtab.hrc:172
+#: svtools/inc/langtab.hrc:173
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Peru)"
msgstr "Spaans (Peru)"
#. 2yKQy
-#: svtools/inc/langtab.hrc:173
+#: svtools/inc/langtab.hrc:174
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Argentina)"
msgstr "Spaans (Argentinië)"
#. cTFoB
-#: svtools/inc/langtab.hrc:174
+#: svtools/inc/langtab.hrc:175
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Ecuador)"
msgstr "Spaans (Ecuador)"
#. Q7iGB
-#: svtools/inc/langtab.hrc:175
+#: svtools/inc/langtab.hrc:176
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Chile)"
msgstr "Spaans (Chili)"
#. SQeC3
-#: svtools/inc/langtab.hrc:176
+#: svtools/inc/langtab.hrc:177
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Uruguay)"
msgstr "Spaans (Uruguay)"
#. EmgTp
-#: svtools/inc/langtab.hrc:177
+#: svtools/inc/langtab.hrc:178
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Paraguay)"
msgstr "Spaans (Paraguay)"
#. T7rLH
-#: svtools/inc/langtab.hrc:178
+#: svtools/inc/langtab.hrc:179
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Bolivia)"
msgstr "Spaans (Bolivia)"
#. GNG7W
-#: svtools/inc/langtab.hrc:179
+#: svtools/inc/langtab.hrc:180
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (El Salvador)"
msgstr "Spaans (El Salvador)"
#. HoGhs
-#: svtools/inc/langtab.hrc:180
+#: svtools/inc/langtab.hrc:181
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Honduras)"
msgstr "Spaans (Honduras)"
#. KgEGv
-#: svtools/inc/langtab.hrc:181
+#: svtools/inc/langtab.hrc:182
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Nicaragua)"
msgstr "Spaans (Nicaragua)"
#. uj9QF
-#: svtools/inc/langtab.hrc:182
+#: svtools/inc/langtab.hrc:183
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Puerto Rico)"
msgstr "Spaans (Puerto Rico)"
#. 3bTTE
-#: svtools/inc/langtab.hrc:183
+#: svtools/inc/langtab.hrc:184
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Kenya)"
msgstr "Swahili (Kenia)"
#. AFhrJ
-#: svtools/inc/langtab.hrc:184
+#: svtools/inc/langtab.hrc:185
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Sweden)"
msgstr "Sweeds (Swede)"
#. BKF86
-#: svtools/inc/langtab.hrc:185
+#: svtools/inc/langtab.hrc:186
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Finland)"
msgstr "Sweeds (Finland)"
#. E6Ede
-#: svtools/inc/langtab.hrc:186
+#: svtools/inc/langtab.hrc:187
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tajik"
msgstr "Tadjik"
#. dAFTH
-#: svtools/inc/langtab.hrc:187
+#: svtools/inc/langtab.hrc:188
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tamil"
msgstr "Tamil"
#. RHZbp
-#: svtools/inc/langtab.hrc:188
+#: svtools/inc/langtab.hrc:189
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tatar"
msgstr "Tatar"
#. pTFA6
-#: svtools/inc/langtab.hrc:189
+#: svtools/inc/langtab.hrc:190
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Telugu"
msgstr "Teloegoe"
#. 3xQFG
-#: svtools/inc/langtab.hrc:190
+#: svtools/inc/langtab.hrc:191
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Thai"
msgstr "Thais"
#. 7SBCF
-#: svtools/inc/langtab.hrc:191
+#: svtools/inc/langtab.hrc:192
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkish"
msgstr "Turks"
#. jg4Y4
-#: svtools/inc/langtab.hrc:192
+#: svtools/inc/langtab.hrc:193
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (Pakistan)"
msgstr "Oerdoe (Pakistan)"
#. reDrZ
-#: svtools/inc/langtab.hrc:193
+#: svtools/inc/langtab.hrc:194
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (India)"
msgstr "Oerdoe (Indië)"
#. AciD4
-#: svtools/inc/langtab.hrc:194
+#: svtools/inc/langtab.hrc:195
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ukrainian"
msgstr "Oekraïens"
#. 9s6wZ
-#: svtools/inc/langtab.hrc:195
+#: svtools/inc/langtab.hrc:196
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Latin"
msgstr "Oesbeeks, Latyn"
#. HrnFi
-#: svtools/inc/langtab.hrc:196
+#: svtools/inc/langtab.hrc:197
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Cyrillic"
msgstr "Oesbeeks, Cyrillies"
#. seQBA
-#: svtools/inc/langtab.hrc:197
+#: svtools/inc/langtab.hrc:198
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Welsh"
msgstr "Wallies"
#. MyZMt
-#: svtools/inc/langtab.hrc:198
+#: svtools/inc/langtab.hrc:199
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latin"
msgstr "Latyn"
#. UxE47
-#: svtools/inc/langtab.hrc:199
+#: svtools/inc/langtab.hrc:200
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Esperanto"
msgstr "Esperanto"
#. QDEQB
-#: svtools/inc/langtab.hrc:200
+#: svtools/inc/langtab.hrc:201
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kinyarwanda (Rwanda)"
msgstr "Kinjarwanda (Rwanda)"
#. VDEdz
-#: svtools/inc/langtab.hrc:201
+#: svtools/inc/langtab.hrc:202
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maori"
msgstr "Maori"
#. BCRzB
-#: svtools/inc/langtab.hrc:202
+#: svtools/inc/langtab.hrc:203
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Galician"
msgstr "Galisies"
#. EJSEG
-#: svtools/inc/langtab.hrc:203
+#: svtools/inc/langtab.hrc:204
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dhivehi"
msgstr "Divehies"
#. HyrCw
-#: svtools/inc/langtab.hrc:204
+#: svtools/inc/langtab.hrc:205
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Northern Sotho"
msgstr "Noord-Sotho"
#. iZE5p
-#: svtools/inc/langtab.hrc:205
+#: svtools/inc/langtab.hrc:206
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gaelic (Scotland)"
msgstr "Gallies (Skotland)"
#. hUdfG
-#: svtools/inc/langtab.hrc:206
+#: svtools/inc/langtab.hrc:207
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Cyrillic"
msgstr "Mongools, Cyrillies"
#. XSmCF
-#: svtools/inc/langtab.hrc:207
+#: svtools/inc/langtab.hrc:208
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Mongolian"
msgstr "Mongools, Mongools"
#. SmxD2
-#: svtools/inc/langtab.hrc:208
+#: svtools/inc/langtab.hrc:209
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingua"
msgstr "Interlingua"
#. dBUa9
-#: svtools/inc/langtab.hrc:209
+#: svtools/inc/langtab.hrc:210
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bosnian"
msgstr "Bosnies"
#. c29GE
-#: svtools/inc/langtab.hrc:210
+#: svtools/inc/langtab.hrc:211
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (Bangladesh)"
msgstr "Bengaals (Bangladesj)"
#. 9CTyH
-#: svtools/inc/langtab.hrc:211
+#: svtools/inc/langtab.hrc:212
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Occitan"
msgstr "Oksitaans"
#. wRpTQ
-#: svtools/inc/langtab.hrc:212
+#: svtools/inc/langtab.hrc:213
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khmer"
msgstr "Khmer"
#. 6C2PP
-#: svtools/inc/langtab.hrc:213
+#: svtools/inc/langtab.hrc:214
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Turkey)"
msgstr "Koerdies, Noord (Turkye)"
#. JBSdg
-#: svtools/inc/langtab.hrc:214
+#: svtools/inc/langtab.hrc:215
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Syria)"
msgstr "Koerdies, Noord (Sirië)"
#. 7LmT2
-#: svtools/inc/langtab.hrc:215
+#: svtools/inc/langtab.hrc:216
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iraq)"
msgstr "Koerdies, Sentraal (Irak)"
#. rzDHD
-#: svtools/inc/langtab.hrc:216
+#: svtools/inc/langtab.hrc:217
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iran)"
msgstr "Koerdies, Sentraal (Iran)"
#. CeAFw
-#: svtools/inc/langtab.hrc:217
+#: svtools/inc/langtab.hrc:218
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iran)"
msgstr "Koerdies, Suid (Iran)"
#. epbri
-#: svtools/inc/langtab.hrc:218
+#: svtools/inc/langtab.hrc:219
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iraq)"
msgstr "Koerdies, Suid (Irak)"
#. 2KhAB
-#: svtools/inc/langtab.hrc:219
+#: svtools/inc/langtab.hrc:220
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian"
msgstr "Sardinies"
#. 3sZxr
-#: svtools/inc/langtab.hrc:220
+#: svtools/inc/langtab.hrc:221
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dzongkha"
msgstr "Dzongkha"
#. NdNMD
-#: svtools/inc/langtab.hrc:221
+#: svtools/inc/langtab.hrc:222
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Tanzania)"
msgstr "Swahili (Tanzanië)"
#. ywH3p
-#: svtools/inc/langtab.hrc:222
+#: svtools/inc/langtab.hrc:223
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lao"
msgstr "Lao"
#. HNY5w
-#: svtools/inc/langtab.hrc:223
+#: svtools/inc/langtab.hrc:224
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Irish"
msgstr "Iers"
#. oGuLJ
-#: svtools/inc/langtab.hrc:224
+#: svtools/inc/langtab.hrc:225
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (PR China)"
msgstr "Tibettaans (VR Sjina)"
#. DpbUS
-#: svtools/inc/langtab.hrc:225
+#: svtools/inc/langtab.hrc:226
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Georgian"
msgstr "Georgies"
#. vXTTC
-#: svtools/inc/langtab.hrc:226
+#: svtools/inc/langtab.hrc:227
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Frisian"
msgstr "Fries"
#. hYSBQ
-#: svtools/inc/langtab.hrc:227
+#: svtools/inc/langtab.hrc:228
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (South Africa)"
msgstr "Tswana (Suid-Afrika)"
#. iBrft
-#: svtools/inc/langtab.hrc:228
+#: svtools/inc/langtab.hrc:229
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Zulu"
msgstr "Zoeloe"
#. efx7v
-#: svtools/inc/langtab.hrc:229
+#: svtools/inc/langtab.hrc:230
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vietnamese"
msgstr "Viëtnamees"
#. uik8N
-#: svtools/inc/langtab.hrc:230
+#: svtools/inc/langtab.hrc:231
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Breton"
msgstr "Bretons"
#. UuDPF
-#: svtools/inc/langtab.hrc:231
+#: svtools/inc/langtab.hrc:232
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kalaallisut"
msgstr "Kalaallisut"
#. h8yi2
-#: svtools/inc/langtab.hrc:232
+#: svtools/inc/langtab.hrc:233
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ndebele, South"
msgstr "Ndebele, Suid"
#. GAkRJ
-#: svtools/inc/langtab.hrc:233
+#: svtools/inc/langtab.hrc:234
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Southern Sotho"
msgstr "Suid-Sotho"
#. 2beka
-#: svtools/inc/langtab.hrc:234
+#: svtools/inc/langtab.hrc:235
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swazi"
msgstr "Swazi"
#. GFCYC
-#: svtools/inc/langtab.hrc:235
+#: svtools/inc/langtab.hrc:236
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsonga"
msgstr "Tsonga"
#. Fd3yC
-#: svtools/inc/langtab.hrc:236
+#: svtools/inc/langtab.hrc:237
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venda"
msgstr "Venda"
#. BQkT8
-#: svtools/inc/langtab.hrc:237
+#: svtools/inc/langtab.hrc:238
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (Botswana)"
msgstr "Tswana (Botswana)"
#. aCLs3
-#: svtools/inc/langtab.hrc:238
+#: svtools/inc/langtab.hrc:239
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xhosa"
msgstr "Xhosa"
#. 8tGkA
-#: svtools/inc/langtab.hrc:239
+#: svtools/inc/langtab.hrc:240
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sinhala"
msgstr "Sinhalees"
#. MyZBb
-#: svtools/inc/langtab.hrc:240
+#: svtools/inc/langtab.hrc:241
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moore"
msgstr "Moore"
#. MuwMr
-#: svtools/inc/langtab.hrc:241
+#: svtools/inc/langtab.hrc:242
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bambara"
msgstr "Bambarees"
#. ohYHE
-#: svtools/inc/langtab.hrc:242
+#: svtools/inc/langtab.hrc:243
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Akan"
msgstr "Akan"
#. Rpc24
-#: svtools/inc/langtab.hrc:243
+#: svtools/inc/langtab.hrc:244
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Luxembourgish"
msgstr "Luxemburgs"
#. TPr9P
-#: svtools/inc/langtab.hrc:244
+#: svtools/inc/langtab.hrc:245
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Friulian"
msgstr "Frioelies"
#. XFeaU
-#: svtools/inc/langtab.hrc:245
+#: svtools/inc/langtab.hrc:246
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fijian"
msgstr "Fijianees"
#. DmEsD
-#: svtools/inc/langtab.hrc:246
+#: svtools/inc/langtab.hrc:247
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (Namibia)"
msgstr "Afrikaans (Namibië)"
#. 2dS3j
-#: svtools/inc/langtab.hrc:247
+#: svtools/inc/langtab.hrc:248
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Namibia)"
msgstr "Engels (Namibië)"
#. pxpQo
-#: svtools/inc/langtab.hrc:248
+#: svtools/inc/langtab.hrc:249
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Walloon"
msgstr "Waals"
#. uSw8S
-#: svtools/inc/langtab.hrc:249
+#: svtools/inc/langtab.hrc:250
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Coptic"
msgstr "Kopties"
#. cXUkb
-#: svtools/inc/langtab.hrc:250
+#: svtools/inc/langtab.hrc:251
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Eritrea)"
msgstr "Tigrinja (Eritrea)"
#. 4X4SP
-#: svtools/inc/langtab.hrc:251
+#: svtools/inc/langtab.hrc:252
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Ethiopia)"
msgstr "Tigrinja (Etiopië)"
#. vebCw
-#: svtools/inc/langtab.hrc:252
+#: svtools/inc/langtab.hrc:253
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Amharic"
msgstr "Amharies"
#. wVfCr
-#: svtools/inc/langtab.hrc:253
+#: svtools/inc/langtab.hrc:254
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kirghiz"
msgstr "Kirgisies"
#. zCrUd
-#: svtools/inc/langtab.hrc:254
+#: svtools/inc/langtab.hrc:255
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Belgium)"
msgstr "Duits (België)"
#. bZjgG
-#: svtools/inc/langtab.hrc:255
+#: svtools/inc/langtab.hrc:256
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chuvash"
msgstr "Tjuvashies"
#. Hhf2V
-#: svtools/inc/langtab.hrc:256
+#: svtools/inc/langtab.hrc:257
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Burmese"
msgstr "Birmaans"
#. YCarY
-#: svtools/inc/langtab.hrc:257
+#: svtools/inc/langtab.hrc:258
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Nigeria)"
msgstr "Hausa (Nigerië)"
#. JXCmu
-#: svtools/inc/langtab.hrc:258
+#: svtools/inc/langtab.hrc:259
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Ghana)"
msgstr "Hausa (Ghana)"
#. 7jrGb
-#: svtools/inc/langtab.hrc:259
+#: svtools/inc/langtab.hrc:260
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Éwé"
msgstr "Éwé"
#. QWBZG
-#: svtools/inc/langtab.hrc:260
+#: svtools/inc/langtab.hrc:261
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ghana)"
msgstr "Engels (Ghana)"
#. pAEtz
-#: svtools/inc/langtab.hrc:261
+#: svtools/inc/langtab.hrc:262
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sango"
msgstr "Sango"
#. L9sDt
-#: svtools/inc/langtab.hrc:262
+#: svtools/inc/langtab.hrc:263
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tagalog"
msgstr "Tagalog"
#. iFSZs
-#: svtools/inc/langtab.hrc:263
+#: svtools/inc/langtab.hrc:264
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ganda"
msgstr "Gandanees"
#. Gdbhz
-#: svtools/inc/langtab.hrc:264
+#: svtools/inc/langtab.hrc:265
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lingala"
msgstr "Lingala"
#. TnDKB
-#: svtools/inc/langtab.hrc:265
+#: svtools/inc/langtab.hrc:266
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Low German"
msgstr "Laer Duits"
#. Yr5hK
-#: svtools/inc/langtab.hrc:266
+#: svtools/inc/langtab.hrc:267
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hiligaynon"
msgstr "Hiligaynon"
#. nF96G
-#: svtools/inc/langtab.hrc:267
+#: svtools/inc/langtab.hrc:268
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nyanja"
msgstr "Nyanja"
#. v4jmr
-#: svtools/inc/langtab.hrc:268
+#: svtools/inc/langtab.hrc:269
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashubian"
msgstr "Kasjoebies"
#. nbEp5
-#: svtools/inc/langtab.hrc:269
+#: svtools/inc/langtab.hrc:270
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Cuba)"
msgstr "Spaans (Kuba)"
#. CGkDF
-#: svtools/inc/langtab.hrc:270
+#: svtools/inc/langtab.hrc:271
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Indonesia)"
msgstr "Tetoens (Indonesië)"
#. yXqvC
-#: svtools/inc/langtab.hrc:271
+#: svtools/inc/langtab.hrc:272
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, North)"
msgstr "Quechua (Bolivia, Noord)"
#. V3XMi
-#: svtools/inc/langtab.hrc:272
+#: svtools/inc/langtab.hrc:273
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, South)"
msgstr "Quechua (Bolivia, Suid)"
#. 3WCP7
-#: svtools/inc/langtab.hrc:273
+#: svtools/inc/langtab.hrc:274
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Somali"
msgstr "Somalies"
#. zFoBp
-#: svtools/inc/langtab.hrc:274
+#: svtools/inc/langtab.hrc:275
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Inari (Finland)"
msgstr "Sami, Inari (Finland)"
#. FJAQR
-#: svtools/inc/langtab.hrc:275
+#: svtools/inc/langtab.hrc:276
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Norway)"
msgstr "Sami, Lule (Noorweë)"
#. yBxW5
-#: svtools/inc/langtab.hrc:276
+#: svtools/inc/langtab.hrc:277
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Sweden)"
msgstr "Sami, Lule (Swede)"
#. 8yPLy
-#: svtools/inc/langtab.hrc:277
+#: svtools/inc/langtab.hrc:278
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Finland)"
msgstr "Sami, Noord (Finland)"
#. SQTD9
-#: svtools/inc/langtab.hrc:278
+#: svtools/inc/langtab.hrc:279
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Norway)"
msgstr "Sami, Noord (Noorweë)"
#. BHGpD
-#: svtools/inc/langtab.hrc:279
+#: svtools/inc/langtab.hrc:280
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Sweden)"
msgstr "Sami, Noord (Swede)"
#. cdYkC
-#: svtools/inc/langtab.hrc:280
+#: svtools/inc/langtab.hrc:281
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Skolt (Finland)"
msgstr "Sami, Skolt (Finland)"
#. od3Hp
-#: svtools/inc/langtab.hrc:281
+#: svtools/inc/langtab.hrc:282
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Norway)"
msgstr "Sami, Suid (Noorweë)"
#. 5Ueff
-#: svtools/inc/langtab.hrc:282
+#: svtools/inc/langtab.hrc:283
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Sweden)"
msgstr "Sami, Suid (Swede)"
#. 7x4mU
-#: svtools/inc/langtab.hrc:283
+#: svtools/inc/langtab.hrc:284
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Kildin (Russia)"
msgstr "Sami, Kildin (Rusland)"
#. A5Crw
-#: svtools/inc/langtab.hrc:284
+#: svtools/inc/langtab.hrc:285
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guarani (Paraguay)"
msgstr "Guaranees (Paraguay)"
#. ESc5d
-#: svtools/inc/langtab.hrc:285
+#: svtools/inc/langtab.hrc:286
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bodo"
msgstr "Bodo"
#. sSAvV
-#: svtools/inc/langtab.hrc:286
+#: svtools/inc/langtab.hrc:287
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dogri"
msgstr "Dogri"
#. f2nfh
-#: svtools/inc/langtab.hrc:287
+#: svtools/inc/langtab.hrc:288
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maithili"
msgstr "Maithili"
#. Rm94B
-#: svtools/inc/langtab.hrc:288
+#: svtools/inc/langtab.hrc:289
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Santali"
msgstr "Santali"
#. C7EGu
-#: svtools/inc/langtab.hrc:289
+#: svtools/inc/langtab.hrc:290
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Timor-Leste)"
msgstr "Tetun (Timor-Leste)"
#. JzTF8
-#: svtools/inc/langtab.hrc:290
+#: svtools/inc/langtab.hrc:291
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkmen"
msgstr "Turkmeens"
#. XbECR
-#: svtools/inc/langtab.hrc:291
+#: svtools/inc/langtab.hrc:292
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maltese"
msgstr "Maltees"
#. PJ6DF
-#: svtools/inc/langtab.hrc:292
+#: svtools/inc/langtab.hrc:293
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tok Pisin"
msgstr "Tok Pisin"
#. kAWUo
-#: svtools/inc/langtab.hrc:293
+#: svtools/inc/langtab.hrc:294
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Shuswap"
msgstr "Shuswap"
#. sBWQv
-#: svtools/inc/langtab.hrc:294
+#: svtools/inc/langtab.hrc:295
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Oromo"
msgstr "Oromo"
#. jYDYi
-#: svtools/inc/langtab.hrc:295
+#: svtools/inc/langtab.hrc:296
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek, Ancient"
msgstr "Grieks, Antiek"
#. WY8GH
-#: svtools/inc/langtab.hrc:296
+#: svtools/inc/langtab.hrc:297
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (Israel)"
msgstr "Jiddisj (Israel)"
#. VAWnd
-#: svtools/inc/langtab.hrc:297
+#: svtools/inc/langtab.hrc:298
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Ecuador)"
msgstr "Quechua (Ecuador)"
#. UDB2F
-#: svtools/inc/langtab.hrc:298
+#: svtools/inc/langtab.hrc:299
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uyghur"
msgstr "Uighoers"
#. XAu8x
-#: svtools/inc/langtab.hrc:299
+#: svtools/inc/langtab.hrc:300
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Asturian"
msgstr "Asturies"
#. hwM5p
-#: svtools/inc/langtab.hrc:300
+#: svtools/inc/langtab.hrc:301
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Upper"
msgstr "Sorbies, Bo"
#. iGTFG
-#: svtools/inc/langtab.hrc:301
+#: svtools/inc/langtab.hrc:302
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Lower"
msgstr "Sorbies, Onder"
#. RvdrP
-#: svtools/inc/langtab.hrc:302
+#: svtools/inc/langtab.hrc:303
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latgalian"
msgstr "Latgaliaans"
#. 94i7A
-#: svtools/inc/langtab.hrc:303
+#: svtools/inc/langtab.hrc:304
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maore"
msgstr "Maore"
#. FeuXJ
-#: svtools/inc/langtab.hrc:304
+#: svtools/inc/langtab.hrc:305
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bushi"
msgstr "Bushi"
#. CWFtg
-#: svtools/inc/langtab.hrc:305
+#: svtools/inc/langtab.hrc:306
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tahitian"
msgstr "Tahitiaans"
#. TDoMB
-#: svtools/inc/langtab.hrc:306
+#: svtools/inc/langtab.hrc:307
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malagasy, Plateau"
msgstr "Malgasies, Plato"
#. EVG88
-#: svtools/inc/langtab.hrc:307
+#: svtools/inc/langtab.hrc:308
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamentu (Netherlands Antilles)"
msgstr "Papiaments (Nederlandse Antille)"
#. fbGn8
-#: svtools/inc/langtab.hrc:308
+#: svtools/inc/langtab.hrc:309
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Aruba)"
msgstr "Papiaments (Aruba)"
#. 9XBNE
-#: svtools/inc/langtab.hrc:309
+#: svtools/inc/langtab.hrc:310
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Campidanese"
msgstr "Sardiniaans"
#. d2kAw
-#: svtools/inc/langtab.hrc:310
+#: svtools/inc/langtab.hrc:311
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Gallurese"
msgstr "Sardinies, Gallurese"
#. cJATX
-#: svtools/inc/langtab.hrc:311
+#: svtools/inc/langtab.hrc:312
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Logudorese"
msgstr "Sardinies, Logudorese"
#. PJFYt
-#: svtools/inc/langtab.hrc:312
+#: svtools/inc/langtab.hrc:313
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Sassarese"
msgstr "Sardinies, Sassarees"
#. oDLAc
-#: svtools/inc/langtab.hrc:313
+#: svtools/inc/langtab.hrc:314
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bafia"
msgstr "Bafiaans"
#. 598zD
-#: svtools/inc/langtab.hrc:314
+#: svtools/inc/langtab.hrc:315
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gikuyu"
msgstr "Gikuyu"
#. PFxrW
-#: svtools/inc/langtab.hrc:315
+#: svtools/inc/langtab.hrc:316
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yoruba"
msgstr "Joruba"
#. jajFo
-#: svtools/inc/langtab.hrc:316
+#: svtools/inc/langtab.hrc:317
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Ukraine)"
msgstr "Rusynees (Oekraïne)"
#. PpWdM
-#: svtools/inc/langtab.hrc:317
+#: svtools/inc/langtab.hrc:318
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Slovakia)"
msgstr "Russies (Slowakye)"
#. Wgo9k
-#: svtools/inc/langtab.hrc:318
+#: svtools/inc/langtab.hrc:319
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabyle Latin"
msgstr "Kabyle Latyn"
#. MSnHB
-#: svtools/inc/langtab.hrc:319
+#: svtools/inc/langtab.hrc:320
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (USA)"
msgstr "Jiddisj (VSA)"
#. uYMRX
-#: svtools/inc/langtab.hrc:320
+#: svtools/inc/langtab.hrc:321
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hawaiian"
msgstr "Hawiaans"
#. DyEGX
-#: svtools/inc/langtab.hrc:321
+#: svtools/inc/langtab.hrc:322
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Limbu"
msgstr "Limbu"
#. 3jGCz
-#: svtools/inc/langtab.hrc:322
+#: svtools/inc/langtab.hrc:323
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lojban"
msgstr "Lojban"
#. Ec3C4
-#: svtools/inc/langtab.hrc:323
+#: svtools/inc/langtab.hrc:324
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Haitian"
msgstr "Haïties"
#. D3Xoy
-#: svtools/inc/langtab.hrc:324
+#: svtools/inc/langtab.hrc:325
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Beembe"
msgstr "Beembe"
#. 6Pkbr
-#: svtools/inc/langtab.hrc:325
+#: svtools/inc/langtab.hrc:326
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bekwel"
msgstr "Bekwel"
#. 8WjqB
-#: svtools/inc/langtab.hrc:326
+#: svtools/inc/langtab.hrc:327
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Congo)"
msgstr "Kituba (Kongo)"
#. hCFcE
-#: svtools/inc/langtab.hrc:327
+#: svtools/inc/langtab.hrc:328
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lari"
msgstr "Lari"
#. KxXpB
-#: svtools/inc/langtab.hrc:328
+#: svtools/inc/langtab.hrc:329
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mbochi"
msgstr "Mbochi"
#. 6FdTq
-#: svtools/inc/langtab.hrc:329
+#: svtools/inc/langtab.hrc:330
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Eboo"
msgstr "Teke-Eboo"
#. FeBzA
-#: svtools/inc/langtab.hrc:330
+#: svtools/inc/langtab.hrc:331
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Ibali"
msgstr "Teke-Ibali"
#. LKetF
-#: svtools/inc/langtab.hrc:331
+#: svtools/inc/langtab.hrc:332
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Tyee"
msgstr "Teke-Tyee"
#. DfVqj
-#: svtools/inc/langtab.hrc:332
+#: svtools/inc/langtab.hrc:333
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vili"
msgstr "Vili"
#. uBEkT
-#: svtools/inc/langtab.hrc:333
+#: svtools/inc/langtab.hrc:334
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "KeyID"
msgstr "SleutelID"
#. maAoG
-#: svtools/inc/langtab.hrc:334
+#: svtools/inc/langtab.hrc:335
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Latin"
msgstr "Pali Latyn"
#. eDDSm
-#: svtools/inc/langtab.hrc:335
+#: svtools/inc/langtab.hrc:336
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kyrgyz (China)"
msgstr "Kyrgyz (China)"
#. RCmma
-#: svtools/inc/langtab.hrc:336
+#: svtools/inc/langtab.hrc:337
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Zyrian"
msgstr "Komi-Zyrian"
#. DLxCK
-#: svtools/inc/langtab.hrc:337
+#: svtools/inc/langtab.hrc:338
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Permyak"
msgstr "Komi-Permjaaks"
#. zRJy3
-#: svtools/inc/langtab.hrc:338
+#: svtools/inc/langtab.hrc:339
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pitjantjatjara"
msgstr "Pitjantjatjara"
#. X2WLD
-#: svtools/inc/langtab.hrc:339
+#: svtools/inc/langtab.hrc:340
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malawi)"
msgstr "Engels (Malawi)"
#. BNve6
-#: svtools/inc/langtab.hrc:340
+#: svtools/inc/langtab.hrc:341
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Erzya"
msgstr "Erzya"
#. bS6vy
-#: svtools/inc/langtab.hrc:341
+#: svtools/inc/langtab.hrc:342
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Meadow"
msgstr "Mari, Meadow"
#. 2YjMT
-#: svtools/inc/langtab.hrc:342
+#: svtools/inc/langtab.hrc:343
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Curaçao)"
msgstr "Papiaments (Curaçao)"
#. QA2V4
-#: svtools/inc/langtab.hrc:343
+#: svtools/inc/langtab.hrc:344
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Bonaire)"
msgstr "Papiaments (Bonaire)"
#. vozw6
-#: svtools/inc/langtab.hrc:344
+#: svtools/inc/langtab.hrc:345
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khanty"
msgstr "Khanties"
#. MBtJM
-#: svtools/inc/langtab.hrc:345
+#: svtools/inc/langtab.hrc:346
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Livonian"
msgstr "Livlands"
#. wNkoh
-#: svtools/inc/langtab.hrc:346
+#: svtools/inc/langtab.hrc:347
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moksha"
msgstr "Mokshaans"
#. uCDU6
-#: svtools/inc/langtab.hrc:347
+#: svtools/inc/langtab.hrc:348
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Hill"
msgstr "Maries, Heuwel"
#. JEhY4
-#: svtools/inc/langtab.hrc:348
+#: svtools/inc/langtab.hrc:349
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nganasan"
msgstr "Nganasaans"
#. hr4pq
-#: svtools/inc/langtab.hrc:349
+#: svtools/inc/langtab.hrc:350
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Olonets"
msgstr "Olonets"
#. Arpn4
-#: svtools/inc/langtab.hrc:350
+#: svtools/inc/langtab.hrc:351
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Veps"
msgstr "Veps"
#. fJ3Ss
-#: svtools/inc/langtab.hrc:351
+#: svtools/inc/langtab.hrc:352
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Võro"
msgstr "Võro"
#. HuWCs
-#: svtools/inc/langtab.hrc:352
+#: svtools/inc/langtab.hrc:353
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nenets"
msgstr "Nenets"
#. 5Zxgd
-#: svtools/inc/langtab.hrc:353
+#: svtools/inc/langtab.hrc:354
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Central African Republic)"
msgstr "Aka (Sentraal Afrikaanse Republiek)"
#. oBDBe
-#: svtools/inc/langtab.hrc:354
+#: svtools/inc/langtab.hrc:355
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Congo)"
msgstr "Aka (Congo)"
#. GRKCD
-#: svtools/inc/langtab.hrc:355
+#: svtools/inc/langtab.hrc:356
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dibole"
msgstr "Dibole"
#. cgMCr
-#: svtools/inc/langtab.hrc:356
+#: svtools/inc/langtab.hrc:357
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Doondo"
msgstr "Doondo"
#. FmhF6
-#: svtools/inc/langtab.hrc:357
+#: svtools/inc/langtab.hrc:358
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kaamba"
msgstr "Kamba"
#. BBf4G
-#: svtools/inc/langtab.hrc:358
+#: svtools/inc/langtab.hrc:359
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Koongo (Congo)"
msgstr "Kikongo (Congo)"
#. HbeaC
-#: svtools/inc/langtab.hrc:359
+#: svtools/inc/langtab.hrc:360
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kunyi"
msgstr "Kunyi"
#. wLxHD
-#: svtools/inc/langtab.hrc:360
+#: svtools/inc/langtab.hrc:361
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngungwel"
msgstr "Ngungwel"
#. 7cvAe
-#: svtools/inc/langtab.hrc:361
+#: svtools/inc/langtab.hrc:362
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
msgstr "Njyem (Kongo)"
#. G2SG8
-#: svtools/inc/langtab.hrc:362
+#: svtools/inc/langtab.hrc:363
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punu"
msgstr "Punu"
#. WjBVL
-#: svtools/inc/langtab.hrc:363
+#: svtools/inc/langtab.hrc:364
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Suundi"
msgstr "Suundi"
#. 9nAA2
-#: svtools/inc/langtab.hrc:364
+#: svtools/inc/langtab.hrc:365
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Kukuya"
msgstr "Teke-Kukuya"
#. dwdUH
-#: svtools/inc/langtab.hrc:365
+#: svtools/inc/langtab.hrc:366
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsaangi"
msgstr "Tsaangi"
#. otqzC
-#: svtools/inc/langtab.hrc:366
+#: svtools/inc/langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Congo)"
msgstr "Yaka (Kongo)"
#. JuMFF
-#: svtools/inc/langtab.hrc:367
+#: svtools/inc/langtab.hrc:368
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Democratic Republic of the Congo)"
msgstr "Yaka (Demokratiese Republiek van Kongo)"
#. NDjGL
-#: svtools/inc/langtab.hrc:368
+#: svtools/inc/langtab.hrc:369
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yombe (Congo)"
msgstr "Yombe (Kongo)"
#. MvwFr
-#: svtools/inc/langtab.hrc:369
+#: svtools/inc/langtab.hrc:370
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "N'ko"
msgstr "N'ko"
#. WFc6C
-#: svtools/inc/langtab.hrc:370
+#: svtools/inc/langtab.hrc:371
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Udmurt"
msgstr "Udmurts"
#. hEtfX
-#: svtools/inc/langtab.hrc:371
+#: svtools/inc/langtab.hrc:372
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (India)"
msgstr "Tibetaans (Indië)"
#. Agf93
-#: svtools/inc/langtab.hrc:372
+#: svtools/inc/langtab.hrc:373
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cornish"
msgstr "Cornies"
#. EtH3H
-#: svtools/inc/langtab.hrc:373
+#: svtools/inc/langtab.hrc:374
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Pite (Sweden)"
msgstr "Sami, Lule (Swede)"
#. jp6C9
-#: svtools/inc/langtab.hrc:374
+#: svtools/inc/langtab.hrc:375
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngäbere"
msgstr "Ngäbere"
#. 3nTLx
-#: svtools/inc/langtab.hrc:375
+#: svtools/inc/langtab.hrc:376
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kumyk"
msgstr "Koemuks"
#. c56C9
-#: svtools/inc/langtab.hrc:376
+#: svtools/inc/langtab.hrc:377
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nogai"
msgstr "Nogaies"
#. CBiiA
-#: svtools/inc/langtab.hrc:377
+#: svtools/inc/langtab.hrc:378
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Karakalpak Latin"
msgstr "Karakalpak Latyn"
#. CkEC7
-#: svtools/inc/langtab.hrc:378
+#: svtools/inc/langtab.hrc:379
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ladin"
msgstr "Ladinies"
#. XAiVE
-#: svtools/inc/langtab.hrc:379
+#: svtools/inc/langtab.hrc:380
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Burkina Faso)"
msgstr "Frans (Burkina Faso)"
#. EGzhe
-#: svtools/inc/langtab.hrc:380
+#: svtools/inc/langtab.hrc:381
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Puinave"
msgstr "Puinave"
#. HNcxe
-#: svtools/inc/langtab.hrc:381
+#: svtools/inc/langtab.hrc:382
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maninkakan, Eastern, Latin"
msgstr "Oos Maninkakan, Latyn"
#. Kxi9E
-#: svtools/inc/langtab.hrc:382
+#: svtools/inc/langtab.hrc:383
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Avar"
msgstr "Avaars"
#. zumBa
-#: svtools/inc/langtab.hrc:383
+#: svtools/inc/langtab.hrc:384
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Latin"
msgstr "Cree vlaktes, Latyn"
#. PQqU7
-#: svtools/inc/langtab.hrc:384
+#: svtools/inc/langtab.hrc:385
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Syllabics"
msgstr "Plains Cree, Lettergrepe"
#. kewgf
-#: svtools/inc/langtab.hrc:385
+#: svtools/inc/langtab.hrc:386
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lengo"
msgstr "Lengo"
#. KtBfE
-#: svtools/inc/langtab.hrc:386
+#: svtools/inc/langtab.hrc:387
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Côte d'Ivoire)"
msgstr "Frans (Ivoorkus)"
#. DTuEL
-#: svtools/inc/langtab.hrc:387
+#: svtools/inc/langtab.hrc:388
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mali)"
msgstr "Frans (Mali)"
#. LFLk6
-#: svtools/inc/langtab.hrc:388
+#: svtools/inc/langtab.hrc:389
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Senegal)"
msgstr "Frans (Senegal)"
#. mSK3x
-#: svtools/inc/langtab.hrc:389
+#: svtools/inc/langtab.hrc:390
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Benin)"
msgstr "Frans (Benin)"
#. tM6qQ
-#: svtools/inc/langtab.hrc:390
+#: svtools/inc/langtab.hrc:391
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Niger)"
msgstr "Frans (Niger)"
#. nCq6f
-#: svtools/inc/langtab.hrc:391
+#: svtools/inc/langtab.hrc:392
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Togo)"
msgstr "Frans (Togo)"
#. oCBvK
-#: svtools/inc/langtab.hrc:392
+#: svtools/inc/langtab.hrc:393
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kven Finnish"
msgstr "Kven Fins"
#. zjNcC
-#: svtools/inc/langtab.hrc:393
+#: svtools/inc/langtab.hrc:394
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venetian"
msgstr "Venesiaans"
#. 8EbCs
-#: svtools/inc/langtab.hrc:394
+#: svtools/inc/langtab.hrc:395
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Gambia)"
msgstr "Engels (Gambië)"
#. gEd8L
-#: svtools/inc/langtab.hrc:395
+#: svtools/inc/langtab.hrc:396
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aranese"
msgstr "Aragonees"
#. TaEzQ
-#: svtools/inc/langtab.hrc:396
+#: svtools/inc/langtab.hrc:397
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (France)"
msgstr "Arpitan (Frans)"
#. s4yFD
-#: svtools/inc/langtab.hrc:397
+#: svtools/inc/langtab.hrc:398
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Italy)"
msgstr "Arpitaans (Italië)"
#. FvPLF
-#: svtools/inc/langtab.hrc:398
+#: svtools/inc/langtab.hrc:399
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Switzerland)"
msgstr "Duits (Switserland)"
#. GgwXq
-#: svtools/inc/langtab.hrc:399
+#: svtools/inc/langtab.hrc:400
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Botswana)"
msgstr "Engels (Botswana)"
#. GZfWN
-#: svtools/inc/langtab.hrc:400
+#: svtools/inc/langtab.hrc:401
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingue Occidental"
msgstr "Interlingue Occidental"
#. FFkaK
-#: svtools/inc/langtab.hrc:401
+#: svtools/inc/langtab.hrc:402
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Apatani"
msgstr "Apatanies"
#. EHHtS
-#: svtools/inc/langtab.hrc:402
+#: svtools/inc/langtab.hrc:403
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Mauritius)"
msgstr "Engels (Mauritius)"
#. atcMq
-#: svtools/inc/langtab.hrc:403
+#: svtools/inc/langtab.hrc:404
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mauritius)"
msgstr "Frans (Mauritius)"
#. UZ4Pn
-#: svtools/inc/langtab.hrc:404
+#: svtools/inc/langtab.hrc:405
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Silesian"
msgstr "Silesiaans"
#. RJDLA
-#: svtools/inc/langtab.hrc:405
+#: svtools/inc/langtab.hrc:406
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hongaars (Szekely-Hongaarse Rovas)"
#. v3WK8
-#: svtools/inc/langtab.hrc:406
+#: svtools/inc/langtab.hrc:407
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malaysia)"
msgstr "Engels (Maleisië)"
#. 4sBjT
-#: svtools/inc/langtab.hrc:407
+#: svtools/inc/langtab.hrc:408
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manchu"
msgstr "Manchu"
#. XH3fY
-#: svtools/inc/langtab.hrc:408
+#: svtools/inc/langtab.hrc:409
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xibe"
msgstr "Xibies"
#. oGNdE
-#: svtools/inc/langtab.hrc:409
+#: svtools/inc/langtab.hrc:410
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Democratic Republic of the Congo)"
msgstr "Kituba (Demokratiese Republiek Kongo)"
#. jQF7C
-#: svtools/inc/langtab.hrc:410
+#: svtools/inc/langtab.hrc:411
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr "Fon"
#. cAPXF
-#: svtools/inc/langtab.hrc:411
+#: svtools/inc/langtab.hrc:412
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Plautdietsch"
msgstr "Platduits"
#. 8LY2A
-#: svtools/inc/langtab.hrc:412
+#: svtools/inc/langtab.hrc:413
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Russia)"
msgstr "Armeens, Oos (Rusland)"
#. ieGNR
-#: svtools/inc/langtab.hrc:413
+#: svtools/inc/langtab.hrc:414
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Iran)"
msgstr "Armeens, Oos (Iran)"
#. US8Ga
-#: svtools/inc/langtab.hrc:414
+#: svtools/inc/langtab.hrc:415
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Western (Armenia)"
msgstr "Armeens, Wes (Armenië)"
#. nzbrZ
-#: svtools/inc/langtab.hrc:415
+#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Classical (Armenia)"
msgstr "Armeens, klassiek (Armenië)"
#. BDKAa
-#: svtools/inc/langtab.hrc:416
+#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Malaysia)"
msgstr "Maleis in Arabiese skrif (Maleisië)"
#. AnrGG
-#: svtools/inc/langtab.hrc:417
+#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Brunei Darussalam)"
msgstr "Maleis Arabies (Brunei Darussalam)"
#. utBog
-#: svtools/inc/langtab.hrc:418
+#: svtools/inc/langtab.hrc:419
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
msgstr "Juǀ’hoan"
#. jPaAH
-#: svtools/inc/langtab.hrc:419
+#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
msgstr "Naro"
#. mMVAF
-#: svtools/inc/langtab.hrc:420
+#: svtools/inc/langtab.hrc:421
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
msgstr "Iloko"
#. AzGAy
-#: svtools/inc/langtab.hrc:421
+#: svtools/inc/langtab.hrc:422
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
msgstr "Engels (Zambië)"
#. 7kkKy
-#: svtools/inc/langtab.hrc:422
+#: svtools/inc/langtab.hrc:423
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Sri Lanka)"
msgstr "Engels (Sri Lanka)"
#. xFPXp
-#: svtools/inc/langtab.hrc:423
+#: svtools/inc/langtab.hrc:424
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Nigeria)"
msgstr "Engels (Nigerië)"
#. Up6ab
-#: svtools/inc/langtab.hrc:424
+#: svtools/inc/langtab.hrc:425
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabardian"
msgstr "Kabardies"
#. BiDsR
-#: svtools/inc/langtab.hrc:425
+#: svtools/inc/langtab.hrc:426
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guadeloupean Creole French"
msgstr "Kreools Frans Guadeloupe"
#. 2b2P4
-#: svtools/inc/langtab.hrc:426
+#: svtools/inc/langtab.hrc:427
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ligurian"
msgstr "Liguries"
#. 3LvEE
-#: svtools/inc/langtab.hrc:427
+#: svtools/inc/langtab.hrc:428
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Minangkabau"
msgstr "Minangkabau"
#. nDkKR
-#: svtools/inc/langtab.hrc:428
+#: svtools/inc/langtab.hrc:429
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sundanese"
msgstr "Soendanees"
#. wGEAB
-#: svtools/inc/langtab.hrc:429
+#: svtools/inc/langtab.hrc:430
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Hong Kong)"
msgstr "Engels (Hong Kong)"
#. qTMB2
-#: svtools/inc/langtab.hrc:430
+#: svtools/inc/langtab.hrc:431
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Kenya)"
msgstr "Engels (Kenia)"
#. SgQ2p
-#: svtools/inc/langtab.hrc:431
+#: svtools/inc/langtab.hrc:432
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Thai"
msgstr "Pali Thai"
#. DGeeF
-#: svtools/inc/langtab.hrc:432
+#: svtools/inc/langtab.hrc:433
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cabécar"
msgstr "Cabécar (Sudan)"
#. xHCtG
-#: svtools/inc/langtab.hrc:433
+#: svtools/inc/langtab.hrc:434
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bribri"
msgstr "Bribri (Maleis)"
#. 2GFgR
-#: svtools/inc/langtab.hrc:434
+#: svtools/inc/langtab.hrc:435
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Denmark)"
msgstr "Engels (Denemarke)"
#. gmE6U
-#: svtools/inc/langtab.hrc:435
+#: svtools/inc/langtab.hrc:436
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sesotho"
msgstr "Sesotho"
#. BkKJX
-#: svtools/inc/langtab.hrc:436
+#: svtools/inc/langtab.hrc:437
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr "Klingon"
#. xFYhC
-#: svtools/inc/langtab.hrc:437
+#: svtools/inc/langtab.hrc:438
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Israel)"
msgstr "Engels (Israel)"
#. Bryjh
-#: svtools/inc/langtab.hrc:438
+#: svtools/inc/langtab.hrc:439
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Latin"
msgstr "Interslawiese Latyn"
#. DZBAE
-#: svtools/inc/langtab.hrc:439
+#: svtools/inc/langtab.hrc:440
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Cyrillic"
msgstr "Interslawies Cyrillies"
#. 4eEDW
-#: svtools/inc/langtab.hrc:440
+#: svtools/inc/langtab.hrc:441
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pennsylvania Dutch"
msgstr "Pennsylvania Nederlands"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 6e85e88668a..cadf0059dee 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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-02-11 21:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-02-27 12:39+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"
@@ -34,6666 +34,6672 @@ msgctxt "STR_ObjNameSingulGRUP"
msgid "Group object"
msgstr "Groep Objek"
-#. tC4qm
+#. nsYcw
#: include/svx/strings.hrc:28
+msgctxt "STR_ObjNameSingulDIAGRAM"
+msgid "Diagram"
+msgstr ""
+
+#. tC4qm
+#: include/svx/strings.hrc:29
msgctxt "STR_ObjNamePluralGRUP"
msgid "Group objects"
msgstr "Groep Objekte"
#. piV8E
-#: include/svx/strings.hrc:29
+#: include/svx/strings.hrc:30
msgctxt "STR_ObjNameSingulGRUPEMPTY"
msgid "Blank group object"
msgstr "Leë Groep Objekte"
#. BBEPU
-#: include/svx/strings.hrc:30
+#: include/svx/strings.hrc:31
msgctxt "STR_ObjNamePluralGRUPEMPTY"
msgid "Blank group objects"
msgstr "Blanko groepobjekte"
#. NVHmC
-#: include/svx/strings.hrc:31
+#: include/svx/strings.hrc:32
msgctxt "STR_ObjNameSingulLINE"
msgid "Line"
msgstr "Reël"
#. SD2Wy
-#: include/svx/strings.hrc:32
+#: include/svx/strings.hrc:33
msgctxt "STR_ObjNameSingulLINE_Hori"
msgid "Horizontal line"
msgstr "Horisontale reël"
#. 3dPEH
-#: include/svx/strings.hrc:33
+#: include/svx/strings.hrc:34
msgctxt "STR_ObjNameSingulLINE_Vert"
msgid "Vertical line"
msgstr "Vertikale reël"
#. JzFtj
-#: include/svx/strings.hrc:34
+#: include/svx/strings.hrc:35
msgctxt "STR_ObjNameSingulLINE_Diag"
msgid "Diagonal line"
msgstr "Diagonale lyn"
#. YPAoe
-#: include/svx/strings.hrc:35
+#: include/svx/strings.hrc:36
msgctxt "STR_ObjNamePluralLINE"
msgid "Lines"
msgstr "Reëls"
#. yS2nC
-#: include/svx/strings.hrc:36
+#: include/svx/strings.hrc:37
msgctxt "STR_ObjNameSingulRECT"
msgid "Rectangle"
msgstr "Reghoek"
#. TDTj8
-#: include/svx/strings.hrc:37
+#: include/svx/strings.hrc:38
msgctxt "STR_ObjNamePluralRECT"
msgid "Rectangles"
msgstr "Reghoeke"
#. fnV49
-#: include/svx/strings.hrc:38
+#: include/svx/strings.hrc:39
msgctxt "STR_ObjNameSingulQUAD"
msgid "Square"
msgstr "Vierkant"
#. XkEHU
-#: include/svx/strings.hrc:39
+#: include/svx/strings.hrc:40
msgctxt "STR_ObjNamePluralQUAD"
msgid "Squares"
msgstr "Vierkante"
#. vw4Ut
-#: include/svx/strings.hrc:40
+#: include/svx/strings.hrc:41
msgctxt "STR_ObjNameSingulPARAL"
msgid "Parallelogram"
msgstr "Parallelogram"
#. yCpvs
-#: include/svx/strings.hrc:41
+#: include/svx/strings.hrc:42
msgctxt "STR_ObjNamePluralPARAL"
msgid "Parallelograms"
msgstr "Parallelogramme"
#. SfDZQ
-#: include/svx/strings.hrc:42
+#: include/svx/strings.hrc:43
msgctxt "STR_ObjNameSingulRECTRND"
msgid "Rounded rectangle"
msgstr "Geronde reghoek"
#. PYAii
-#: include/svx/strings.hrc:43
+#: include/svx/strings.hrc:44
msgctxt "STR_ObjNamePluralRECTRND"
msgid "Rounded Rectangles"
msgstr "Geronde reghoeke"
#. xQAn8
-#: include/svx/strings.hrc:44
+#: include/svx/strings.hrc:45
msgctxt "STR_ObjNameSingulQUADRND"
msgid "rounded square"
msgstr "geronde vierkant"
#. JHxon
-#: include/svx/strings.hrc:45
+#: include/svx/strings.hrc:46
msgctxt "STR_ObjNamePluralQUADRND"
msgid "Rounded Squares"
msgstr "Geronde vierkante"
#. 89eHB
-#: include/svx/strings.hrc:46
+#: include/svx/strings.hrc:47
msgctxt "STR_ObjNameSingulPARALRND"
msgid "Rounded Parallelogram"
msgstr "Geronde parallelogram"
#. WvCRG
-#: include/svx/strings.hrc:47
+#: include/svx/strings.hrc:48
msgctxt "STR_ObjNamePluralPARALRND"
msgid "Rounded parallelograms"
msgstr "Geronde parallelogramme"
#. NDXG6
-#: include/svx/strings.hrc:48
+#: include/svx/strings.hrc:49
msgctxt "STR_ObjNameSingulCIRC"
msgid "Circle"
msgstr "Sirkel"
#. Bzk99
-#: include/svx/strings.hrc:49
+#: include/svx/strings.hrc:50
msgctxt "STR_ObjNamePluralCIRC"
msgid "Circles"
msgstr "Sirkels"
#. 2CxVR
-#: include/svx/strings.hrc:50
+#: include/svx/strings.hrc:51
msgctxt "STR_ObjNameSingulSECT"
msgid "Circle sector"
msgstr "Sirkelsektor"
#. djBb7
-#: include/svx/strings.hrc:51
+#: include/svx/strings.hrc:52
msgctxt "STR_ObjNamePluralSECT"
msgid "Circle sectors"
msgstr "Sirkelsektore"
#. KAhqG
-#: include/svx/strings.hrc:52
+#: include/svx/strings.hrc:53
msgctxt "STR_ObjNameSingulCARC"
msgid "Arc"
msgstr "Boog"
#. ZtPEx
-#: include/svx/strings.hrc:53
+#: include/svx/strings.hrc:54
msgctxt "STR_ObjNamePluralCARC"
msgid "Arcs"
msgstr "Boë"
#. 7mXtq
-#: include/svx/strings.hrc:54
+#: include/svx/strings.hrc:55
msgctxt "STR_ObjNameSingulCCUT"
msgid "Circle segment"
msgstr "Sirkelsegment"
#. YkhbA
-#: include/svx/strings.hrc:55
+#: include/svx/strings.hrc:56
msgctxt "STR_ObjNamePluralCCUT"
msgid "Circle segments"
msgstr "Sirkelsegmente"
#. QsEuy
-#: include/svx/strings.hrc:56
+#: include/svx/strings.hrc:57
msgctxt "STR_ObjNameSingulCIRCE"
msgid "Ellipse"
msgstr "Ellips"
#. rUFxb
-#: include/svx/strings.hrc:57
+#: include/svx/strings.hrc:58
msgctxt "STR_ObjNamePluralCIRCE"
msgid "Ellipses"
msgstr "Ellipse"
#. UADGo
-#: include/svx/strings.hrc:58
+#: include/svx/strings.hrc:59
msgctxt "STR_ObjNameSingulSECTE"
msgid "Ellipse Pie"
msgstr "Elliptiese sektordiagram"
#. afCit
-#: include/svx/strings.hrc:59
+#: include/svx/strings.hrc:60
msgctxt "STR_ObjNamePluralSECTE"
msgid "Ellipse Pies"
msgstr "Elliptiese sirkeldiagramme"
#. 7FXAW
-#: include/svx/strings.hrc:60
+#: include/svx/strings.hrc:61
msgctxt "STR_ObjNameSingulCARCE"
msgid "Elliptical arc"
msgstr "Elliptiese boog"
#. KdtfM
-#: include/svx/strings.hrc:61
+#: include/svx/strings.hrc:62
msgctxt "STR_ObjNamePluralCARCE"
msgid "Elliptical arcs"
msgstr "Elliptiese boë"
#. C4jME
-#: include/svx/strings.hrc:62
+#: include/svx/strings.hrc:63
msgctxt "STR_ObjNameSingulCCUTE"
msgid "Ellipse Segment"
msgstr "Elliptiese segment"
#. wKC5F
-#: include/svx/strings.hrc:63
+#: include/svx/strings.hrc:64
msgctxt "STR_ObjNamePluralCCUTE"
msgid "Ellipse Segments"
msgstr "Ellipssegmente"
#. ibJ55
-#: include/svx/strings.hrc:64
+#: include/svx/strings.hrc:65
msgctxt "STR_ObjNameSingulPOLY"
msgid "Polygon"
msgstr "Poligoon"
#. AZFuB
-#: include/svx/strings.hrc:65
+#: include/svx/strings.hrc:66
msgctxt "STR_ObjNameSingulPOLY_PointCount"
msgid "Polygon %2 corners"
msgstr "Veelhoek van %2 hoeke"
#. a6z8j
-#: include/svx/strings.hrc:66
+#: include/svx/strings.hrc:67
msgctxt "STR_ObjNamePluralPOLY"
msgid "Polygons"
msgstr "Veelhoeke"
#. WSEL3
-#: include/svx/strings.hrc:67
+#: include/svx/strings.hrc:68
msgctxt "STR_ObjNameSingulPLIN"
msgid "Polyline"
msgstr "Meervoudige lyn"
#. eBhxV
-#: include/svx/strings.hrc:68
+#: include/svx/strings.hrc:69
msgctxt "STR_ObjNameSingulPLIN_PointCount"
msgid "Polyline with %2 corners"
msgstr "Meervoudige lyn met %2 hoeke"
#. NjP7U
-#: include/svx/strings.hrc:69
+#: include/svx/strings.hrc:70
msgctxt "STR_ObjNamePluralPLIN"
msgid "Polylines"
msgstr "Meervoudige lyne"
#. KNPXt
-#: include/svx/strings.hrc:70
+#: include/svx/strings.hrc:71
msgctxt "STR_ObjNameSingulPATHLINE"
msgid "Bézier curve"
msgstr "Bézier-kurwe"
#. BhTAu
-#: include/svx/strings.hrc:71
+#: include/svx/strings.hrc:72
msgctxt "STR_ObjNamePluralPATHLINE"
msgid "Bézier curves"
msgstr "Bézier-kurwes"
#. LU3AK
-#: include/svx/strings.hrc:72
+#: include/svx/strings.hrc:73
msgctxt "STR_ObjNameSingulPATHFILL"
msgid "Bézier curve"
msgstr "Bézier-kurwe"
#. vLAWh
-#: include/svx/strings.hrc:73
+#: include/svx/strings.hrc:74
msgctxt "STR_ObjNamePluralPATHFILL"
msgid "Bézier curves"
msgstr "Bézier-kurwes"
#. FQeae
-#: include/svx/strings.hrc:74
+#: include/svx/strings.hrc:75
msgctxt "STR_ObjNameSingulFREELINE"
msgid "Freeform Line"
msgstr "Vryevormlyn"
#. c8gFR
-#: include/svx/strings.hrc:75
+#: include/svx/strings.hrc:76
msgctxt "STR_ObjNamePluralFREELINE"
msgid "Freeform Lines"
msgstr "Vryevormlyne"
#. GSmPG
-#: include/svx/strings.hrc:76
+#: include/svx/strings.hrc:77
msgctxt "STR_ObjNameSingulFREEFILL"
msgid "Freeform Line"
msgstr "Vryevormlyn"
#. 8k7tC
-#: include/svx/strings.hrc:77
+#: include/svx/strings.hrc:78
msgctxt "STR_ObjNamePluralFREEFILL"
msgid "Freeform Lines"
msgstr "Vryevormlyne"
#. iwxqj
-#: include/svx/strings.hrc:78
+#: include/svx/strings.hrc:79
msgctxt "STR_ObjNameSingulCOMBLINE"
msgid "Curve"
msgstr "Kurwe"
#. CjzRc
-#: include/svx/strings.hrc:79
+#: include/svx/strings.hrc:80
msgctxt "STR_ObjNameSingulNATSPLN"
msgid "Natural Spline"
msgstr "Natuurlike kromme"
#. CSFGL
-#: include/svx/strings.hrc:80
+#: include/svx/strings.hrc:81
msgctxt "STR_ObjNamePluralNATSPLN"
msgid "Natural Splines"
msgstr "Natuurlike krommes"
#. jpijx
-#: include/svx/strings.hrc:81
+#: include/svx/strings.hrc:82
msgctxt "STR_ObjNameSingulPERSPLN"
msgid "Periodic Spline"
msgstr "Periodieke kromme"
#. A2GLR
-#: include/svx/strings.hrc:82
+#: include/svx/strings.hrc:83
msgctxt "STR_ObjNamePluralPERSPLN"
msgid "Periodic Splines"
msgstr "Periodieke krommes"
#. efEFM
-#: include/svx/strings.hrc:83
+#: include/svx/strings.hrc:84
msgctxt "STR_ObjNameSingulTEXT"
msgid "Text Frame"
msgstr "Teksraam"
#. MdV7N
-#: include/svx/strings.hrc:84
+#: include/svx/strings.hrc:85
msgctxt "STR_ObjNamePluralTEXT"
msgid "Text Frame"
msgstr "Teksraam"
#. 3Pvnw
-#: include/svx/strings.hrc:85
+#: include/svx/strings.hrc:86
msgctxt "STR_ObjNameSingulTEXTLNK"
msgid "Linked text frame"
msgstr "Gekoppelde teksraam"
#. EtTZB
-#: include/svx/strings.hrc:86
+#: include/svx/strings.hrc:87
msgctxt "STR_ObjNamePluralTEXTLNK"
msgid "Linked text frames"
msgstr "Gekoppelde teksrame"
#. mw75y
-#: include/svx/strings.hrc:87
+#: include/svx/strings.hrc:88
msgctxt "STR_ObjNameSingulTITLETEXT"
msgid "Title text"
msgstr "Opskrifteks"
#. aAKEp
-#: include/svx/strings.hrc:88
+#: include/svx/strings.hrc:89
msgctxt "STR_ObjNamePluralTITLETEXT"
msgid "Title texts"
msgstr "Opskriftekste"
#. 3DMmh
-#: include/svx/strings.hrc:89
+#: include/svx/strings.hrc:90
msgctxt "STR_ObjNameSingulOUTLINETEXT"
msgid "Outline Text"
msgstr "Raamwerkteks"
#. PDZGm
-#: include/svx/strings.hrc:90
+#: include/svx/strings.hrc:91
msgctxt "STR_ObjNamePluralOUTLINETEXT"
msgid "Outline Texts"
msgstr "Raamwerktekste"
#. HspAE
-#: include/svx/strings.hrc:91
+#: include/svx/strings.hrc:92
msgctxt "STR_ObjNameSingulGRAF"
msgid "Image"
msgstr "Beeld"
#. DzfeY
-#: include/svx/strings.hrc:92
+#: include/svx/strings.hrc:93
msgctxt "STR_ObjNamePluralGRAF"
msgid "Images"
msgstr "Beelde"
#. E9w8q
-#: include/svx/strings.hrc:93
+#: include/svx/strings.hrc:94
msgctxt "STR_ObjNameSingulGRAFLNK"
msgid "Linked image"
msgstr "Gekoppelde Beeld"
#. YopD6
-#: include/svx/strings.hrc:94
+#: include/svx/strings.hrc:95
msgctxt "STR_ObjNamePluralGRAFLNK"
msgid "Linked images"
msgstr "Gekoppelde beelde"
#. wWACk
-#: include/svx/strings.hrc:95
+#: include/svx/strings.hrc:96
msgctxt "STR_ObjNameSingulGRAFNONE"
msgid "Blank image object"
msgstr "Leë beeld objek"
#. uzsE4
-#: include/svx/strings.hrc:96
+#: include/svx/strings.hrc:97
msgctxt "STR_ObjNamePluralGRAFNONE"
msgid "Blank image objects"
msgstr "Leë beeld Objek"
#. 8Za3o
-#: include/svx/strings.hrc:97
+#: include/svx/strings.hrc:98
msgctxt "STR_ObjNameSingulGRAFNONELNK"
msgid "Blank linked image"
msgstr "Gekoppelde leë beeld"
#. 8W5JS
-#: include/svx/strings.hrc:98
+#: include/svx/strings.hrc:99
msgctxt "STR_ObjNamePluralGRAFNONELNK"
msgid "Blank linked images"
msgstr "Gekoppelde leë beelde"
#. kUuBg
-#: include/svx/strings.hrc:99
+#: include/svx/strings.hrc:100
msgctxt "STR_ObjNameSingulGRAFMTF"
msgid "Metafile"
msgstr "Metalêer"
#. w5ykB
-#: include/svx/strings.hrc:100
+#: include/svx/strings.hrc:101
msgctxt "STR_ObjNamePluralGRAFMTF"
msgid "Metafiles"
msgstr "Metalêers"
#. XBDAB
-#: include/svx/strings.hrc:101
+#: include/svx/strings.hrc:102
msgctxt "STR_ObjNameSingulGRAFMTFLNK"
msgid "Linked Metafile"
msgstr "Gekoppelde metalêer"
#. ACpDE
-#: include/svx/strings.hrc:102
+#: include/svx/strings.hrc:103
msgctxt "STR_ObjNamePluralGRAFMTFLNK"
msgid "Linked Metafiles"
msgstr "Gekoppelde metalêers"
#. Pbmqw
-#: include/svx/strings.hrc:103
+#: include/svx/strings.hrc:104
msgctxt "STR_ObjNameSingulGRAFBMP"
msgid "Image"
msgstr "Beeld"
#. WdAhn
-#: include/svx/strings.hrc:104
+#: include/svx/strings.hrc:105
msgctxt "STR_ObjNameSingulGRAFBMPTRANS"
msgid "Image with transparency"
msgstr "Beeld met deursigtigheid"
#. 3FkK6
-#: include/svx/strings.hrc:105
+#: include/svx/strings.hrc:106
msgctxt "STR_ObjNameSingulGRAFBMPLNK"
msgid "Linked Image"
msgstr "Gekoppelde beeld"
#. ydd77
-#: include/svx/strings.hrc:106
+#: include/svx/strings.hrc:107
msgctxt "STR_ObjNameSingulGRAFBMPTRANSLNK"
msgid "Linked image with transparency"
msgstr "Gekoppelde beeld met deursigtigheid"
#. FVJeA
-#: include/svx/strings.hrc:107
+#: include/svx/strings.hrc:108
msgctxt "STR_ObjNamePluralGRAFBMP"
msgid "Images"
msgstr "Beelde"
#. mjfjF
-#: include/svx/strings.hrc:108
+#: include/svx/strings.hrc:109
msgctxt "STR_ObjNamePluralGRAFBMPTRANS"
msgid "Images with transparency"
msgstr "Beeld met deursigtigheid"
#. 8kaaN
-#: include/svx/strings.hrc:109
+#: include/svx/strings.hrc:110
msgctxt "STR_ObjNamePluralGRAFBMPLNK"
msgid "Linked images"
msgstr "Gekoppelde beelde"
#. DKMiE
-#: include/svx/strings.hrc:110
+#: include/svx/strings.hrc:111
msgctxt "STR_ObjNamePluralGRAFBMPTRANSLNK"
msgid "Linked images with transparency"
msgstr "Gekoppelde beelde met deursigtigheid"
#. aeEoK
-#: include/svx/strings.hrc:111
+#: include/svx/strings.hrc:112
msgctxt "STR_ObjNameSingulCUSTOMSHAPE"
msgid "Shape"
msgstr "Vorm"
#. BZmgL
-#: include/svx/strings.hrc:112
+#: include/svx/strings.hrc:113
msgctxt "STR_ObjNamePluralCUSTOMSHAPE"
msgid "Shapes"
msgstr "Vorms"
#. HBYSq
-#: include/svx/strings.hrc:113
+#: include/svx/strings.hrc:114
msgctxt "STR_ObjNameSingulGRAFSVG"
msgid "SVG"
msgstr "SVG"
#. pzxhb
-#: include/svx/strings.hrc:114
+#: include/svx/strings.hrc:115
msgctxt "STR_ObjNamePluralGRAFSVG"
msgid "SVGs"
msgstr "SVG's"
#. v2DTg
-#: include/svx/strings.hrc:115
+#: include/svx/strings.hrc:116
msgctxt "STR_ObjNameSingulGRAFWMF"
msgid "WMF"
msgstr "WMF"
#. LR2x6
-#: include/svx/strings.hrc:116
+#: include/svx/strings.hrc:117
msgctxt "STR_ObjNamePluralGRAFWMF"
msgid "WMFs"
msgstr "WMF's"
#. XcDs2
-#: include/svx/strings.hrc:117
+#: include/svx/strings.hrc:118
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "EMF"
msgstr "EMF"
#. JtdP2
-#: include/svx/strings.hrc:118
+#: include/svx/strings.hrc:119
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "EMFs"
msgstr "EMF's"
#. H2FkB
-#: include/svx/strings.hrc:119
+#: include/svx/strings.hrc:120
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
msgstr "PDF"
#. tc3Jb
-#: include/svx/strings.hrc:120
+#: include/svx/strings.hrc:121
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
msgstr "PDFs"
#. b3os5
-#: include/svx/strings.hrc:121
+#: include/svx/strings.hrc:122
msgctxt "STR_ObjNameSingulOLE2"
msgid "embedded object (OLE)"
msgstr "ingebedde objek (OLE)"
#. QMF8w
-#: include/svx/strings.hrc:122
+#: include/svx/strings.hrc:123
msgctxt "STR_ObjNamePluralOLE2"
msgid "Embedded objects (OLE)"
msgstr "Ingebedde objekte (OLE)"
#. mAAWu
-#: include/svx/strings.hrc:123
+#: include/svx/strings.hrc:124
msgctxt "STR_ObjNameSingulUno"
msgid "Control"
msgstr "Beheer"
#. KrTeo
-#: include/svx/strings.hrc:124
+#: include/svx/strings.hrc:125
msgctxt "STR_ObjNamePluralUno"
msgid "Controls"
msgstr "Kontroles"
#. wfVg2
-#: include/svx/strings.hrc:125
+#: include/svx/strings.hrc:126
msgctxt "STR_ObjNameSingulFrame"
msgid "Frame"
msgstr "Raam"
#. q72EC
-#: include/svx/strings.hrc:126
+#: include/svx/strings.hrc:127
msgctxt "STR_ObjNamePluralFrame"
msgid "Frames"
msgstr "Rame"
#. gYhqY
-#: include/svx/strings.hrc:127
+#: include/svx/strings.hrc:128
msgctxt "STR_ObjNameSingulEDGE"
msgid "Object Connectors"
msgstr "Objekverbinders"
#. 9XiCG
-#: include/svx/strings.hrc:128
+#: include/svx/strings.hrc:129
msgctxt "STR_ObjNamePluralEDGE"
msgid "Object Connectors"
msgstr "Objekverbinders"
#. HSDBo
-#: include/svx/strings.hrc:129
+#: include/svx/strings.hrc:130
msgctxt "STR_ObjNameSingulCAPTION"
msgid "Callout"
msgstr "Uitroep"
#. BdAJu
-#: include/svx/strings.hrc:130
+#: include/svx/strings.hrc:131
msgctxt "STR_ObjNamePluralCAPTION"
msgid "Callouts"
msgstr "Uitroepe"
#. Ezpif
-#: include/svx/strings.hrc:131
+#: include/svx/strings.hrc:132
msgctxt "STR_ObjNameSingulPAGE"
msgid "Preview object"
msgstr "Voorskou objek"
#. UCECt
-#: include/svx/strings.hrc:132
+#: include/svx/strings.hrc:133
msgctxt "STR_ObjNamePluralPAGE"
msgid "Preview objects"
msgstr "Voorskou objekte"
#. GCVKi
-#: include/svx/strings.hrc:133
+#: include/svx/strings.hrc:134
msgctxt "STR_ObjNameSingulMEASURE"
msgid "Dimension line"
msgstr "Dimensielyn"
#. DokjU
-#: include/svx/strings.hrc:134
+#: include/svx/strings.hrc:135
msgctxt "STR_ObjNamePluralMEASURE"
msgid "Dimensioning objects"
msgstr "Dimensionering van objekte"
#. iBQEy
-#: include/svx/strings.hrc:135
+#: include/svx/strings.hrc:136
msgctxt "STR_ObjNamePlural"
msgid "Drawing objects"
msgstr "Tekenobjekte"
#. xHrgo
-#: include/svx/strings.hrc:136
+#: include/svx/strings.hrc:137
msgctxt "STR_ObjNameNoObj"
msgid "No draw object"
msgstr "Geen tekenobjek"
#. EEKnk
-#: include/svx/strings.hrc:137
+#: include/svx/strings.hrc:138
msgctxt "STR_ObjNameSingulPlural"
msgid "Draw object(s)"
msgstr "Teken objek(te)"
#. LYyRP
-#: include/svx/strings.hrc:138
+#: include/svx/strings.hrc:139
msgctxt "STR_ObjNameSingulCube3d"
msgid "3D cube"
msgstr "3-D-kubus"
#. ZsF4T
-#: include/svx/strings.hrc:139
+#: include/svx/strings.hrc:140
msgctxt "STR_ObjNamePluralCube3d"
msgid "3D cubes"
msgstr "3-D-kubusse"
#. h9hf7
-#: include/svx/strings.hrc:140
+#: include/svx/strings.hrc:141
msgctxt "STR_ObjNameSingulExtrude3d"
msgid "Extrusion object"
msgstr "Ekstrusieobjek"
#. Ag6Pu
-#: include/svx/strings.hrc:141
+#: include/svx/strings.hrc:142
msgctxt "STR_ObjNamePluralExtrude3d"
msgid "Extrusion objects"
msgstr "Ekstrusieobjekte"
#. L3B8v
-#: include/svx/strings.hrc:142
+#: include/svx/strings.hrc:143
msgctxt "STR_ObjNameSingulLathe3d"
msgid "Rotation object"
msgstr "Rotasie Objek"
#. e3vFm
-#: include/svx/strings.hrc:143
+#: include/svx/strings.hrc:144
msgctxt "STR_ObjNamePluralLathe3d"
msgid "Rotation objects"
msgstr "Rotasie Objekte"
#. CE5Gk
-#: include/svx/strings.hrc:144
+#: include/svx/strings.hrc:145
msgctxt "STR_ObjNameSingulObj3d"
msgid "3D object"
msgstr "3-D-objek"
#. pECo3
-#: include/svx/strings.hrc:145
+#: include/svx/strings.hrc:146
msgctxt "STR_ObjNamePluralObj3d"
msgid "3D objects"
msgstr "3-D-objekte"
#. Wuqvb
-#: include/svx/strings.hrc:146
+#: include/svx/strings.hrc:147
msgctxt "STR_ObjNameSingulScene3d"
msgid "3D scene"
msgstr "3-D-toneel"
#. tH8BD
-#: include/svx/strings.hrc:147
+#: include/svx/strings.hrc:148
msgctxt "STR_ObjNamePluralScene3d"
msgid "3D scenes"
msgstr "3-D-tonele"
#. WdWuw
-#: include/svx/strings.hrc:148
+#: include/svx/strings.hrc:149
msgctxt "STR_ObjNameSingulSphere3d"
msgid "Sphere"
msgstr "Sfeer"
#. YNXv5
-#: include/svx/strings.hrc:149
+#: include/svx/strings.hrc:150
msgctxt "STR_ObjNamePluralSphere3d"
msgid "Spheres"
msgstr "Sfere"
#. h4GBf
-#: include/svx/strings.hrc:150
+#: include/svx/strings.hrc:151
msgctxt "STR_EditWithCopy"
msgid "with copy"
msgstr "met kopie"
#. NrVyW
-#: include/svx/strings.hrc:151
+#: include/svx/strings.hrc:152
msgctxt "STR_EditPosSize"
msgid "Set position and size for %1"
msgstr "Stel posisie en grootte vir %1"
#. ac4yY
-#: include/svx/strings.hrc:152
+#: include/svx/strings.hrc:153
msgctxt "STR_EditDelete"
msgid "Delete %1"
msgstr "Skrap %1"
#. AweBA
-#: include/svx/strings.hrc:153
+#: include/svx/strings.hrc:154
msgctxt "STR_EditMovToTop"
msgid "Move %1 forward"
msgstr "Skuif %1 vorentoe"
#. G7EUR
-#: include/svx/strings.hrc:154
+#: include/svx/strings.hrc:155
msgctxt "STR_EditMovToBtm"
msgid "Move %1 further back"
msgstr "Skuif %1 verder terug"
#. B83UQ
-#: include/svx/strings.hrc:155
+#: include/svx/strings.hrc:156
msgctxt "STR_EditPutToTop"
msgid "Move %1 to front"
msgstr "Skuif %1 na vore"
#. aHzgz
-#: include/svx/strings.hrc:156
+#: include/svx/strings.hrc:157
msgctxt "STR_EditPutToBtm"
msgid "Move %1 to back"
msgstr "Skuif %1 na agter"
#. Q6nSk
-#: include/svx/strings.hrc:157
+#: include/svx/strings.hrc:158
msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "Keer volgorde van %1 om"
#. rpJs7
-#: include/svx/strings.hrc:158
+#: include/svx/strings.hrc:159
msgctxt "STR_SortShapes"
msgid "Sort shapes"
msgstr "Sorteer vorme"
#. cALbH
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "Skuif %1"
#. dskGp
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "Skaleer %1"
#. 5QxCS
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "Draai %1"
#. BD8aF
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Keer %1 horisontaal om"
#. g7Qgy
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "Keer %1 vertikaal om"
#. 8MR5T
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Keer %1 diagonaal om"
#. zDbgU
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "Keer %1 vryhand om"
#. AFUeA
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "Vervorm %1 (skuins)"
#. QRoy3
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "Rangskik %1 in sirkel"
#. wvGVC
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "Kurwe %1 in sirkel"
#. iUJAq
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "Verwring %1"
#. GRiqx
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "Ontdoen %1"
#. sE8PU
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "Wysig bézier-kenmerke van %1"
#. CzVVY
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "Wysig bézier-kenmerke van %1"
#. 5KcDa
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "Stel uitgangsrigting vir %1"
#. Gbbmq
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "Stel relatiewe attribuut op %1"
#. Auc4o
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "Stel verwysingspunt vir %1"
#. M5Jac
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Groepeer %1"
#. wEEok
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "Ontgroepeer %1"
#. XochA
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "Pas attribute op %1 toe"
#. kzth3
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "Pas style op %1 toe"
#. PDT8V
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "Verwyder styl van %1"
#. 5DwCY
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "Omskep %1 in veelhoek"
#. TPv7Q
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "Omskep %1 in veelhoeke"
#. ompqC
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "Omskep %1 in kromme"
#. gax8J
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "Omskep %1 in krommes"
#. s96Mt
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "Omskep %1 in kontoer"
#. LAyEj
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "Omskep %1 in kontoere"
#. jzxvB
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "Belyn %1"
#. jocJd
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "Belyn %1 met bokant"
#. WFGbz
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "Belyn %1 met onderkant"
#. SyXzE
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "Sentreer %1 horisontaal"
#. TgGUN
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "Belyn %1 na links"
#. s3Erz
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "Belyn %1 na regs"
#. apfuW
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "Sentreer %1 vertikaal"
#. ttEmT
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "Sentreer %1"
#. xkGug
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "Omvorm %1"
#. smiFA
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "Kombineer %1"
#. PypoU
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "Voeg %1 saam"
#. 2KfaD
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "Trek %1 af"
#. gKFow
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "Sny %1"
#. M8onz
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "Versprei geselekteerde objekte"
#. CnGYu
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "Pas wydte %1 aan"
#. zBTZe
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr "Pas Hoogte %1 aan"
#. JWmM2
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "Kombineer %1"
#. k5kFN
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "Verdeel %1"
#. weAmr
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "Verdeel %1"
#. Yofeq
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "Verdeel %1"
#. hWuuR
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "Voeg objek(te) in"
#. EaVu8
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "Voeg punt by %1 in"
#. G3DCW
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragInsertGluePoint"
msgid "Insert gluepoint to %1"
msgstr "Voeg hegpunt by %1"
#. 6JqED
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "Skuif verwysingspunt"
#. o8CAF
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "Verander %1 geometries"
#. ghkib
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "Skuif %1"
#. BCrkD
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "Skaleer %1"
#. xonh6
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "Draai %1"
#. kBYzN
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Keer %1 horisontaal om"
#. CBBXE
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "Keer %1 vertikaal om"
#. uHCGD
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Keer %1 diagonaal om"
#. vRwXA
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "Keer %1 vryhand om"
#. 9xhJw
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "Interaktiewe gradiënt vir %1"
#. Fst87
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "Interaktiewe deursigtigheid vir %1"
#. jgbKK
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "Vervorm %1 (skuins)"
#. Eo8H6
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "Rangskik %1 in sirkel"
#. stAcK
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "Kurwe %1 in sirkel"
#. VbA6t
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "Verwring %1"
#. YjghP
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "Uitsny %1"
#. ViifK
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Verander radius met %1"
#. usEq4
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "Verander %1"
#. X4GFU
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "Skaleer %1"
#. qF4Px
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "Skuif %1"
#. fKuKa
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "Skuif eindpunt van %1"
#. ewcHx
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "Verstel hoek met %1"
#. L8rCz
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "Verander %1"
#. UxCCc
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "TeksRedigeer: Paragraaf %1, ry %2, kolom %3"
#. 23tL7
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 gekies"
#. yQkFZ
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "Punt vanaf %1"
#. RGnTk
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 punte vanaf %1"
#. YxpLB
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoint"
msgid "Gluepoint from %1"
msgstr "Hegpunt van %1"
#. qCFmV
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 gluepoints from %1"
msgstr "%2 hegpunte van %1"
#. CDqRQ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "Merk objekte"
#. SLrPJ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "Merk bykomende objekte"
#. hczKZ
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "Merk punte"
#. 778bF
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "Merk bykomende punte"
#. BLEE8
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark gluepoints"
msgstr "Merk hegpunte"
#. eH9Vs
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional gluepoints"
msgstr "Merk addisionele hegpunte"
#. D5ZZA
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "Skep %1"
#. 7FoxD
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Voeg %1 in"
#. 9hXBp
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "Kopieer %1"
#. arzhD
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "Verander objekvolgorde van %1"
#. QTZxE
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "Redigeer teks van %1"
#. un957
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "Voeg bladsy in"
#. vBvUC
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "Skrap bladsy"
#. rFgUQ
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "Kopieer bladsy"
#. EYfZc
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "Verander bladsyorde"
#. BQRVo
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "Verwyder toewysing van agtergrondbladsy"
#. 79Cxu
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "Verander toewysing van agtergrondbladsy"
#. 9P8JF
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "Voeg dokument in"
#. w3W7h
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "Voeg laag in"
#. 7pifL
-#: include/svx/strings.hrc:258
+#: include/svx/strings.hrc:259
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "Skrap laag"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "Verander objeknaam van %1 na"
#. D4AsZ
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "Verander objektitel van %1"
#. tqeMT
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "Verander objekbeskrywing van %1"
#. XcY5w
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValON"
msgid "on"
msgstr "aan"
#. e6RAB
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "af"
#. gaXKQ
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "ja"
#. 65SoV
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "Nee"
#. aeEuB
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "Tipe 1"
#. BFaLY
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "Tipe 2"
#. KFMjw
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "Tipe 3"
#. 48UKA
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "Tipe 4"
#. DVm64
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "Horisontaal"
#. ZYYeS
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "Vertikaal"
#. HcoYN
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Outomaties"
#. uZNFq
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "Af"
#. 2ZQvA
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "Proporsioneel"
#. Ej4Ya
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "Pas aan by grootte (alle rye apart) "
#. Wr4kE
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "Gebruik harde attribute"
#. 73uL2
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Bokant"
#. 3Cde5
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "Sentreer"
#. AR3n7
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Onderkant"
#. UmBBe
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "Gebruik volle hoogte"
#. dRtWD
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "Gerek"
#. kGXVu
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Links"
#. bDPBk
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "Sentreer"
#. tVhNN
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Regs"
#. K8NiD
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "Gebruik volle breedte"
#. H7dgd
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "Gerek"
#. q5eQw
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "af"
#. Roba3
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "flits"
#. UDFFC
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "Rol deur"
#. A9BQL
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "afwisselend"
#. EkPkn
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "Rol in"
#. x3Yd5
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "links"
#. w7PTQ
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "op"
#. oMaiF
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "regs"
#. tQTCd
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "af"
#. 6MMYx
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "Standaard verbinder"
#. SLdM8
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "Lynverbinder"
#. ZAtDC
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "Reguit verbinder"
#. 9qXds
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "Krom verbinder"
#. MGEse
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Standaard"
#. sNziy
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Radius"
#. zGpyM
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "outomaties"
#. jA4pb
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "op die lyn"
#. iqYjg
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "gebroke lyn"
#. h8npu
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "onder die lyn"
#. WL8XG
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "gesentreer"
#. hy9eX
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "volle sirkel"
#. 6BdZt
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "Ronde sektordiagram"
#. j6Bc3
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "Sirkelsegment"
#. 7sN8d
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "Boog"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "Onbekende attribuut"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:315
+#: include/svx/strings.hrc:316
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "Lynstyl"
#. BbP7X
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "Lynpatroon"
#. 4NCnS
-#: include/svx/strings.hrc:317
+#: include/svx/strings.hrc:318
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "Lynbreedte"
#. NuJkv
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "Lynkleur"
#. NgaPV
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "Lynkop"
#. UYBDU
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "Lyn einde"
#. DJkAF
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "Breedte van lynkop"
#. QqA6b
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "Breedte van lyn einde"
#. FcHDB
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "Sentreer pylpunt"
#. KnFtT
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "Sentreer pylveer"
#. 2UZUA
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "Lyndeursigtigheid"
#. 5MLYD
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "Lynlas"
#. ArqSC
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "Lynattribute"
#. dufaT
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "Invulstyl"
#. RDcH6
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "Invulkleur"
#. DJM9B
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "Gradiënt"
#. gbABb
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "Arsering"
#. GE68t
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Invulbiskaart"
#. DV2Ss
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Deursigtigheid"
#. eK8kh
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "Getal gradiëntstappe"
#. AVtYF
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "Teëlinvulling"
#. D7T2o
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "Posisie van invulbiskaart"
#. NVLGP
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "Breedte van invulbiskaart"
#. PSCTE
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "Hoogte van invulbiskaart"
#. zW4zt
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "Deursigtige gradiënt"
#. DBBgQ
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "Invulling gereserveer vir 2"
#. PaSqp
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "Teëlgrootte nie in %"
#. fwikV
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "Teëlverplasing X in %"
#. FQgvE
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "Teëlverplasing Y in %"
#. NUEGF
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Biskaartskalering"
#. pc9yk
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "Teëlposisie X in %"
#. DH43F
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "Teëlposisie Y in %"
#. 8GFpS
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "Agtergrondinvulling"
#. 2SvhA
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "Area-attribute"
#. TE8CS
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "Fontwerkstyl"
#. qMnRZ
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "Fontwerk-belyning"
#. fpGEZ
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "Fontwerkspasiëring"
#. CUBXL
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "Fontwerk begin van font"
#. JSVHo
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "Fontwerkspieëlbeeld"
#. P5W29
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "Fontwerkbuitelyn"
#. LKCDD
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "Fontwerkskaduwee"
#. oDiYn
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "Fontwerkskaduweekleur"
#. sFLRA
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "Fontwerkskaduweeverplasing X"
#. daERW
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "Fontwerkskaduweeverplasing Y"
#. LdeJZ
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "Versteek fontwerkbuitelyn"
#. 3sPPg
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "Fontwerkskaduweedeursigtigheid"
#. q6MHs
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "Skadu"
#. dSwen
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "Skadukleur"
#. HcLrC
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "Skaduweespasiëring X"
#. TMGmk
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "Skaduweespasiëring Y"
#. u5baB
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "Skadudeursigtigheid"
#. AtDxf
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr "Skadu verdof"
#. sDFuG
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "3-D-skadu"
#. FGU8f
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "Perspektiefskadu"
#. MV529
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "Soort sleutel"
#. GAtWb
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "Vaste legendehoek"
#. SgHKq
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "Legendehoek"
#. gwcQp
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "Spasiëring van legendelyne"
#. 6uEae
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "Uitgangsbelyning van legende"
#. TXjGv
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "Relatiewe verlaatlegende"
#. Z5bQB
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "Relatiewe verlaatlegende"
#. 4TmFK
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "Absolute uitgang van legende"
#. V9TG8
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "Lengte van legendelyn"
#. haQgi
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "OutoLengte van legendelyne"
#. 8sDXi
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CORNER_RADIUS"
msgid "Corner radius"
msgstr "Hoekradius"
#. GEA3m
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "Minimum raamhoogte"
#. 3jdRR
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "OutoPas hoogte"
#. NoJR4
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "Pas teks in raam"
#. EexDC
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "Teksraamspasiëring links"
#. 3thvB
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "Teksraamspasiëring regs"
#. 8x2Xa
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "Teksraamspasiëring bo"
#. WyymX
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "Teksraamspasiëring onder"
#. vdbvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "Vertikale teksanker"
#. QzTNc
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "Maksimum raamhoogte"
#. CcAnR
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "Minimum raamwydte"
#. i6nqD
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "Maksimum raamwydte"
#. irtVb
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "OutoPas wydte"
#. BGR8n
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "Horisontale teksanker"
#. ruk5J
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "Tikker"
#. cvDiA
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "Tikkerrigting"
#. GuCC5
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "Tikker begin binnekant"
#. ipog5
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "Tikker stop binnekant"
#. pWAHL
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "Getal tikkerlopies"
#. vGEjP
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "Tikkerspoed"
#. SdHEU
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "Tikkerstapgrootte"
#. LzoA5
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "Vloei van raamwerkteks"
#. tNbcC
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXTCOLUMNS_NUMBER"
msgid "Columns number"
msgstr "Kolomnommering"
#. DxZkZ
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXTCOLUMNS_SPACING"
msgid "Columns spacing"
msgstr "Kolomspasiëring"
#. HDtDf
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "Gebruikergedefinieerde attribute"
#. F9FzF
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "Gebruik fontonafhanklike reëlspasiëring"
#. jTAhz
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "Vou teks in vorm om"
#. QDaB6
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr "Volgende koppeling in teksketting"
#. BA5dh
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "Tipe verbinder"
#. CoYH2
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "Horis. spasiëring objek 1"
#. xdvs2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "Vert. spasiëring objek 1"
#. FB4Cj
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "Horis. spasiëring objek 2"
#. uGKvj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "Vert. spasiëring objek 2"
#. FSkBP
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "Plak spasiëring objek 1"
#. 845KH
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "Plak spasiëring objek 2"
#. FEDAf
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "Getal skuifbare lyne"
#. EnGaG
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "Verplasing lyn 1"
#. 5XFzK
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "Verplasing lyn 2"
#. nBFrd
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "Verplasing lyn 3"
#. x7oEC
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Tipe dimensionering"
#. 2XCPo
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "Dimensiewaarde - horisontale posisie"
#. DxA8Z
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "Dimensiewaarde - vertikale posisie"
#. LQCsj
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "Dimensie lynspasie"
#. jZBoK
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "Dimensiehulp lynoorhang"
#. Bhboy
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "Dimensiehulp lynspasiëring"
#. jw9E7
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "Agterstand van dimensiehulp lyn 1"
#. CYFg6
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "Agterstand van dimensiehulp lyn 2"
#. ocvCK
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "Dimensionering van onderste rand"
#. cFVVA
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "Dimensiewaarde oor dimensielyn"
#. VVAgC
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "Roteer dimensiewaarde met 180 grade"
#. iFX7y
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "Dimensielynoorhang"
#. DoBGo
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "Meet eenheid"
#. 2NBMp
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "Bykomende skaalfaktor"
#. 4yTAW
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "Meet eenheidsvertoon"
#. NFDC3
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "Formaat van dimensiewaarde"
#. UBjQk
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "OutoPosisionering van die dimensiewaarde"
#. GDQC3
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "Hoek vir die outomatiese posisionering van die dimensiewaarde"
#. DB243
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "Bepaling van die dimensiewaarde hoek"
#. i3Bah
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "Hoek van die dimensiewaarde"
#. qWKC7
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "Desimale plekke"
#. wkrNX
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "Tipe sirkel"
#. FRFU8
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "Beginhoek"
#. FmSKG
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "Eindhoek"
#. ejn6F
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "Beskermde objekposisie"
#. ZPEB9
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "Beskermde objekgrootte"
#. BN5CM
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "Objek, drukbaar"
#. 3Digj
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "Objek, sigbaar"
#. nZLtM
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "ID-vlak"
#. f3ed2
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "Laag"
#. rb6GC
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "Objeknaam"
#. 5zRFi
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "Posisie X, voltooi"
#. 5enZ7
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "Posisie Y, voltooi"
#. 2V5Mn
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "Totale breedte"
#. P6Y6W
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "Hoogte, voltooi"
#. yFnnC
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "Enkele posisie X"
#. jEGfd
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "Enkele posisie Y"
#. YJFnY
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "Enkele breedte"
#. bZFkM
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "Enkele hoogte"
#. K5Xuq
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "Logiese breedte"
#. 9Niyk
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "Logiese hoogte"
#. yFmvh
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "Enkele rotasiehoek"
#. zNyKY
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "Enkele skuifskeurhoek"
#. bJv8D
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "Skuif horisontaal"
#. z7EPp
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "Skuif vertikaal"
#. Qn4GS
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "Verstel grootte van X, enkel"
#. VCtZa
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Verstel grootte van Y, enkel"
#. NxatH
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "Enkele rotasie"
#. gNVw9
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "Enkele horisontale skuifskeur"
#. iCzED
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "Enkele vertikale skuifskeur"
#. HQcJt
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "Verstel grootte van X, voltooi"
#. VcK8z
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Verstel grootte van Y, voltooi"
#. vgGU4
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "Roteer almal"
#. 3faE4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "Skuifskeur horisontaal, voltooi"
#. RAEPz
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "Skuifskeur vertikaal, voltooi"
#. gtXM3
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "Verwysingspunt 1 X"
#. YpQDc
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "Verwysingspunt 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "Verwysingspunt 2 X"
#. Rty4j
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "Verwysingspunt 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "Woordafbreking"
#. HMmA6
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "Vertoon kolle"
#. 8Q88u
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "Nommerinkepings"
#. inGxX
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "Nommeringsvlak"
#. 2CtLK
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "Kolle en nommering"
#. hCE5d
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "Inkepe"
#. Y5YFm
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "Paragraafspasiëring"
#. feirn
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Reëlspasiëring"
#. gjAVE
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "Paragraafbelyning"
#. offnT
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "Tabuleerders"
#. kpiTD
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "Fontkleur"
#. X535C
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Karakterstel"
#. AEbEz
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "Fontgrootte"
#. UKHSM
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "Fontbreedte"
#. SQWpD
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "Vet (dikte)"
#. AUR7N
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "Onderstreep"
#. v2AEJ
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "Oorlyn"
#. ARvwR
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "Deurhaal"
#. gcVzb
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "Skuinsdruk"
#. kJVaV
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "Skema"
#. CZR4e
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "Fontskaduwee"
#. PFSUR
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "Superskrif/subskrif"
#. DrBio
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Tekssaamdrukking"
#. tUVvP
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "Saamdrukking per hand"
#. S9QCU
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "Geen onderstreping van spasies"
#. GuTzF
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "Tabuleerder"
#. U4qgA
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "Opsionele lynbreuk"
#. jzBEA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "Nieomskakelbare karakter"
#. tZd9C
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Velde"
#. GeKPD
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Rooi"
#. EzAu7
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Groen"
#. TmBML
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "Blou"
#. 7Gqzs
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Helderheid"
#. rziVW
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Kontras"
#. CHepz
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. 2ESVA
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Deursigtigheid"
#. uZYFG
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Negatief"
#. 6aFx2
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "Beeld modus"
#. Ni9KZ
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "Snoei"
#. kVnke
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr "Radius van gloei-effek"
#. 3hvai
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr "Kleur van gloei-effek"
#. eCSE2
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr "Transparansie van gloei-effek"
#. 8qNHk
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr "Radius van sagte randeffek"
#. nVcjU
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "Mediaobjek"
#. nbHgw
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "Mediaobjekte"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:523
+#: include/svx/strings.hrc:524
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "Voeg kolom in"
#. SAmd8
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "Voeg ry in"
#. yFDYp
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Skrap kolom"
#. 9SF9L
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Skrap ry"
#. iBbtT
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "Verdeel selle"
#. vmzqf
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "Voeg selle saam"
#. 3VVmF
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formateer sel"
#. pSCJC
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "Versprei rye"
#. GdLHf
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "Versprei kolomme"
#. fGNto
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "Skrap selinhoud"
#. B33Cb
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "Tabelstyl"
#. ZHBAC
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "Tabelstylinstellings"
#. eERmE
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Tabel"
#. XjgSV
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Tabelle"
#. mLDqP
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr "Fontwerk"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:539
+#: include/svx/strings.hrc:540
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "Aaneenlopend"
#. uNL7M
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "Gradiënt"
#. a8YoL
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Biskaart"
#. FDmra
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "Patroon"
#. HcGBQ
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr "Naamlose patroon"
#. GHj4Q
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "Lynstyl"
#. fa7EG
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "Geen"
#. mrTdk
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "Kleur"
#. 5bjE5
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "Arsering"
#. yGRGW
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "Pylpunte"
#. snuCi
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "Pyltjie"
#. 6EvQ7
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "Vierkant"
#. i6cva
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "Sirkel"
#. emz9g
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- geen -"
#. hGaEK
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Deursigtigheid"
#. X4EFw
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "Gesentreer"
#. FFe8m
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "Nie gesentreer nie"
#. hFhmH
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Verstek"
#. DdAzc
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "Grysskaal"
#. RHEXM
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "Swart/wit"
#. bcXbA
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "Watermerk"
#. ZWz8Y
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr "Links-klik met die muis om die agtergrondkleur in te stel en regs-klik om die lynkleur in te stel"
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:562
+#: include/svx/strings.hrc:563
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr "Donkerrooi 2"
#. Rw7nG
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr "Blou"
#. UdEYr
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "Geel"
#. 9AUDK
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr "Donkerblou 1"
#. aSWwv
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr "Ligblou 2"
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:568
+#: include/svx/strings.hrc:569
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "Swart"
#. PwGvV
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Grys"
#. Dp9Az
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "Wit"
#. TGLmD
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "Geel"
#. YpDke
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "Goud"
#. 7aJCZ
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Oranje"
#. mZMFN
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr "Baksteen"
#. juJeM
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Rooi"
#. 7xMrN
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Magenta"
#. ELXiM
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "Pers"
#. UTexf
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "Indigo"
#. qbcF9
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "Blou"
#. hQ44j
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "Turkoois"
#. JpxBr
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Groen"
#. A3aCJ
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "Lemmetjie"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:584
+#: include/svx/strings.hrc:585
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Liggrys"
#. YF2ud
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr "Liggeel"
#. BaXBj
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr "Liggoud"
#. masPL
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr "Ligoranje"
#. k5GY4
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr "Ligte baksteenrooi"
#. KGDDj
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "Ligrooi"
#. nvB2W
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr "Ligte magenta"
#. y96HS
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr "Ligte pers"
#. 8Bg8h
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "Ligte indigo"
#. suGUh
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Ligblou"
#. 5VFSV
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr "Ligte turkoois"
#. 3Z7KA
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "Liggroen"
#. HVPnD
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr "Ligte Lemmetjie"
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:598
+#: include/svx/strings.hrc:599
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr "Donkergrys"
#. EaFik
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr "Donkergeel"
#. AFByn
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr "Donkergoud"
#. qAGnF
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr "Donkeroranje"
#. NC62Q
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr "Donker baksteenrooi"
#. st4Zy
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "Donkerrooi"
#. indkC
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr "Donkermagenta"
#. AE9Ya
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr "Donkerpers"
#. VFKuJ
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr "Donker-indigo"
#. U3qfW
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr "Donkerblou"
#. dYdEW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr "Donker turkoois"
#. qFAAB
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr "Donker groen"
#. C3U7v
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "Donker lemmetjie"
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:612
+#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "Violet"
#. GgboW
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violet"
#. mz3Eo
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Blou"
#. SGvfY
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Blou (buite die spektrum)"
#. dYBjC
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Lentegroen (buite die spektrum)"
#. GCcWR
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Groen (buite die spektrum)"
#. DLuCh
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Geelgroen (buite die spektrum)"
#. s3ZaC
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oranje (buite die spektrum)"
#. A8i2G
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Rooi (buite die spektrum)"
#. j4oEv
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rooskleur (buite die spektrum)"
#. qBpvR
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr "Blou"
#. Y6vVA
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "Siaan"
#. 583vY
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr "Lentegroen"
#. jtKm8
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr "Geelgroen"
#. RkAmE
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr "Rooskleur"
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:628
+#: include/svx/strings.hrc:629
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr "Grys A"
#. 3b7sB
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr "Geel A"
#. DbqvY
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr "Amber A"
#. nFENC
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr "Amber"
#. i8Tx3
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr "Oranje A"
#. DMVTT
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr "Donkeroranje A"
#. LgNfg
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr "Donkeroranje"
#. A4JAB
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr "Rooi A"
#. jsEPc
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr "Pienk A"
#. cFBzv
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr "Pers A"
#. p6AAX
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr "Donkerpers A"
#. WcMy9
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr "Donderpers"
#. e4rqj
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr "Indigo A"
#. r3rtQ
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr "Blou A"
#. dDQEi
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr "Ligblou A"
#. BepQT
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr "Cyaan A"
#. PvkCw
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr "Turkoois A"
#. znZyu
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr "Groen A"
#. nZDMp
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr "Liggroen A"
#. 7RWqh
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr "Lemmetjie A"
#. vuq8i
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr "Bruin A"
#. wcNMK
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr "Bruin"
#. RA8KB
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr "Blougrys A"
#. yXhED
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr "Blougrys"
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:653
+#: include/svx/strings.hrc:654
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "Klassieke blou"
#. CWbzY
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "Blougrys"
#. DkKFF
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Wynrooi"
#. 5hZu8
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "Pastel geel"
#. wSEGQ
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "Pastel groen"
#. pUEkF
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "Donkerviolet"
#. qVhW9
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Salm"
#. QV77P
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "Seeblou"
#. gYFV6
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Grafiek"
#. LXcFL
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "Hemelsblou"
#. QbGU3
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "Geelgroen"
#. UDfTh
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "Pienk"
#. FXDuA
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "Turkoois"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:667
+#: include/svx/strings.hrc:668
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3-D"
#. GtMuR
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Swart 1"
#. AhPLy
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Swart 2"
#. jVxFC
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Blou"
#. FacjB
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "Bruin"
#. uQSDF
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "Valuta"
#. sQpNL
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "Valuta 3-D"
#. ACACr
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "Valutagrys"
#. yy7mJ
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "Valutalila"
#. 4THUt
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "Valutaturkoois"
#. a8AGf
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Grys"
#. B4e9f
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Groen"
#. 3mz4G
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "Lila"
#. gdfFF
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Rooi"
#. GsAVb
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "Turkoois"
#. sZbit
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Geel"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:684
+#: include/svx/strings.hrc:685
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr "Akademies"
#. CYMbi
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr "Lys blou"
#. njUDn
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr "Lys groen"
#. GUk5r
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr "Lys rooi"
#. oNMgD
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr "Lys geel"
#. YVY2f
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "Elegant"
#. Q9rDT
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Finansieel"
#. 3qSCd
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr "Eenvoudige kolomme"
#. hksaM
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr "Eenvoudige ry"
#. CHXkk
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr "Eenvoudige skadu"
#. XrHFB
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "Lynlas gemiddeld"
#. zbAG7
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "Lynlas skuins"
#. EtQJT
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "Lynlas mitre"
#. YUtBv
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "Lynlas rond"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:699
+#: include/svx/strings.hrc:700
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "Plat lyn-einde"
#. zKt6C
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "Ronde lyn-einde"
#. 5Lbx4
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "Reghoekige lyn-einde"
#. YXbPg
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Gradiënt"
#. mZwMD
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "Lineêr blou/wit"
#. WyGuh
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "Lineêr magenta/groen"
#. cLHvA
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "Lineêr geel/bruin"
#. Kfkbm
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "Radiaal groen/swart"
#. uiTTS
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "Radiaal rooi/geel"
#. SsUvr
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "Reghoekig rooi/wit"
#. CKwQP
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "Vierkantig geel/wit"
#. hi3tb
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "Ellipsoïed blougrys/ligblou"
#. b6AwV
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Aksiaal ligrooi/wit"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:713
+#: include/svx/strings.hrc:714
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Diagonaal 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:715
+#: include/svx/strings.hrc:716
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Diagonaal 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:717
+#: include/svx/strings.hrc:718
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Diagonaal 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:719
+#: include/svx/strings.hrc:720
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Diagonaal 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:721
+#: include/svx/strings.hrc:722
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Diagonaal 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:723
+#: include/svx/strings.hrc:724
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Diagonaal 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:725
+#: include/svx/strings.hrc:726
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Diagonaal 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:727
+#: include/svx/strings.hrc:728
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Diagonaal 4r"
#. yqda8
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Diagonaal blou"
#. GCtJC
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "Diagonaal groen"
#. LCQEB
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "Diagonaal oranje"
#. oD7FW
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Diagonaal rooi"
#. vuyUG
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "Diagonale turkoois"
#. mGtyc
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "Diagonaal violet"
#. cArVy
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "Vanuit een hoek"
#. gvXLL
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "Vanuit een hoek, blou"
#. GaTPh
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "Vanuit een hoek, groen"
#. GE5vm
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "Vanuit een hoek, oranje"
#. BFTnr
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "Vanuit een hoek, rooi"
#. AFKRL
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "Vanuit een hoek, turkoois"
#. djBGe
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "Vanuit een hoek, violet"
#. pwDuE
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "Vanuit die middel"
#. y8qpL
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "Vanuit die middel, blou"
#. PGt5w
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "Vanuit die middel, groen"
#. CyLXB
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "Vanuit die middel, oranje"
#. vkERJ
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "Vanuit die middel, rooi"
#. Sq2SE
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "Vanuit die middel, turkoois"
#. DoSmH
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "Vanuit die middel, voilet"
#. 9XHkg
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Horisontaal"
#. FDG7B
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "Horisontaal blou"
#. ZEfzF
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "Horisontaal groen"
#. GFRCF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "Horisontale oranje"
#. iouxG
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "Horisontaal rooi"
#. Gta9k
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "Horisontaal turkoois"
#. Tdpw4
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "Horisontaal violet"
#. DyVEP
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "Radiaal"
#. Uyhuj
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "Radiaal blou"
#. MA6Qs
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "Radiaal groen"
#. Pt24U
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "Radiaal oranje"
#. 37T3A
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "Radiaal rooi"
#. gLwZp
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "Radiaal turkoois"
#. gka9C
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "Radiaal violet"
#. BaGs9
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "Vertikaal"
#. DqGbG
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "Vertikaal blou"
#. FCa2X
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "Vertikaal groen"
#. BNSiE
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "Vertikaal oranje"
#. DfiaF
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "Vertikaal rooi"
#. 4htXp
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "Vertikaal turkoois"
#. FVCCq
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "Vertikaal violet"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:770
+#: include/svx/strings.hrc:771
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "Grys gradiënt"
#. CDxDN
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "Geel gradiënt"
#. amMze
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "Oranje gradiënt"
#. bodAW
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "Rooi gradiënt"
#. Zn2x3
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "Pienk gradiënt"
#. xXMfH
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Lug"
#. RYfTi
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "Blougroen gradiënt"
#. jAu7g
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "Blou gradiënt"
#. idyKS
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "Pers buis"
#. fFZia
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Nag"
#. 4ECED
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "Groen gradiënt"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:782
+#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr "Paste boeket"
#. 9BV4L
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr "Pastel droom"
#. jEVDi
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr "Blou aksent"
#. ZAj48
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr "Wit met grys"
#. CJqu3
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr "Gestippelde grys"
#. s6Z54
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr "Londonse newel"
#. nk99S
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr "Turkoois tot blou"
#. ud3Bc
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr "Middernag"
#. 3DFV9
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr "Diep oseaan"
#. beAAG
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr "Ondersee"
#. LCJCH
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr "Groen gras"
#. wiGu5
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr "Neon lig"
#. EGqXT
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr "Sonskyn"
#. WCs3M
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr "Aanwesig"
#. 99B5Z
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr "Mahonie"
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:798
+#: include/svx/strings.hrc:799
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr "Swart 0 grade"
#. BUCv6
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr "Swart 90 grade"
#. gyzNu
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr "Swart 180 grade gekruis"
#. KYmyj
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr "Blou 45 grade"
#. 2qkyC
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr "Blou -45 grade"
#. GFqzJ
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr "Blou 45 grade gekruis"
#. wRXH2
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr "Groen 30 grade"
#. JAkb9
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr "Groen 60 grade"
#. DnKyA
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr "Groen 90 grade drievoudig"
#. oTAUx
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr "Rooi 45 grade"
#. xcHED
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr "Rooi 90 grade gekruis"
#. UZM2R
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr "Rooi -45 grade drievoudig"
#. TypfV
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr "Geel 45 grade"
#. eRFD8
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr "Geel 45 grade gekruis"
#. JhXx3
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr "Geel 45 grade drievoudig"
#. 78jyB
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr "Uitbroei"
#. FJati
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "Leeg"
#. Q4jUs
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr "Wit geverf"
#. iHX2t
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr "Papier tekstuur"
#. mAyG3
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr "Gefrommelde papier"
#. i3ARe
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr "Grafiekpapier"
#. 6izYJ
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr "Perkament"
#. mQCXG
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr "Heining"
#. TriUQ
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr "Houtbord"
#. Hp2Gp
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr "Esdoring blare"
#. 2B5Wr
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr "Grassny"
#. bAE9x
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr "Kleurvolle klippies"
#. nqBbP
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr "Koffiebone"
#. CQS6y
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr "Kleine wolke"
#. 2hE6A
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr "Badkamerteëls"
#. KZeGr
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr "Rotsmuur"
#. wAELs
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr "Sebra"
#. AVGfC
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr "Kleur strepe"
#. ZoUmP
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr "Puin"
#. 5FiBd
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr "Perkament studio"
#. HYfqK
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr "Nagtelike hemel"
#. NkYV3
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr "Swembad"
#. Co6U3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Biskaart"
#. KFEX5
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr "Faktuur papier"
#. x5eiA
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr "Beton"
#. RxiMA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr "Steenmuur"
#. WNEfT
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr "Klipmuur"
#. dFqW3
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr "Blomme"
#. FzePv
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr "Ruimte"
#. FzVch
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr "Yslig"
#. YGtzc
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr "Marmer"
#. Rzgwp
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr "Sandlig"
#. cK72d
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr "Klip"
#. TnkWd
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr "Wit diffusie"
#. kksvW
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr "Oppervlakte"
#. BQj9p
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr "Karton"
#. poA6e
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr "Studio"
#. YEbqw
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 persent"
#. AAn36
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "10 persent"
#. NLTbt
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "20 persent"
#. vx2XC
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "25 persent"
#. weQqs
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "30 persent"
#. CAdAS
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "40 persent"
#. 5T5vP
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "50 persent"
#. aNdJE
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "60 persent"
#. 3vD8U
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "70 persent"
#. UJmCD
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "75 persent"
#. i9RCR
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "80 persent"
#. 2oEkC
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "90 persent"
#. a3yZ5
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr "Lig omlaag diagnaal"
#. oiGTx
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr "Lig omhoog diagnaal"
#. CGpy7
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr "Donker omlaag diagnaal"
#. cucpa
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr "Donker omhoog diagnaal"
#. EFDcT
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr "Breed omlaag diagnaal"
#. CWmH5
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr "Breed omhoog diagnaal"
#. BZJUK
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr "Lig vertikaal"
#. B5FVF
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "Lig horisontaal"
#. daP9i
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "Smal vertikaal"
#. JD5FJ
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "Smal horisontaal"
#. eB4wk
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "Donker vertikaal"
#. MeoCx
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "donker horisontaal"
#. gAqnG
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "Gestippeld omlaag diagnaal"
#. DGB5k
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "Gestippeld omhoog diagnaal"
#. JC7je
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "Gestippeld horisontaal"
#. iFiBq
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "Gestippeld vertikaal"
#. gWDnG
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "Klein konfetti"
#. vbh6h
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "Groot konfetti"
#. XFemm
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr "Sigsag"
#. mC3BE
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Golf"
#. icCPR
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "Diagnale stene"
#. 8CqPG
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "donker baksteen"
#. GFUZF
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "geweef"
#. bp9ZY
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "geruite"
#. ZrVMS
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "Kol"
#. tFas9
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr "Gestippelde rooster"
#. SECdZ
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr "Gestippelde diamant"
#. ri3Ge
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "dakteël"
#. jD9er
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr "Latwerk"
#. aemFS
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "sfeer"
#. Ds8Ae
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "Klein rooster"
#. a33Ci
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "Groot rooster"
#. BCSZY
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr "Klein skaakbord"
#. Bgczw
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr "Groot skaakbord"
#. sD7Mf
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "Omgerande diamant"
#. RNNkR
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr "Solied diamant"
#. HJkgr
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "Vertikaal"
#. ED3Ga
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "Horisontaal"
#. ENYtZ
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "Neerwaarts diagnaal"
#. mbjPX
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "Opwaarts diagnaal"
#. TxAfM
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "Kruis"
#. 4mGJX
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "Diagnaal kruis"
#. J4CJa
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr "Gestreepies-gestippeld"
#. Rno6q
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr "Stippelde stippelvormige stygende diagonaal"
#. pFZkq
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr "Vaste en stippellyn"
#. NA5sT
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr "Punt"
#. nCpL4
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr "Lang punt"
#. tHgFv
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH2"
msgid "Dot (Rounded)"
msgstr "Dot (Gerond)"
#. 2X7pw
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr "Strepie"
#. A46B5
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr "Lang strepie"
#. axE2r
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr "Dubbel strepie"
#. beDTh
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr "Lang-streep punt"
#. gVPtU
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr "Dubbelstreep punt"
#. UFaLC
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr "Dubbel streep punt streep"
#. F9cPw
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr "Ultradun gestippeld"
#. s3rBZ
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr "Fyn gestippeld"
#. w7W8j
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr "Ultrafyn gestreep"
#. xWgiA
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr "Fyn gestreep"
#. u34Ff
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr "Fyn gestreep"
#. hT4CE
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr "Gestreep"
#. T7sVF
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr "Lyn styl 9"
#. evPXr
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr "3 strepies 3 punte"
#. H7iUz
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr "Ultradun 2 punte 3 strepies"
#. KpCzr
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr "2 punte 1 strepie"
#. zbWk3
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr "Lyn met fyn punte"
#. qqS4v
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH20"
msgid "Dash Dot"
msgstr "Strepie Dot"
#. 5ZGZy
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH21"
msgid "Long Dot (Rounded)"
msgstr "Lange Dot (Gerond)"
#. Ac2F2
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH22"
msgid "Dash Dot Dot"
msgstr "Strepie Dot Dot"
#. mWMXG
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_DASH23"
msgid "Dash (Rounded)"
msgstr "Strepie (Gerond)"
#. B6fd2
-#: include/svx/strings.hrc:931
+#: include/svx/strings.hrc:932
msgctxt "RID_SVXSTR_DASH24"
msgid "Long Dash (Rounded)"
msgstr "Lang Strepie (Gerond)"
#. ds2VE
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_DASH25"
msgid "Double Dash (Rounded)"
msgstr "Dubbel Strepie (Gerond)"
#. qtCkm
-#: include/svx/strings.hrc:933
+#: include/svx/strings.hrc:934
msgctxt "RID_SVXSTR_DASH26"
msgid "Dash Dot (Rounded)"
msgstr "Strepie Dot (Gerond)"
#. psNix
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_DASH27"
msgid "Long Dash Dot (Rounded)"
msgstr "Lang Strepie Dot (Gerond)"
#. FWkBJ
-#: include/svx/strings.hrc:935
+#: include/svx/strings.hrc:936
msgctxt "RID_SVXSTR_DASH28"
msgid "Double Dash Dot (Rounded)"
msgstr "Dubbel Strepie Dot (Gerond)"
#. eiCNz
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_DASH29"
msgid "Dash Dot Dot (Rounded)"
msgstr "Strepie Dot Dot (Gerond)"
#. BbE5B
-#: include/svx/strings.hrc:937
+#: include/svx/strings.hrc:938
msgctxt "RID_SVXSTR_DASH30"
msgid "Double Dash Dot Dot (Rounded)"
msgstr "Dubbel Strepie Dot Dot (Gerond)"
#. iKAwD
-#: include/svx/strings.hrc:939
+#: include/svx/strings.hrc:940
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr "Alle formate"
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:941
+#: include/svx/strings.hrc:942
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr "Konkaaf kort"
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:943
+#: include/svx/strings.hrc:944
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Vierkant 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:945
+#: include/svx/strings.hrc:946
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr "Pyl kort"
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:947
+#: include/svx/strings.hrc:948
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr "Maatlyne"
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:949
+#: include/svx/strings.hrc:950
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "Dubbelpyltjie"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:951
+#: include/svx/strings.hrc:952
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr "Driehoek"
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:953
+#: include/svx/strings.hrc:954
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr "Konkaaf"
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:955
+#: include/svx/strings.hrc:956
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr "Pyl groot"
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:957
+#: include/svx/strings.hrc:958
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr "Maatlyn"
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:959
+#: include/svx/strings.hrc:960
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Sirkel"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:961
+#: include/svx/strings.hrc:962
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Vierkant"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:963
+#: include/svx/strings.hrc:964
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Pyltjie"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:965
+#: include/svx/strings.hrc:966
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr "Halfsirkel"
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:967
+#: include/svx/strings.hrc:968
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "Ongevulde driehoek"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:969
+#: include/svx/strings.hrc:970
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "Ongevulde diamant"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:971
+#: include/svx/strings.hrc:972
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Diamant"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:973
+#: include/svx/strings.hrc:974
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "Sirkel, oningevul"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:975
+#: include/svx/strings.hrc:976
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "Vierkant 45, oningevul"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:977
+#: include/svx/strings.hrc:978
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "oningevulde vierkant"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:979
+#: include/svx/strings.hrc:980
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr "Ongevulde halfsirkel"
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:981
+#: include/svx/strings.hrc:982
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr "Maatlyn pyl"
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:983
+#: include/svx/strings.hrc:984
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr "Kort lyn"
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:985
+#: include/svx/strings.hrc:986
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr "Lyn"
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:987
+#: include/svx/strings.hrc:988
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr "Halwe Pyl links"
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:989
+#: include/svx/strings.hrc:990
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr "Halwe Pyl regs"
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:991
+#: include/svx/strings.hrc:992
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr "Omgedraaide Pyl"
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:993
+#: include/svx/strings.hrc:994
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr "Kraaipoot Een"
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr "Kraaipoot slegs Een"
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr "Kraaipoot Baie"
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr "Kraaipoot Baie tot Een"
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr "Kraaipoot Nul Een"
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1003
+#: include/svx/strings.hrc:1004
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr "Kraaipoot Nul tot Baie"
#. EXsKo
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Deursigtigheid"
#. hGytB
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr "Groen 1 (%PRODUCTNAME hoofkleur)"
#. Msh88
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "Groen aksent"
#. opj2M
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "Blou Aksent"
#. tC5jE
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "Oranje Aksent"
#. 3T9pJ
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Pers"
#. N5FWG
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "Pers Aksent"
#. Nhtbq
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "Geel Aksent"
#. apBBr
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "Galerytema"
#. BseGn
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Suksesvol herwin"
#. LfjDh
-#: include/svx/strings.hrc:1015
+#: include/svx/strings.hrc:1016
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "Oorspronklike dokument herwin"
#. BEAbm
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "Herwinning het misluk"
#. 5ye7z
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "Herwinning onderweg"
#. tEbUT
-#: include/svx/strings.hrc:1018
+#: include/svx/strings.hrc:1019
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "Nog nie herwin nie"
#. EaAMF
-#: include/svx/strings.hrc:1019
+#: include/svx/strings.hrc:1020
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION het begin om u dokumente te herwin. Afhangende van die grootte van die dokumente kan hierdie proses ’n rukkie duur."
#. AicJe
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "Herwinning van u dokumente is afgehandel. Kliek “Klaar” om u dokumente te sien."
#. ZbeCG
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "~Klaar"
#. BBeKk
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "Laaste doelgemaakte waarde"
#. mENBU
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "pt"
#. fRyqX
-#: include/svx/strings.hrc:1025
+#: include/svx/strings.hrc:1026
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "Beeld Uitvoer"
#. xXhtG
-#: include/svx/strings.hrc:1026
+#: include/svx/strings.hrc:1027
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "Stoor as beeld"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Voeg objek(te) in"
#. Heqmn
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "Roteer 3-D-objek"
#. AC56T
-#: include/svx/strings.hrc:1031
+#: include/svx/strings.hrc:1032
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "Skep ekstrusieobjek"
#. 4DonY
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "Skep rotasieobjek"
#. EL9V9
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "Verdeel 3-D-objek"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[Almal]"
#. RZVDm
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Grafikafilter"
#. YNjeD
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Nuwe tema"
#. 5uYha
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "3-D-effekte"
#. 78DGx
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "Animasies"
#. zGEez
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Kolparagrawe"
#. MwX9z
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Kantoor"
#. dAwiC
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Vlaggies"
#. Ccn8V
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Vloeidiagramme"
#. 6ouMS
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "Emotikons"
#. 8GPFu
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Beelde"
#. sqh2w
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Agtergronde"
#. B3KuT
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Tuisblad"
#. WR8JQ
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "Interaksie"
#. EbEZ6
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "Kaarte"
#. GALA8
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "Mense"
#. ZMoiA
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "Oppervlakke"
#. hNaiH
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Rekenaars"
#. mrvvG
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "Diagramme"
#. HhrDx
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "Omgewing"
#. 2jVzE
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Finansies"
#. cmF3B
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "Vervoer"
#. as3XM
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "Teksvorms"
#. gGyFP
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "Klanke"
#. 5NrPj
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Simbole"
#. AiXUK
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "My tema"
#. uRxP4
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Pyltjies"
#. c3WXh
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "Ballonne"
#. pmiE7
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Sleutelbord"
#. LYdAf
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Tyd"
#. 4UGrY
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Voorlegging"
#. a46Xm
-#: include/svx/strings.hrc:1069
+#: include/svx/strings.hrc:1070
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
#. YpuGv
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Navigasie"
#. gAJH4
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "Kommunikasie"
#. ETEJu
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Finansies"
#. rNez6
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Rekenaars"
#. ioX7y
-#: include/svx/strings.hrc:1074
+#: include/svx/strings.hrc:1075
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "Klimaat"
#. MmYFp
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "Skool en universiteit"
#. EKFgg
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "Probleemoplossing"
#. GgrBp
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Skermboontjies"
#. E6onK
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Seleksie druk"
#. HzX9m
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "Wil u die seleksie of die hele dokument druk?"
#. 3UyC8
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~Alles"
#. UxfS3
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "~Seleksie"
#. KTgDd
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "Ekstrusie noordwes"
#. N6KLd
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "Ekstrusie noord"
#. AB6Vj
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "Ekstrusie noordoos"
#. NBBEB
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "Ekstrusie wes"
#. d9n5U
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "Ekstrusie agtertoe"
#. A2mcf
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "Ekstrusie oos"
#. onGib
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "Ekstrusie suidwes"
#. XLQFD
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "Ekstrusie suid"
#. v5wRm
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "Ekstrusie suidoos"
#. 4DGjm
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 cm"
#. kRzVE
-#: include/svx/strings.hrc:1094
+#: include/svx/strings.hrc:1095
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 cm"
#. CSmTh
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2.5 cm"
#. eYrvo
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 cm"
#. G4Ckx
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~cm"
#. LGHsL
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 duim"
#. HPevm
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0,~5 duim"
#. GvKjC
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 duim"
#. gmzHb
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 duim"
#. DE5kt
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 duim"
#. K5dY9
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "Geen invulling"
#. TFBK3
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "Deursigtig"
#. c7adj
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Verstek"
#. djHis
-#: include/svx/strings.hrc:1107
+#: include/svx/strings.hrc:1108
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Grense"
#. PURr6
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "Randstrookstyl"
#. 9Ckww
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "Meer nummering..."
#. cDG4s
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "Meer kolparagraaf tekens..."
#. uDT6G
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "Deur Outeur"
#. q2Le9
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Bladsye"
#. jfL9n
-#: include/svx/strings.hrc:1113
+#: include/svx/strings.hrc:1114
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Maak formatering skoon"
#. f6nP8
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "Meer style..."
#. DPbrc
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "Meer opsies..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "Fontnaam"
#. SKCYy
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "Font Naam. Die huidige font is nie beskikbaar nie en sal vervang word."
#. CVvXU
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "doelgemaak"
#. xqzJj
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "Dokumentkleure"
#. aVTAG
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_THEME_COLORS"
msgid "Theme colors"
msgstr "Tema kleure"
#. 6BoWp
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "Dokumentkleur"
#. D6gmu
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_THEME_COLOR1"
msgid "Background - Dark 1"
msgstr "Agtergrond - Donker 1"
#. JBJhM
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_THEME_COLOR2"
msgid "Text - Light 1"
msgstr "Teks - Lig 1"
#. C7MSY
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_THEME_COLOR3"
msgid "Background - Dark 2"
msgstr "Agtergrond - Donker 2"
#. YdMAB
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_THEME_COLOR4"
msgid "Text - Light 2"
msgstr "Teks - Lig 2"
#. NAAZJ
-#: include/svx/strings.hrc:1127
+#: include/svx/strings.hrc:1128
msgctxt "RID_SVXSTR_THEME_COLOR5"
msgid "Accent 1"
msgstr "Aksent 1"
#. 6txaB
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXSTR_THEME_COLOR6"
msgid "Accent 2"
msgstr "Aksent 2"
#. fECsk
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXSTR_THEME_COLOR7"
msgid "Accent 3"
msgstr "Aksent 3"
#. 4DH3P
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXSTR_THEME_COLOR8"
msgid "Accent 4"
msgstr "Aksent 4"
#. dUUDX
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXSTR_THEME_COLOR9"
msgid "Accent 5"
msgstr "Aksent 5"
#. 73ZEk
-#: include/svx/strings.hrc:1132
+#: include/svx/strings.hrc:1133
msgctxt "RID_SVXSTR_THEME_COLOR10"
msgid "Accent 6"
msgstr "Aksent 6"
#. VKjfB
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVXSTR_THEME_COLOR11"
msgid "Hyperlink"
msgstr "Hiperskakel"
#. DBfXC
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_THEME_COLOR12"
msgid "Followed Hyperlink"
msgstr "Gevolgde Hiperskakel"
#. sNGoN
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_THEME_EFFECT1"
msgid "%1, 80% Lighter"
msgstr "%1, 80% Ligter"
#. uQBgP
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_THEME_EFFECT2"
msgid "%1, 60% Lighter"
msgstr "%1, 60% Ligter"
#. sEpvU
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_THEME_EFFECT3"
msgid "%1, 40% Lighter"
msgstr "%1, 40% Ligter"
#. XSfNG
-#: include/svx/strings.hrc:1138
+#: include/svx/strings.hrc:1139
msgctxt "RID_SVXSTR_THEME_EFFECT4"
msgid "%1, 25% Darker"
msgstr "%1, 25% Donker"
#. 3xjEA
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_THEME_EFFECT5"
msgid "%1, 50% Darker"
msgstr "%1, 50% Donker"
#. DJGyY
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Ekstrusie"
#. TyWTi
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Pas ekstrusie aan/af"
#. DKFYE
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Kantel af"
#. 2Rrxc
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Kantel op"
#. eDpJK
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Kantel links"
#. CWDSN
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Kantel regs"
#. CxYgt
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Verander ekstrusiediepte"
#. c5JCp
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Verander gerigtheid"
#. KDSyh
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Verander projeksiesoort"
#. JpzeS
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Verander beligting"
#. j4AR9
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Verander helderheid"
#. yA2xm
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "Verander ekstrusieoppervlak"
#. DFEZP
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Verander ekstrusiekleur"
#. uPyWe
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Fontwerk"
#. 7RVov
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Pas Fontwerk-vorm toe"
#. h3CLw
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Pas Fontwerk-selfdeletterhoogtes toe"
#. 6h2dG
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Pas Fontwerk-belyning toe"
#. eKHcV
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "Pas Fontwerk-karakterspasiëring toe"
#. oo88Y
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "met"
#. 4sz83
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Styl"
#. fEHXC
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "en"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "Hoekbeheer"
#. CUEEW
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Seleksie van 'n hoekpunt."
#. cQmVp
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Bo links"
#. TtnJn
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "Bo middel"
#. UERVC
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Bo regs"
#. CznfN
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "Links middel"
#. jvzC7
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Sentreer"
#. HPtYD
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "Regs middel"
#. v4SqB
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Onder links"
#. daA8a
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "Onder middel"
#. DGWf8
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Onder regs"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "Kontoerbeheer"
#. aMva8
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Dit is waar u die kontoer kan redigeer."
#. DXEuF
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Spesialekarakter-keuse"
#. JfRzP
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "Kies spesiale karakters in hierdie area."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Karakterkode "
#. HECeC
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Toevoer benodig in veld '#'. Tik asseblief 'n waarde in."
#. w4wm8
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Vorms"
#. cz8aS
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Geen beheer geselekteer nie"
#. JG7Es
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Eienskappe: "
#. YQvBF
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Vormeienskappe"
#. qS9Rn
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Vormnavigator"
#. PzEVD
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Vorm"
#. FWPxF
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "Verborge"
#. DnoDH
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Vorm"
#. Ba4Gy
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Versteekte kontrole"
#. wtZqP
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Beheer"
#. HvXRK
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Rekord"
#. HmTfB
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "van"
#. NZ68L
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Voeg veld by:"
#. vGXiw
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Kan nie data na databasis skryf nie"
#. zzFRi
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Sintaksfout in navraaguitdrukking"
#. fS8JJ
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "U beoog om 1 rekord te skrap."
#. Qb4Gk
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# rekords sal geskrap word."
#. zSJQe
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6703,337 +6709,337 @@ msgstr ""
"Wil u in elk geval voortgaan?"
#. Kb7sF
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Navigasiebalk"
#. pKEQb
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Kol"
#. FXRKA
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Stel eienskap '#' op"
#. hXjTN
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Voeg in houer in"
#. BWpyC
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Skrap #"
#. ZeaDk
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Skrap # objekte"
#. VgGrE
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1214
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Vervang 'n houerelement"
#. FoXgt
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Vervang beheer"
#. ZGDAr
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "Tekskassie"
#. CBmAL
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Merkblokkie"
#. xwuJF
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "Kombinasiekassie"
#. WiNUf
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Lyskassie"
#. a7gAj
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Datum-veld"
#. EaBTj
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Tyd-veld"
#. DWfsm
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Numeriese veld"
#. TYjnr
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Geldeenheidveld"
#. B6MEP
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Patroonveld"
#. DEn9D
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "Geformateerde veld"
#. V4iMu
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "Druk knoppie"
#. TreFC
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "Opsieknoppie"
#. NFysA
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "Etiketveld"
#. E5mMK
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "Groepkassie"
#. 5474w
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "Beeldknoppie"
#. qT2Ed
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "Beeldbeheer"
#. 6Qvho
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "Lêerseleksie"
#. uEYBR
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Tabelbeheer "
#. 3SUEn
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "Rolstaaf"
#. VtEN6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Spinknoppie"
#. eGgm4
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Navigasiebalk"
#. yME46
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Veelvoudige seleksie"
#. s94UU
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr "Datum en Tyd veld"
#. PzA5d
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "Geen dataverwante beheerinstrumente in huidige vorm nie!"
#. ZyBEz
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Datum)"
#. guA5u
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Tyd)"
#. 2wgdY
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Filternavigator"
#. BUYuD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Filter vir"
#. AcTBB
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Of"
#. 6RPtu
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "Geldige gebinde beheerinstrumente wat in die tabelaansig gebruik kan word bestaan nie in die huidige vorm nie."
#. iEoGb
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<OutoVeld>"
#. Da6gx
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Sintaksfout in SQL-stelling"
#. ZoEuu
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "Die waarde #1 kan nie saam met LIKE gebruik word nie."
#. 75ECE
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "LIKE kan nie saam met hierdie veld gebruik word nie."
#. tzFv5
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "Die waarde wat ingevoer is, is nie 'n geldige datum nie. Tik asseblief 'n datum in 'n geldige formaat in, byvoorbeeld MM/DD/JJ."
#. y6Z26
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "Die veld kan nie met 'n heelgetal vergelyk word nie."
#. F8FgA
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Die databasis bevat nie 'n tabel genaamd \"#\" nie."
#. EDcU7
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "Die databasis bevat nie 'n tabel of 'n navraag genaamd \"#\" nie."
#. YBFF5
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "Die databasis bevat reeds 'n tabel of 'n aansig genaamd \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "Die databasis bevat reeds 'n navraag genaamd \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "Die kolom \"#1\" is onbekend in die tabel \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "Die veld kan nie met 'n wisselpuntgetal vergelyk word nie."
#. CEg85
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "Die toegevoerde kriterium kan nie met hierdie veld vergelyk word nie."
#. ZGAAQ
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Datanavigator"
#. W4uM2
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (leesalleen)"
#. DgfNh
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Die lêer bestaan reeds. Oorheenskryf?"
#. dSYCi
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object#-etiket"
#. JpaM6
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -7043,7 +7049,7 @@ msgstr ""
"Wil u werklik hierdie model skrap?"
#. y5Dyt
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -7053,7 +7059,7 @@ msgstr ""
"Wil u werklik die instans skrap?"
#. VEzGF
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -7063,13 +7069,13 @@ msgstr ""
"Wil u werklik hierdie element skrap?"
#. 3hF6H
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "Wil u werklik die attribuut '$ATTRIBUTENAME' skrap?"
#. AWEbJ
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -7081,7 +7087,7 @@ msgstr ""
"Wil u regtig die indiening skrap?"
#. SGiK5
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -7093,1012 +7099,1012 @@ msgstr ""
"Wil u regtig die binding skrap?"
#. 2zzHP
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "Die naam '%1' is nie geldig in XML nie. Tik asseblief 'n ander naam in."
#. 4nAtc
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "Die voorvoegsel '%1' is nie geldig in XML nie. Tik asseblief 'n ander voorvoegsel in."
#. qrFQD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Die naam '%1' bestaan reeds. Tik asseblief 'n nuwe naam in."
#. DKkaw
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "Die indiening moet 'n naam hê."
#. xcAaD
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "POST"
#. XGRQA
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "PUT"
#. tkRR3
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "GET"
#. fsyAL
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Geen"
#. Bjxmg
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "Instanse"
#. affmF
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Dokument"
#. gJLHj
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Binding: "
#. AEHco
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Verwysing: "
#. iLaBC
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Aksie: "
#. HBV5Q
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Metode: "
#. dAN2F
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Vervang: "
#. QMiqA
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Voeg element by"
#. C9YBB
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Redigeer element"
#. XAh7B
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Skrap element"
#. CLHER
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Voeg attribuut by"
#. 6Ycoo
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Redigeer attribuut"
#. 6dSAd
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Skrap attribuut"
#. Ljhja
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "Voeg binding by"
#. CHTrw
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "Redigeer binding"
#. yYwEG
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "Skrap binding"
#. yVch8
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "Voeg indiening by"
#. AX58u
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "Redigeer indiening"
#. DFxmD
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "Skrap indiening"
#. qvvD7
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Element"
#. U4Btb
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Attribuut"
#. Prceg
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1303
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Binding"
#. iFARB
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "Bindinguitdrukking"
#. BTmNa
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "Is u seker u wil die %PRODUCTNAME-dokument herwinningsdata kanselleer?"
#. 5WjQZ
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Links"
#. JC7pc
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Regs"
#. MhfuC
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Sentreer"
#. kX7GR
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Desimaal"
#. 7vecp
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "Invoegmodus. Klik om na Oorskryfmodus te wissel."
#. ZCWNC
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "Oorskryfmodus. Klik om na Invoegmodus te wissel."
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "Oorskryf"
#. qqCSF
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "Invoeg"
#. 2BBEb
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr "%1. Klik om die seleksie modus te verander."
#. Dh5A2
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Digitale handtekening: Die dokument se handtekening is OK."
#. xZprv
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Digitale handtekening: Die dokument se handtekening is OK, maar die sertifikaat kon nie gevalideer word nie."
#. Yydkh
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr "Digitale handtekening: Die dokumenthandtekening stem nie ooreen met die inhoud van die dokument nie. Ons beveel sterk aan dat u nie hierdie dokument vertrou nie."
#. X7CjP
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Digitale handtekening: Die dokument is nie onderteken nie."
#. BRmFY
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "Digitale handtekening: Die dokumenthandtekening en die sertifikaat is goed, maar nie alle dele van die dokument is onderteken nie."
#. Swq5S
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "Die dokument is gewysig. Klik om die dokument te stoor."
#. tRWKa
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "Die dokument is onveranderd sedert dit laas gestoor is."
#. 7C8GH
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Laai tans dokument..."
#. YbNsP
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Pas skyfie aan na huidige vensterruimte."
#. Fpkx2
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "Kon nie alle \"SmartArt\" objekte laai nie. Stoor in Microsoft Office 2010 of later weergawe sou die kwessie omseil."
#. Bc5Sg
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "Zoemfaktor. Klik regs om die zoemfaktor te verander, of klik om die zoemdialoog te open."
#. HCjAM
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Zoem in"
#. 2YBJE
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Zoem uit"
#. n9EyG
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Hele bladsy"
#. 2UBAF
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Bladsywydte"
#. YBg9X
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "Optimale aansig"
#. Wi5Fy
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Style ingesluit"
#. BJSzf
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Paragraafst~yle"
#. ARuQM
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Selst_yle"
#. 7ChAu
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "Soek vir formattering"
#. K6Ave
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "Vervang met formattering"
#. USdBy
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "Einde van die document is bereik"
#. CVSwo
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "Aan die einde van die dokument, hervat aan die begin"
#. yCJzd
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "Einde van die blad bereik"
#. Diftw
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Soeksleutel nie gevind nie"
#. xACuY
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "Navigasie-element nie gevind nie"
#. CGo5w
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "Begin van die dokument is bereik"
#. nDCC4
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "Het die begin van die dokument bereik, hervat aan die einde"
#. FNdxE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr "Het die eerste herinnering bereik, hervat vanaf die laaste"
#. hAzCn
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr "Het die laaste herinnering bereik, hervat vanaf die eerste"
#. ihDqY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "Kleurpalet"
#. sDL47
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "Kleurvervanger"
#. 7FcWA
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr "3D-Effekte"
#. j6dA6
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1362
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Verkeerde wagwoord"
#. JGJ9F
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Wagwoorde pas nie"
#. VHTRb
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Soliede klein sirkelvormige koeëltjies"
#. AiNrB
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Soliede groot sirkelvormige koeëltjies"
#. Vtk8J
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Soliede ruitvormige koeëltjies"
#. bQFBw
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Soliede groot vierkantige koeëltjies"
#. 5eJDd
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Regswysende pyltjies ingevul"
#. D8zQC
-#: include/svx/strings.hrc:1369
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Regswysende pyltjie-koeëltjies"
#. QCULV
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "Kruisies as kolparagrawe"
#. XuXC7
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "Regmerkies as kolparagrawe"
#. cUEoG
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Nommer 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Nommer 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Nommer (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Bokas Romeinse syfer I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Bokasletter A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Onderkasletter a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1379
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Onderkasletter (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1380
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Onderkas Romeinse syfer i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numeries, numeries, onderkasletters, soliede klein sirkelvormige koeëltjie"
#. m56fN
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Numeries, onderkasletters, soliede klein sirkelvormige koeëltjie"
#. RyTLW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Numeries, onderkasletters, onderkas Romeins, bokasletters, soliede klein sirkelvormige koeëltjie"
#. GAfTp
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Numeries"
#. gjEgN
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Bokas Romeins, bokasletters, onderkas Romeins, onderkasletters, soliede klein sirkelvormige koeëltjie"
#. DZ2kE
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Bokasletters, bokas romein, onderkasletters, onderkas romein, soliede klein ronde koeëltjie"
#. TV9Mc
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numeries met alle subvlakke"
#. tiXu5
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Regswysende koeëltjie, regswysende pyltjiekoeëltjie, soliede ruitvormige koeëltjie, soliede klein sirkelvormige koeëltjie"
#. nEJiF
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1390
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "Hierdie zip-lêer kon nie geskep word nie."
#. CC6Sw
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "Tabelontwerpstyle"
#. c69eB
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "Aksies om te ontdoen: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "Aksies om te ontdoen: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "Aksies om te herdoen: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "Aksies om te herdoen: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Soek"
#. WbEFL
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "Selfde kas"
#. 59ENV
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "Geformatterde skerm"
#. vYw6p
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
#. JEkzY
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1404
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) by $(DPI) DPI"
#. n8VBe
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) kB"
#. Xgeqc
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr "$(CAPACITY) kiB ($(REDUCTION) %Reduction)"
#. 8GqWz
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "GIF-beeld"
#. G2q7M
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "JPEG-beeld"
#. oGKBg
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1409
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "PNG-beeld"
#. Fkrjs
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "TIFF-beeld"
#. VWyEb
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "WMF-beeld"
#. pCpoE
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "MET-beeld"
#. DELaB
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1413
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "PCT-beeld"
#. 3AZAG
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "SVG-beeld"
#. aCEJW
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "BMP-beeld"
#. NBoWH
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr "WebP beeld"
#. p2L8C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "Onbekend"
#. 8LBFX
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "Wissel"
#. xLF42
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "Beeld modus"
#. fw5hA
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Rooi"
#. CiQvY
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Groen"
#. BhvBe
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Blou"
#. HSP36
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Helderheid"
#. w5BYP
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Kontras"
#. EZUjS
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. ernMB
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Deursigtigheid"
#. LdkNB
-#: include/svx/strings.hrc:1428
+#: include/svx/strings.hrc:1429
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Snoei"
#. TJmBu
-#: include/svx/strings.hrc:1430
+#: include/svx/strings.hrc:1431
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Verstek oriëntasie"
#. WQqju
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "Van bo na onder"
#. ipfz6
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "Onder na bo"
#. MLR44
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "Gestapel"
#. vUDeh
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Linkerkantlyn: "
#. EFBbE
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Boonste kantlyn: "
#. 7HeyP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Regterkantlyn: "
#. HCuWQ
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Onderste kantlyn: "
#. zD9BB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Bladsybeskrywing: "
#. a4eSJ
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Hoofletters"
#. DuQGP
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1441
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Onderkas"
#. nWQ7R
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Bokas Romein"
#. PxkPZ
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Onderkas Romein"
#. B7YEa
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Arabies"
#. vPbGB
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Geen"
#. akGGo
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Landskap"
#. bbcaZ
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Regop"
#. BQtGg
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Links"
#. JWFLj
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Regs"
#. bxvGx
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Alle"
#. S3nm4
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "Spieëlbeeld"
#. dcvEJ
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Outeur: "
#. 2siC9
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Datum: "
#. pWoLe
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Teks: "
#. pAABc
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Karakteragtergrond"
#. Deknh
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Kleurpalet"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr "Skyfie nommers:"
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8108,2115 +8114,2115 @@ msgstr ""
"Wil u eerder die gewysigde weergawe stoor?"
#. KycVH
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Basiese Latyn"
#. bcjRA
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Latyn-1"
#. h6THj
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Latyn uitgebrei-A"
#. o4EF9
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Latyn uitgebrei-B"
#. W3CGs
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA-uitbreidings"
#. yZjF6
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "Spasiewysigingsletters"
#. EASZR
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "Kombinerende diakritiese tekens"
#. wBjC4
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Basiese Grieks"
#. Dh8Es
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Griekse simbole en Kopties"
#. jGT5E
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Cyrillies"
#. DQgLS
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armeens"
#. kXEQY
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Basiese Hebreeus"
#. Cb8g4
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Hebreeus uitgebrei"
#. ZmDCd
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Basiese Arabies"
#. hZDFV
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabies uitgebrei"
#. c3CqD
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
#. EfVnG
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengaals"
#. iWzLc
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
#. omacG
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Goedjarati"
#. Cdwzw
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "Odia"
#. BhEGN
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
#. 6YkEo
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Teloegoe"
#. J5qn4
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malabaars"
#. C5yzo
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Thais"
#. EvjbD
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Lao"
#. HqFTh
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Basiese Georgies"
#. npAc8
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Georgies uitgebrei"
#. AHAB4
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangoel Jamo"
#. gMEFL
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Latyn uitgebrei bykomend"
#. uVYXp
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Grieks uitgebrei"
#. LEQg6
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "Algemene leestekens"
#. D9KFj
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Superskrifte en subskrifte"
#. yaxYV
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Geldeenheidsimbole"
#. jzA5i
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "Kombinerende diakritiese simbole"
#. CHNBZ
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Letteragtige simbole"
#. cDkEd
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Getalvorms"
#. j25Fp
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Pyltjies"
#. p5Tbx
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Wiskundige operateure"
#. ckgof
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Diverse tegniese"
#. 8rXdw
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "Beheer prentjies"
#. D4J8A
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "Optiese karakterherkenning"
#. hXwgf
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Ingeslote alfanumeriese karakters"
#. AD9HJ
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Kassietekening"
#. vViaR
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Blokelemente"
#. ok7ks
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Geometriese vorms"
#. sKty5
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Diverse simbole"
#. yDpNT
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "CJK-simbole en leestekens"
#. Bo4iK
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofo"
#. F9UFG
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Hangoel-versoenbaarheid Jamo"
#. yeRDE
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK Diverse"
#. kPFs9
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "Ingeslote CJK-letters en -maande"
#. 6tAx6
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "CJK-versoenbaarheid"
#. VakXP
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangoel"
#. XzS6D
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK Unified-ideogramme"
#. JVCP5
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK Unified-ideogramme uitbreiding-A"
#. Y33VK
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Area vir private gebruik"
#. 8yYiM
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK-versoenbare ideogramme"
#. BEfFQ
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Alfabetiese aanbiedingsvorms"
#. NCsAG
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Arabiese aanbiedingsvorms-A"
#. adi8G
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Kombinerende halftekens"
#. vLBhn
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "CJK-versoenbaarheidsvorms"
#. i6R3B
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Klein vormvariante"
#. 7EDCh
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Arabiese aanbiedingsvorms-B"
#. WWoWx
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "Halfbreedte- en volbreedtevorms"
#. dkDXh
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Spesiales"
#. GQSEx
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Yi lettergrepe"
#. BL66x
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Yi-Radikale"
#. cuQ2k
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Oue skuinsdruk"
#. wtKAB
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Goties"
#. GPFqC
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret-Alfabet"
#. 7AovD
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Bizantynse musieksymbole"
#. G3GQF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "Musieksimbole"
#. YzBDD
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "Wiskundige alfanumeriese simbole"
#. 3XZRw
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK Unified-ideogramme uitbreiding-B"
#. nZnQc
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK Unified-ideogramme uitbreiding-C"
#. HBwZE
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK Unified-ideogramme uitbreiding-D"
#. TTFkh
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "CJK versoenbare-ideogramme aanvulling"
#. 2jALB
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Etikette"
#. 2iHJN
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Cyrillies aanvulling"
#. ABgr9
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "Variasie kiesers"
#. a4q6S
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "Aanvullende privaatgebruik gebied-A"
#. k638K
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "Aanvullende privaatgebruik gebied-B"
#. pKFTg
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Limbu"
#. TJHGp
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Thai Le"
#. nujxa
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Khmer simbole"
#. neD93
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Fonetiese uitbreidings"
#. C6LwC
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "Allerlei simbole en pyle"
#. giR4r
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Yijing heksagram symbole"
#. EqFxm
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Liniêr B-lettergrepe"
#. VeZNe
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Liniêr B-Ideogramme"
#. Tvkgh
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Egeïese getalle"
#. CuThH
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugarities"
#. nBtk5
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shavianse-Alfabet"
#. vvMNk
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmaans"
#. aiySp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Sinhalees"
#. PEGiu
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetaans"
#. tRBTP
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Birmaans"
#. 8sgGF
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Khmer"
#. CdXvH
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
#. jFWRQ
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Runies"
#. jhzoc
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Siries"
#. B66QG
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
#. j8cuG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Etiopies"
#. AE5wq
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cherokee"
#. 9mgNF
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Kanadese inheemse lettergrepe"
#. d5JWE
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongools"
#. XnzyB
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Diverse wiskundige simbole-A"
#. R5W9H
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "Aanvullende pyltjies-A"
#. QYf7A
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Braille-patrone"
#. 63BBg
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "Aanvullende pyltjies-B"
#. ykowm
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Diverse wiskundige simbole-B"
#. GGdze
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK-radikale aanvullend"
#. WLLAP
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Kanxi-woordstamvorme"
#. EyZR2
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Ideografiese beskrywende karakters"
#. o3AQ6
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalog"
#. BVieL
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
#. DwAEz
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
#. 3GDP5
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
#. BfGBm
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
#. cL7Vo
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofo uitgebrei"
#. MQoBs
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Katakana fonetiese simbole"
#. fCpRM
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "CJK-strepe"
#. zyW2q
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Cypriotiese lettergrepe"
#. GWxb8
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Tai Xuan Jing Symbole"
#. 8ZJmr
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Variasie kiesers, Toevoeging"
#. RR6Er
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Antieke-Griekse musikale notasie"
#. K3GsF
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Antieke Griekse Getalle"
#. y4HCg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Arabiese Toevoeging"
#. KUnXb
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Buginees"
#. zDaXa
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "Gekombineerde diakritiese tekenaanvullings"
#. 9Z24A
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Kopties"
#. CANHf
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "Etiopiese toevoeging"
#. X8DEc
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "Etiopiese toevoeging"
#. fYpFz
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Georgiese Toevoeging"
#. 3Gzxx
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagoljica"
#. zKCVG
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "Wysiging van toontekens"
#. B2yF8
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "Nuwe Tai Lue"
#. J4KdA
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Antiek Persies"
#. eGPjC
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Fonetiese Uitbreidings Toevoeging"
#. XboFE
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Toegevoegde Leestekens"
#. tBJi3
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Vertikale vorms"
#. ihUDF
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "N’Ko"
#. Z3AAi
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Balinees"
#. 428ER
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Latynse uitbreiding-C"
#. SqFfT
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Latynse uitbreiding-D"
#. yMmow
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phagspa"
#. V6CsB
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Fenisiese"
#. GNBwz
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Spykerskrif"
#. VBPZE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Spykerskrif Getalle en Leestekens"
#. 9msGJ
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Telraam-getalle"
#. i6Gx9
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Soendanees"
#. WrXXX
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Cyrilliese verlengde-A"
#. ZkKwE
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Cyrilliese verlengde-B"
#. GoQpd
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Cham dialek"
#. qYaAV
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Antieke Simbole"
#. At8Tk
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Skyf van Phaistos"
#. ryGAF
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Lykian"
#. EYLa8
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Carish"
#. TPN6m
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lydisch"
#. G5GLd
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Mahjong-teëls"
#. EyMaF
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Domino-teëltjies"
#. r2YQs
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Samaritaans"
#. feZ2Q
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Verenigde Kanadese inheemse Klinkers uitgebrei"
#. H4FpF
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Vediese Toevoegings"
#. bVNYf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu dialek"
#. riEM3
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamun"
#. CQMqK
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Algemene Indiese nommervorme"
#. gDEUp
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari uitgebrei"
#. UsAq2
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul Jamo uitgebrei-A"
#. g5H7j
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Javaans"
#. upBjC
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Latynse uitbreiding-A"
#. GQ3XX
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul Jamo uitgebrei-B"
#. RTxUc
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Offisiële Aramees"
#. 7E6G8
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Oud Suid-Arabies"
#. Ab3wu
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Avesties"
#. 5gN8e
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Inskripsie Parthian"
#. D7rcV
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Inskripsie Pahlavi"
#. d44Dq
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Ou Turks"
#. CLuJC
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Rumi-getalsymbole"
#. FpFeH
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Egiptiese hiërogliewe"
#. bMYVC
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Ingeslote Alfanumeriese Toevoeging"
#. Dqcpa
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Ingeslote Ideografiese Toevoeging"
#. 8eCZn
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaïs"
#. 8LVFp
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Ethiopies, uitbreiding-A"
#. cQEzt
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Bamum Toevoeging"
#. xibkG
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Kana Toevoeging"
#. xyswt
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Speelkaarte"
#. TqExt
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "Diverse Simbole en Piktogramme"
#. wtMts
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "Emotikons"
#. WgGuX
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "Transport- en kaartsimbole"
#. fBitP
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "Alchemiese simbole"
#. CWvjP
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Arabiese uitbreiding-A"
#. D7mEf
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "Arabiese Wiskundige Alfabetiese Simbole"
#. 8ouWH
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Meetei Mayek-uitbreidings"
#. mFAeA
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Meroities Kursief"
#. b5m8K
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Meroïtiese hiërogliewe"
#. Xrkei
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sorang-Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Sundanese Toevoeging"
#. pTsMT
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr "Bassa Vah"
#. GWufB
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr "Kaukasiese Albanees"
#. t8Bfn
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr "Koptiese Getaltekens"
#. kAeYs
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "Gekombineerde diakritiese tekensuitbreiding"
#. 8TGuM
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr "Duployé"
#. Yaq3z
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr "Elbasan"
#. QmkME
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr "Geometriese Vorms Toegevoegd"
#. R9PgF
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr "Grantha"
#. tpSqU
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr "Khojki"
#. 4pjBM
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr "Khudawadi"
#. GoPep
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Latyn uitgebrei-E"
#. wNozk
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Linieêr A"
#. SjAev
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr "Mahajani"
#. CA7vw
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr "Manichees"
#. UUKC4
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr "Mende Kikakui"
#. ZhzBz
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Modusse"
#. jC4Ue
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr "Mro"
#. TiWmd
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Birmaans uitgebreid-B"
#. y7tCX
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr "Nabatees"
#. T29Cw
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Oud Noord-Arabies"
#. EZADa
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr "Oud Permies"
#. 9oFL2
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr "Ornamentele Diersimbole"
#. TYGv3
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr "Pahawh Hmong"
#. wd8bD
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr "Palmyreens"
#. dkSnn
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr "Pau Cin Hau"
#. bts3U
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr "Psalter Pahlavi"
#. XSwsB
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr "Stenografiese Formaat Kontroles"
#. rdXCX
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr "Siddham"
#. GwT8c
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr "Sinhala argaïese getalle"
#. mz3Cs
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Aanvullende pyltjies-C"
#. iGUzh
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr "Tirhuta"
#. HRBEN
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr "Warang Citi"
#. 9NCBd
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr "Ahom"
#. cPJhp
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr "Anatoliaanse hiërogliewe"
#. GAd7H
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr "Cherokee Toevoeging"
#. TDgY4
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK Unified-ideogramme uitbreiding-E"
#. ho93C
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr "Vroeë dinastiese spykerskrif"
#. La5yr
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr "Hatraans"
#. e3aXA
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr "Multanees"
#. D6qsK
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr "Oud Hongaars"
#. aVhdm
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr "Bykomende simbole en piktogramme"
#. B6UHz
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr "Sutton Tekenskrif"
#. rFgRw
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr "Adlam"
#. F2AJT
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr "Bhaiksuki"
#. zDLT2
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Cyrillies, uitbreiding-C"
#. S69GG
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr "Glagolitiese Toevoeging"
#. QeCxG
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr "Ideografiese Simbole en leestekens"
#. 45hVB
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr "Marchen"
#. Mr7RB
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Mongoliese Toevoeging"
#. RTgGA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Newaans"
#. JJrpR
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Osaags"
#. o3qMt
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr "Tanguties"
#. nRMFd
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr "Tangutiese Toevoegings"
#. uFMWt
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK Unified-ideogramme uitbreiding-F"
#. DH39v
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Kana uitbreiding-A"
#. jPSFu
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr "Masaram Gondi"
#. TGJHU
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr "Nushu"
#. DHbMR
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr "Soyombo"
#. gPnhH
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Siriese aanvulling"
#. rbMNp
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr "Zanabazar-vierkant skrif"
#. i5evF
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr "Skaaksimbole"
#. BYA5Y
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr "Dogra"
#. xDvRL
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr "Gunjala Gondi"
#. uzq7e
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr "Hanifi Rohingya"
#. FAwvP
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr "Indiese Siyaq getalle"
#. TYjtp
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr "Makasar"
#. abFR5
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr "Maya getalle"
#. aDjHx
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr "Medefaidrin"
#. qMf5N
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr "Oud Sogdiaans"
#. rUG8e
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr "Sogdiaans"
#. B6UKP
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr "Egiptiese hiëroglief formaat Kontrols"
#. YBxAE
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr "Elymaic"
#. ibmgu
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr "Nandinagari"
#. 8A7FD
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr "Nyiakeng Puachue Hmong"
#. DajDi
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr "Ottoman Siyaq Getalle"
#. FAb6M
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr "Kleine Kana Uitbreiding"
#. bmviu
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr "Piktografiese simbole, verlenging-A"
#. SmFqD
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr "Tamil Toevoeging"
#. qNixg
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr "Wancho"
#. EDpqy
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr "Chorasmian"
#. EH9Xf
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr "Uniforme CJK-ideogramme, uitbreiding-G"
#. wBzzY
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr "Dhives Akuru"
#. CX5R4
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr "Khitan klein-skrif"
#. onKAu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr "Lisu Toevoeging"
#. yMTF4
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr "Simbole vir Retro Rekenaars"
#. SZmB5
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr "Tangut Toevoeging"
#. zxpCG
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr "Yezidi"
#. 9UAmW
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr "Arabies Uitgebreide-B"
#. QFLaj
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr "Sipro-Minoïes"
#. CYEeS
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr "Ethiopies Uitgebreide-B"
#. ABqB6
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr "Kana Uitgebreide-B"
#. DmagG
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr "Latyn Uitgebreide-F"
#. tjuhJ
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr "Latyn Uitgebreide-G"
#. naYAA
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr "Ou Uyghur"
#. JGVtT
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr "Tangsa"
#. pkBYF
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr "Toto"
#. SEVKT
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr "Kanadese Inheemse Klinkers Uitgebreid-A"
#. NpBis
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr "Vithkuqi"
#. ssh5F
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr "Znamenny Musiek Notasie"
#. BGGvD
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "Links-na-regs (LTR)"
#. Ct9UG
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "Regs-na-links (RTL)"
#. XFhAz
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "Gebruik bogeskikte objekinstellings"
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "Links na regs (horisontaal)"
#. b6Guf
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "Regs na links (horisontaal)"
#. yQGoC
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "Regs na links (vertikaal)"
#. k7B2r
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Links na regs (vertikaal)"
#. DF4B8
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr "Onder-na-bo, links-na-regs (vertikaal)"
#. siSmL
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr "Fontwerk"
#. Eg8QT
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr "Digitaal onderteken deur:"
#. NyP2E
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr "Datum: %1"
#. gsDhD
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr "Transpirant:"
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Geen Kantlyne"
#. LzhYZ
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Slegs Buitenste Lyne"
#. EniNF
-#: include/svx/strings.hrc:1806
+#: include/svx/strings.hrc:1807
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Buitenste- en Horisontale- Lyne"
#. BuDWX
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Buitenste- en Alle Binneste-Lyne"
#. ckL2Z
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Buitenste- en Vertikale-Lyne"
#. Q9hj4
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Buitenste Grenslyne Sonder Veranderinge aan Binneste Lyne"
#. b7wCr
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Slegs Diagnale Lyne"
#. 8r98a
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Diagnale Onderste Grens"
#. P4FGE
-#: include/svx/strings.hrc:1812
+#: include/svx/strings.hrc:1813
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Diagnale Boonste Grens"
#. VxBrT
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Kruis-Dwars Grense"
#. hTi3j
-#: include/svx/strings.hrc:1814
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Al Vier Grense"
#. o8fB8
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr "Slegs Linker- en Regter Grense"
#. 6NnM2
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr "Slegs Boonste en Onderste Grense"
#. KTYVW
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Boonste en Onderste Grense, en Alle Horisontale Lyne"
#. fRcEu
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr "Slegs Linker Grens"
#. uqzE7
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr "Slegs Regter Grens"
#. 6ecLB
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr "Slegs Boonste Grens"
#. B6KZc
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr "Slegs Onderste Grens"
#. aCMGz
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Boonste en Onderste Grense, en All Binne Lyne"
#. t38dT
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Linker en Regter Grense, en Alle Binne Grense"
@@ -10225,19 +10231,19 @@ msgstr "Linker en Regter Grense, en Alle Binne Grense"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Grafiese Grootte Kontrole"
#. D66VS
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Beeld '%NAME%' het te min pieksels vir die huidige grootte (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Beeld '%NAME%' het te veel pieksels vir die huidige grootte (%DPIX% x %DPIY% DPI)"
@@ -10650,439 +10656,439 @@ msgid "Vertical text alignment"
msgstr "Vertikale teksbelyning"
#. DPZws
-#: svx/inc/fieldunit.hrc:30
+#: svx/inc/fieldunit.hrc:31
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Millimeter"
msgstr "Millimeter"
#. RWGZH
-#: svx/inc/fieldunit.hrc:31
+#: svx/inc/fieldunit.hrc:32
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Centimeter"
msgstr "Sentimeter"
#. Uy6BJ
-#: svx/inc/fieldunit.hrc:32
+#: svx/inc/fieldunit.hrc:33
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Meter"
msgstr "Meter"
#. ej2m5
-#: svx/inc/fieldunit.hrc:33
+#: svx/inc/fieldunit.hrc:34
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Kilometer"
msgstr "Kilometer"
#. EFSC2
-#: svx/inc/fieldunit.hrc:34
+#: svx/inc/fieldunit.hrc:35
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Inch"
msgstr "Duim"
#. pcGHS
-#: svx/inc/fieldunit.hrc:35
+#: svx/inc/fieldunit.hrc:36
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Foot"
msgstr "Voet"
#. 5a3Dq
-#: svx/inc/fieldunit.hrc:36
+#: svx/inc/fieldunit.hrc:37
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Miles"
msgstr "Myl"
#. zpCki
-#: svx/inc/fieldunit.hrc:37
+#: svx/inc/fieldunit.hrc:38
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Pica"
msgstr "Pika"
#. aTBVj
-#: svx/inc/fieldunit.hrc:38
+#: svx/inc/fieldunit.hrc:39
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Point"
msgstr "Punt"
#. tkSdX
-#: svx/inc/fieldunit.hrc:39
+#: svx/inc/fieldunit.hrc:40
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Char"
msgstr "Grafiek"
#. DyFjJ
-#: svx/inc/fieldunit.hrc:40
+#: svx/inc/fieldunit.hrc:41
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Line"
msgstr "Lyn"
#. QYjeZ
-#: svx/inc/fmstring.hrc:27
+#: svx/inc/fmstring.hrc:29
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "LIKE"
msgstr "SOOS"
#. iRDFU
-#: svx/inc/fmstring.hrc:28
+#: svx/inc/fmstring.hrc:30
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "NOT"
msgstr "NOT"
#. JBngM
-#: svx/inc/fmstring.hrc:29
+#: svx/inc/fmstring.hrc:31
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "EMPTY"
msgstr "LEEG"
#. zpTCG
-#: svx/inc/fmstring.hrc:30
+#: svx/inc/fmstring.hrc:32
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "TRUE"
msgstr "TRUE"
#. DYBeJ
-#: svx/inc/fmstring.hrc:31
+#: svx/inc/fmstring.hrc:33
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "FALSE"
msgstr "FALSE"
#. mtAA5
-#: svx/inc/fmstring.hrc:32
+#: svx/inc/fmstring.hrc:34
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "IS"
msgstr "IS"
#. YWtNJ
-#: svx/inc/fmstring.hrc:33
+#: svx/inc/fmstring.hrc:35
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "BETWEEN"
msgstr "TUSSEN"
#. 47bZX
-#: svx/inc/fmstring.hrc:34
+#: svx/inc/fmstring.hrc:36
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "OR"
msgstr "OR"
#. 9ZBAf
-#: svx/inc/fmstring.hrc:35
+#: svx/inc/fmstring.hrc:37
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "AND"
msgstr "AND"
#. xZ65E
-#: svx/inc/fmstring.hrc:36
+#: svx/inc/fmstring.hrc:38
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Average"
msgstr "Gemiddelde"
#. cTfDS
-#: svx/inc/fmstring.hrc:37
+#: svx/inc/fmstring.hrc:39
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Count"
msgstr "Tel"
#. TFaGE
-#: svx/inc/fmstring.hrc:38
+#: svx/inc/fmstring.hrc:40
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Maximum"
msgstr "Maksimum"
#. gGpDF
-#: svx/inc/fmstring.hrc:39
+#: svx/inc/fmstring.hrc:41
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Minimum"
msgstr "Minimum"
#. 3YcTD
-#: svx/inc/fmstring.hrc:40
+#: svx/inc/fmstring.hrc:42
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Sum"
msgstr "Som"
#. GwMS7
-#: svx/inc/fmstring.hrc:41
+#: svx/inc/fmstring.hrc:43
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Every"
msgstr "Elke"
#. M6DCS
-#: svx/inc/fmstring.hrc:42
+#: svx/inc/fmstring.hrc:44
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Any"
msgstr "Enige"
#. AyNgd
-#: svx/inc/fmstring.hrc:43
+#: svx/inc/fmstring.hrc:45
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Some"
msgstr "Sommige"
#. QYQ2c
-#: svx/inc/fmstring.hrc:44
+#: svx/inc/fmstring.hrc:46
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_POP"
msgstr "STDDEV_POP"
#. DsDPW
-#: svx/inc/fmstring.hrc:45
+#: svx/inc/fmstring.hrc:47
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_SAMP"
msgstr "STDDEV_SAMP"
#. RqHwF
-#: svx/inc/fmstring.hrc:46
+#: svx/inc/fmstring.hrc:48
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_SAMP"
msgstr "VAR_SAMP"
#. id43S
-#: svx/inc/fmstring.hrc:47
+#: svx/inc/fmstring.hrc:49
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_POP"
msgstr "VAR_POP"
#. mjjoD
-#: svx/inc/fmstring.hrc:48
+#: svx/inc/fmstring.hrc:50
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Collect"
msgstr "Versamel"
#. GcZBA
-#: svx/inc/fmstring.hrc:49
+#: svx/inc/fmstring.hrc:51
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Fusion"
msgstr "Fusie"
#. gpKQz
-#: svx/inc/fmstring.hrc:50
+#: svx/inc/fmstring.hrc:52
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Intersection"
msgstr "Deursnit"
#. 8DMsd
-#: svx/inc/formnavi.hrc:27
+#: svx/inc/formnavi.hrc:29
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit"
msgid "~Text Box"
msgstr "Teks Kassie"
#. LaRik
-#: svx/inc/formnavi.hrc:28
+#: svx/inc/formnavi.hrc:30
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
msgid "~Button"
msgstr "Knoppie"
#. qjKaG
-#: svx/inc/formnavi.hrc:29
+#: svx/inc/formnavi.hrc:31
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
msgid "La~bel field"
msgstr "Etiket veld"
#. sq3AT
-#: svx/inc/formnavi.hrc:30
+#: svx/inc/formnavi.hrc:32
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
msgid "L~ist Box"
msgstr "Lys kassie"
#. agpbk
-#: svx/inc/formnavi.hrc:31
+#: svx/inc/formnavi.hrc:33
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
msgid "~Check Box"
msgstr "Merk kassie"
#. 9WA4B
-#: svx/inc/formnavi.hrc:32
+#: svx/inc/formnavi.hrc:34
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
msgid "~Radio Button"
msgstr "Radio Knoppie"
#. PpgmW
-#: svx/inc/formnavi.hrc:33
+#: svx/inc/formnavi.hrc:35
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
msgid "G~roup Box"
msgstr "Groep Kassie"
#. A8Dbz
-#: svx/inc/formnavi.hrc:34
+#: svx/inc/formnavi.hrc:36
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
msgstr "Kombo kassie"
#. HRAoH
-#: svx/inc/formnavi.hrc:35
+#: svx/inc/formnavi.hrc:37
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
msgid "I~mage Button"
msgstr "Beeld knoppie"
#. gZZqq
-#: svx/inc/formnavi.hrc:36
+#: svx/inc/formnavi.hrc:38
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
msgid "~File Selection"
msgstr "Leêr seleksie"
#. EEADE
-#: svx/inc/formnavi.hrc:37
+#: svx/inc/formnavi.hrc:39
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
msgid "~Date Field"
msgstr "Datum veld"
#. gDr8N
-#: svx/inc/formnavi.hrc:38
+#: svx/inc/formnavi.hrc:40
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
msgid "Tim~e Field"
msgstr "Tyd veld"
#. jAbfP
-#: svx/inc/formnavi.hrc:39
+#: svx/inc/formnavi.hrc:41
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
msgid "~Numerical Field"
msgstr "Numeriese veld"
#. ryXjj
-#: svx/inc/formnavi.hrc:40
+#: svx/inc/formnavi.hrc:42
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
msgid "C~urrency Field"
msgstr "Monetêre veld"
#. GXHFr
-#: svx/inc/formnavi.hrc:41
+#: svx/inc/formnavi.hrc:43
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
msgid "~Pattern Field"
msgstr "Patroon veld"
#. a7jCc
-#: svx/inc/formnavi.hrc:42
+#: svx/inc/formnavi.hrc:44
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
msgid "Ima~ge Control"
msgstr "Beeld beheerkontrole"
#. WDsBh
-#: svx/inc/formnavi.hrc:43
+#: svx/inc/formnavi.hrc:45
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
msgid "Fo~rmatted Field"
msgstr "Geformateerde veld"
#. aEXn5
-#: svx/inc/formnavi.hrc:44
+#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
msgstr "Rolbalk"
#. cGxjA
-#: svx/inc/formnavi.hrc:45
+#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
msgstr "Spin knoppie"
#. HYbc6
-#: svx/inc/formnavi.hrc:46
+#: svx/inc/formnavi.hrc:48
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Navigasie staaf"
#. d7vkX
-#: svx/inc/frmsel.hrc:30
+#: svx/inc/frmsel.hrc:31
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Border setting"
msgstr "Randinstelling"
#. CBSYv
-#: svx/inc/frmsel.hrc:31
+#: svx/inc/frmsel.hrc:32
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Left border line"
msgstr "Linkerrandlyn"
#. YAWUD
-#: svx/inc/frmsel.hrc:32
+#: svx/inc/frmsel.hrc:33
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Right border line"
msgstr "Regterrandlyn"
#. VH67W
-#: svx/inc/frmsel.hrc:33
+#: svx/inc/frmsel.hrc:34
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Top border line"
msgstr "Boonste randlyn"
#. MLMaA
-#: svx/inc/frmsel.hrc:34
+#: svx/inc/frmsel.hrc:35
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Bottom border line"
msgstr "Onderste randlyn"
#. ZqTGF
-#: svx/inc/frmsel.hrc:35
+#: svx/inc/frmsel.hrc:36
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Horizontal border line"
msgstr "Horisontale randlyn"
#. jzGHA
-#: svx/inc/frmsel.hrc:36
+#: svx/inc/frmsel.hrc:37
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Vertical border line"
msgstr "Vertikale randlyn"
#. DodCu
-#: svx/inc/frmsel.hrc:37
+#: svx/inc/frmsel.hrc:38
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from top left to bottom right"
msgstr "Diagonale randlyn van bo links na onder regs"
#. wfJ23
-#: svx/inc/frmsel.hrc:38
+#: svx/inc/frmsel.hrc:39
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from bottom left to top right"
msgstr "Diagonale randlyn van onder links na bo regs"
#. dTBRy
-#: svx/inc/frmsel.hrc:43
+#: svx/inc/frmsel.hrc:44
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Border setting"
msgstr "Randinstelling"
#. LhEua
-#: svx/inc/frmsel.hrc:44
+#: svx/inc/frmsel.hrc:45
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Left border line"
msgstr "Linkerrandlyn"
#. DAuHi
-#: svx/inc/frmsel.hrc:45
+#: svx/inc/frmsel.hrc:46
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Right border line"
msgstr "Regterrandlyn"
#. BYUTR
-#: svx/inc/frmsel.hrc:46
+#: svx/inc/frmsel.hrc:47
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Top border line"
msgstr "Boonste randlyn"
#. QAnid
-#: svx/inc/frmsel.hrc:47
+#: svx/inc/frmsel.hrc:48
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Bottom border line"
msgstr "Onderste randlyn"
#. kDBDR
-#: svx/inc/frmsel.hrc:48
+#: svx/inc/frmsel.hrc:49
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Horizontal border line"
msgstr "Horisontale randlyn"
#. Em9YX
-#: svx/inc/frmsel.hrc:49
+#: svx/inc/frmsel.hrc:50
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Vertical border line"
msgstr "Vertikale randlyn"
#. oDFKb
-#: svx/inc/frmsel.hrc:50
+#: svx/inc/frmsel.hrc:51
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from top left to bottom right"
msgstr "Diagonale randlyn van bo links na onder regs"
#. 5EYDA
-#: svx/inc/frmsel.hrc:51
+#: svx/inc/frmsel.hrc:52
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "Diagonale randlyn van onder links na bo regs"
@@ -11124,500 +11130,500 @@ msgstr "Waar"
#. hPpj7
#. SVX_NUM_NUMBER_NONE
-#: svx/inc/numberingtype.hrc:29
+#: svx/inc/numberingtype.hrc:31
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "None"
msgstr "Geen"
#. dQWBh
#. SVX_NUM_CHAR_SPECIAL
-#: svx/inc/numberingtype.hrc:30
+#: svx/inc/numberingtype.hrc:32
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Bullet"
msgstr "Koeëltjie"
#. GfQQK
#. SVX_NUM_BITMAP
-#: svx/inc/numberingtype.hrc:31
+#: svx/inc/numberingtype.hrc:33
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Graphics"
msgstr "Grafika"
#. DfEKa
#. SVX_NUM_BITMAP|0x80
-#: svx/inc/numberingtype.hrc:32
+#: svx/inc/numberingtype.hrc:34
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Linked graphics"
msgstr "Gekoppelde grafika"
#. AF3ts
#. SVX_NUM_ARABIC
-#: svx/inc/numberingtype.hrc:33
+#: svx/inc/numberingtype.hrc:35
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
#. bBGa7
#. SVX_NUM_CHARS_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:34
+#: svx/inc/numberingtype.hrc:36
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
#. 5MDDu
#. SVX_NUM_CHARS_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:35
+#: svx/inc/numberingtype.hrc:37
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, b, c, ..."
msgstr "a, b, c, ..."
#. qGL48
#. SVX_NUM_ROMAN_UPPER
-#: svx/inc/numberingtype.hrc:36
+#: svx/inc/numberingtype.hrc:38
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
#. tZAzS
#. SVX_NUM_ROMAN_LOWER
-#: svx/inc/numberingtype.hrc:37
+#: svx/inc/numberingtype.hrc:39
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
#. hbCEG
#. TEXT_NUMBER
-#: svx/inc/numberingtype.hrc:38
+#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
msgstr "1e, 2e, 3e, ..."
#. ymefj
#. TEXT_CARDINAL
-#: svx/inc/numberingtype.hrc:39
+#: svx/inc/numberingtype.hrc:41
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
msgstr "Een, Twee, Drie, ..."
#. uPBZs
#. TEXT_ORDINAL
-#: svx/inc/numberingtype.hrc:40
+#: svx/inc/numberingtype.hrc:42
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
msgstr "Eerste, tweede, derde, ..."
#. 2QoAG
#. SVX_NUM_CHARS_UPPER_LETTER_N
-#: svx/inc/numberingtype.hrc:41
+#: svx/inc/numberingtype.hrc:43
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ..."
#. 7Snqt
#. SVX_NUM_CHARS_LOWER_LETTER_N
-#: svx/inc/numberingtype.hrc:42
+#: svx/inc/numberingtype.hrc:44
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
#. 2jYQi
#. SYMBOL_CHICAGO
-#: svx/inc/numberingtype.hrc:43
+#: svx/inc/numberingtype.hrc:45
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "*, †, ‡, §, **, ††, ..."
msgstr "*, †, ‡, §, **, ††, ..."
#. GG8gr
#. NATIVE_NUMBERING
-#: svx/inc/numberingtype.hrc:44
+#: svx/inc/numberingtype.hrc:46
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Native Numbering"
msgstr "Eie nommering"
#. yLB7R
#. CHARS_CYRILLIC_UPPER_LETTER_BG
-#: svx/inc/numberingtype.hrc:45
+#: svx/inc/numberingtype.hrc:47
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (Bulgaars)"
#. JHskj
#. CHARS_CYRILLIC_LOWER_LETTER_BG
-#: svx/inc/numberingtype.hrc:46
+#: svx/inc/numberingtype.hrc:48
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (Bulgaars)"
#. sqKyt
#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:47
+#: svx/inc/numberingtype.hrc:49
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (Bulgaars)"
#. QtcCE
#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:48
+#: svx/inc/numberingtype.hrc:50
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (Bulgaars)"
#. DeUDb
#. CHARS_CYRILLIC_UPPER_LETTER_RU
-#: svx/inc/numberingtype.hrc:49
+#: svx/inc/numberingtype.hrc:51
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (Russies)"
#. kAHJb
#. CHARS_CYRILLIC_LOWER_LETTER_RU
-#: svx/inc/numberingtype.hrc:50
+#: svx/inc/numberingtype.hrc:52
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (Russies)"
#. kHAr7
#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:51
+#: svx/inc/numberingtype.hrc:53
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (Russies)"
#. Dkve7
#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:52
+#: svx/inc/numberingtype.hrc:54
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (Russies)"
#. EdfYn
#. CHARS_CYRILLIC_UPPER_LETTER_SR
-#: svx/inc/numberingtype.hrc:53
+#: svx/inc/numberingtype.hrc:55
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (Serwies)"
#. oFJkn
#. CHARS_CYRILLIC_LOWER_LETTER_SR
-#: svx/inc/numberingtype.hrc:54
+#: svx/inc/numberingtype.hrc:56
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (Serwies)"
#. oA7CM
#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:55
+#: svx/inc/numberingtype.hrc:57
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (Serwies)"
#. Eom7M
#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:56
+#: svx/inc/numberingtype.hrc:58
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (Serwies)"
#. SDSQ6
#. CHARS_GREEK_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:57
+#: svx/inc/numberingtype.hrc:59
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Α, Β, Γ, ... (Greek)"
msgstr "Α, Β, Γ, ... (Grieks)"
#. CMFjw
#. CHARS_GREEK_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:58
+#: svx/inc/numberingtype.hrc:60
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "α, β, γ, ... (Greek)"
msgstr "α, β, γ, ... (Grieks)"
#. 8Cxkk
#. NUMBER_HEBREW
-#: svx/inc/numberingtype.hrc:59
+#: svx/inc/numberingtype.hrc:61
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...י, יא...כ, ..."
msgstr "א...י, יא...כ, ..."
#. n2sV8
#. CHARS_HEBREW
-#: svx/inc/numberingtype.hrc:60
+#: svx/inc/numberingtype.hrc:62
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...ת, אא...תת, ..."
msgstr "א...ת, אא...תת, ..."
#. nR8RG
#. NUMBER_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:61
+#: svx/inc/numberingtype.hrc:63
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "١, ٢, ٣, ٤, ... (Arabic)"
msgstr "١, ٢, ٣, ٤, ... (Arabies)"
#. jEE4r
#. NUMBER_EAST_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:62
+#: svx/inc/numberingtype.hrc:64
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "۱, ۲, ۳, ۴, ... (Farsi)"
msgstr "۱, ۲, ۳, ۴, ... (Persies)"
#. YFYp2
#. NUMBER_INDIC_DEVANAGARI
-#: svx/inc/numberingtype.hrc:63
+#: svx/inc/numberingtype.hrc:65
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "१, २, ३, ..."
msgstr "१, २, ३, ..."
#. Vd6uV
#. enum SvxRotateMode ----------------------------------------------------
-#: svx/inc/rotationstrings.hrc:18
+#: svx/inc/rotationstrings.hrc:20
msgctxt "RID_SVXITEMS_ROTATE_MODE_STANDARD"
msgid "Rotation only within cell"
msgstr "Rotasie slegs binne sel"
#. r8WzF
-#: svx/inc/rotationstrings.hrc:19
+#: svx/inc/rotationstrings.hrc:21
msgctxt "RID_SVXITEMS_ROTATE_MODE_TOP"
msgid "From upper cell edge"
msgstr "Vanaf boonste sel rand"
#. E7EVi
-#: svx/inc/rotationstrings.hrc:20
+#: svx/inc/rotationstrings.hrc:22
msgctxt "RID_SVXITEMS_ROTATE_MODE_CENTER"
msgid "From vertical middle cell"
msgstr "Vanaf vertikale middelste sel"
#. NEwyu
-#: svx/inc/rotationstrings.hrc:21
+#: svx/inc/rotationstrings.hrc:23
msgctxt "RID_SVXITEMS_ROTATE_MODE_BOTTOM"
msgid "From lower cell edge"
msgstr "Vanaf onderste sel rand"
#. Je56M
-#: svx/inc/samecontent.hrc:18
+#: svx/inc/samecontent.hrc:20
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
msgstr "Alle bladsye"
#. kKCQR
-#: svx/inc/samecontent.hrc:19
+#: svx/inc/samecontent.hrc:21
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First Page"
msgstr "Eerste bladsy"
#. MHuCA
-#: svx/inc/samecontent.hrc:20
+#: svx/inc/samecontent.hrc:22
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "Left and Right Pages"
msgstr "Linker- en regterbladsye"
#. XH8p4
-#: svx/inc/samecontent.hrc:21
+#: svx/inc/samecontent.hrc:23
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First, Left and Right Pages"
msgstr "Eerste, linker- en regterbladsye"
#. F9hHK
-#: svx/inc/spacing.hrc:24
+#: svx/inc/spacing.hrc:26
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "None"
msgstr "Geen"
#. GAuJk
-#: svx/inc/spacing.hrc:25
+#: svx/inc/spacing.hrc:27
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Small (1/16″)"
msgstr "Ekstra klein (1/16″)"
#. DB9aM
-#: svx/inc/spacing.hrc:26
+#: svx/inc/spacing.hrc:28
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small (1/8″)"
msgstr "Klein (1/8″)"
#. 5PhsT
-#: svx/inc/spacing.hrc:27
+#: svx/inc/spacing.hrc:29
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small Medium (1/4″)"
msgstr "Medium klein (1/4″)"
#. 3LSyH
-#: svx/inc/spacing.hrc:28
+#: svx/inc/spacing.hrc:30
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium (3/8″)"
msgstr "Medium (3/8″)"
#. NzRZJ
-#: svx/inc/spacing.hrc:29
+#: svx/inc/spacing.hrc:31
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium Large (1/2″)"
msgstr "Medium groot (1/2″)"
#. JBwJZ
-#: svx/inc/spacing.hrc:30
+#: svx/inc/spacing.hrc:32
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Large (3/4″)"
msgstr "Groot (3/4″)"
#. AwWUq
-#: svx/inc/spacing.hrc:31
+#: svx/inc/spacing.hrc:33
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Large (1″)"
msgstr "Ekstra groot (1″)"
#. SGERK
-#: svx/inc/spacing.hrc:38
+#: svx/inc/spacing.hrc:40
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "None"
msgstr "Geen"
#. ZAZbV
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:40
+#: svx/inc/spacing.hrc:42
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Small (%1)"
msgstr "Ekstra klein (%1)"
#. DJAZx
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:42
+#: svx/inc/spacing.hrc:44
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small (%1)"
msgstr "Klein (%1)"
#. scXTX
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:44
+#: svx/inc/spacing.hrc:46
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small Medium (%1)"
msgstr "Klein Medium (%1)"
#. zN8GJ
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:46
+#: svx/inc/spacing.hrc:48
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium (%1)"
msgstr "Medium (%1)"
#. cbhBF
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:48
+#: svx/inc/spacing.hrc:50
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium Large (%1)"
msgstr "Medium Groot (%1)"
#. 8kTDK
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:50
+#: svx/inc/spacing.hrc:52
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Large (%1)"
msgstr "Groot (%1)"
#. etG35
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:52
+#: svx/inc/spacing.hrc:54
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Large (%1)"
msgstr "Ekstra groot (%1)"
#. F7GxF
-#: svx/inc/spacing.hrc:59
+#: svx/inc/spacing.hrc:61
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "None"
msgstr "Geen"
#. ZNunF
-#: svx/inc/spacing.hrc:60
+#: svx/inc/spacing.hrc:62
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16″)"
msgstr "Ekstra klein (1/16″)"
#. BUnaC
-#: svx/inc/spacing.hrc:61
+#: svx/inc/spacing.hrc:63
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small (1/8″)"
msgstr "Klein (1/8″)"
#. oBhFP
-#: svx/inc/spacing.hrc:62
+#: svx/inc/spacing.hrc:64
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4″)"
msgstr "Klein medium (1/4″)"
#. tDBA3
-#: svx/inc/spacing.hrc:63
+#: svx/inc/spacing.hrc:65
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8″)"
msgstr "Medium (3/8″)"
#. fDRCW
-#: svx/inc/spacing.hrc:64
+#: svx/inc/spacing.hrc:66
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2″)"
msgstr "Medium groot (1/2″)"
#. Ls2Jq
-#: svx/inc/spacing.hrc:65
+#: svx/inc/spacing.hrc:67
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4″)"
msgstr "Groot (3/4″)"
#. DLXcU
-#: svx/inc/spacing.hrc:66
+#: svx/inc/spacing.hrc:68
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1″)"
msgstr "Ekstra groot (1″)"
#. phGfi
-#: svx/inc/spacing.hrc:73
+#: svx/inc/spacing.hrc:75
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "None"
msgstr "Geen"
#. XVMbm
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:75
+#: svx/inc/spacing.hrc:77
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Small (%1)"
msgstr "Ekstra klein (%1)"
#. L3BfG
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:77
+#: svx/inc/spacing.hrc:79
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small (%1)"
msgstr "Klein (%1)"
#. 2VGHi
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:79
+#: svx/inc/spacing.hrc:81
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small Medium (%1)"
msgstr "Klein Medium (%1)"
#. Z7Wot
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:81
+#: svx/inc/spacing.hrc:83
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium (%1)"
msgstr "Medium (%1)"
#. CS6Zz
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:83
+#: svx/inc/spacing.hrc:85
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium Large (%1)"
msgstr "Medium groot (%1)"
#. BaS7j
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:85
+#: svx/inc/spacing.hrc:87
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Large (%1)"
msgstr "Groot (%1)"
#. gAc3E
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:87
+#: svx/inc/spacing.hrc:89
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Large (%1)"
msgstr "Extra Groot (%1)"
@@ -11741,1129 +11747,1129 @@ msgstr ""
"Wil u die dokument sonder wagwoordbeskerming stoor?"
#. xnBAZ
-#: svx/inc/swframeposstrings.hrc:28
+#: svx/inc/swframeposstrings.hrc:30
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left"
msgstr "Links"
#. GHBGu
-#: svx/inc/swframeposstrings.hrc:29
+#: svx/inc/swframeposstrings.hrc:31
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right"
msgstr "Regs"
#. aEeds
-#: svx/inc/swframeposstrings.hrc:30
+#: svx/inc/swframeposstrings.hrc:32
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From left"
msgstr "Van links"
#. ivTxP
-#: svx/inc/swframeposstrings.hrc:31
+#: svx/inc/swframeposstrings.hrc:33
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inside"
msgstr "Binne"
#. U5FyC
-#: svx/inc/swframeposstrings.hrc:32
+#: svx/inc/swframeposstrings.hrc:34
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outside"
msgstr "Buite"
#. 67K4H
-#: svx/inc/swframeposstrings.hrc:33
+#: svx/inc/swframeposstrings.hrc:35
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From inside"
msgstr "Van binne"
#. W2X2D
-#: svx/inc/swframeposstrings.hrc:34
+#: svx/inc/swframeposstrings.hrc:36
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph area"
msgstr "Paragraafarea"
#. CrRe5
-#: svx/inc/swframeposstrings.hrc:35 svx/inc/swframeposstrings.hrc:52
+#: svx/inc/swframeposstrings.hrc:37 svx/inc/swframeposstrings.hrc:54
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph text area"
msgstr "Paragraafteksarea"
#. MT34e
-#: svx/inc/swframeposstrings.hrc:36
+#: svx/inc/swframeposstrings.hrc:38
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left page border"
msgstr "Linkerbladsyrand"
#. edC8Z
-#: svx/inc/swframeposstrings.hrc:37
+#: svx/inc/swframeposstrings.hrc:39
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right page border"
msgstr "Regterbladsyrand"
#. dCGE9
-#: svx/inc/swframeposstrings.hrc:38
+#: svx/inc/swframeposstrings.hrc:40
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left paragraph border"
msgstr "Linkerparagraafrand"
#. 3pAVN
-#: svx/inc/swframeposstrings.hrc:39
+#: svx/inc/swframeposstrings.hrc:41
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right paragraph border"
msgstr "Regterparagraafrand"
#. qvFns
-#: svx/inc/swframeposstrings.hrc:40
+#: svx/inc/swframeposstrings.hrc:42
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner page border"
msgstr "Binnebladsyrand"
#. XwtPT
-#: svx/inc/swframeposstrings.hrc:41
+#: svx/inc/swframeposstrings.hrc:43
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer page border"
msgstr "Buitebladsyrand"
#. oF2mP
-#: svx/inc/swframeposstrings.hrc:42
+#: svx/inc/swframeposstrings.hrc:44
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner paragraph border"
msgstr "Binneparagraafrand"
#. Hffsf
-#: svx/inc/swframeposstrings.hrc:43
+#: svx/inc/swframeposstrings.hrc:45
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer paragraph border"
msgstr "Buiteparagraafrand"
#. ey4rc
-#: svx/inc/swframeposstrings.hrc:44
+#: svx/inc/swframeposstrings.hrc:46
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire page"
msgstr "Hele bladsy"
#. WJocu
-#: svx/inc/swframeposstrings.hrc:45
+#: svx/inc/swframeposstrings.hrc:47
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area"
msgstr "Bladsyteksarea"
#. jY8xQ
-#: svx/inc/swframeposstrings.hrc:46
+#: svx/inc/swframeposstrings.hrc:48
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area top"
msgstr "Bladsy teksarea bokant"
#. vWEe2
-#: svx/inc/swframeposstrings.hrc:47
+#: svx/inc/swframeposstrings.hrc:49
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area bottom"
msgstr "Bladsy teks area onderkant"
#. XG9Bj
-#: svx/inc/swframeposstrings.hrc:48
+#: svx/inc/swframeposstrings.hrc:50
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Base line"
msgstr "Basislyn"
#. A3DbQ
-#: svx/inc/swframeposstrings.hrc:49
+#: svx/inc/swframeposstrings.hrc:51
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Character"
msgstr "Karakter"
#. Qyopb
-#: svx/inc/swframeposstrings.hrc:50
+#: svx/inc/swframeposstrings.hrc:52
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Row"
msgstr "Ry"
#. PPkKE
-#: svx/inc/swframeposstrings.hrc:51
+#: svx/inc/swframeposstrings.hrc:53
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Margin"
msgstr "Kantlyn"
#. FCKGJ
-#: svx/inc/swframeposstrings.hrc:53
+#: svx/inc/swframeposstrings.hrc:55
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left frame border"
msgstr "Linkerraamrand"
#. dvJgp
-#: svx/inc/swframeposstrings.hrc:54
+#: svx/inc/swframeposstrings.hrc:56
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right frame border"
msgstr "Regterraamrand"
#. 8wUyB
-#: svx/inc/swframeposstrings.hrc:55
+#: svx/inc/swframeposstrings.hrc:57
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire frame"
msgstr "Hele raam"
#. FRNBs
-#: svx/inc/swframeposstrings.hrc:56
+#: svx/inc/swframeposstrings.hrc:58
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Frame text area"
msgstr "Raamteksarea"
#. CEgLN
-#: svx/inc/swframeposstrings.hrc:57
+#: svx/inc/swframeposstrings.hrc:59
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner frame border"
msgstr "Binneraamrand"
#. UroG3
-#: svx/inc/swframeposstrings.hrc:58
+#: svx/inc/swframeposstrings.hrc:60
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer frame border"
msgstr "Buiteraamrand"
#. hMCeD
-#: svx/inc/swframeposstrings.hrc:59
+#: svx/inc/swframeposstrings.hrc:61
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top"
msgstr "Bokant"
#. zvKGF
-#: svx/inc/swframeposstrings.hrc:60
+#: svx/inc/swframeposstrings.hrc:62
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom"
msgstr "Onderkant"
#. zLzw8
-#: svx/inc/swframeposstrings.hrc:61 svx/inc/swframeposstrings.hrc:62
+#: svx/inc/swframeposstrings.hrc:63 svx/inc/swframeposstrings.hrc:64
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Center"
msgstr "Sentreer"
#. HKRAf
-#: svx/inc/swframeposstrings.hrc:63
+#: svx/inc/swframeposstrings.hrc:65
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From top"
msgstr "Vanaf bo"
#. o7Td5
-#: svx/inc/swframeposstrings.hrc:64
+#: svx/inc/swframeposstrings.hrc:66
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From bottom"
msgstr "Van onder"
#. bF2Nd
-#: svx/inc/swframeposstrings.hrc:65
+#: svx/inc/swframeposstrings.hrc:67
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Below"
msgstr "Onder"
#. Q9AZn
-#: svx/inc/swframeposstrings.hrc:66
+#: svx/inc/swframeposstrings.hrc:68
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From right"
msgstr "Van regs"
#. Y6y4s
-#: svx/inc/swframeposstrings.hrc:67
+#: svx/inc/swframeposstrings.hrc:69
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top page border"
msgstr "Boonste bladsyrand"
#. ZyAri
-#: svx/inc/swframeposstrings.hrc:68
+#: svx/inc/swframeposstrings.hrc:70
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom page border"
msgstr "Onderste bladsyrand"
#. 2vRtm
-#: svx/inc/swframeposstrings.hrc:69
+#: svx/inc/swframeposstrings.hrc:71
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top paragraph border"
msgstr "Boonste paragraafrand"
#. AAFLn
-#: svx/inc/swframeposstrings.hrc:70
+#: svx/inc/swframeposstrings.hrc:72
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom paragraph border"
msgstr "Onderste paragraafrand"
#. dmVNj
-#: svx/inc/swframeposstrings.hrc:71
+#: svx/inc/swframeposstrings.hrc:73
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Line of text"
msgstr "Teksreël"
#. gKq8G
-#: svx/inc/tabwin.hrc:27
+#: svx/inc/tabwin.hrc:29
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Table"
msgstr "Tabel"
#. 4mnUW
-#: svx/inc/tabwin.hrc:28
+#: svx/inc/tabwin.hrc:30
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Query"
msgstr "Navraag"
#. rfs4A
-#: svx/inc/tabwin.hrc:29
+#: svx/inc/tabwin.hrc:31
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "SQL"
msgstr "SQL"
#. QF2ZT
-#: svx/inc/txenctab.hrc:32
+#: svx/inc/txenctab.hrc:33
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Windows-1252/WinLatin 1)"
msgstr "Wes-Europa (Windows-1252/WinLatin 1)"
#. VbWZR
-#: svx/inc/txenctab.hrc:33
+#: svx/inc/txenctab.hrc:34
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh)"
msgstr "Wes-Europa (Apple Macintosh)"
#. 5yMG7
-#: svx/inc/txenctab.hrc:34
+#: svx/inc/txenctab.hrc:35
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-850/International)"
msgstr "Wes-Europa (DOS/OS2-850/Internasionaal)"
#. KYDEk
-#: svx/inc/txenctab.hrc:35
+#: svx/inc/txenctab.hrc:36
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-437/US)"
msgstr "Wes-Europa (DOS/OS2-437/VS)"
#. 3MbrA
-#: svx/inc/txenctab.hrc:36
+#: svx/inc/txenctab.hrc:37
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-860/Portuguese)"
msgstr "Wes-Europa (DOS/OS2-860/Portugees)"
#. bdxAU
-#: svx/inc/txenctab.hrc:37
+#: svx/inc/txenctab.hrc:38
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-861/Icelandic)"
msgstr "Wes-Europa (DOS/OS2-861/Yslands)"
#. kMQ9X
-#: svx/inc/txenctab.hrc:38
+#: svx/inc/txenctab.hrc:39
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-863/French (Can.))"
msgstr "Wes-Europa (DOS/OS2-863/Frans (Kan.))"
#. YTGtN
-#: svx/inc/txenctab.hrc:39
+#: svx/inc/txenctab.hrc:40
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-865/Nordic)"
msgstr "Wes-Europa (DOS/OS2-865/Nordies)"
#. 7f2UV
-#: svx/inc/txenctab.hrc:40
+#: svx/inc/txenctab.hrc:41
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ASCII/US)"
msgstr "Wes-Europa (ASCII/VS)"
#. Hksxs
-#: svx/inc/txenctab.hrc:41
+#: svx/inc/txenctab.hrc:42
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-1)"
msgstr "Wes-Europa (ISO-8859-1)"
#. PBDdu
-#: svx/inc/txenctab.hrc:42
+#: svx/inc/txenctab.hrc:43
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-2)"
msgstr "Oos-Europa (ISO-8859-2)"
#. MFqWF
-#: svx/inc/txenctab.hrc:43
+#: svx/inc/txenctab.hrc:44
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Latin 3 (ISO-8859-3)"
msgstr "Latyn 3 (ISO-8859-3)"
#. WBkLV
-#: svx/inc/txenctab.hrc:44
+#: svx/inc/txenctab.hrc:45
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (ISO-8859-4)"
msgstr "Balties(ISO-8859-4)"
#. b5SPH
-#: svx/inc/txenctab.hrc:45
+#: svx/inc/txenctab.hrc:46
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (ISO-8859-5)"
msgstr "Cyrillies (ISO-8859-5)"
#. wFCbj
-#: svx/inc/txenctab.hrc:46
+#: svx/inc/txenctab.hrc:47
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (ISO-8859-6)"
msgstr "Arabies (ISO-8859-6)"
#. qTzCE
-#: svx/inc/txenctab.hrc:47
+#: svx/inc/txenctab.hrc:48
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (ISO-8859-7)"
msgstr "Grieks (ISO-8859-7)"
#. MmChj
-#: svx/inc/txenctab.hrc:48
+#: svx/inc/txenctab.hrc:49
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (ISO-8859-8)"
msgstr "Hebreeus (ISO-8859-8)"
#. 3bHAV
-#: svx/inc/txenctab.hrc:49
+#: svx/inc/txenctab.hrc:50
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (ISO-8859-9)"
msgstr "Turks (ISO-8859-9)"
#. phdte
-#: svx/inc/txenctab.hrc:50
+#: svx/inc/txenctab.hrc:51
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-14)"
msgstr "Wes-Europa (ISO-8859-14)"
#. MpHUZ
-#: svx/inc/txenctab.hrc:51
+#: svx/inc/txenctab.hrc:52
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-15/EURO)"
msgstr "Wes-Europa (ISO-8859-15/EURO)"
#. JgVnj
-#: svx/inc/txenctab.hrc:52
+#: svx/inc/txenctab.hrc:53
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-737)"
msgstr "Grieks (DOS/OS2-737)"
#. EQi6s
-#: svx/inc/txenctab.hrc:53
+#: svx/inc/txenctab.hrc:54
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (DOS/OS2-775)"
msgstr "Balties (DOS/OS2-775)"
#. SDvMf
-#: svx/inc/txenctab.hrc:54
+#: svx/inc/txenctab.hrc:55
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (DOS/OS2-852)"
msgstr "Oos-Europa (DOS/OS2-852)"
#. 3FrUC
-#: svx/inc/txenctab.hrc:55
+#: svx/inc/txenctab.hrc:56
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-855)"
msgstr "Cyrillies (DOS/OS2-855)"
#. G8q5c
-#: svx/inc/txenctab.hrc:56
+#: svx/inc/txenctab.hrc:57
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (DOS/OS2-857)"
msgstr "Turks (DOS/OS2-857)"
#. kBvdY
-#: svx/inc/txenctab.hrc:57
+#: svx/inc/txenctab.hrc:58
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (DOS/OS2-862)"
msgstr "Hebreeus (DOS/OS2-862)"
#. to6H6
-#: svx/inc/txenctab.hrc:58
+#: svx/inc/txenctab.hrc:59
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (DOS/OS2-864)"
msgstr "Arabies (DOS/OS2-864)"
#. BH6K4
-#: svx/inc/txenctab.hrc:59
+#: svx/inc/txenctab.hrc:60
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-866/Russian)"
msgstr "Cyrillies (DOS/OS2-866/Russies)"
#. ms8Dk
-#: svx/inc/txenctab.hrc:60
+#: svx/inc/txenctab.hrc:61
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-869/Modern)"
msgstr "Grieks (DOS/OS2-869/Modern)"
#. U9RbL
-#: svx/inc/txenctab.hrc:61
+#: svx/inc/txenctab.hrc:62
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Windows-1250/WinLatin 2)"
msgstr "Oos-Europa (Windows-1250/WinLatyn 2)"
#. fRRMB
-#: svx/inc/txenctab.hrc:62
+#: svx/inc/txenctab.hrc:63
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Windows-1251)"
msgstr "Cyrillies (Windows-1251)"
#. 7D9eT
-#: svx/inc/txenctab.hrc:63
+#: svx/inc/txenctab.hrc:64
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Windows-1253)"
msgstr "Grieks (Windows-1253)"
#. sa8W8
-#: svx/inc/txenctab.hrc:64
+#: svx/inc/txenctab.hrc:65
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Windows-1254)"
msgstr "Turks (Windows-1254)"
#. ZxMJy
-#: svx/inc/txenctab.hrc:65
+#: svx/inc/txenctab.hrc:66
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (Windows-1255)"
msgstr "Hebreeus (Windows-1255)"
#. 4GLZX
-#: svx/inc/txenctab.hrc:66
+#: svx/inc/txenctab.hrc:67
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (Windows-1256)"
msgstr "Arabies (Windows-1256)"
#. errzy
-#: svx/inc/txenctab.hrc:67
+#: svx/inc/txenctab.hrc:68
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (Windows-1257)"
msgstr "Balties (Windows-1257)"
#. SSo9X
-#: svx/inc/txenctab.hrc:68
+#: svx/inc/txenctab.hrc:69
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Vietnamese (Windows-1258)"
msgstr "Viëtnamees (Windows-1258)"
#. udrZT
-#: svx/inc/txenctab.hrc:69
+#: svx/inc/txenctab.hrc:70
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh)"
msgstr "Oos-Europa (Apple Macintosh)"
#. g2Z7z
-#: svx/inc/txenctab.hrc:70
+#: svx/inc/txenctab.hrc:71
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Croatian)"
msgstr "Oos-Europa (Apple Macintosh/Kroaties)"
#. 9jpM6
-#: svx/inc/txenctab.hrc:71
+#: svx/inc/txenctab.hrc:72
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh)"
msgstr "Cyrillies (Apple Macintosh)"
#. YB8BU
-#: svx/inc/txenctab.hrc:72
+#: svx/inc/txenctab.hrc:73
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Apple Macintosh)"
msgstr "Grieks (Apple Macintosh)"
#. rEWLF
-#: svx/inc/txenctab.hrc:73
+#: svx/inc/txenctab.hrc:74
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh/Icelandic)"
msgstr "Wes-Europa (Apple Macintosh/Yslands)"
#. eCAET
-#: svx/inc/txenctab.hrc:74
+#: svx/inc/txenctab.hrc:75
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Romanian)"
msgstr "Oos-Europa (Apple Macintosh/Roemeens)"
#. T4VVK
-#: svx/inc/txenctab.hrc:75
+#: svx/inc/txenctab.hrc:76
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Apple Macintosh)"
msgstr "Turks (Apple Macintosh)"
#. a8GDk
-#: svx/inc/txenctab.hrc:76
+#: svx/inc/txenctab.hrc:77
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh/Ukrainian)"
msgstr "Cyrillies (Apple Macintosh/Oekraïens)"
#. 4RBWC
-#: svx/inc/txenctab.hrc:77
+#: svx/inc/txenctab.hrc:78
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Apple Macintosh)"
msgstr "Sjinees vereenvoudig (Apple Macintosh)"
#. 6WCbw
-#: svx/inc/txenctab.hrc:78
+#: svx/inc/txenctab.hrc:79
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Apple Macintosh)"
msgstr "Sjinees tradisioneel (Apple Macintosh)"
#. DyADW
-#: svx/inc/txenctab.hrc:79
+#: svx/inc/txenctab.hrc:80
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Apple Macintosh)"
msgstr "Japannees (Apple Macintosh)"
#. BXQq2
-#: svx/inc/txenctab.hrc:80
+#: svx/inc/txenctab.hrc:81
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Apple Macintosh)"
msgstr "Koreaans (Apple Macintosh)"
#. 6eezP
-#: svx/inc/txenctab.hrc:81
+#: svx/inc/txenctab.hrc:82
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Windows-932)"
msgstr "Japannees (Windows-932)"
#. FuA86
-#: svx/inc/txenctab.hrc:82
+#: svx/inc/txenctab.hrc:83
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Windows-936)"
msgstr "Sjinees vereenvoudig (Windows-936)"
#. Rgvx2
-#: svx/inc/txenctab.hrc:83
+#: svx/inc/txenctab.hrc:84
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-949)"
msgstr "Koreaans (Windows-949)"
#. VrtX4
-#: svx/inc/txenctab.hrc:84
+#: svx/inc/txenctab.hrc:85
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Windows-950)"
msgstr "Sjinees tradisioneel (Windows-950)"
#. XYyEd
-#: svx/inc/txenctab.hrc:85
+#: svx/inc/txenctab.hrc:86
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Shift-JIS)"
msgstr "Japannees (Shift-JIS)"
#. k5M56
-#: svx/inc/txenctab.hrc:86
+#: svx/inc/txenctab.hrc:87
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-2312)"
msgstr "Sjinees vereenvoudig (GB-2312)"
#. PFzZY
-#: svx/inc/txenctab.hrc:87
+#: svx/inc/txenctab.hrc:88
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-18030)"
msgstr "Sjinees vereenvoudig (GB-18030)"
#. gb9bm
-#: svx/inc/txenctab.hrc:88
+#: svx/inc/txenctab.hrc:89
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (GBT-12345)"
msgstr "Sjinees tradisioneel (GBT-12345)"
#. C69XX
-#: svx/inc/txenctab.hrc:89
+#: svx/inc/txenctab.hrc:90
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GBK/GB-2312-80)"
msgstr "Sjinees vereenvoudig (GBK/GB-2312-80)"
#. UP3uw
-#: svx/inc/txenctab.hrc:90
+#: svx/inc/txenctab.hrc:91
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Big5)"
msgstr "Sjinees tradisioneel (Big5)"
#. DaFZR
-#: svx/inc/txenctab.hrc:91
+#: svx/inc/txenctab.hrc:92
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (BIG5-HKSCS)"
msgstr "Sjinees tradisioneel (BIG5-HKSCS)"
#. qEQVA
-#: svx/inc/txenctab.hrc:92
+#: svx/inc/txenctab.hrc:93
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (EUC-JP)"
msgstr "Japannees (EUC-JP)"
#. auzHg
-#: svx/inc/txenctab.hrc:93
+#: svx/inc/txenctab.hrc:94
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (EUC-CN)"
msgstr "Sjinees vereenvoudig (EUC-CN)"
#. ndTrZ
-#: svx/inc/txenctab.hrc:94
+#: svx/inc/txenctab.hrc:95
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (EUC-TW)"
msgstr "Sjinees tradisioneel (EUC-TW)"
#. 6pPLL
-#: svx/inc/txenctab.hrc:95
+#: svx/inc/txenctab.hrc:96
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (ISO-2022-JP)"
msgstr "Japannees (ISO-2022-JP)"
#. tWf3P
-#: svx/inc/txenctab.hrc:96
+#: svx/inc/txenctab.hrc:97
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (ISO-2022-CN)"
msgstr "Sjinees vereenvoudig (ISO-2022-CN)"
#. XMFCL
-#: svx/inc/txenctab.hrc:97
+#: svx/inc/txenctab.hrc:98
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-R)"
msgstr "Cyrillies (KOI8-R)"
#. 2pFce
-#: svx/inc/txenctab.hrc:98
+#: svx/inc/txenctab.hrc:99
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-7)"
msgstr "Unicode (UTF-7)"
#. FXEDd
-#: svx/inc/txenctab.hrc:99
+#: svx/inc/txenctab.hrc:100
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-8)"
msgstr "Unicode (UTF-8)"
#. PKDvB
-#: svx/inc/txenctab.hrc:100
+#: svx/inc/txenctab.hrc:101
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-10)"
msgstr "Oos-Europa (ISO-8859-10)"
#. QGYqt
-#: svx/inc/txenctab.hrc:101
+#: svx/inc/txenctab.hrc:102
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-13)"
msgstr "Oos-Europa (ISO-8859-13)"
#. Vx6bY
-#: svx/inc/txenctab.hrc:102
+#: svx/inc/txenctab.hrc:103
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (EUC-KR)"
msgstr "Koreaans (EUC-KR)"
#. 5CBHm
-#: svx/inc/txenctab.hrc:103
+#: svx/inc/txenctab.hrc:104
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (ISO-2022-KR)"
msgstr "Koreaans (ISO-2022-KR)"
#. nLGik
-#: svx/inc/txenctab.hrc:104
+#: svx/inc/txenctab.hrc:105
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-Johab-1361)"
msgstr "Koreaans (Windows-Johab-1361)"
#. QBgZo
-#: svx/inc/txenctab.hrc:105
+#: svx/inc/txenctab.hrc:106
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-16)"
msgstr "Unicode (UTF-16)"
#. JGdVV
-#: svx/inc/txenctab.hrc:106
+#: svx/inc/txenctab.hrc:107
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (ISO-8859-11/TIS-620)"
msgstr "Thai (ISO-8859-11/TIS-620)"
#. monLB
-#: svx/inc/txenctab.hrc:107
+#: svx/inc/txenctab.hrc:108
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (Windows-874)"
msgstr "Thai (Windows-874)"
#. USeUF
-#: svx/inc/txenctab.hrc:108
+#: svx/inc/txenctab.hrc:109
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-U)"
msgstr "Cyrillies (KOI8-U)"
#. vrLQe
-#: svx/inc/txenctab.hrc:109
+#: svx/inc/txenctab.hrc:110
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (PT154)"
msgstr "Cyrillies (PT154)"
#. rKPau
-#: svx/source/dialog/page.hrc:30
+#: svx/source/dialog/page.hrc:31
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A6"
msgstr "A6"
#. URac3
-#: svx/source/dialog/page.hrc:31
+#: svx/source/dialog/page.hrc:32
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A5"
msgstr "A5"
#. EPudF
-#: svx/source/dialog/page.hrc:32
+#: svx/source/dialog/page.hrc:33
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A4"
msgstr "A4"
#. qdkCd
-#: svx/source/dialog/page.hrc:33
+#: svx/source/dialog/page.hrc:34
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A3"
msgstr "A3"
#. HTZUv
-#: svx/source/dialog/page.hrc:34
+#: svx/source/dialog/page.hrc:35
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. cCYrf
-#: svx/source/dialog/page.hrc:35
+#: svx/source/dialog/page.hrc:36
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. xXp6C
-#: svx/source/dialog/page.hrc:36
+#: svx/source/dialog/page.hrc:37
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. A5BnL
-#: svx/source/dialog/page.hrc:37
+#: svx/source/dialog/page.hrc:38
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Letter"
msgstr "letter"
#. sx5cV
-#: svx/source/dialog/page.hrc:38
+#: svx/source/dialog/page.hrc:39
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Legal"
msgstr "Juridies"
#. Pkxcm
-#: svx/source/dialog/page.hrc:39
+#: svx/source/dialog/page.hrc:40
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Long Bond"
msgstr "Lang 'bond'"
#. JMsqY
-#: svx/source/dialog/page.hrc:40
+#: svx/source/dialog/page.hrc:41
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Tabloid"
msgstr "Tablet"
#. UBtQK
-#: svx/source/dialog/page.hrc:41
+#: svx/source/dialog/page.hrc:42
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. Ruu59
-#: svx/source/dialog/page.hrc:42
+#: svx/source/dialog/page.hrc:43
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. CFdsg
-#: svx/source/dialog/page.hrc:43
+#: svx/source/dialog/page.hrc:44
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. PCV4H
-#: svx/source/dialog/page.hrc:44
+#: svx/source/dialog/page.hrc:45
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "16 Kai"
msgstr "16 Kai"
#. GfVjG
-#: svx/source/dialog/page.hrc:45
+#: svx/source/dialog/page.hrc:46
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "32 Kai"
msgstr "32 Kai"
#. FJBrB
-#: svx/source/dialog/page.hrc:46
+#: svx/source/dialog/page.hrc:47
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Big 32 Kai"
msgstr "Groot 32 Kai"
#. by7kM
-#: svx/source/dialog/page.hrc:47
+#: svx/source/dialog/page.hrc:48
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "User"
msgstr "Gebruiker"
#. EGzYq
-#: svx/source/dialog/page.hrc:48
+#: svx/source/dialog/page.hrc:49
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "DL Envelope"
msgstr "DL-koevert"
#. YFzCy
-#: svx/source/dialog/page.hrc:49
+#: svx/source/dialog/page.hrc:50
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6 Envelope"
msgstr "C6-koevert"
#. Vcc7P
-#: svx/source/dialog/page.hrc:50
+#: svx/source/dialog/page.hrc:51
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6/5 Envelope"
msgstr "C6/5-koevert"
#. XsMRE
-#: svx/source/dialog/page.hrc:51
+#: svx/source/dialog/page.hrc:52
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C5 Envelope"
msgstr "C5-koevert"
#. uFwGu
-#: svx/source/dialog/page.hrc:52
+#: svx/source/dialog/page.hrc:53
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C4 Envelope"
msgstr "C4-koevert"
#. dCpd2
-#: svx/source/dialog/page.hrc:53
+#: svx/source/dialog/page.hrc:54
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#6¾ Envelope"
msgstr "#6¾-koevert"
#. zy6rP
-#: svx/source/dialog/page.hrc:54
+#: svx/source/dialog/page.hrc:55
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#7¾ (Monarch) Envelope"
msgstr "#7¾ (Monarch)-koevert"
#. m4N6Q
-#: svx/source/dialog/page.hrc:55
+#: svx/source/dialog/page.hrc:56
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#9 Envelope"
msgstr "#9-koevert"
#. JsBkZ
-#: svx/source/dialog/page.hrc:56
+#: svx/source/dialog/page.hrc:57
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#10 Envelope"
msgstr "#10-koevert"
#. 7FeU9
-#: svx/source/dialog/page.hrc:57
+#: svx/source/dialog/page.hrc:58
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#11 Envelope"
msgstr "#11-koevert"
#. 6sqhV
-#: svx/source/dialog/page.hrc:58
+#: svx/source/dialog/page.hrc:59
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#12 Envelope"
msgstr "#12-koevert"
#. 8uXDq
-#: svx/source/dialog/page.hrc:59
+#: svx/source/dialog/page.hrc:60
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Japanese Postcard"
msgstr "Japannese poskaart"
#. N2J2b
-#: svx/source/dialog/page.hrc:64
+#: svx/source/dialog/page.hrc:65
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A6"
msgstr "A6"
#. 78f4A
-#: svx/source/dialog/page.hrc:65
+#: svx/source/dialog/page.hrc:66
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A5"
msgstr "A5"
#. i6x38
-#: svx/source/dialog/page.hrc:66
+#: svx/source/dialog/page.hrc:67
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A4"
msgstr "A4"
#. Dmqus
-#: svx/source/dialog/page.hrc:67
+#: svx/source/dialog/page.hrc:68
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A3"
msgstr "A3"
#. XjWtg
-#: svx/source/dialog/page.hrc:68
+#: svx/source/dialog/page.hrc:69
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A2"
msgstr "A2"
#. yqBrH
-#: svx/source/dialog/page.hrc:69
+#: svx/source/dialog/page.hrc:70
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A1"
msgstr "A1"
#. Ao3sz
-#: svx/source/dialog/page.hrc:70
+#: svx/source/dialog/page.hrc:71
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A0"
msgstr "A0"
#. jvpHD
-#: svx/source/dialog/page.hrc:71
+#: svx/source/dialog/page.hrc:72
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. DGqE3
-#: svx/source/dialog/page.hrc:72
+#: svx/source/dialog/page.hrc:73
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. JrZiW
-#: svx/source/dialog/page.hrc:73
+#: svx/source/dialog/page.hrc:74
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. 8zZQc
-#: svx/source/dialog/page.hrc:74
+#: svx/source/dialog/page.hrc:75
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Letter"
msgstr "letter"
#. NKMub
-#: svx/source/dialog/page.hrc:75
+#: svx/source/dialog/page.hrc:76
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Legal"
msgstr "Juridies"
#. GyH6H
-#: svx/source/dialog/page.hrc:76
+#: svx/source/dialog/page.hrc:77
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Long Bond"
msgstr "Lang 'bond'"
#. gWjE2
-#: svx/source/dialog/page.hrc:77
+#: svx/source/dialog/page.hrc:78
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Tabloid"
msgstr "Tablet"
#. 5Dddp
-#: svx/source/dialog/page.hrc:78
+#: svx/source/dialog/page.hrc:79
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. sYcjZ
-#: svx/source/dialog/page.hrc:79
+#: svx/source/dialog/page.hrc:80
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. f9tD2
-#: svx/source/dialog/page.hrc:80
+#: svx/source/dialog/page.hrc:81
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. DGFbZ
-#: svx/source/dialog/page.hrc:81
+#: svx/source/dialog/page.hrc:82
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "16 Kai"
msgstr "16 Kai"
#. JbFMy
-#: svx/source/dialog/page.hrc:82
+#: svx/source/dialog/page.hrc:83
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "32 Kai"
msgstr "32 Kai"
#. E3CDE
-#: svx/source/dialog/page.hrc:83
+#: svx/source/dialog/page.hrc:84
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Big 32 Kai"
msgstr "Groot 32 Kai"
#. rSAv7
-#: svx/source/dialog/page.hrc:84
+#: svx/source/dialog/page.hrc:85
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "User"
msgstr "Gebruiker"
#. z3HXV
-#: svx/source/dialog/page.hrc:85
+#: svx/source/dialog/page.hrc:86
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "DL Envelope"
msgstr "DL-koevert"
#. k2HBd
-#: svx/source/dialog/page.hrc:86
+#: svx/source/dialog/page.hrc:87
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6 Envelope"
msgstr "C6-koevert"
#. t43Ta
-#: svx/source/dialog/page.hrc:87
+#: svx/source/dialog/page.hrc:88
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6/5 Envelope"
msgstr "C6/5-koevert"
#. jfDNz
-#: svx/source/dialog/page.hrc:88
+#: svx/source/dialog/page.hrc:89
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C5 Envelope"
msgstr "C5-koevert"
#. h2cDh
-#: svx/source/dialog/page.hrc:89
+#: svx/source/dialog/page.hrc:90
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C4 Envelope"
msgstr "C4-koevert"
#. j4Hms
-#: svx/source/dialog/page.hrc:90
+#: svx/source/dialog/page.hrc:91
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Dia Slide"
msgstr "Diaskyfie"
#. ePYVT
-#: svx/source/dialog/page.hrc:91
+#: svx/source/dialog/page.hrc:92
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 4:3"
msgstr "Skerm: 4:3"
#. pWa4A
-#: svx/source/dialog/page.hrc:92
+#: svx/source/dialog/page.hrc:93
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:9"
msgstr "Skerm: 16:9"
#. T62Dx
-#: svx/source/dialog/page.hrc:93
+#: svx/source/dialog/page.hrc:94
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:10"
msgstr "Skerm: 16:10"
#. hwMzF
-#: svx/source/dialog/page.hrc:94
+#: svx/source/dialog/page.hrc:95
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Widescreen"
msgstr "Wye Skerm"
#. HqpFJ
-#: svx/source/dialog/page.hrc:95
+#: svx/source/dialog/page.hrc:96
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (4:3)"
msgstr "Op-skerm Vertoning (4:3)"
#. PFU8U
-#: svx/source/dialog/page.hrc:96
+#: svx/source/dialog/page.hrc:97
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:9)"
msgstr "Op-skerm Vertoning (16:9)"
#. 48LFY
-#: svx/source/dialog/page.hrc:97
+#: svx/source/dialog/page.hrc:98
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:10)"
msgstr "Op-skerm Vertoning (16:10)"
#. ryFz3
-#: svx/source/dialog/page.hrc:98
+#: svx/source/dialog/page.hrc:99
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Japanese Postcard"
msgstr "Japannese poskaart"
@@ -16311,19 +16317,19 @@ msgid "Direction:"
msgstr "Rigting:"
#. GPC8q
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1009
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1013
msgctxt "findreplacedialog-mobile|rows"
msgid "Ro_ws"
msgstr "R_ye"
#. xCeTz
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1028
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1032
msgctxt "findreplacedialog-mobile|cols"
msgid "Colum_ns"
msgstr "Kolo_mme"
#. fPE4f
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1072
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1076
msgctxt "findreplacedialog-mobile|label3"
msgid "Other _options"
msgstr "Ander _opsies"
@@ -16653,55 +16659,55 @@ msgid "Search i_n:"
msgstr "Soek i_n:"
#. GGhEA
-#: svx/uiconfig/ui/findreplacedialog.ui:1069
+#: svx/uiconfig/ui/findreplacedialog.ui:1070
msgctxt "findreplacedialog|calcsearchin"
msgid "Formulas"
msgstr "Formules"
#. bpBeC
-#: svx/uiconfig/ui/findreplacedialog.ui:1070
+#: svx/uiconfig/ui/findreplacedialog.ui:1071
msgctxt "findreplacedialog|calcsearchin"
msgid "Values"
msgstr "Waardes"
#. zSUYq
-#: svx/uiconfig/ui/findreplacedialog.ui:1071
+#: svx/uiconfig/ui/findreplacedialog.ui:1072
msgctxt "findreplacedialog|calcsearchin"
msgid "Comments"
msgstr "Opmerkings"
#. K4WuW
-#: svx/uiconfig/ui/findreplacedialog.ui:1096
+#: svx/uiconfig/ui/findreplacedialog.ui:1097
msgctxt "findreplacedialog|searchdir"
msgid "Direction:"
msgstr "Rigting:"
#. p2HBA
-#: svx/uiconfig/ui/findreplacedialog.ui:1113
+#: svx/uiconfig/ui/findreplacedialog.ui:1119
msgctxt "findreplacedialog|rows"
msgid "Ro_ws"
msgstr "R_ye"
#. uib5F
-#: svx/uiconfig/ui/findreplacedialog.ui:1132
+#: svx/uiconfig/ui/findreplacedialog.ui:1138
msgctxt "findreplacedialog|cols"
msgid "Colum_ns"
msgstr "Kolo_mme"
#. Q6fG8
-#: svx/uiconfig/ui/findreplacedialog.ui:1176
+#: svx/uiconfig/ui/findreplacedialog.ui:1182
msgctxt "findreplacedialog|label3"
msgid "Other _options"
msgstr "Ander _opsies"
#. CPpFA
-#: svx/uiconfig/ui/findreplacedialog.ui:1183
+#: svx/uiconfig/ui/findreplacedialog.ui:1189
msgctxt "findreplacedialog|extended_tip|label3"
msgid "Shows more or fewer search options. Click this label again to hide the extended search options."
msgstr "Vertoon min of meer soekopsies. Klik weer op hierdie inskrywing om die gevorderde soekopsies te verberg."
#. YpLau
-#: svx/uiconfig/ui/findreplacedialog.ui:1219
+#: svx/uiconfig/ui/findreplacedialog.ui:1222
msgctxt "findreplacedialog|extended_tip|FindReplaceDialog"
msgid "Finds or replaces text or formats in the current document."
msgstr "Vind of vervang teks of style in die huidige dokument."
@@ -19981,13 +19987,13 @@ msgstr "Plastiek"
#: svx/uiconfig/ui/surfacewindow.ui:97
msgctxt "surfacewindow|RID_SVXSTR_METAL"
msgid "Me_tal ODF"
-msgstr ""
+msgstr "Me_tal ODF"
#. okzfz
#: svx/uiconfig/ui/surfacewindow.ui:115
msgctxt "surfacewindow|RID_SVXSTR_METALMSO"
msgid "Meta_l MS compatible"
-msgstr ""
+msgstr "Me_tal MS versoenbaar"
#. ECSGJ
#: svx/uiconfig/ui/tablewindow.ui:36
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 1c9ab680088..402a92dbfec 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-09 16:46+0100\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
"PO-Revision-Date: 2022-02-18 11:42+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/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: 1560976448.000000\n"
#. v3oJv
@@ -190,193 +190,193 @@ msgid "_Yes"
msgstr "_Ja"
#. DdjvG
-#: sw/inc/app.hrc:29
+#: sw/inc/app.hrc:31
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "All Styles"
msgstr "Alle style"
#. aF6kb
-#: sw/inc/app.hrc:30
+#: sw/inc/app.hrc:32
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Versteekte style"
#. Sn6Pr
-#: sw/inc/app.hrc:31
+#: sw/inc/app.hrc:33
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Toegepaste style"
#. dPsnN
-#: sw/inc/app.hrc:32
+#: sw/inc/app.hrc:34
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Doelgemaakte style"
#. LL8tn
-#: sw/inc/app.hrc:33
+#: sw/inc/app.hrc:35
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Automatic"
msgstr "Outomaties"
#. W2ZFq
-#: sw/inc/app.hrc:34
+#: sw/inc/app.hrc:36
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Text Styles"
msgstr "Teksstyle"
#. j6CkD
-#: sw/inc/app.hrc:35
+#: sw/inc/app.hrc:37
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Chapter Styles"
msgstr "Hoofstukstyle"
#. KgUsu
-#: sw/inc/app.hrc:36
+#: sw/inc/app.hrc:38
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "List Styles"
msgstr "Lysstyle"
#. ZYAsP
-#: sw/inc/app.hrc:37
+#: sw/inc/app.hrc:39
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Index Styles"
msgstr "Indeksstyle"
#. CXarp
-#: sw/inc/app.hrc:38
+#: sw/inc/app.hrc:40
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Special Styles"
msgstr "Spesiale style"
#. M9it7
-#: sw/inc/app.hrc:39
+#: sw/inc/app.hrc:41
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "HTML Styles"
msgstr "HTML-style"
#. TeuD3
-#: sw/inc/app.hrc:40
+#: sw/inc/app.hrc:42
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Conditional Styles"
msgstr "Voorwaardelike style"
#. EBcnz
-#: sw/inc/app.hrc:46
+#: sw/inc/app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "All Styles"
msgstr "Alle style"
#. vmFjs
-#: sw/inc/app.hrc:47
+#: sw/inc/app.hrc:49
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Versteekte style"
#. NG33n
-#: sw/inc/app.hrc:48
+#: sw/inc/app.hrc:50
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Toegepaste style"
#. yubqD
-#: sw/inc/app.hrc:49
+#: sw/inc/app.hrc:51
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Doelgemaakte style"
#. hPACX
-#: sw/inc/app.hrc:55
+#: sw/inc/app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "All Styles"
msgstr "Alle style"
#. NPGpT
-#: sw/inc/app.hrc:56
+#: sw/inc/app.hrc:58
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Versteekte style"
#. R8bb3
-#: sw/inc/app.hrc:57
+#: sw/inc/app.hrc:59
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Toegepaste style"
#. RFmiE
-#: sw/inc/app.hrc:58
+#: sw/inc/app.hrc:60
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Doelgemaakte style"
#. ADhCx
-#: sw/inc/app.hrc:64
+#: sw/inc/app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
msgid "All Styles"
msgstr "Alle style"
#. kGzjB
-#: sw/inc/app.hrc:65
+#: sw/inc/app.hrc:67
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Versteekte style"
#. CAEy6
-#: sw/inc/app.hrc:66
+#: sw/inc/app.hrc:68
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Toegepaste style"
#. jQvqy
-#: sw/inc/app.hrc:67
+#: sw/inc/app.hrc:69
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Doelgemaakte style"
#. xFSbd
-#: sw/inc/app.hrc:73
+#: sw/inc/app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
msgid "All Styles"
msgstr "Alle style"
#. DCRLB
-#: sw/inc/app.hrc:74
+#: sw/inc/app.hrc:76
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Versteekte style"
#. 4BdCR
-#: sw/inc/app.hrc:75
+#: sw/inc/app.hrc:77
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Toegepaste style"
#. A4VNy
-#: sw/inc/app.hrc:76
+#: sw/inc/app.hrc:78
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Doelgemaakte style"
#. DwpVB
-#: sw/inc/app.hrc:82
+#: sw/inc/app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
msgid "All Styles"
msgstr "Alle style"
#. TPRKY
-#: sw/inc/app.hrc:83
+#: sw/inc/app.hrc:85
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Versteekte style"
#. Y9EKT
-#: sw/inc/app.hrc:84
+#: sw/inc/app.hrc:86
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Toegepaste style"
#. UFVRD
-#: sw/inc/app.hrc:85
+#: sw/inc/app.hrc:87
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Doelgemaakte style"
@@ -617,55 +617,55 @@ msgstr ""
"Hulle is nie gestoor volgens die huidige uitvoer instellings."
#. daCFp
-#: sw/inc/flddinf.hrc:27
+#: sw/inc/flddinf.hrc:29
msgctxt "flddocinfopage|liststore1"
msgid "Author"
msgstr "Outeur"
#. syKG4
-#: sw/inc/flddinf.hrc:28
+#: sw/inc/flddinf.hrc:30
msgctxt "flddocinfopage|liststore1"
msgid "Time"
msgstr "Tyd"
#. YVmE7
-#: sw/inc/flddinf.hrc:29
+#: sw/inc/flddinf.hrc:31
msgctxt "flddocinfopage|liststore1"
msgid "Date"
msgstr "Datum"
#. 2J6uc
-#: sw/inc/flddinf.hrc:30
+#: sw/inc/flddinf.hrc:32
msgctxt "flddocinfopage|liststore1"
msgid "Date Time Author"
msgstr "Datum Tyd Outeur"
#. FzXBo
-#: sw/inc/fldref.hrc:27
+#: sw/inc/fldref.hrc:29
msgctxt "fldrefpage|liststore1"
msgid "Bookmarks"
msgstr "Boekmerke"
#. aGQG8
-#: sw/inc/fldref.hrc:28
+#: sw/inc/fldref.hrc:30
msgctxt "fldrefpage|liststore1"
msgid "Footnotes"
msgstr "Voetnote"
#. DyZeU
-#: sw/inc/fldref.hrc:29
+#: sw/inc/fldref.hrc:31
msgctxt "fldrefpage|liststore1"
msgid "Endnotes"
msgstr "Endnote"
#. Cit9Z
-#: sw/inc/fldref.hrc:30
+#: sw/inc/fldref.hrc:32
msgctxt "fldrefpage|liststore1"
msgid "Headings"
msgstr "Opskrifte"
#. 95WGQ
-#: sw/inc/fldref.hrc:31
+#: sw/inc/fldref.hrc:33
msgctxt "fldrefpage|liststore1"
msgid "Numbered Paragraphs"
msgstr "Genommerde paragrawe"
@@ -2033,181 +2033,181 @@ msgid "Writing Mode"
msgstr "Skryf Modus"
#. QBR3s
-#: sw/inc/mmaddressblockpage.hrc:27
+#: sw/inc/mmaddressblockpage.hrc:29
msgctxt "RA_SALUTATION"
msgid "Dear"
msgstr "Jaar"
#. xc8LH
-#: sw/inc/mmaddressblockpage.hrc:28
+#: sw/inc/mmaddressblockpage.hrc:30
msgctxt "RA_SALUTATION"
msgid "Hello"
msgstr "Hallo"
#. 3dVR9
-#: sw/inc/mmaddressblockpage.hrc:29
+#: sw/inc/mmaddressblockpage.hrc:31
msgctxt "RA_SALUTATION"
msgid "Hi"
msgstr "Haai"
#. G4dAq
-#: sw/inc/mmaddressblockpage.hrc:34
+#: sw/inc/mmaddressblockpage.hrc:36
msgctxt "RA_PUNCTUATION"
msgid ","
msgstr ","
#. xpSNV
-#: sw/inc/mmaddressblockpage.hrc:35
+#: sw/inc/mmaddressblockpage.hrc:37
msgctxt "RA_PUNCTUATION"
msgid ":"
msgstr ":"
#. CBNXb
-#: sw/inc/mmaddressblockpage.hrc:36
+#: sw/inc/mmaddressblockpage.hrc:38
msgctxt "RA_PUNCTUATION"
msgid "!"
msgstr "!"
#. av4Wm
-#: sw/inc/mmaddressblockpage.hrc:37
+#: sw/inc/mmaddressblockpage.hrc:39
msgctxt "RA_PUNCTUATION"
msgid "(none)"
msgstr "(geen)"
#. ujBVU
-#: sw/inc/optload.hrc:30
+#: sw/inc/optload.hrc:31
msgctxt "STR_ARR_METRIC"
msgid "Millimeter"
msgstr "Millimeter"
#. a9SsD
-#: sw/inc/optload.hrc:31
+#: sw/inc/optload.hrc:32
msgctxt "STR_ARR_METRIC"
msgid "Centimeter"
msgstr "Sentimeter"
#. 2RuJU
-#: sw/inc/optload.hrc:32
+#: sw/inc/optload.hrc:33
msgctxt "STR_ARR_METRIC"
msgid "Meter"
msgstr "Meter"
#. s4zrG
-#: sw/inc/optload.hrc:33
+#: sw/inc/optload.hrc:34
msgctxt "STR_ARR_METRIC"
msgid "Kilometer"
msgstr "Kilometer"
#. SGXPk
-#: sw/inc/optload.hrc:34
+#: sw/inc/optload.hrc:35
msgctxt "STR_ARR_METRIC"
msgid "Inch"
msgstr "Duim"
#. 3kDJD
-#: sw/inc/optload.hrc:35
+#: sw/inc/optload.hrc:36
msgctxt "STR_ARR_METRIC"
msgid "Foot"
msgstr "Voet"
#. Z9v2E
-#: sw/inc/optload.hrc:36
+#: sw/inc/optload.hrc:37
msgctxt "STR_ARR_METRIC"
msgid "Miles"
msgstr "Myl"
#. ngFw4
-#: sw/inc/optload.hrc:37
+#: sw/inc/optload.hrc:38
msgctxt "STR_ARR_METRIC"
msgid "Pica"
msgstr "Pika"
#. C2njC
-#: sw/inc/optload.hrc:38
+#: sw/inc/optload.hrc:39
msgctxt "STR_ARR_METRIC"
msgid "Point"
msgstr "Punt"
#. FcXWG
-#: sw/inc/optload.hrc:39
+#: sw/inc/optload.hrc:40
msgctxt "STR_ARR_METRIC"
msgid "Char"
msgstr "Grafiek"
#. ZZCxd
-#: sw/inc/optload.hrc:40
+#: sw/inc/optload.hrc:41
msgctxt "STR_ARR_METRIC"
msgid "Line"
msgstr "Reël"
#. qQBCu
-#: sw/inc/outline.hrc:27
+#: sw/inc/outline.hrc:29
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 1"
msgstr "Naamloos 1"
#. fJyA3
-#: sw/inc/outline.hrc:28
+#: sw/inc/outline.hrc:30
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 2"
msgstr "Naamloos 2"
#. MLeBF
-#: sw/inc/outline.hrc:29
+#: sw/inc/outline.hrc:31
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 3"
msgstr "Naamloos 3"
#. reXad
-#: sw/inc/outline.hrc:30
+#: sw/inc/outline.hrc:32
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 4"
msgstr "Naamloos 4"
#. Fgpbv
-#: sw/inc/outline.hrc:31
+#: sw/inc/outline.hrc:33
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 5"
msgstr "Naamloos 5"
#. Ea4d6
-#: sw/inc/outline.hrc:32
+#: sw/inc/outline.hrc:34
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 6"
msgstr "Naamloos 6"
#. UcAcC
-#: sw/inc/outline.hrc:33
+#: sw/inc/outline.hrc:35
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 7"
msgstr "Naamloos 7"
#. Dv26U
-#: sw/inc/outline.hrc:34
+#: sw/inc/outline.hrc:36
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 8"
msgstr "Naamloos 8"
#. XxC5o
-#: sw/inc/outline.hrc:35
+#: sw/inc/outline.hrc:37
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 9"
msgstr "Naamloos 9"
#. TTBSc
-#: sw/inc/pageformatpanel.hrc:23
+#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
msgstr "Geen"
#. eNMWm
-#: sw/inc/pageformatpanel.hrc:24
+#: sw/inc/pageformatpanel.hrc:26
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
msgstr "Smal"
#. MHtci
-#: sw/inc/pageformatpanel.hrc:25
+#: sw/inc/pageformatpanel.hrc:27
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
msgstr "Matig"
@@ -2216,38 +2216,38 @@ msgstr "Matig"
#. Normal (0.75")
#. Normal (1")
#. Normal (1.25")
-#: sw/inc/pageformatpanel.hrc:27 sw/inc/pageformatpanel.hrc:29
-#: sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:29 sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (%1)"
msgstr "Normaal (%1)"
#. DjCNK
-#: sw/inc/pageformatpanel.hrc:32
+#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
msgstr "Wyd"
#. JDMQe
-#: sw/inc/pageformatpanel.hrc:33
+#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Mirrored"
msgstr "Spieëlbeeld"
#. J9o3y
-#: sw/inc/pageformatpanel.hrc:39
+#: sw/inc/pageformatpanel.hrc:41
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
msgstr "Geen"
#. LxZSX
-#: sw/inc/pageformatpanel.hrc:40
+#: sw/inc/pageformatpanel.hrc:42
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
msgstr "Smal"
#. EDy4U
-#: sw/inc/pageformatpanel.hrc:41
+#: sw/inc/pageformatpanel.hrc:43
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
msgstr "Matig"
@@ -2256,20 +2256,20 @@ msgstr "Matig"
#. Normal (1.9 cm)
#. Normal (2.54 cm)
#. Normal (3.18 cm)
-#: sw/inc/pageformatpanel.hrc:43 sw/inc/pageformatpanel.hrc:45
-#: sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:45 sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:49
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (%1)"
msgstr "Normaal (%1)"
#. oJfxD
-#: sw/inc/pageformatpanel.hrc:48
+#: sw/inc/pageformatpanel.hrc:50
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
msgstr "Wyd"
#. H9Qqx
-#: sw/inc/pageformatpanel.hrc:49
+#: sw/inc/pageformatpanel.hrc:51
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr "Spieëlbeeld"
@@ -9227,280 +9227,292 @@ msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
-#. sgEbW
+#. WghdP
#: sw/inc/strings.hrc:1283
+msgctxt "STR_REDLINE_COMMENT_ADDED"
+msgid "Comment added"
+msgstr ""
+
+#. 2KNu9
+#: sw/inc/strings.hrc:1284
+msgctxt "STR_REDLINE_COMMENT_DELETED"
+msgid "Comment deleted"
+msgstr ""
+
+#. sgEbW
+#: sw/inc/strings.hrc:1285
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Bladsy "
#. 3DpEx
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1286
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Bladsy %1 van %2"
#. HSbzS
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1287
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Bladsy %1 van %2 (bladsy %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1288
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:1288
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
#. aAtmp
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Beeld"
#. UBDMK
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. xEWbo
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Raam"
#. hfJns
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabel"
#. GRqNY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1295
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Tabelry"
#. CDQY4
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1296
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Tabelsel"
#. 2Db9T
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1297
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Bladsy"
#. 63FuG
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1298
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Kop"
#. aDuAY
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1299
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Voet"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1302
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-HTML-dokument"
#. y2GBv
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titel"
#. AipGR
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1305
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Skeier"
#. CoSEf
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1306
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Vlak "
#. JdTF4
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1307
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:1306
+#: sw/inc/strings.hrc:1308
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Gebruikergedefinieerde indeks"
#. t5uWs
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1309
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<geen>"
#. vSSnJ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1310
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<geen>"
#. NSx98
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1311
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "H#"
#. 8EgTx
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "HI"
#. XWaFn
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "BH"
#. xp6D6
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Hoofstuknommer"
#. FH365
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Inskrywing"
#. xZjtZ
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Inkeep"
#. aXW8y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Teks"
#. MCUd2
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1324
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Bladsynommer"
#. pXqw3
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Hoofstukinligting"
#. DRBSD
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1326
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Begin van hiperskakel"
#. Ytn5g
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1327
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Einde van hiperskakel"
#. hRo3J
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1328
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Bibliografie-inskrywing: "
#. ZKG5v
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1329
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Karakterstyl: "
#. d9BES
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1330
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Teks Struktuur"
#. kwoGP
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1331
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:1330
+#: sw/inc/strings.hrc:1332
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:1331
+#: sw/inc/strings.hrc:1333
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:1332
+#: sw/inc/strings.hrc:1334
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Keuringslêer vir indeks (* .sdi)"
@@ -9509,259 +9521,259 @@ msgstr "Keuringslêer vir indeks (* .sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Basislyn ~bo"
#. 5GiEA
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~Basislyn onder"
#. sdyVF
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "~Gesentreerde basislyn"
#. NAXyZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1342
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "Voeg objek in"
#. 5C6Rc
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1343
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "Redigeer objek"
#. 3QFYB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1344
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Sjabloon: "
#. oUhnK
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1345
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Rande"
#. T2SH2
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1346
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Agtergrond"
#. K6Yvs
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1348
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Paragraafstyl: "
#. Fsanh
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1349
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:1349
+#: sw/inc/strings.hrc:1351
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-meesterdokument"
#. kWe9j
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1353
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:1352
+#: sw/inc/strings.hrc:1354
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Die getikte wagwoord is ongeldig."
#. oUR7Y
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1355
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Die wagwoord is nie gestel nie."
#. GBVqD
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1357
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Woordafbreking klaar"
#. rZBXF
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1358
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Geen (moenie spelling kontroleer nie)"
#. Z8EjG
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1359
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Stel terug na verstektaal"
#. YEXdS
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1360
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Meer..."
#. QecQ3
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1361
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~Ignoreer"
#. aaiBM
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1362
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Verduidelikings..."
#. kSDGu
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1364
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:1363
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Kon nie dokumente saamvoeg nie."
#. FqsCt
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1366
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:1365
+#: sw/inc/strings.hrc:1367
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Die bron kan nie gelaai word nie."
#. K9qMS
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1368
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:1367
+#: sw/inc/strings.hrc:1369
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML-dokument"
#. qVZBx
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1370
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Teksdokument"
#. qmmPU
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Bron nie gespesifiseer nie."
#. 2LgDJ
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1372
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Vlak "
#. AcAD8
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1373
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Skema "
#. DE9FZ
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1374
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Redigeer voetnoot/eindnoot"
#. EzBCZ
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1375
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Soeksleutel is XX maal vervang."
#. fgywB
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1376
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ry "
#. GUc4a
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1377
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Kolom "
#. yMyuo
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~Voer bron uit..."
#. ywFCb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1379
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~Voer kopie van bron uit..."
#. BT3M3
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1381
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~Gaan voort"
#. ZR9aw
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1382
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Stuur aan: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1383
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Suksesvol vesend"
#. fmHmE
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1384
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Stuur het misluk"
#. yAAPM
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1386
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:1386
+#: sw/inc/strings.hrc:1388
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Teksformule"
#. RmBFW
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1390
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "Geen Item gespesifiseer"
@@ -9770,7 +9782,7 @@ msgstr "Geen Item gespesifiseer"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1396
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"
@@ -9779,253 +9791,253 @@ msgstr "Die dokumentklassifikasie het verander omdat ’n paragraafklassifikasie
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1401
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Geldig "
#. xAKRC
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1402
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Ongeldig"
#. pDAHz
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1403
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Ongeldige handtekening"
#. etEEx
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1404
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Onderteken deur"
#. BK7ub
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1405
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Paragraafhandtekening"
#. kZKCf
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1407
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Visitekaartjies"
#. ECFij
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1409
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Pos-Instellings"
#. PwrB9
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1411
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Voeg in"
#. NL48o
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1412
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Skrap"
#. PW4Bz
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1413
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Attribute"
#. yfgiq
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Soekterm"
#. fhLzk
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Alternatiewe inskrywing"
#. gD4D3
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1e sleutel"
#. BFszo
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2e sleutel"
#. EoAB8
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1419
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Opmerking"
#. Shstx
-#: sw/inc/strings.hrc:1418
+#: sw/inc/strings.hrc:1420
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Selfde kas"
#. 8Cjvb
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1421
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Slegs woord"
#. zD8rb
-#: sw/inc/strings.hrc:1420
+#: sw/inc/strings.hrc:1422
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ja"
#. 4tTop
-#: sw/inc/strings.hrc:1421
+#: sw/inc/strings.hrc:1423
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Nee"
#. KhKwa
-#: sw/inc/strings.hrc:1423
+#: sw/inc/strings.hrc:1425
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Doelgemaak"
#. YiRsr
-#: sw/inc/utlui.hrc:27
+#: sw/inc/utlui.hrc:29
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Remove empty paragraphs"
msgstr "Verwyder leë paragrawe"
#. zWFE6
-#: sw/inc/utlui.hrc:28
+#: sw/inc/utlui.hrc:30
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Use replacement table"
msgstr "Gebruik vervangingstabel"
#. EQfLp
-#: sw/inc/utlui.hrc:29
+#: sw/inc/utlui.hrc:31
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Correct TWo INitial CApitals"
msgstr "Korrigeer TWee AAnvangshoofletters"
#. JBCDA
-#: sw/inc/utlui.hrc:30
+#: sw/inc/utlui.hrc:32
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Capitalize first letter of sentences"
msgstr "Hoofletters aan die begin van sinne"
#. eGLb9
-#: sw/inc/utlui.hrc:31
+#: sw/inc/utlui.hrc:33
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace \"standard\" quotes with %1custom%2 quotes"
msgstr "Vervang \"standaard\"-aanhalingstekens met %1doelgemaakte%2 aanhalingstekens"
#. dgZCx
-#: sw/inc/utlui.hrc:32
+#: sw/inc/utlui.hrc:34
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace Custom Styles"
msgstr "Vervang doelgemaakte style"
#. zXHk9
-#: sw/inc/utlui.hrc:33
+#: sw/inc/utlui.hrc:35
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Bullets replaced"
msgstr "Koeëls is vervang"
#. p7V6t
-#: sw/inc/utlui.hrc:34
+#: sw/inc/utlui.hrc:36
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic _underline_"
msgstr "Outomatiese _onderstreping_"
#. Hzt7q
-#: sw/inc/utlui.hrc:35
+#: sw/inc/utlui.hrc:37
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic *bold*"
msgstr "Outomatiese *vetdruk*"
#. oMfhs
-#: sw/inc/utlui.hrc:36
+#: sw/inc/utlui.hrc:38
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1/2 ... with ½ ..."
msgstr "Vervang 1/2 ... met ½ ..."
#. UCK6y
-#: sw/inc/utlui.hrc:37
+#: sw/inc/utlui.hrc:39
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "URL recognition"
msgstr "URL-herkenning"
#. MD9fC
-#: sw/inc/utlui.hrc:38
+#: sw/inc/utlui.hrc:40
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace dashes"
msgstr "Vervang aandagstrepe"
#. YABTx
-#: sw/inc/utlui.hrc:39
+#: sw/inc/utlui.hrc:41
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1st... with 1^st..."
msgstr "Vervang 1ste... met 1^ste..."
#. ebBjY
-#: sw/inc/utlui.hrc:40
+#: sw/inc/utlui.hrc:42
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine single line paragraphs"
msgstr "Kombineer enkelreëlparagrawe"
#. Gtaxa
-#: sw/inc/utlui.hrc:41
+#: sw/inc/utlui.hrc:43
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body\" Style"
msgstr "Stel styl vir “Teksliggaam”"
#. P8xFp
-#: sw/inc/utlui.hrc:42 sw/inc/utlui.hrc:44
+#: sw/inc/utlui.hrc:44 sw/inc/utlui.hrc:46
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body indent\" Style"
msgstr "Stel styl vir “Tekslyfinkeep”"
#. UUEwQ
-#: sw/inc/utlui.hrc:43
+#: sw/inc/utlui.hrc:45
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Hanging indent\" Style"
msgstr "Stel styl vir “Hangende inkeep”"
#. qv2KD
-#: sw/inc/utlui.hrc:45
+#: sw/inc/utlui.hrc:47
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Heading $(ARG1)\" Style"
msgstr "Stel styl vir “Opskrif $(ARG1)”"
#. orFXE
-#: sw/inc/utlui.hrc:46
+#: sw/inc/utlui.hrc:48
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Bullet\" or \"Numbering\" Style"
msgstr "Stel styl vir “koeëltjies” of “nommering”"
#. yGoaB
-#: sw/inc/utlui.hrc:47
+#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine paragraphs"
msgstr "Kombineer paragrawe"
#. rpT9U
-#: sw/inc/utlui.hrc:48
+#: sw/inc/utlui.hrc:50
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "Voeg niebrekende spasie in"
#. FHPwi
-#: sw/inc/utlui.hrc:49
+#: sw/inc/utlui.hrc:51
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
msgstr "Vertaal RNL Hongaarse teks na Ou Hongaarse skrif"
@@ -12053,163 +12065,163 @@ msgid "Width and Spacing"
msgstr "Wydte en spasiëring"
#. aBAZn
-#: sw/uiconfig/swriter/ui/columnpage.ui:442
+#: sw/uiconfig/swriter/ui/columnpage.ui:439
msgctxt "columnpage|linestyleft"
msgid "St_yle:"
msgstr "St_yl:"
#. iTh5i
-#: sw/uiconfig/swriter/ui/columnpage.ui:456
+#: sw/uiconfig/swriter/ui/columnpage.ui:453
msgctxt "columnpage|linewidthft"
msgid "_Width:"
msgstr "_Wydte:"
#. fEm38
-#: sw/uiconfig/swriter/ui/columnpage.ui:470
+#: sw/uiconfig/swriter/ui/columnpage.ui:467
msgctxt "columnpage|lineheightft"
msgid "H_eight:"
msgstr "Hoogt_e:"
#. vKEyi
-#: sw/uiconfig/swriter/ui/columnpage.ui:484
+#: sw/uiconfig/swriter/ui/columnpage.ui:481
msgctxt "columnpage|lineposft"
msgid "_Position:"
msgstr "_Posisie:"
#. yhqBe
-#: sw/uiconfig/swriter/ui/columnpage.ui:507
+#: sw/uiconfig/swriter/ui/columnpage.ui:504
msgctxt "columnpage|extended_tip|linestylelb"
msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"."
msgstr "Kies die styl vir die kolomskeidingsreël. As u nie 'n skeidingslyn wil hê nie, kies 'Geen'."
#. DcSGt
-#: sw/uiconfig/swriter/ui/columnpage.ui:521
+#: sw/uiconfig/swriter/ui/columnpage.ui:518
msgctxt "columnpage|lineposlb"
msgid "Top"
msgstr "Bo"
#. MKcWL
-#: sw/uiconfig/swriter/ui/columnpage.ui:522
+#: sw/uiconfig/swriter/ui/columnpage.ui:519
msgctxt "columnpage|lineposlb"
msgid "Centered"
msgstr "Middel"
#. CxCJF
-#: sw/uiconfig/swriter/ui/columnpage.ui:523
+#: sw/uiconfig/swriter/ui/columnpage.ui:520
msgctxt "columnpage|lineposlb"
msgid "Bottom"
msgstr "Onder"
#. Akv5r
-#: sw/uiconfig/swriter/ui/columnpage.ui:527
+#: sw/uiconfig/swriter/ui/columnpage.ui:524
msgctxt "columnpage|extended_tip|lineposlb"
msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%."
msgstr "Kies die vertikale belyning van die skeidslyn. Hierdie opsie is slegs beskikbaar as die lynhoogtewaarde minder as 100% is."
#. FMShH
-#: sw/uiconfig/swriter/ui/columnpage.ui:545
+#: sw/uiconfig/swriter/ui/columnpage.ui:542
msgctxt "columnpage|extended_tip|lineheightmf"
msgid "Enter the length of the separator line as a percentage of the height of the column area."
msgstr "Voer die lengte van die skeidslyn in as persentasie van die hoogte van die kolomarea."
#. kkGNR
-#: sw/uiconfig/swriter/ui/columnpage.ui:589
+#: sw/uiconfig/swriter/ui/columnpage.ui:586
msgctxt "columnpage|linecolorft"
msgid "_Color:"
msgstr "_Kleur:"
#. 9o7DQ
-#: sw/uiconfig/swriter/ui/columnpage.ui:623
+#: sw/uiconfig/swriter/ui/columnpage.ui:620
msgctxt "columnpage|label11"
msgid "Separator Line"
msgstr "Skeilyn"
#. 7SaDT
-#: sw/uiconfig/swriter/ui/columnpage.ui:672
+#: sw/uiconfig/swriter/ui/columnpage.ui:669
msgctxt "columnpage|label3"
msgid "Columns:"
msgstr "Kolomme:"
#. aF466
-#: sw/uiconfig/swriter/ui/columnpage.ui:691
+#: sw/uiconfig/swriter/ui/columnpage.ui:688
msgctxt "columnpage|extended_tip|colsnf"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr "Voer die aantal kolomme in vir die bladsy, raam of area."
#. X9vG6
-#: sw/uiconfig/swriter/ui/columnpage.ui:714
+#: sw/uiconfig/swriter/ui/columnpage.ui:711
msgctxt "columnpage|balance"
msgid "Evenly distribute contents _to all columns"
msgstr "Verdeel inhoud eweredig _tussen al die kolomme"
#. BYYDE
-#: sw/uiconfig/swriter/ui/columnpage.ui:722
+#: sw/uiconfig/swriter/ui/columnpage.ui:719
msgctxt "columnpage|extended_tip|balance"
msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically."
msgstr "Verdeel die teks in gebiede met meer kolomme. Die hoogte van die area word outomaties aangepas."
#. bV6Pg
-#: sw/uiconfig/swriter/ui/columnpage.ui:742
+#: sw/uiconfig/swriter/ui/columnpage.ui:739
msgctxt "columnpage|liststore2"
msgid "Selection"
msgstr "Seleksie"
#. qA5MH
-#: sw/uiconfig/swriter/ui/columnpage.ui:743
+#: sw/uiconfig/swriter/ui/columnpage.ui:740
msgctxt "columnpage|liststore2"
msgid "Current Section"
msgstr "Huidige afdeling"
#. VSvpa
-#: sw/uiconfig/swriter/ui/columnpage.ui:744
+#: sw/uiconfig/swriter/ui/columnpage.ui:741
msgctxt "columnpage|liststore2"
msgid "Selected section"
msgstr "Gemerkte afdeling"
#. Mo9GL
-#: sw/uiconfig/swriter/ui/columnpage.ui:745
+#: sw/uiconfig/swriter/ui/columnpage.ui:742
msgctxt "columnpage|liststore2"
msgid "Frame"
msgstr "Raam"
#. mBmAm
-#: sw/uiconfig/swriter/ui/columnpage.ui:746
+#: sw/uiconfig/swriter/ui/columnpage.ui:743
msgctxt "columnpage|liststore2"
msgid "Page Style: "
msgstr "Bladsystyl: "
#. F7MQT
-#: sw/uiconfig/swriter/ui/columnpage.ui:750
+#: sw/uiconfig/swriter/ui/columnpage.ui:747
msgctxt "columnpage|extended_tip|applytolb"
msgid "Select the item that you want to apply the column layout to."
msgstr "Kies die element waarop u die kolomuitleg wil toepas."
#. AJFqx
-#: sw/uiconfig/swriter/ui/columnpage.ui:763
+#: sw/uiconfig/swriter/ui/columnpage.ui:760
msgctxt "columnpage|applytoft"
msgid "_Apply to:"
msgstr "P_as toe op:"
#. rzBnm
-#: sw/uiconfig/swriter/ui/columnpage.ui:790
+#: sw/uiconfig/swriter/ui/columnpage.ui:787
msgctxt "columnpage|textdirectionft"
msgid "Text _direction:"
msgstr "Teks_rigting:"
#. dcDde
-#: sw/uiconfig/swriter/ui/columnpage.ui:834
+#: sw/uiconfig/swriter/ui/columnpage.ui:831
msgctxt "columnpage|extended_tip|valueset"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr "Voer in die aantal kolomme vir die bladsy, raam of area."
#. fEbMc
-#: sw/uiconfig/swriter/ui/columnpage.ui:849
+#: sw/uiconfig/swriter/ui/columnpage.ui:846
msgctxt "columnpage|label2"
msgid "Settings"
msgstr "Instellings"
#. 3dGYz
-#: sw/uiconfig/swriter/ui/columnpage.ui:904
+#: sw/uiconfig/swriter/ui/columnpage.ui:901
msgctxt "columnpage|extended_tip|ColumnPage"
msgid "Specifies the number of columns and the column layout for a page style, frame, or section."
msgstr "Spesifiseer die aantal kolomme en die kolomuitleg vir 'n bladsy-styl, raam of area."
@@ -14979,181 +14991,181 @@ msgid "Position"
msgstr "Posisie"
#. okHEF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:86
+#: sw/uiconfig/swriter/ui/footnotepage.ui:92
msgctxt "footnotepage|offset"
msgid "Start at"
msgstr "Begin by"
#. T7pFk
-#: sw/uiconfig/swriter/ui/footnotepage.ui:98
+#: sw/uiconfig/swriter/ui/footnotepage.ui:104
msgctxt "footnotepage|label11"
msgid "After"
msgstr "Ná"
#. iA9We
-#: sw/uiconfig/swriter/ui/footnotepage.ui:108
+#: sw/uiconfig/swriter/ui/footnotepage.ui:114
msgctxt "footnotepage|pospagecb"
msgid "End of page"
msgstr "Einde van bladsy"
#. zqfGN
-#: sw/uiconfig/swriter/ui/footnotepage.ui:120
+#: sw/uiconfig/swriter/ui/footnotepage.ui:126
msgctxt "footnotepage|extended_tip|pospagecb"
msgid "Displays footnotes at the bottom of the page."
msgstr "Vertoon voetnote onderaan die bladsy."
#. 8zwoB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:131
+#: sw/uiconfig/swriter/ui/footnotepage.ui:137
msgctxt "footnotepage|posdoccb"
msgid "End of document"
msgstr "Einde van dokument"
#. xvD3V
-#: sw/uiconfig/swriter/ui/footnotepage.ui:143
+#: sw/uiconfig/swriter/ui/footnotepage.ui:149
msgctxt "footnotepage|extended_tip|posdoccb"
msgid "Displays footnotes at the end of the document as endnotes."
msgstr "Vertoon voetnote aan die einde van die dokument as eindnotas."
#. BGVTw
-#: sw/uiconfig/swriter/ui/footnotepage.ui:161
+#: sw/uiconfig/swriter/ui/footnotepage.ui:167
msgctxt "footnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box."
msgstr "Voer in die nommer vir die eerste voetnoot in die dokument. Hierdie opsie is slegs beskikbaar as u 'Per dokument' gekies het in die Teller-veld."
#. RWgzD
-#: sw/uiconfig/swriter/ui/footnotepage.ui:175
+#: sw/uiconfig/swriter/ui/footnotepage.ui:181
msgctxt "footnotepage|liststore1"
msgid "Per page"
msgstr "Per bladsy"
#. MELvZ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:176
+#: sw/uiconfig/swriter/ui/footnotepage.ui:182
msgctxt "footnotepage|liststore1"
msgid "Per chapter"
msgstr "Per hoofstuk"
#. oD7zV
-#: sw/uiconfig/swriter/ui/footnotepage.ui:177
+#: sw/uiconfig/swriter/ui/footnotepage.ui:183
msgctxt "footnotepage|liststore1"
msgid "Per document"
msgstr "Per dokument"
#. BDrKx
-#: sw/uiconfig/swriter/ui/footnotepage.ui:181
+#: sw/uiconfig/swriter/ui/footnotepage.ui:187
msgctxt "footnotepage|extended_tip|countinglb"
msgid "Select the numbering option for the footnotes."
msgstr "Kies die nommeropsies vir die voetnote."
#. 7GqFA
-#: sw/uiconfig/swriter/ui/footnotepage.ui:198
+#: sw/uiconfig/swriter/ui/footnotepage.ui:204
msgctxt "footnotepage|extended_tip|prefix"
msgid "Enter the text that you want to display in front of the footnote number in the note text."
msgstr "Tik die teks wat u wil hê voor die voetnootnommer in die voetnootteks."
#. 7rE4w
-#: sw/uiconfig/swriter/ui/footnotepage.ui:215
+#: sw/uiconfig/swriter/ui/footnotepage.ui:221
msgctxt "footnotepage|extended_tip|suffix"
msgid "Enter the text that you want to display after the footnote number in the note text."
msgstr "Voer in die teks wat u wil in die voetnoteks, vertoon na die voetnootnommer."
#. YAUrj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:230
+#: sw/uiconfig/swriter/ui/footnotepage.ui:236
msgctxt "footnotepage|extended_tip|numberinglb"
msgid "Select the numbering scheme that you want to use."
msgstr "Kies die nommering styl wat u wil gebruik."
#. Gzv4E
-#: sw/uiconfig/swriter/ui/footnotepage.ui:248
+#: sw/uiconfig/swriter/ui/footnotepage.ui:254
msgctxt "footnotepage|label3"
msgid "Autonumbering"
msgstr "Outonommering"
#. NRpEM
-#: sw/uiconfig/swriter/ui/footnotepage.ui:281
+#: sw/uiconfig/swriter/ui/footnotepage.ui:287
msgctxt "footnotepage|label17"
msgid "End of footnote"
msgstr "Einde van voetnoot"
#. cQefG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:293
+#: sw/uiconfig/swriter/ui/footnotepage.ui:299
msgctxt "footnotepage|label18"
msgid "Start of next page"
msgstr "Begin van volgende bladsy"
#. CUWNP
-#: sw/uiconfig/swriter/ui/footnotepage.ui:311
+#: sw/uiconfig/swriter/ui/footnotepage.ui:317
msgctxt "footnotepage|extended_tip|contfromed"
msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". Writer automatically inserts the number of the previous page."
msgstr "Voer die teks in wat jy wil vertoon op die bladsy waar die voetnota vervolg word, byvoorbeeld \"Vervolg vanaf bladsy \". Writer voeg outomaties die nommer van die vorige bladsy in."
#. 2X7QW
-#: sw/uiconfig/swriter/ui/footnotepage.ui:330
+#: sw/uiconfig/swriter/ui/footnotepage.ui:336
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". Writer automatically inserts the number of the following page."
msgstr "Voer die teks in wat jy wil vertoon wanneer die voetnota op die volgende bladsy vervolg word, byvoorbeeld \"Vervolg op bladsy \". Writer voeg outomaties die nommer van die volgende bladsy in."
#. ZEhG2
-#: sw/uiconfig/swriter/ui/footnotepage.ui:345
+#: sw/uiconfig/swriter/ui/footnotepage.ui:351
msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Vervolg aanwysing"
#. jHwyG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:376
+#: sw/uiconfig/swriter/ui/footnotepage.ui:382
msgctxt "footnotepage|label4"
msgid "Paragraph"
msgstr "Paragraaf"
#. 95fCg
-#: sw/uiconfig/swriter/ui/footnotepage.ui:388
+#: sw/uiconfig/swriter/ui/footnotepage.ui:394
msgctxt "footnotepage|pagestyleft"
msgid "Page"
msgstr "Bladsy"
#. RFDnB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:403
+#: sw/uiconfig/swriter/ui/footnotepage.ui:409
msgctxt "footnotepage|extended_tip|parastylelb"
msgid "Select the paragraph style for the footnote text. Only special styles can be selected."
msgstr "Kies die paragraafstyl vir die voetnota teks. Slegs spesiale style geld daarvoor."
#. bhosj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:419
+#: sw/uiconfig/swriter/ui/footnotepage.ui:425
msgctxt "footnotepage|extended_tip|pagestylelb"
msgid "Select the page style that you want to use for footnotes."
msgstr "Kies die bladsy-styl vir voetnotas om te gebruik."
#. ESqR9
-#: sw/uiconfig/swriter/ui/footnotepage.ui:435
+#: sw/uiconfig/swriter/ui/footnotepage.ui:441
msgctxt "footnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for footnote anchors in the text area of your document."
msgstr "Kies die karakterstyl om te gebruik vir voetnootankers in die teksarea van u dokument."
#. EfWvJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:451
+#: sw/uiconfig/swriter/ui/footnotepage.ui:457
msgctxt "footnotepage|extended_tip|charstylelb"
msgid "Select the character style that you want to use for the footnote numbers in the footnote area."
msgstr "Kies die tekensjabloon om te gebruik vir voetnootnommers, in die voetnootarea."
#. ZP5bQ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:464
+#: sw/uiconfig/swriter/ui/footnotepage.ui:470
msgctxt "footnotepage|label15"
msgid "Text area"
msgstr "Teksarea"
#. aYFwJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:476
+#: sw/uiconfig/swriter/ui/footnotepage.ui:482
msgctxt "footnotepage|label16"
msgid "Footnote area"
msgstr "Voetnoot-area"
#. j8ZuF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:490
+#: sw/uiconfig/swriter/ui/footnotepage.ui:496
msgctxt "footnotepage|label12"
msgid "Styles"
msgstr "Style"
#. soD9k
-#: sw/uiconfig/swriter/ui/footnotepage.ui:504
+#: sw/uiconfig/swriter/ui/footnotepage.ui:510
msgctxt "footnotepage|extended_tip|FootnotePage"
msgid "Specifies the formatting for footnotes."
msgstr "Spesifiseer die formaat vir voetnotas."
@@ -16299,127 +16311,127 @@ msgid "New User-defined Index"
msgstr "Nuwe gebruikergedefinieerde indeks"
#. zTEFk
-#: sw/uiconfig/swriter/ui/indexentry.ui:213
+#: sw/uiconfig/swriter/ui/indexentry.ui:210
msgctxt "indexentry|label3"
msgid "Entry"
msgstr "Inskrywing"
#. jcbjL
-#: sw/uiconfig/swriter/ui/indexentry.ui:229
+#: sw/uiconfig/swriter/ui/indexentry.ui:226
msgctxt "indexentry|key1ft"
msgid "1st key"
msgstr "1e sleutel"
#. B47KE
-#: sw/uiconfig/swriter/ui/indexentry.ui:245
+#: sw/uiconfig/swriter/ui/indexentry.ui:242
msgctxt "indexentry|key2ft"
msgid "2nd key"
msgstr "2e sleutel"
#. ReqDn
-#: sw/uiconfig/swriter/ui/indexentry.ui:260
+#: sw/uiconfig/swriter/ui/indexentry.ui:257
msgctxt "indexentry|levelft"
msgid "Level"
msgstr "Vlak"
#. QybEJ
-#: sw/uiconfig/swriter/ui/indexentry.ui:291
+#: sw/uiconfig/swriter/ui/indexentry.ui:288
msgctxt "indexentry|phonetic0ft"
msgid "Phonetic reading"
msgstr "Fonetiese interpretasie"
#. JCtnw
-#: sw/uiconfig/swriter/ui/indexentry.ui:307
+#: sw/uiconfig/swriter/ui/indexentry.ui:304
msgctxt "indexentry|phonetic1ft"
msgid "Phonetic reading"
msgstr "Fonetiese interpretasie"
#. C6FQC
-#: sw/uiconfig/swriter/ui/indexentry.ui:323
+#: sw/uiconfig/swriter/ui/indexentry.ui:320
msgctxt "indexentry|phonetic2ft"
msgid "Phonetic reading"
msgstr "Fonetiese interpretasie"
#. JbXGT
-#: sw/uiconfig/swriter/ui/indexentry.ui:413
+#: sw/uiconfig/swriter/ui/indexentry.ui:410
msgctxt "indexentry|sync|tooltip_text"
msgid "Update entry from selection"
msgstr "Werk inskrywing by vanuit seleksie"
#. B5PWe
-#: sw/uiconfig/swriter/ui/indexentry.ui:462
+#: sw/uiconfig/swriter/ui/indexentry.ui:459
msgctxt "indexentry|mainentrycb"
msgid "Main entry"
msgstr "Hoofinskrywing"
#. 4QfoT
-#: sw/uiconfig/swriter/ui/indexentry.ui:476
+#: sw/uiconfig/swriter/ui/indexentry.ui:473
msgctxt "indexentry|applytoallcb"
msgid "Apply to all similar texts"
msgstr "Pas op alle soortgelyke tekste toe"
#. ZdMSz
-#: sw/uiconfig/swriter/ui/indexentry.ui:490
+#: sw/uiconfig/swriter/ui/indexentry.ui:487
msgctxt "indexentry|searchcasesensitivecb"
msgid "Match case"
msgstr "Selfde kas"
#. 8Q9RW
-#: sw/uiconfig/swriter/ui/indexentry.ui:505
+#: sw/uiconfig/swriter/ui/indexentry.ui:502
msgctxt "indexentry|searchcasewordonlycb"
msgid "Whole words only"
msgstr "Slegs hele woorde"
#. 62yyk
-#: sw/uiconfig/swriter/ui/indexentry.ui:539
+#: sw/uiconfig/swriter/ui/indexentry.ui:536
msgctxt "indexentry|previous|tooltip_text"
msgid "Previous entry"
msgstr "Vorige inskrywing."
#. Vd86J
-#: sw/uiconfig/swriter/ui/indexentry.ui:542
+#: sw/uiconfig/swriter/ui/indexentry.ui:539
msgctxt "indexentry|extended_tip|previous"
msgid "Jumps to the previous index entry of the same type in the document."
msgstr "Spring na die vorige indeksitem in die dokument, van dieselfde tipe."
#. VsuQU
-#: sw/uiconfig/swriter/ui/indexentry.ui:560
+#: sw/uiconfig/swriter/ui/indexentry.ui:557
msgctxt "indexentry|next|tooltip_text"
msgid "Next entry"
msgstr "Volgende inskrywing"
#. WsgJC
-#: sw/uiconfig/swriter/ui/indexentry.ui:563
+#: sw/uiconfig/swriter/ui/indexentry.ui:560
msgctxt "indexentry|extended_tip|next"
msgid "Jumps to the next index entry of the same type in the document."
msgstr "Spring na die volgende indeks item in die dokument, van dieselfde tipe."
#. KnhCr
-#: sw/uiconfig/swriter/ui/indexentry.ui:581
+#: sw/uiconfig/swriter/ui/indexentry.ui:578
msgctxt "indexentry|first|tooltip_text"
msgid "Previous entry (same name)"
msgstr "Vorige inskrywing (dieselfde naam)"
#. 3dGEa
-#: sw/uiconfig/swriter/ui/indexentry.ui:584
+#: sw/uiconfig/swriter/ui/indexentry.ui:581
msgctxt "indexentry|extended_tip|first"
msgid "Jumps to the previous index entry of the same type and with the same name in the document."
msgstr "Spring na die vorige indeksinskrywing van dieselfde tipe en met dieselfde naam in die dokument."
#. 2mkMr
-#: sw/uiconfig/swriter/ui/indexentry.ui:602
+#: sw/uiconfig/swriter/ui/indexentry.ui:599
msgctxt "indexentry|last|tooltip_text"
msgid "Next entry (same name)"
msgstr "Volgende inskrywing (dieselfde naam)"
#. gYHoh
-#: sw/uiconfig/swriter/ui/indexentry.ui:605
+#: sw/uiconfig/swriter/ui/indexentry.ui:602
msgctxt "indexentry|extended_tip|last"
msgid "Jumps to the next index entry of the same type and with the same name in the document."
msgstr "Spring na die volgende indeksinskrywing van dieselfde tipe en met dieselfde naam in die dokument."
#. dLE2B
-#: sw/uiconfig/swriter/ui/indexentry.ui:633
+#: sw/uiconfig/swriter/ui/indexentry.ui:630
msgctxt "indexentry|label1"
msgid "Selection"
msgstr "Keuse"
@@ -16988,74 +17000,104 @@ msgctxt "insertbreak|linerb-atkobject"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr "Beëindig die huidige reël en skuif die teks regs van die wyser na die volgende reël sonder om ’n nuwe paragraaf te skep."
+#. 88jq6
+#: sw/uiconfig/swriter/ui/insertbreak.ui:122
+msgctxt "insertbreak|clearft"
+msgid "Restart Location:"
+msgstr ""
+
+#. fJEqu
+#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+msgctxt "insertbreak|clearlb0"
+msgid "[None]"
+msgstr ""
+
+#. dGBC7
+#: sw/uiconfig/swriter/ui/insertbreak.ui:141
+msgctxt "insertbreak|clearlb1"
+msgid "Left"
+msgstr ""
+
+#. HbijZ
+#: sw/uiconfig/swriter/ui/insertbreak.ui:142
+msgctxt "insertbreak|clearlb2"
+msgid "Right"
+msgstr ""
+
+#. AAg7H
+#: sw/uiconfig/swriter/ui/insertbreak.ui:143
+msgctxt "insertbreak|clearlb3"
+msgid "Next Full Line"
+msgstr ""
+
#. gqCuB
-#: sw/uiconfig/swriter/ui/insertbreak.ui:119
+#: sw/uiconfig/swriter/ui/insertbreak.ui:154
msgctxt "insertbreak|columnrb"
msgid "Column break"
msgstr "Kolombreuk"
#. poiJj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:128
+#: sw/uiconfig/swriter/ui/insertbreak.ui:163
msgctxt "insertbreak|columnrb-atkobject"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column."
msgstr "Voeg ’n handmatige kolombreuk in (by ’n multikolom-uitleg), en skuif die teks regs van die wyser na die begin van die volgende kolom. ’n Handmatige kolombreuk word aangedui deur ’n rand wat nie druk nie boaan die nuwe kolom."
#. 9GAAp
-#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+#: sw/uiconfig/swriter/ui/insertbreak.ui:175
msgctxt "insertbreak|pagerb"
msgid "Page break"
msgstr "Bladsybreuk"
#. G7e9T
-#: sw/uiconfig/swriter/ui/insertbreak.ui:149
+#: sw/uiconfig/swriter/ui/insertbreak.ui:184
msgctxt "insertbreak|pagerb-atkobject"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
msgstr "Voeg ’n handmatige bladsybreuk in en skuif die teks regs van die wyser na die begin van die volgende bladsy. Die ingevoegde bladsybreuk word aangedui deur ’n rand wat nie druk nie boaan die nuwe bladsy."
#. qAj3x
-#: sw/uiconfig/swriter/ui/insertbreak.ui:164
+#: sw/uiconfig/swriter/ui/insertbreak.ui:199
msgctxt "insertbreak|styleft"
msgid "Page Style:"
msgstr "Bladsy Styl:"
#. BWnND
-#: sw/uiconfig/swriter/ui/insertbreak.ui:181
+#: sw/uiconfig/swriter/ui/insertbreak.ui:216
msgctxt "insertbreak|liststore1"
msgid "[None]"
msgstr "[Geen]"
#. 8WDUc
-#: sw/uiconfig/swriter/ui/insertbreak.ui:185
+#: sw/uiconfig/swriter/ui/insertbreak.ui:220
msgctxt "insertbreak|stylelb-atkobject"
msgid "Select the page style for the page that follows the manual page break."
msgstr "Kies die bladsystyl vir die bladsy ná die handmatige bladsybreuk."
#. LbNq3
-#: sw/uiconfig/swriter/ui/insertbreak.ui:197
+#: sw/uiconfig/swriter/ui/insertbreak.ui:232
msgctxt "insertbreak|pagenumcb"
msgid "Change page number"
msgstr "Verander bladsynommer"
#. cfsdj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:206
+#: sw/uiconfig/swriter/ui/insertbreak.ui:241
msgctxt "insertbreak|pagenumcb-atkobject"
msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break."
msgstr "Ken die bladsynommer wat u spesifiseer toe aan die bladsy ná die handmatige bladsybreuk. Dié keuse is slegs beskikbaar as u ’n ander bladsystyl toeken aan die bladsy ná die handmatige bladsybreuk."
#. iWGZG
-#: sw/uiconfig/swriter/ui/insertbreak.ui:229
+#: sw/uiconfig/swriter/ui/insertbreak.ui:264
msgctxt "insertbreak|pagenumsb-atkobject"
msgid "Enter the new page number for the page that follows the manual page break."
msgstr "Gee die nuwe bladsynommer vir die bladsy ná die handmatige bladsybreuk."
#. uAMAX
-#: sw/uiconfig/swriter/ui/insertbreak.ui:245
+#: sw/uiconfig/swriter/ui/insertbreak.ui:280
msgctxt "insertbreak|label1"
msgid "Type"
msgstr "Soort"
#. fYmmW
-#: sw/uiconfig/swriter/ui/insertbreak.ui:269
+#: sw/uiconfig/swriter/ui/insertbreak.ui:304
msgctxt "insertbreak|extended_tip|BreakDialog"
msgid "Inserts a manual line break, column break or a page break at the current cursor position."
msgstr "Voeg in 'n handmatige lyn-, kolom- of bladsy-breuk, by die huidige wyserposisie."
@@ -20144,206 +20186,218 @@ msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr "Selekteer"
-#. dajzZ
+#. iH6Pr
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
+msgctxt "navigatorcontextmenu|STR_COPY_ENTRY"
+msgid "_Copy"
+msgstr ""
+
+#. dajzZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr "Verwyder"
#. axFMf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Move Chapter Up"
msgstr "Skuif die Hoofstuk op."
#. Radwp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Move Chapter Down"
msgstr "Skuif die Hoofstuk af."
#. FJZdw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Outline Level"
msgstr "Verhoog Skema Vlak"
#. GRZmf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr "Verlaag Skema Vlak"
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr "Verwyder Indeks"
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr "Bywerk"
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Redigeer..."
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr "Beskerming Ophef"
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr "Lees Alleen"
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr "_Skrap"
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr "Hernoem"
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:162
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "Vertoon Alles"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:170
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "Verberg Alles"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:178
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "Verwyder Alles"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:192
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr "Skema Invou"
-#. cECoG
-#: 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
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:212
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Buitelyn Volg"
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr "Tabel Nasporing"
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr "Seksie Nasporing"
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:242
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr "Raam Nasporing"
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:250
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr "Beeld Naspeuring"
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:258
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr "OLE Objek Naspeuring"
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:266
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr "Boekmerk Naspeuring"
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:274
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr "Skakel Naspeuring"
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:282
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr "Verwysing Naspeuring"
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:290
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr "Indeks Naspeuring"
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:298
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr "Opmerking Naspeuring"
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:306
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr "Teken Objek Naspeuring"
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:314
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr "Veld Naspeuring"
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:322
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr "Voetnota Naspeuring"
+#. vBGAw
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:330
+msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
+msgid "Sort Alphabetically"
+msgstr ""
+
+#. cECoG
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:344
+msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
+msgid "Outline Level"
+msgstr "Skemavlak"
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:358
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Sleep Modus"
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:372
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr "Vertoon"
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:392
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr "Alle Kategorieë Invou"
@@ -23986,19 +24040,19 @@ msgid "Default"
msgstr "Verstek"
#. 8fEFG
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:469
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:466
msgctxt "outlinepositionpage|extended_tip|standard"
msgid "Resets the indent and the spacing values to the default values."
msgstr "Die inspringing en spasiëring word na hul verstekwaardes teruggestel."
#. bLuru
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:490
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:487
msgctxt "outlinepositionpage|label10"
msgid "Position and Spacing"
msgstr "Posisie en spasiëring"
#. ogECa
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:534
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:531
msgctxt "outlinepositionpage|label17"
msgid "Preview"
msgstr "Voorskou"
@@ -26462,283 +26516,283 @@ msgid "Order"
msgstr "Volgorde"
#. NioK5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:170
+#: sw/uiconfig/swriter/ui/sortdialog.ui:178
msgctxt "sortdialog|up1"
msgid "Ascending"
msgstr "Stygend"
#. ASaRk
-#: sw/uiconfig/swriter/ui/sortdialog.ui:182
+#: sw/uiconfig/swriter/ui/sortdialog.ui:191
msgctxt "sortdialog|extended_tip|up1"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr "Sorteer in stygende volgorde, (byvoorbeeld 1,2,3 of a, b, c)."
#. yVqST
-#: sw/uiconfig/swriter/ui/sortdialog.ui:193
+#: sw/uiconfig/swriter/ui/sortdialog.ui:202
msgctxt "sortdialog|down1"
msgid "Descending"
msgstr "Dalend"
#. YS8zz
-#: sw/uiconfig/swriter/ui/sortdialog.ui:205
+#: sw/uiconfig/swriter/ui/sortdialog.ui:215
msgctxt "sortdialog|extended_tip|down1"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr "Sorteer in dalende volgorde, (byvoorbeeld 9,8,7 of z, y, x)."
#. P9D2w
-#: sw/uiconfig/swriter/ui/sortdialog.ui:228
+#: sw/uiconfig/swriter/ui/sortdialog.ui:238
msgctxt "sortdialog|up2"
msgid "Ascending"
msgstr "Stygend"
#. TMLam
-#: sw/uiconfig/swriter/ui/sortdialog.ui:240
+#: sw/uiconfig/swriter/ui/sortdialog.ui:251
msgctxt "sortdialog|extended_tip|up2"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr "Sorteer in stygende volgorde, (byvoorbeeld 1,2,3 of a, b, c)."
#. haL8p
-#: sw/uiconfig/swriter/ui/sortdialog.ui:251
+#: sw/uiconfig/swriter/ui/sortdialog.ui:262
msgctxt "sortdialog|down2"
msgid "Descending"
msgstr "Dalend"
#. HMoq2
-#: sw/uiconfig/swriter/ui/sortdialog.ui:263
+#: sw/uiconfig/swriter/ui/sortdialog.ui:275
msgctxt "sortdialog|extended_tip|down2"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr "Sorteer in dalende volgorde, (byvoorbeeld 9,8,7 of z, y, x)."
#. PHxUv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:286
+#: sw/uiconfig/swriter/ui/sortdialog.ui:298
msgctxt "sortdialog|up3"
msgid "Ascending"
msgstr "Stygend"
#. jL5gX
-#: sw/uiconfig/swriter/ui/sortdialog.ui:298
+#: sw/uiconfig/swriter/ui/sortdialog.ui:311
msgctxt "sortdialog|extended_tip|up3"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr "Sorteer in stygende volgorde, (byvoorbeeld 1,2,3 of a, b, c)."
#. zsggE
-#: sw/uiconfig/swriter/ui/sortdialog.ui:309
+#: sw/uiconfig/swriter/ui/sortdialog.ui:322
msgctxt "sortdialog|down3"
msgid "Descending"
msgstr "Dalend"
#. 8LdjH
-#: sw/uiconfig/swriter/ui/sortdialog.ui:321
+#: sw/uiconfig/swriter/ui/sortdialog.ui:335
msgctxt "sortdialog|extended_tip|down3"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr "Sorteer in dalende volgorde, (byvoorbeeld 9,8,7 of z, y, x)."
#. 3yLB6
-#: sw/uiconfig/swriter/ui/sortdialog.ui:338
+#: sw/uiconfig/swriter/ui/sortdialog.ui:352
msgctxt "sortdialog|key1"
msgid "Key 1"
msgstr "Sleutel 1"
#. GXMCr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:348
+#: sw/uiconfig/swriter/ui/sortdialog.ui:368
msgctxt "sortdialog|extended_tip|key1"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr "Spesifiseer addisionele sorteer kriteria. U kan ook sorteervelde kombineer."
#. XDgAf
-#: sw/uiconfig/swriter/ui/sortdialog.ui:359
+#: sw/uiconfig/swriter/ui/sortdialog.ui:379
msgctxt "sortdialog|key2"
msgid "Key 2"
msgstr "Sleutel 2"
#. CgEiB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:368
+#: sw/uiconfig/swriter/ui/sortdialog.ui:394
msgctxt "sortdialog|extended_tip|key2"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr "Spesifiseer addisionele sorteer kriteria. U kan ook sorteervelde kombineer."
#. 8yfoN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:379
+#: sw/uiconfig/swriter/ui/sortdialog.ui:405
msgctxt "sortdialog|key3"
msgid "Key 3"
msgstr "Sleutel 3"
#. yS2ky
-#: sw/uiconfig/swriter/ui/sortdialog.ui:388
+#: sw/uiconfig/swriter/ui/sortdialog.ui:420
msgctxt "sortdialog|extended_tip|key3"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr "Spesifiseer addisionele sorteer kriteria. U kan ook sorteervelde kombineer."
#. pFZY3
-#: sw/uiconfig/swriter/ui/sortdialog.ui:411
+#: sw/uiconfig/swriter/ui/sortdialog.ui:443
msgctxt "sortdialog|extended_tip|colsb1"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr "Voer in die nommer van die tabel kolom wat u wil gebruik as basis vir sortering."
#. n2S79
-#: sw/uiconfig/swriter/ui/sortdialog.ui:434
+#: sw/uiconfig/swriter/ui/sortdialog.ui:466
msgctxt "sortdialog|extended_tip|colsb2"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr "Voer in die nommer van die tabel kolom wat u wil gebruik as basis vir sortering."
#. ckwsF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:457
+#: sw/uiconfig/swriter/ui/sortdialog.ui:489
msgctxt "sortdialog|extended_tip|colsb3"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr "Voer in die nommer van die tabel kolom wat u wil gebruik as basis vir sortering."
#. 5bX9W
-#: sw/uiconfig/swriter/ui/sortdialog.ui:478
+#: sw/uiconfig/swriter/ui/sortdialog.ui:510
msgctxt "sortdialog|typelb1-atkobject"
msgid "Key type"
msgstr "Sleuteltipe"
#. rAGDj
-#: sw/uiconfig/swriter/ui/sortdialog.ui:479
+#: sw/uiconfig/swriter/ui/sortdialog.ui:511
msgctxt "sortdialog|extended_tip|typelb1"
msgid "Select the sorting option that you want to use."
msgstr "Selekteer die sorteer opsie wat u wil gebruik."
#. FxBUC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:501
+#: sw/uiconfig/swriter/ui/sortdialog.ui:533
msgctxt "sortdialog|typelb2-atkobject"
msgid "Key type"
msgstr "Sleuteltipe"
#. efrcu
-#: sw/uiconfig/swriter/ui/sortdialog.ui:502
+#: sw/uiconfig/swriter/ui/sortdialog.ui:534
msgctxt "sortdialog|extended_tip|typelb2"
msgid "Select the sorting option that you want to use."
msgstr "Selekteer die sorteer opsie wat u wil gebruik."
#. 9D3Mg
-#: sw/uiconfig/swriter/ui/sortdialog.ui:523
+#: sw/uiconfig/swriter/ui/sortdialog.ui:555
msgctxt "sortdialog|typelb3-atkobject"
msgid "Key type"
msgstr "Sleuteltipe"
#. RjtNn
-#: sw/uiconfig/swriter/ui/sortdialog.ui:524
+#: sw/uiconfig/swriter/ui/sortdialog.ui:556
msgctxt "sortdialog|extended_tip|typelb3"
msgid "Select the sorting option that you want to use."
msgstr "Selekteer die sorteer opsie wat u wil gebruik."
#. m3EJC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:542
+#: sw/uiconfig/swriter/ui/sortdialog.ui:574
msgctxt "sortdialog|1"
msgid "Sort Criteria"
msgstr "Sorteerkriteria"
#. dY8Rr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:580
+#: sw/uiconfig/swriter/ui/sortdialog.ui:612
msgctxt "sortdialog|columns"
msgid "Columns"
msgstr "Kolomme"
#. PviSN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:589
+#: sw/uiconfig/swriter/ui/sortdialog.ui:621
msgctxt "sortdialog|extended_tip|columns"
msgid "Sorts the columns in the table according to the current sort options."
msgstr "Sorteer die kolomme in die tabel volgens die huidige sorteer opsies."
#. d7odM
-#: sw/uiconfig/swriter/ui/sortdialog.ui:600
+#: sw/uiconfig/swriter/ui/sortdialog.ui:632
msgctxt "sortdialog|rows"
msgid "Rows"
msgstr "Rye"
#. vsSra
-#: sw/uiconfig/swriter/ui/sortdialog.ui:609
+#: sw/uiconfig/swriter/ui/sortdialog.ui:641
msgctxt "sortdialog|extended_tip|rows"
msgid "Sorts the rows in the table or the paragraphs in the selection according to the current sort options."
msgstr "Sorteer die rye in die tabel of paragrawe in die seleksie, volgens die huidige sorteer opsies."
#. C4Fuq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:624
+#: sw/uiconfig/swriter/ui/sortdialog.ui:656
msgctxt "sortdialog|label3"
msgid "Direction"
msgstr "Rigting"
#. JGBYA
-#: sw/uiconfig/swriter/ui/sortdialog.ui:654
+#: sw/uiconfig/swriter/ui/sortdialog.ui:686
msgctxt "sortdialog|tabs"
msgid "Tabs"
msgstr "Kepe"
#. dE3Av
-#: sw/uiconfig/swriter/ui/sortdialog.ui:663
+#: sw/uiconfig/swriter/ui/sortdialog.ui:695
msgctxt "sortdialog|extended_tip|tabs"
msgid "If the selected paragraphs correspond to a list separated by tabs, select this option."
msgstr "As die geselekteerde paragrawe ooreenstem met die lys geskei met tab-karakters, selekteer die opsie."
#. 7GWNt
-#: sw/uiconfig/swriter/ui/sortdialog.ui:675
+#: sw/uiconfig/swriter/ui/sortdialog.ui:707
msgctxt "sortdialog|character"
msgid "Character "
msgstr "Karakter "
#. 9yFT9
-#: sw/uiconfig/swriter/ui/sortdialog.ui:688
+#: sw/uiconfig/swriter/ui/sortdialog.ui:722
msgctxt "sortdialog|extended_tip|character"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr "Voer in die skeidingskarakter wat u wil gebruik as 'n skeiding in die gekose area."
#. ECCA5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:718
+#: sw/uiconfig/swriter/ui/sortdialog.ui:753
msgctxt "sortdialog|extended_tip|separator"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr "Voer in die skeidingskarakter wat u wil gebruik as 'n skeiding in die gekose area."
#. XC5zv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:729
+#: sw/uiconfig/swriter/ui/sortdialog.ui:764
msgctxt "sortdialog|delimpb"
msgid "Select..."
msgstr "Kies..."
#. VhhBB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:739
+#: sw/uiconfig/swriter/ui/sortdialog.ui:774
msgctxt "sortdialog|extended_tip|delimpb"
msgid "Opens the Special Characters dialog, where you can select the character that you want to use as a separator."
msgstr "Open die \"Spesiale Karakters\"-dialoog, waar u die karakter kan kies wat u as 'n skeiding wil gebruik."
#. BX6Mq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:760
+#: sw/uiconfig/swriter/ui/sortdialog.ui:795
msgctxt "sortdialog|label4"
msgid "Separator"
msgstr "Skeier"
#. bBbUV
-#: sw/uiconfig/swriter/ui/sortdialog.ui:808
+#: sw/uiconfig/swriter/ui/sortdialog.ui:843
msgctxt "sortdialog|extended_tip|langlb"
msgid "Select the language that defines the sorting rules."
msgstr "Selekteer die taal wat die sorteerreëls definieer."
#. gEcoc
-#: sw/uiconfig/swriter/ui/sortdialog.ui:817
+#: sw/uiconfig/swriter/ui/sortdialog.ui:852
msgctxt "sortdialog|label1"
msgid "Language"
msgstr "Taal"
#. QnviQ
-#: sw/uiconfig/swriter/ui/sortdialog.ui:837
+#: sw/uiconfig/swriter/ui/sortdialog.ui:872
msgctxt "sortdialog|matchcase"
msgid "Match case"
msgstr "Selfde kas"
#. Nd8XG
-#: sw/uiconfig/swriter/ui/sortdialog.ui:847
+#: sw/uiconfig/swriter/ui/sortdialog.ui:882
msgctxt "sortdialog|extended_tip|matchcase"
msgid "Distinguishes between uppercase and lowercase letters when you sort a table. For Asian languages special handling applies."
msgstr "Onderskei tussen hoofletters en kleinletters wat u in 'n tabel wil sorteer. Vir Asiatiese tale word spesiale hantering toegepas."
#. Adw2Y
-#: sw/uiconfig/swriter/ui/sortdialog.ui:856
+#: sw/uiconfig/swriter/ui/sortdialog.ui:891
msgctxt "sortdialog|label2"
msgid "Setting"
msgstr "Instelling"
#. pCcXF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:894
+#: sw/uiconfig/swriter/ui/sortdialog.ui:926
msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Sorts the selected paragraphs or table rows alphabetically or numerically."
msgstr "Sorteer die geselekteerde paragrawe of tabel rye alfabeties of numeries."
@@ -27158,241 +27212,241 @@ msgid "_Break"
msgstr "_Breek"
#. LEfit
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:59
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:65
msgctxt "tabletextflowpage|extended_tip|break"
msgid "Select this check box, and then select the type of break that you want to associate with the table."
msgstr "Merk hierdie merkveld en kies dan die tipe breuk wat u metdie tabel wil koppel."
#. 85dHS
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:70
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:76
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Bladsy"
#. LUPNA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:82
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:88
msgctxt "tabletextflowpage|extended_tip|page"
msgid "Inserts a page break before or after the table."
msgstr "Voeg in 'n bladsybreuk voor of na die tabel."
#. ATESc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:93
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:99
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Kol_om"
#. bU9Sj
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:105
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:111
msgctxt "tabletextflowpage|extended_tip|column"
msgid "Inserts a column break before or after the table on a multi-column page."
msgstr "Voeg in 'n kolombreuk voor of na die tabel op 'n multi-kolom bladsy."
#. bFvFr
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:116
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:122
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Voor"
#. wCFtD
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:128
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:134
msgctxt "tabletextflowpage|extended_tip|before"
msgid "Inserts a page or column break before the table."
msgstr "Voeg in 'n bladsy- of kolom-breuk voor die tabel."
#. x9LiQ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:139
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:145
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Ná"
#. y4ECA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:157
msgctxt "tabletextflowpage|extended_tip|after"
msgid "Inserts a page or column break after the table."
msgstr "Voeg in 'n bladsy- of kolom-breuk na die tabel."
#. ZKgd9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:183
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Met bladsyst_yl"
#. NMMdy
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:189
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:195
msgctxt "tabletextflowpage|extended_tip|pagestyle"
msgid "Applies the page style that you specify to the first page that follows the page break."
msgstr "Ken die bladsystyl wat u gespesifiseer het toe aan die eerste bladsy na die bladsybreuk."
#. 4ifHW
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:200
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:206
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Bladsy_nommer"
#. b8xXZ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|extended_tip|pagenonf"
msgid "Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked."
msgstr "Voer in die bladsynommer vir die eerste bladsy na die breuk. Om voort te gaan met die huidige bladsynummering, moet u die merkveld leeg los."
#. 5oC83
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:242
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:248
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Met bladsystyl"
#. NENyo
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:243
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:249
msgctxt "tabletextflowpage|extended_tip|pagestylelb"
msgid "Select the page style that you want to apply to the first page that follows the break."
msgstr "Selekteer die bladsystyl wat u wil toepas op die eerste bladsy na die breuk."
#. CZpDc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:260
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:266
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Laat _tabel toe om oor bladsye en kolomme te verdeel"
#. QXXZK
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:268
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
msgctxt "tabletextflowpage|extended_tip|split"
msgid "Allows a page break or column break between the rows of a table."
msgstr "Laat toe 'n bladsy- of 'n kolom-breuk tussen die rye van 'n tabel."
#. SKeze
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:279
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:285
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Laat ry toe om oor bladsye en kolomme te _breek"
#. HYN9t
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:295
msgctxt "tabletextflowpage|extended_tip|splitrow"
msgid "Allows a page break or column break inside a row of the table."
msgstr "Laat toe 'n bladsy- of 'n kolom-breuk in die ry van 'n tabel."
#. jGCyC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Hou by volgende paragraaf"
#. iFwuV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:308
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:314
msgctxt "tabletextflowpage|extended_tip|keep"
msgid "Keeps the table and the following paragraph together when you insert the break."
msgstr "Hou die tabel en die opvolgende paragraaf bymekaar, wanneer u 'n breuk invoeg."
#. QAY45
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:327
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:333
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Teksoriëntasie"
#. JsEEP
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:341
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:347
msgctxt "tabletextflowpage|liststore1"
msgid "Horizontal"
msgstr "Horisontaal"
#. RgbAV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:342
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
msgstr "Vertikaal (bo na onder)"
#. 7yaYB
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:349
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
msgstr "Vertikaal (onder na bo)"
#. 5CGH9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:344
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:350
msgctxt "tabletextflowpage|liststore1"
msgid "Use superordinate object settings"
msgstr "Gebruik bogeskikte objekinstellings"
#. FJnts
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:354
msgctxt "tabletextflowpage|extended_tip|textorientation"
msgid "Select the orientation for the text in the cells."
msgstr "Selekteer die oriëntasie vir die teks in die selle."
#. tWodL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:371
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:377
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "H_erhaal opskrif"
#. EpMSY
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:379
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:385
msgctxt "tabletextflowpage|extended_tip|headline"
msgid "Repeats the table heading on a new page when the table spans more than one page."
msgstr "Herhaal die tabelopskrif op nuwe bladsye as die tabel oor meer as een bladsy strek."
#. 7R7Gn
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:398
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:404
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Die eerste "
#. KEVNR
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:411
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:417
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rye"
#. hLzfu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:427
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:433
msgctxt "tabletextflowpage|extended_tip|repeatheadernf"
msgid "Enter the number of rows to include in the heading."
msgstr "Voer in die aantal rye wat in die opskrif ingesluit word."
#. yLhbA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:454
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Teksvloei"
#. FRUDs
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:484
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:490
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Vertikale belyning"
#. YLPEL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:498
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
msgctxt "tabletextflowpage|liststore2"
msgid "Top"
msgstr "Bokant"
#. 5Pb5v
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:499
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:505
msgctxt "tabletextflowpage|liststore2"
msgid "Centered"
msgstr "Gesentreer"
#. 4aZFz
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:500
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:506
msgctxt "tabletextflowpage|liststore2"
msgid "Bottom"
msgstr "Onderkant"
#. SwHrE
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:510
msgctxt "tabletextflowpage|extended_tip|vertorient"
msgid "Specify the vertical text alignment for the cells in the table."
msgstr "Spesifiseer die vertikale teksbelyning vir selle in die tabel."
#. ZtGTC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:519
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:525
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Belyning"
#. GJKSu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:533
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:539
msgctxt "tabletextflowpage|extended_tip|TableTextFlowPage"
msgid "Set the text flow options for the text before and after the table."
msgstr "Stel die teksvloei opsies vir die teks voor en na die tabel."
diff --git a/source/af/uui/messages.po b/source/af/uui/messages.po
index ff5cb959e78..1b5316b3a35 100644
--- a/source/af/uui/messages.po
+++ b/source/af/uui/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-11-19 15:45+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
"PO-Revision-Date: 2021-07-08 08:50+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/af/>\n"
@@ -40,17 +40,14 @@ msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "Teiken bestaan reeds."
-#. KgnBz
+#. KneVX
#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
-"You are about to save/export a password protected basic library containing module(s) \n"
+"You are about to save/export a password protected BASIC library containing module(s) \n"
"$(ARG1)\n"
"which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?"
msgstr ""
-"Jy gaan binnekort 'n wagwoordbeskermde basiese programmateek stoor/uitvoer wat module(s) \n"
-"$(ARG1)\n"
-"bevat wat te groot is om in binêre formaat gestoor te word. As jy nie wil hê gebruikers moet toegang tot die programmateekwagwoord hê om makro's in daardie module(s) te laat loop nie, moet jy daardie modules verdeel in 'n aantal kleiner modules. Wil jy voortgaan om hierdie programmateek te stoor/uit te voer?"
#. 3rNDF
#: uui/inc/ids.hrc:42
diff --git a/source/af/vcl/messages.po b/source/af/vcl/messages.po
index d2f49275ace..c6258059515 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: 2022-02-09 16:47+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
"PO-Revision-Date: 2022-02-06 08:57+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/af/>\n"
@@ -848,346 +848,219 @@ msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "Enige soort"
-#. FD7Bf
-#: vcl/inc/strings.hrc:70
-msgctxt "STR_FPICKER_AUTO_EXTENSION"
-msgid "~Automatic file name extension"
-msgstr "~Outomatiese lêernaamuitbreiding"
-
-#. 9ECLu
-#: vcl/inc/strings.hrc:71
-msgctxt "STR_FPICKER_PASSWORD"
-msgid "Save with pass~word"
-msgstr "Stoor met wag~woord"
-
-#. nyers
-#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:73
-msgctxt "STR_FPICKER_GPGENCRYPT"
-msgid "Encrypt with ~GPG key"
-msgstr "Enkripteer met ~GPG-sleutel"
-
-#. Z2MmL
-#: vcl/inc/strings.hrc:74
-msgctxt "STR_FPICKER_FILTER_OPTIONS"
-msgid "~Edit filter settings"
-msgstr "R~edigeer filterinstellings"
-
-#. ZDE7y
-#: vcl/inc/strings.hrc:75
-msgctxt "STR_FPICKER_READONLY"
-msgid "~Read-only"
-msgstr "~Leesalleen"
-
-#. EYvCH
-#: vcl/inc/strings.hrc:76
-msgctxt "STR_FPICKER_INSERT_AS_LINK"
-msgid "Insert as ~Link"
-msgstr "Voeg as skake~l in"
-
-#. zpPD6
-#: vcl/inc/strings.hrc:77
-msgctxt "STR_FPICKER_SHOW_PREVIEW"
-msgid "Pr~eview"
-msgstr "Voo~rskou"
-
-#. L7QTs
-#: vcl/inc/strings.hrc:78
-msgctxt "STR_FPICKER_PLAY"
-msgid "~Play"
-msgstr "S~peel"
-
-#. rPLAU
-#: vcl/inc/strings.hrc:79
-msgctxt "STR_FPICKER_VERSION"
-msgid "~Version:"
-msgstr "~Weergawe:"
-
-#. dMPHM
-#: vcl/inc/strings.hrc:80
-msgctxt "STR_FPICKER_TEMPLATES"
-msgid "S~tyles:"
-msgstr "S~tyle:"
-
-#. TeuRr
-#: vcl/inc/strings.hrc:81
-msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
-msgid "Frame Style: "
-msgstr "Raamstyl: "
-
-#. Cq63y
-#: vcl/inc/strings.hrc:82
-msgctxt "STR_FPICKER_IMAGE_ANCHOR"
-msgid "A~nchor: "
-msgstr "A~nker: "
-
-#. 7yacA
-#: vcl/inc/strings.hrc:83
-msgctxt "STR_FPICKER_SELECTION"
-msgid "~Selection"
-msgstr "~Seleksie"
-
-#. QFCuE
-#: vcl/inc/strings.hrc:84
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
-msgid "Select Path"
-msgstr "Kies pad"
-
-#. AoCzG
-#: vcl/inc/strings.hrc:85
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
-msgid "Please select a folder."
-msgstr "Kies asseblief ’n gids."
-
-#. vcC7G
-#: vcl/inc/strings.hrc:86
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
-msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
-msgstr "’n Lêer genaamd “$filename$” bestaan reeds. Wil u hom vervang?"
-
-#. MKKjJ
-#: vcl/inc/strings.hrc:87
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
-msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
-msgstr "Die lêer bestaan reeds in “$dirname$”. Vervanging sal die inhoud oorskryf."
-
-#. pF5CC
-#: vcl/inc/strings.hrc:88
-msgctxt "STR_FPICKER_ALLFORMATS"
-msgid "All Formats"
-msgstr "Alle formate"
-
-#. xJLGT
-#: vcl/inc/strings.hrc:89
-msgctxt "STR_FPICKER_OPEN"
-msgid "Open"
-msgstr "Open"
-
-#. W5xGp
-#: vcl/inc/strings.hrc:90
-msgctxt "STR_FPICKER_SAVE"
-msgid "Save"
-msgstr "Stoor"
-
-#. QxrYy
-#: vcl/inc/strings.hrc:91
-msgctxt "STR_FPICKER_TYPE"
-msgid "File ~type"
-msgstr "Lêer~tipe"
-
#. qfg3C
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:70
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "Geen fonte kon op die stelsel gevind word nie."
#. rWAuM
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:72
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "Geen bladsye"
#. SFF7G
-#: vcl/inc/strings.hrc:96
+#: vcl/inc/strings.hrc:73
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr "Voorskou is gedeaktiveer"
#. xMtCc
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:74
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "Druk na lêer..."
#. GBDRJ
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:75
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "Verstek drukker"
#. 8BSG2
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:76
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "Tik asseblief die faksnommer in"
#. GtHUE
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:77
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "Doelgemaak"
#. yPJTL
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:79
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "Die ingevoegde teks oorskry die maksimum lengte van hierdie teksveld. Die teks is afgekap."
#. Dk4vc
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:81
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "SVE-drade: "
#. 5DyEd
-#: vcl/inc/strings.hrc:105
+#: vcl/inc/strings.hrc:82
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "BS: "
#. Yqrwo
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:83
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr "UI-Lewering "
#. HnDDn
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:84
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr "Skia/Vulkaan"
#. f5k6D
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:85
msgctxt "SV_APP_SKIA_METAL"
msgid "Skia/Metal"
msgstr "Skia/Metaal"
#. n2Hto
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:86
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr "Skia/Rooster"
#. ZitRE
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:87
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "verstek"
#. 4gWk5
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:89
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "Inligting"
#. 5gAyW
-#: vcl/inc/strings.hrc:113
+#: vcl/inc/strings.hrc:90
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "Waarskuwing"
#. buqyG
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:91
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "Fout"
#. 3CTTS
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:92
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "Bevestiging"
#. drUB5
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:94
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "skrap lyn"
#. cxFKH
-#: vcl/inc/strings.hrc:118
+#: vcl/inc/strings.hrc:95
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "skrap veelvuldige lyne"
#. 7KPRL
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:96
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "voeg veelvuldige lyne in"
#. R2cyr
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:97
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "voeg “$1”"
#. 66FYV
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:98
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "skrap “$1”"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:124
+#: vcl/inc/strings.hrc:101
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ry: %1, kolom: %2"
#. 5RjLF
-#: vcl/inc/strings.hrc:125
+#: vcl/inc/strings.hrc:102
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Leë veld"
#. TcNJT
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:104
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "Dag"
#. DhSTi
-#: vcl/inc/strings.hrc:128
+#: vcl/inc/strings.hrc:105
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "Week"
#. 5Eyy3
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:106
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Vandag"
#. rSVhV
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:108
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Stappe"
#. wEp9A
-#: vcl/inc/strings.hrc:132
+#: vcl/inc/strings.hrc:109
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Afeindig"
#. ygXBw
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:110
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Volgende >"
#. 5MSDe
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:111
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Terug"
#. urFMt
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:113
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "Skeidingskarakter"
#. eCq2K
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:115
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
msgid "Default file formats not registered"
msgstr "Verstek lêer formate is nie geregistreer"
#. TDctx
-#: vcl/inc/strings.hrc:139
+#: vcl/inc/strings.hrc:116
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
msgid ""
"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
@@ -1199,7 +1072,7 @@ msgstr ""
"Kies OK om verstek lêer formaatregistrasies te verander."
#. EkzSW
-#: vcl/inc/strings.hrc:141
+#: vcl/inc/strings.hrc:118
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
@@ -1209,31 +1082,31 @@ msgstr ""
"aangesien sommige op 'n hoër vlak is!"
#. 4jvA7
-#: vcl/inc/strings.hrc:143
+#: vcl/inc/strings.hrc:120
msgctxt "STR_GBU"
msgid "Graphics Backend used: %1"
msgstr "Grafiese agtergrond het: %1 gebruik"
#. FBgmu
-#: vcl/inc/strings.hrc:144
+#: vcl/inc/strings.hrc:121
msgctxt "STR_PASSED"
msgid "Passed Tests: %1"
msgstr "Toetse Geslaag: %1"
#. 3nqZp
-#: vcl/inc/strings.hrc:145
+#: vcl/inc/strings.hrc:122
msgctxt "STR_QUIRKY"
msgid "Quirky Tests: %1"
msgstr "Eienaardige Toetse: %1"
#. KhjFD
-#: vcl/inc/strings.hrc:146
+#: vcl/inc/strings.hrc:123
msgctxt "STR_FAILED"
msgid "Failed Tests: %1"
msgstr "Gefaalde Toetse: %1"
#. uKGQi
-#: vcl/inc/strings.hrc:147
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SKIPPED"
msgid "Skipped Tests: %1"
msgstr "Toetse Omseil: %1"
diff --git a/source/am/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po b/source/am/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
index b333229f142..a4015cbe7ca 100644
--- a/source/am/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/am/connectivity/registry/mysql_jdbc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2018-10-21 20:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,13 +35,3 @@ msgctxt ""
"value.text"
msgid "MySQL (ODBC)"
msgstr "MySQL (ODBC)"
-
-#. rcnrk
-#: Drivers.xcu
-msgctxt ""
-"Drivers.xcu\n"
-".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
-"DriverTypeDisplayName\n"
-"value.text"
-msgid "MySQL (Native)"
-msgstr "MySQL (Native)"
diff --git a/source/am/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po b/source/am/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
index 28a3596d75d..2b177a835ad 100644
--- a/source/am/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
+++ b/source/am/connectivity/registry/mysqlc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2018-10-08 12:57+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1539003425.000000\n"
-#. NHVFU
+#. bTkZz
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "MySQL Connector"
-msgstr "MySQL አገናኝ"
+msgid "MySQL/MariaDB Connector"
+msgstr ""
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index b7906eb018c..7190725caea 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-18 12:16+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
"PO-Revision-Date: 2021-12-12 19:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/am/>\n"
@@ -2153,10 +2153,10 @@ msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
msgstr ""
-#. YFfQV
+#. BT9KG
#: cui/inc/strings.hrc:403
msgctxt "RID_CUISTR_ZIPFAIL"
-msgid "Creation of Zip file failed!"
+msgid "Creation of ZIP file failed."
msgstr ""
#. 9QSQr
@@ -2240,11 +2240,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"
msgstr "ይፈልጉ ሁሉንም መግለጫዎች በ ቅንፎች ውስጥ በ ማረሚያ ▸ መፈለጊያ እና መቀየሪያ ▸ መፈለጊያ ▸ \\([^)]+\\) (ይመርምሩ “መደበኛ መግለጫ”)"
-#. DUvk6
+#. jpiRT
#: cui/inc/tipoftheday.hrc:62
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon style."
-msgstr "ይምረጡ የ ተለየ ምልክት ማሰናጃ ከ መሳሪያዎች ▸ ምርጫዎች ▸ %PRODUCTNAME ▸ መመልከቻ ▸ የ ተጠቃሚ ገጽታ ▸ የ ምልክት ዘዴ:"
+msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon Theme."
+msgstr ""
#. RejqP
#: cui/inc/tipoftheday.hrc:63
@@ -3057,11 +3057,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr "ራሱ በራሱ ምልክት ማድረጊያ በ ፊደል ቅደም ተከተል ማስገቢያ ፋይል በ መጠቀም:"
-#. BnMpb
+#. DBfad
#. local help missing
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
+msgid "Use Format ▸ Align Objects in Impress or Shape ▸ Align Objects in Draw (or the context menu) for precise positioning of objects: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
@@ -4444,68 +4444,74 @@ msgctxt "accelconfigpage|extended_tip|save"
msgid "Saves the current shortcut key configuration, so that you can load it later."
msgstr "የ አሁኑን አቋራጭ ቁልፍ ማዋቀሪያ ማስቀመጫ: ስለዚህ እርስዎ በኋላ መጫን እንዲችሉ:"
-#. mJmga
-#: cui/uiconfig/ui/accelconfigpage.ui:297
+#. oSRQ7
+#: cui/uiconfig/ui/accelconfigpage.ui:295
+msgctxt "accelconfigpage|tooltip|reset"
+msgid "Unsaved modifications to shortcut keys are reverted."
+msgstr ""
+
+#. stv4J
+#: cui/uiconfig/ui/accelconfigpage.ui:298
msgctxt "accelconfigpage|extended_tip|reset"
-msgid "Resets modified values back to the default values."
-msgstr "እንደ ነበር መመለሻ የ ተሻሻሉ ዋጋዎችን ወደ ነባር ዋጋቸው"
+msgid "Revert any changes made to keyboard shortcuts to the assignments that were present when this dialog was opened."
+msgstr ""
#. BKAsD
-#: cui/uiconfig/ui/accelconfigpage.ui:348
+#: cui/uiconfig/ui/accelconfigpage.ui:349
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr "ለ መፈለግ ይጻፉ"
#. nGtvW
-#: cui/uiconfig/ui/accelconfigpage.ui:352
+#: cui/uiconfig/ui/accelconfigpage.ui:353
msgctxt "accelconfigpage|extended_tip|searchEntry"
msgid "Type here to search in the list of functions."
msgstr "እዚህ ይጻፉ በ ተግባሮች ዝርዝር ውስጥ ለ መፈለግ:"
#. T5FGo
-#: cui/uiconfig/ui/accelconfigpage.ui:374
+#: cui/uiconfig/ui/accelconfigpage.ui:375
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "_ምድብ"
#. xfWzA
-#: cui/uiconfig/ui/accelconfigpage.ui:388
+#: cui/uiconfig/ui/accelconfigpage.ui:389
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "_ተግባር"
#. 7PCeb
-#: cui/uiconfig/ui/accelconfigpage.ui:402
+#: cui/uiconfig/ui/accelconfigpage.ui:403
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr "_ቁልፎች"
#. 8DnFJ
-#: cui/uiconfig/ui/accelconfigpage.ui:446
+#: cui/uiconfig/ui/accelconfigpage.ui:447
msgctxt "accelconfigpage|extended_tip|category"
msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
msgstr "ዝግጁ የ ተግባር ምድቦች: ለ ዘዴዎች አቋራጭ ለ መመደብ: ይክፈቱ የ \"ዘዴዎች\" ምድብ:"
#. wGm8q
-#: cui/uiconfig/ui/accelconfigpage.ui:493
+#: cui/uiconfig/ui/accelconfigpage.ui:494
msgctxt "accelconfigpage|extended_tip|function"
msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
msgstr "ይምረጡ ተግባር እርስዎ መመደብ የሚፈልጉትን የ አቋራጭ ቁልፍ ለ: እና ይጫኑ የ ቁልፍ ጥምረት በ አቋራጭ ቁልፎች ዝርዝር ውስጥ: እና ከዛ ይጫኑ ማሻሻያ የ ተመረጠው ተግባር አቋራጭ ቁልፍ ካለው: በ ቁልፎች ዝርዝር ውስጥ ይታያል:"
#. PzCaG
-#: cui/uiconfig/ui/accelconfigpage.ui:539
+#: cui/uiconfig/ui/accelconfigpage.ui:540
msgctxt "accelconfigpage|extended_tip|keys"
msgid "Displays the shortcut keys that are assigned to the selected function."
msgstr "አቋራጭ ቁልፎች ማሳያ ለተመደበው ተግባር:"
#. CqdJF
-#: cui/uiconfig/ui/accelconfigpage.ui:563
+#: cui/uiconfig/ui/accelconfigpage.ui:564
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "ተ_ግባሮች"
#. kVeWd
-#: cui/uiconfig/ui/accelconfigpage.ui:576
+#: cui/uiconfig/ui/accelconfigpage.ui:577
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
msgstr ""
@@ -7542,24 +7548,28 @@ msgid "HSB"
msgstr "HSB"
#. sesZZ
+#. This is the C of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:639
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr "_ሲያን:"
#. Gw7rx
+#. This is the M of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:654
msgctxt "colorpickerdialog|label6"
msgid "_Magenta:"
msgstr "_ቀይ የ ወይን ጠጅ:"
#. Uv2KG
+#. This is the Y of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:669
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
msgstr "_ቢጫ:"
#. aFvbe
+#. This is the K of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:684
msgctxt "colorpickerdialog|label8"
msgid "_Key:"
@@ -7596,7 +7606,7 @@ msgid "CMYK"
msgstr "CMYK"
#. HuUmH
-#: cui/uiconfig/ui/colorpickerdialog.ui:815
+#: cui/uiconfig/ui/colorpickerdialog.ui:812
msgctxt "extended tip | ColorPicker"
msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
msgstr ""
@@ -17175,176 +17185,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "ራሱ በራሱ"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "ጋላክሲ"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "ከፍተኛ ማነጻጸሪያ"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "ኦክስጂን"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "ዘመናዊ"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "ሲፍር"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "ነፋስ"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "የ ምልክት ዘዴ ለ ምልክቶች በ እቃ መደርደሪያ እና ንግግሮች ውስጥ ይወስኑ "
#. SXzWW
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "_Theme:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "ተጨማሪ የ ምልክቶች ገጽታ መጨመሪያ በ ተጨማሪ በኩል"
#. F7kTw
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Theme"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "እንደገና ማስነሳት ያስፈልጋል"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "የ ጠንካራ_አካል ማፍጠኛ ይጠቀሙ"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "በ ቀጥታ መድረሻ ወደ ጠንካራ አካል ገጽታዎች የ ንድፍ ማሳያ ተሰኪ ለ ማሻሻል የ መመልከቻ ማሳያ "
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "ፀረ-ማ_ጥሪያ ይጠቀሙ"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "በሚደገፍ ጊዜ: እርስዎ ማስቻል እና ማሰናከል ይችላሉ ፀረ-ደረጃ የ ንድፎችን: ፀረ-ደረጃ ካስቻሉ በርካታ የ ንድፍ እቃዎች የሚታዩት ለስለስ ብለው ነው ማንኛውም ንድፎች "
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "የ ንድፎች ውጤት"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "ፊደሎችን በ_ቅድመ እይታ ማሳያ"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "ሊመረጡ የሚችሉ ፊደሎች የ ተመሳሳይ ፊደሎች ስም ማሳያ: ለምሳሌ: ፊደሎች በ ፊደሎች ሳጥን ውስጥ በ አቀራረብ መደርደሪያ"
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "የ መመልከቻ ፊደል ማጥሪ _ያ"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "ይምረጡ ለ ጽሁፍ ማለስለሻ በ መመልከቻው ላይ"
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "ከ_:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "የ ፊደል ዝርዝሮች"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
@@ -17374,219 +17360,219 @@ msgid "_Orientation:"
msgstr "_አቅጣጫ:"
#. mtFWf
-#: cui/uiconfig/ui/pageformatpage.ui:131
+#: cui/uiconfig/ui/pageformatpage.ui:135
msgctxt "pageformatpage|radiobuttonPortrait"
msgid "_Portrait"
msgstr "_ምስል"
#. LGkU8
-#: cui/uiconfig/ui/pageformatpage.ui:150
+#: cui/uiconfig/ui/pageformatpage.ui:154
msgctxt "pageformatpage|radiobuttonLandscape"
msgid "L_andscape"
msgstr "የ_መሬት አቀማመጥ"
#. PTwDK
-#: cui/uiconfig/ui/pageformatpage.ui:172
+#: cui/uiconfig/ui/pageformatpage.ui:176
msgctxt "pageformatpage|labelTextFlow"
msgid "_Text direction:"
msgstr "የ _ጽሁፍ አቅጣጫ:"
#. FmMdc
-#: cui/uiconfig/ui/pageformatpage.ui:228
+#: cui/uiconfig/ui/pageformatpage.ui:232
msgctxt "pageformatpage|labelPaperTray"
msgid "Paper _tray:"
msgstr "የ ወረቀት _ትሪ:"
#. u8DFb
-#: cui/uiconfig/ui/pageformatpage.ui:260
+#: cui/uiconfig/ui/pageformatpage.ui:264
msgctxt "pageformatpage|labelPaperFormat"
msgid "Paper Format"
msgstr "የ ወረቀት አቀራረብ"
#. 479hs
-#: cui/uiconfig/ui/pageformatpage.ui:305
+#: cui/uiconfig/ui/pageformatpage.ui:309
msgctxt "pageformatpage|labelLeftMargin"
msgid "Left:"
msgstr "በ ግራ:"
#. EoGm2
-#: cui/uiconfig/ui/pageformatpage.ui:319
+#: cui/uiconfig/ui/pageformatpage.ui:323
msgctxt "pageformatpage|labelInner"
msgid "I_nner:"
msgstr "ው_ስጥ:"
#. 7FFiR
-#: cui/uiconfig/ui/pageformatpage.ui:357
+#: cui/uiconfig/ui/pageformatpage.ui:361
msgctxt "pageformatpage|labelRightMargin"
msgid "Right:"
msgstr "በ ቀኝ:"
#. RfnGu
-#: cui/uiconfig/ui/pageformatpage.ui:371
+#: cui/uiconfig/ui/pageformatpage.ui:375
msgctxt "pageformatpage|labelOuter"
msgid "O_uter:"
msgstr "ው_ጪ:"
#. tGMLA
-#: cui/uiconfig/ui/pageformatpage.ui:404
+#: cui/uiconfig/ui/pageformatpage.ui:408
msgctxt "pageformatpage|labelTopMargin"
msgid "Top:"
msgstr "ከ ላይ:"
#. eaqBS
-#: cui/uiconfig/ui/pageformatpage.ui:430
+#: cui/uiconfig/ui/pageformatpage.ui:434
msgctxt "pageformatpage|labelBottomMargin"
msgid "Bottom:"
msgstr "ከ ታች:"
#. TYx6B
-#: cui/uiconfig/ui/pageformatpage.ui:456
+#: cui/uiconfig/ui/pageformatpage.ui:460
msgctxt "pageformatpage|labelGutterMargin"
msgid "Gutter:"
msgstr "ቦይ:"
#. Tvwu6
-#: cui/uiconfig/ui/pageformatpage.ui:484
+#: cui/uiconfig/ui/pageformatpage.ui:488
msgctxt "pageformatpage|labelMargins"
msgid "Margins"
msgstr "መስመሮች"
#. WcuCU
-#: cui/uiconfig/ui/pageformatpage.ui:517
+#: cui/uiconfig/ui/pageformatpage.ui:521
msgctxt "pageformatpage|labelPageLayout"
msgid "_Page layout:"
msgstr "የ _ገጽ እቅድ:"
#. vnXWF
-#: cui/uiconfig/ui/pageformatpage.ui:531
+#: cui/uiconfig/ui/pageformatpage.ui:535
msgctxt "pageformatpage|labelPageNumbers"
msgid "Page numbers:"
msgstr "የ ገጽ ቁጥሮች:"
#. tyvA3
-#: cui/uiconfig/ui/pageformatpage.ui:543
+#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
msgstr "የ ገጽ መስ_መር-ክፍተት ይጠቀሙ"
#. DtZQG
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:547
+#: cui/uiconfig/ui/pageformatpage.ui:551
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
msgstr ""
#. p2egb
-#: cui/uiconfig/ui/pageformatpage.ui:552
+#: cui/uiconfig/ui/pageformatpage.ui:556
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr ""
#. 46djR
-#: cui/uiconfig/ui/pageformatpage.ui:566
+#: cui/uiconfig/ui/pageformatpage.ui:570
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr "በ ቀኝ እና በ ግራ"
#. xetCH
-#: cui/uiconfig/ui/pageformatpage.ui:567
+#: cui/uiconfig/ui/pageformatpage.ui:571
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr "የተንፀባረቀ"
#. 47EHF
-#: cui/uiconfig/ui/pageformatpage.ui:568
+#: cui/uiconfig/ui/pageformatpage.ui:572
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr "በ ቀኝ ብቻ"
#. ALSy9
-#: cui/uiconfig/ui/pageformatpage.ui:569
+#: cui/uiconfig/ui/pageformatpage.ui:573
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr "በ ግራ ብቻ"
#. Fhvzk
-#: cui/uiconfig/ui/pageformatpage.ui:591
+#: cui/uiconfig/ui/pageformatpage.ui:595
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "ሰንጠረዥ ማሰለፊያ:"
#. 79BH9
-#: cui/uiconfig/ui/pageformatpage.ui:603
+#: cui/uiconfig/ui/pageformatpage.ui:607
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "በ አግ_ድም"
#. krxQZ
-#: cui/uiconfig/ui/pageformatpage.ui:617
+#: cui/uiconfig/ui/pageformatpage.ui:621
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "በ _ቁመት"
#. FPLFK
-#: cui/uiconfig/ui/pageformatpage.ui:631
+#: cui/uiconfig/ui/pageformatpage.ui:635
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr "እቃውን በ ወረቀቱ አቀራረብ _ልክ ማድረጊያ"
#. bqcXW
-#: cui/uiconfig/ui/pageformatpage.ui:648
+#: cui/uiconfig/ui/pageformatpage.ui:651
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
msgstr "ማመሳከሪያ _ዘዴ:"
#. FnoPF
-#: cui/uiconfig/ui/pageformatpage.ui:672
+#: cui/uiconfig/ui/pageformatpage.ui:675
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
msgstr ""
#. LF4Ex
-#: cui/uiconfig/ui/pageformatpage.ui:687
+#: cui/uiconfig/ui/pageformatpage.ui:690
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Left"
msgstr "በ ግራ"
#. DSBY5
-#: cui/uiconfig/ui/pageformatpage.ui:688
+#: cui/uiconfig/ui/pageformatpage.ui:691
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "ከ ላይ"
#. AosV5
-#: cui/uiconfig/ui/pageformatpage.ui:704
+#: cui/uiconfig/ui/pageformatpage.ui:701
msgctxt "pageformatpage|checkRtlGutter"
msgid "Gutter on right side of page"
msgstr ""
#. cuazP
-#: cui/uiconfig/ui/pageformatpage.ui:718
+#: cui/uiconfig/ui/pageformatpage.ui:715
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:722
+#: cui/uiconfig/ui/pageformatpage.ui:719
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:727
+#: cui/uiconfig/ui/pageformatpage.ui:724
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:742
+#: cui/uiconfig/ui/pageformatpage.ui:754
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "እቅድ ማሰናጃዎች"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:763
+#: cui/uiconfig/ui/pageformatpage.ui:775
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -21034,10 +21020,10 @@ msgctxt "textcolumnstabpage|extended_tip|MTR_FLD_COL_SPACING"
msgid "Enter the amount of space to leave between the columns."
msgstr ""
-#. 4u4bL
+#. 7Fgep
#: cui/uiconfig/ui/textcolumnstabpage.ui:108
msgctxt "textcolumnstabpage|extended_tip|TextColumnsPage"
-msgid "Sets the columns layout properties for text in the selected drawing or text object."
+msgid "Sets the columns’ layout properties for text in the selected drawing or text object."
msgstr ""
#. 3Huae
@@ -22103,37 +22089,37 @@ msgid "In columns view layout you see pages in a given number of columns side by
msgstr "በ አምድ መመልከቻ እቅድ ውስጥ ለ እርስዎ ይታያል ለ ገጾች የ ተሰጠው ቁጥር ከ አምዶች ጎን ለ ጎን: የ አምዶች ቁጥር ያስገቡ "
#. opsyv
-#: cui/uiconfig/ui/zoomdialog.ui:367
+#: cui/uiconfig/ui/zoomdialog.ui:366
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr "አምዶች"
#. psRyA
-#: cui/uiconfig/ui/zoomdialog.ui:368
+#: cui/uiconfig/ui/zoomdialog.ui:367
msgctxt "zoomdialog|extended_tip|columnssb"
msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
msgstr "በ አምድ መመልከቻ እቅድ ውስጥ ለ እርስዎ ይታያል ለ ገጾች የ ተሰጠው ቁጥር ከ አምዶች ጎን ለ ጎን: የ አምዶች ቁጥር ያስገቡ "
#. rhLet
-#: cui/uiconfig/ui/zoomdialog.ui:387
+#: cui/uiconfig/ui/zoomdialog.ui:386
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr "በ መጽሀፍ ዘዴ"
#. egdNS
-#: cui/uiconfig/ui/zoomdialog.ui:400
+#: cui/uiconfig/ui/zoomdialog.ui:398
msgctxt "zoomdialog|extended_tip|bookmode"
msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number."
msgstr "በ መጽሀፍ መመልከቻ ዘዴ እቅድ ውስጥ ለ እርስዎ ሁለት ገጾች ይታያል ጎን ለ ጎን በ ተከፈተ መጽሀፍ ውስጥ: የ መጀመሪያው ገጽ የ ቀኝ ገጽ ነው ከ ጎዶሎ ገጽ ቁጥር ጋር"
#. pdZqi
-#: cui/uiconfig/ui/zoomdialog.ui:416
+#: cui/uiconfig/ui/zoomdialog.ui:414
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "እቅድ መመልከቻ"
#. DWWgJ
-#: cui/uiconfig/ui/zoomdialog.ui:448
+#: cui/uiconfig/ui/zoomdialog.ui:446
msgctxt "zoomdialog|extended_tip|ZoomDialog"
msgid "Reduces or enlarges the screen display."
msgstr ""
diff --git a/source/am/dbaccess/messages.po b/source/am/dbaccess/messages.po
index 44db4421501..d0d40fd9cb0 100644
--- a/source/am/dbaccess/messages.po
+++ b/source/am/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
"PO-Revision-Date: 2021-11-26 20:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/am/>\n"
@@ -1907,11 +1907,11 @@ msgctxt "STR_WRITER_PATH_OR_FILE"
msgid "Path to the Writer document"
msgstr "ወደ መጻፊያ ሰነድ መንገድ"
-#. zQxCp
+#. JScWd
#: dbaccess/inc/strings.hrc:335
msgctxt "STR_MYSQL_DATABASE_NAME"
-msgid "Name of the MySQL database"
-msgstr "ስም ለ MySQL ዳታቤዝ"
+msgid "Name of the MySQL/MariaDB database"
+msgstr ""
#. uhRMQ
#: dbaccess/inc/strings.hrc:336
@@ -2097,11 +2097,11 @@ msgctxt "STR_PAGETITLE_ORACLE"
msgid "Set up Oracle database connection"
msgstr "የ Oracle database ግንኙነት ማሰናጃ"
-#. KbAqW
+#. rdZFv
#: dbaccess/inc/strings.hrc:368
msgctxt "STR_PAGETITLE_MYSQL"
-msgid "Set up MySQL connection"
-msgstr "የ MySQL ግንኙነት ማሰናጃ"
+msgid "Set up MySQL/MariaDB connection"
+msgstr ""
#. uJuNs
#: dbaccess/inc/strings.hrc:369
@@ -2121,11 +2121,11 @@ msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
msgid "Set up user authentication"
msgstr "የተጠቃሚ ማረጋገጫ ማሰናጃ"
-#. YgsyA
+#. twW6d
#: dbaccess/inc/strings.hrc:372
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
-msgid "Set up MySQL server data"
-msgstr "የ MySQL server data ማሰናጃ"
+msgid "Set up MySQL/MariaDB server data"
+msgstr ""
#. 6Fy7C
#: dbaccess/inc/strings.hrc:373
@@ -2139,27 +2139,25 @@ msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
msgstr "አዲስ ዳታቤዝ"
-#. DoGLb
+#. f5EbK
#: dbaccess/inc/strings.hrc:375
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "ግንኙነት ማሰናጃ ወደ MySQL ዳታቤዝ JDBC ን በመጠቀም"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. B5kEC
+#. tqpeM
#: dbaccess/inc/strings.hrc:376
msgctxt "STR_MYSQLJDBC_HELPTEXT"
msgid ""
-"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-"ወደ MySQL ዳታቤዝ ለ መገናኘት የሚያስፈልገውን መረጃ ያስገቡ JDBC ን በ መጠቀም: ይህን ያስታውሱ የ JDBC driver በ እርስዎ ስርአት ላይ መገጠም እና መመዝገብ አለበት %PRODUCTNAME.\n"
-"እባክዎን የ ስርአት አስተዳዳሪውን ያማክሩ የሚቀጥለውን ማሰናጃ እርግጠኛ ካልሆኑ:"
-#. uGTyY
+#. Lrd3G
#: dbaccess/inc/strings.hrc:377
msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
-msgid "MySQL JDBC d~river class:"
-msgstr "MySQL JDBC d~river class:"
+msgid "MySQL/MariaDB JDBC d~river class:"
+msgstr ""
#. cBiSe
#: dbaccess/inc/strings.hrc:378
@@ -3063,11 +3061,11 @@ msgctxt "dbwizmysqlintropage|jdbc"
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr "ይህን በ መጠቀም ይገናኙ JDBC (Java Database Connectivity)"
-#. AW2n6
+#. 3haAx
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:93
msgctxt "dbwizmysqlintropage|directly"
-msgid "Connect directly"
-msgstr "በቀጥታ መገናኛ"
+msgid "Connect directly (using MariaDB C connector)"
+msgstr ""
#. C9PFE
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:112
@@ -3075,23 +3073,23 @@ msgctxt "dbwizmysqlintropage|label1"
msgid "How do you want to connect to your MySQL database?"
msgstr "ወደ እርስዎ MySQL ዳታቤዝ እንዴት ነው መገናኘት የሚፈልጉት?"
-#. pdEL5
+#. C9PGh
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:128
msgctxt "dbwizmysqlintropage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "ወደ MySQL ዳታቤዝ ግንኙነት ማሰናጃ"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
-#. E8ACc
+#. 3cSEi
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:35
msgctxt "dbwizmysqlnativepage|helptext"
-msgid "Please enter the required information to connect to a MySQL database."
-msgstr "እባክዎን ወደ MySQL database ለመገናኘት የሚያስፈልገውን መረጃ ያስገቡ"
+msgid "Please enter the required information to connect to a MySQL/MariaDB database."
+msgstr ""
-#. 2HCAG
+#. 4uetU
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:70
msgctxt "dbwizmysqlnativepage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "ወደ MySQL ዳታቤዝ ግንኙነት ማሰናጃ"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
#. AEty7
#: dbaccess/uiconfig/ui/dbwizspreadsheetpage.ui:55
@@ -4604,17 +4602,17 @@ msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Specifies the sort criteria for the data display."
msgstr "ለ ዳታ ማሳያ የ መለያ መመዘኛ መወሰኛ ማሳያ"
-#. CsLXB
+#. nDP3A
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
msgctxt "specialjdbcconnectionpage|header"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "ግንኙነት ማሰናጃ ወደ MySQL database using JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. oxw5Q
+#. EVDCG
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:39
msgctxt "specialjdbcconnectionpage|helpLabel"
-msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
-msgstr "ወደ MySQL ዳታቤዝ ለመገናኘት የሚያስፈልገውን መረጃ ያስገቡ JDBC ን በመጠቀም: ይህን ያስታውሱ የ JDBC driver በ እርስዎ ስርአት ላይ መገጠም እና መመዝገብ አለበት %PRODUCTNAME. እባክዎን የ ስርአት አስተዳዳሪውን ያማክሩ የሚቀጥለውን ማሰናጃ እርግጠኛ ካልሆኑ: "
+msgid "Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
+msgstr ""
#. GchzZ
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:64
@@ -4640,11 +4638,11 @@ msgctxt "specialjdbcconnectionpage|portNumDefLabel"
msgid "Default: 3306"
msgstr "ነባር: 3306"
-#. dhiYx
+#. o9YhU
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:188
msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
-msgid "MySQL JDBC d_river class:"
-msgstr "MySQL JDBC d_river class:"
+msgid "MySQL/MariaDB JDBC d_river class:"
+msgstr ""
#. 8oG6P
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:212
diff --git a/source/am/fpicker/messages.po b/source/am/fpicker/messages.po
index d7a1183f695..6350622e102 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-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\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"
@@ -492,8 +492,20 @@ msgstr ""
"\n"
"መቀየር ይፈልጋሉ?"
-#. z6Eo3
+#. t4wDh
#: include/fpicker/strings.hrc:32
+msgctxt "STR_SVT_ALREADYEXISTOVERWRITE_SECONDARY"
+msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
+msgstr ""
+
+#. cBvCB
+#: include/fpicker/strings.hrc:33
+msgctxt "STR_SVT_ALLFORMATS"
+msgid "All Formats"
+msgstr ""
+
+#. z6Eo3
+#: include/fpicker/strings.hrc:34
msgctxt "STR_SVT_DELETESERVICE"
msgid ""
"Are you sure you want to delete the service?\n"
@@ -503,31 +515,31 @@ msgstr ""
"\"$servicename$\""
#. KegFE
-#: include/fpicker/strings.hrc:33
+#: include/fpicker/strings.hrc:35
msgctxt "STR_SVT_ROOTLABEL"
msgid "Root"
msgstr "Root"
#. sWRTd
-#: include/fpicker/strings.hrc:34
+#: include/fpicker/strings.hrc:36
msgctxt "STR_FILTERNAME_ALL"
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
#. FBggE
-#: include/fpicker/strings.hrc:35
+#: include/fpicker/strings.hrc:37
msgctxt "STR_FILEDLG_OPEN"
msgid "Open"
msgstr "መክፈቻ"
#. wJYsA
-#: include/fpicker/strings.hrc:36
+#: include/fpicker/strings.hrc:38
msgctxt "STR_FILEDLG_TYPE"
msgid "File ~type"
msgstr "የ ፋይል ~አይነት"
#. EEBg4
-#: include/fpicker/strings.hrc:37
+#: include/fpicker/strings.hrc:39
msgctxt "STR_FILEDLG_SAVE"
msgid "Save"
msgstr "ማስቀመጫ"
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index cbd250dcce5..fe6ad4da90b 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: 2022-02-21 15:22+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+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"
@@ -2923,13 +2923,13 @@ msgctxt ""
msgid "<bookmark_value>procedures</bookmark_value> <bookmark_value>functions;using</bookmark_value> <bookmark_value>variables;passing to procedures, functions, properties</bookmark_value> <bookmark_value>parameters;for procedures, functions or properties</bookmark_value> <bookmark_value>parameters;passing by reference or value</bookmark_value> <bookmark_value>variables;scope</bookmark_value> <bookmark_value>scope of variables</bookmark_value> <bookmark_value>GLOBAL variables</bookmark_value> <bookmark_value>PUBLIC variables</bookmark_value> <bookmark_value>PRIVATE variables</bookmark_value> <bookmark_value>functions;return value type</bookmark_value> <bookmark_value>return value type of functions</bookmark_value>"
msgstr ""
-#. AYcBA
+#. RY6Z4
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"hd_id3149456\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures, Functions and Properties</link>"
+msgid "<variable id=\"UsingSubs_h1\"><link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures, Functions and Properties</link></variable>"
msgstr ""
#. DSyYW
@@ -19114,13 +19114,13 @@ msgctxt ""
msgid "Performs the integer division on two numbers and returns the result."
msgstr ""
-#. iN7zc
+#. 7hxCB
#: 03070700.xhp
msgctxt ""
"03070700.xhp\n"
"bm_id3150669\n"
"help.text"
-msgid "<bookmark_value>Operators;Integer division (\\)</bookmark_value> <bookmark_value>\"\\\\\" operator (mathematical)</bookmark_value>"
+msgid "<bookmark_value>Operators;Integer division (\\\\)</bookmark_value> <bookmark_value>\"\\\\\" operator (mathematical)</bookmark_value>"
msgstr ""
#. KDgG2
@@ -23056,14 +23056,14 @@ msgctxt ""
msgid "<bookmark_value>Call statement</bookmark_value>"
msgstr "<bookmark_value>መግለጫ መጥሪያ</bookmark_value>"
-#. LmAwf
+#. HW8av
#: 03090401.xhp
msgctxt ""
"03090401.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">Call Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">መጥሪያ አረፍተ ነገር</link>"
+msgid "<variable id=\"Call_h1\"><link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">Call Statement</link></variable>"
+msgstr ""
#. nPKzF
#: 03090401.xhp
@@ -23074,15 +23074,6 @@ msgctxt ""
msgid "Transfers the control of the program to a subroutine, a function, or a procedure of a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">Dynamic Link Library (DLL)</link>. The keyword, type and number of parameters is dependent on the routine that is being called."
msgstr ""
-#. MdeJS
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
-"help.text"
-msgid "Syntax:"
-msgstr "አገባብ:"
-
#. CXLBw
#: 03090401.xhp
msgctxt ""
@@ -23101,15 +23092,6 @@ msgctxt ""
msgid "[Call] name [(] [param :=] value, ... [)]"
msgstr ""
-#. 5MBBJ
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
-"help.text"
-msgid "Parameters:"
-msgstr "ደንቦች:"
-
#. C2MXB
#: 03090401.xhp
msgctxt ""
@@ -23155,15 +23137,6 @@ msgctxt ""
msgid "When a function is used as an expression, enclosing parameters with brackets becomes necessary. Using a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Declare statement</link> is compulsory prior to call a DLL."
msgstr ""
-#. QZZ8c
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"help.text"
-msgid "Example:"
-msgstr "ለምሳሌ:"
-
#. eyeVE
#: 03090402.xhp
msgctxt ""
@@ -23731,31 +23704,40 @@ msgctxt ""
msgid "<bookmark_value>Function statement</bookmark_value>"
msgstr "<bookmark_value>የ ተግባር መግለጫ</bookmark_value>"
-#. 4m9Rw
+#. 4AZJf
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"hd_id3153346\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">Function Statement</link>"
-msgstr "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">የ ተግባር አረፍተ ነገር</link>"
+msgid "<variable id=\"Function_h1\"><link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">Function Statement</link></variable>"
+msgstr ""
-#. mLEJz
+#. i3BLj
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Defines a subroutine that can be used as an expression to determine a return type."
-msgstr "የ ንዑስ አሰራር መግለጫ ሊጠቀሙበት የሚችሉ እንደ መግለጫ ለ መወሰን የሚመለሰውን አይነት"
+msgid "A function is a block of code which runs when it is called. A function is usually called in an expression."
+msgstr ""
-#. qCx4G
+#. fLBaF
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
-"par_id661588586825434\n"
+"par_id451647246564161\n"
"help.text"
-msgid "<literal>Sub</literal>, <literal>Function</literal> or <literal>Property</literal> statements are similar methods, without distinction. They receive parameters by reference allowing them to be modified in return. %PRODUCTNAME Basic compiler accepts their respective argument syntax to be used interchangeably."
+msgid "You can pass data, known as parameters or arguments, into a function. You may pass a parameter by value or by reference. When by reference, modifications applied to the parameter in the function will be sent back to the calling code."
+msgstr ""
+
+#. 9wMCM
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id101647247154065\n"
+"help.text"
+msgid "A function usually returns data as a result."
msgstr ""
#. zFnQ7
@@ -23857,6 +23839,15 @@ msgctxt ""
msgid "Exit For ' sItem found"
msgstr "Exit For ' sItem found"
+#. FTf7A
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id181647247913872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgstr ""
+
#. yZEAJ
#: 03090407.xhp
msgctxt ""
@@ -24055,6 +24046,15 @@ msgctxt ""
msgid "<emph>arguments:</emph> Optional parameters that you want to pass to the subroutine."
msgstr ""
+#. gPQ9W
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id181647247913872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgstr ""
+
#. CCDzt
#: 03090410.xhp
msgctxt ""
@@ -34369,13 +34369,13 @@ msgctxt ""
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence."
msgstr ""
-#. rSTG8
+#. pEjGF
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
"par_id3150541\n"
"help.text"
-msgid "If <literal>CreateUnoValue</literal> cannot be converted to the specified Uno type, and error occurs. For the conversion, the <literal>TypeConverter</literal> service is used."
+msgid "If <literal>CreateUnoValue</literal> cannot be converted to the specified Uno type, and error occurs. For the conversion, the <literal>com.sun.star.script.Converter</literal> service is used."
msgstr ""
#. bT3DS
@@ -37249,13 +37249,13 @@ msgctxt ""
msgid "CallByName Function"
msgstr ""
-#. tbCrP
+#. 3957Y
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/CallByName.xhp\">CallByName Function</link>"
+msgid "<variable id=\"CallByName_h1\"><link href=\"text/sbasic/shared/CallByName.xhp\">CallByName Function</link></variable>"
msgstr ""
#. 7EWyG
@@ -37267,13 +37267,13 @@ msgctxt ""
msgid "Invokes a subroutine by its string name."
msgstr ""
-#. GSJB7
+#. V4GLV
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"bm_id3150669\n"
"help.text"
-msgid "<bookmark_value>CallByName function</bookmark_value>"
+msgid "<bookmark_value>CallByName function</bookmark_value> <bookmark_value>API;OfficeFilePicker</bookmark_value>"
msgstr ""
#. kJE7K
@@ -37411,13 +37411,13 @@ msgctxt ""
msgid "<literal>ScriptForge.Platform.Architecture</literal> information is retrieved."
msgstr ""
-#. WR7MJ
+#. rvtXD
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"par_id651644588404943\n"
"help.text"
-msgid "<literal>DisplayDirectory</literal> property of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker-members.html\" name=\"FilePicker\">com.sun.star.ui.dialogs.FilePicker</link> UNO service is assigned a value, its content is read twice."
+msgid "<literal>DisplayDirectory</literal> property of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker-members.html\" name=\"FilePicker\">com.sun.star.ui.dialogs.FilePicker</link> UNO service is set to the user home folder, its content is read twice."
msgstr ""
#. 3DsDt
@@ -39967,13 +39967,13 @@ msgctxt ""
msgid "<variable id=\"compatibilitymodeh1\"><link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
msgstr ""
-#. ipFPG
+#. 4EEry
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"N0120\n"
"help.text"
-msgid "<literal>CompatibilityMode()</literal> function controls runtime mode and affects all code executed after setting or resetting the mode."
+msgid "<literal>CompatibilityMode()</literal> function controls or queries runtime mode. It affects all code executed after setting or resetting the runtime mode."
msgstr ""
#. YSokk
@@ -39985,13 +39985,40 @@ msgctxt ""
msgid "Use this feature with caution, limit it to document conversion for example."
msgstr ""
-#. GJLGQ
+#. VDnNU
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"bas_id751645014686110\n"
+"help.text"
+msgid "CompatibilityMode(Optional Enable As Boolean) As Boolean"
+msgstr ""
+
+#. 34s7C
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id551648117368688\n"
+"help.text"
+msgid "<literal>CompatibilityMode</literal> function always returns the mode that is active after its execution. That is if called with argument, it returns the new mode, if called without argument, it returns active mode without modifying it."
+msgstr ""
+
+#. buGpD
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
-"par_id271561645872679\n"
+"par_id971648117815981\n"
"help.text"
-msgid "<literal>Option Compatible</literal> turns on VBA compatibility at module level for the %PRODUCTNAME Basic interpreter."
+msgid "<emph>Enable</emph>: Sets or unsets new compatibility mode when the argument is present."
+msgstr ""
+
+#. ouFEB
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id371648123169691\n"
+"help.text"
+msgid "<literal>CompatibilityMode</literal> function relates to <link href=\"text/sbasic/shared/03103350.xhp#vbasupportstatement\" name=\"VBASupport compiler option\">Option VBASupport 1</link>, in which case it always returns <literal>True</literal>. It is unrelated to <link href=\"text/sbasic/shared/compatible.xhp#compatiblestatement\" name=\"Option Compatible compiler directive\">Option Compatible</link> compiler directive."
msgstr ""
#. NM3yP
@@ -40003,13 +40030,13 @@ msgctxt ""
msgid "This function may affect or help in the following situations:"
msgstr ""
-#. 9jVgZ
+#. RSBt2
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
-"N0122\n"
+"par_id301645018760314\n"
"help.text"
-msgid "Creating enumerations with <link href=\"text/sbasic/shared/enum.xhp\" name=\"enum statement\">Enum statement</link>"
+msgid "Scoping of variables."
msgstr ""
#. f6LjG
@@ -40039,15 +40066,6 @@ msgctxt ""
msgid "Color components calculation with the <link href=\"text/sbasic/shared/03010303.xhp\" name=\"linkred\"><literal>Red</literal></link> and <link href=\"text/sbasic/shared/03010301.xhp\" name=\"linkblue\"><literal>Blue</literal></link> functions which <emph>are interchanged</emph> (The <link href=\"text/sbasic/shared/03010302.xhp\" name=\"linkgreen\"><literal>Green</literal></link> function is not affected)."
msgstr ""
-#. piCTC
-#: compatibilitymode.xhp
-msgctxt ""
-"compatibilitymode.xhp\n"
-"N0126\n"
-"help.text"
-msgid "<literal>CompatibilityMode()</literal> function may be necessary when resorting to <literal>Option Compatible</literal> or <literal>Option VBASupport</literal> compiler modes."
-msgstr ""
-
#. cFz7C
#: compatibilitymode.xhp
msgctxt ""
@@ -40057,13 +40075,13 @@ msgctxt ""
msgid "Given a NOT empty directory at <emph>file:///home/me/Test</emph>"
msgstr ""
-#. 7mLBk
+#. yntDo
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"par_id461561646613414\n"
"help.text"
-msgid "With <literal>CompatibilityMode( true )</literal> the program results in an error, otherwise the Test directory and all its content is deleted."
+msgid "With <literal>CompatibilityMode( True )</literal> the program raises an error, otherwise the <literal>Test</literal> directory and all its content is deleted."
msgstr ""
#. TcWG2
@@ -40075,22 +40093,22 @@ msgctxt ""
msgid "Modifying <literal>Dir</literal> behavior"
msgstr ""
-#. S3VK4
+#. RcnAo
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"par_id831561647900147\n"
"help.text"
-msgid "CompatibilityMode( true ) ' Shows also normal files"
+msgid "CompatibilityMode( Enable := True ) ' Shows also normal files"
msgstr ""
-#. YJM4j
+#. oBqaD
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
-"N0129\n"
+"bas_id641645017016611\n"
"help.text"
-msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for <literal>Option Compatible</literal> simple examples, or <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link> for other class examples making use of <literal>Option Compatible</literal> compiler mode."
+msgid "CompatibilityMode Enable := False ' Shows only directories"
msgstr ""
#. P7qDB
@@ -40102,15 +40120,6 @@ msgctxt ""
msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
msgstr ""
-#. YwBF4
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"N0103\n"
-"help.text"
-msgid "<bookmark_value>VBA compatibility option</bookmark_value>"
-msgstr ""
-
#. imVdb
#: compatible.xhp
msgctxt ""
@@ -40129,15 +40138,6 @@ msgctxt ""
msgid "<literal>Option Compatible</literal> extends %PRODUCTNAME Basic compiler and runtime, allowing supplemental language constructs to Basic."
msgstr ""
-#. SNhhH
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"par_id931561646897105\n"
-"help.text"
-msgid "The function <link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"copatibilitymode\"><literal>CompatibilityMode()</literal></link> controls runtime mode and affects all code executed after setting or resetting the mode."
-msgstr ""
-
#. w5NPC
#: compatible.xhp
msgctxt ""
@@ -40165,24 +40165,6 @@ msgctxt ""
msgid "Create <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"addvbaconstants\">VBA constants including non-printable characters</link>."
msgstr ""
-#. jGHBX
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"N0110\n"
-"help.text"
-msgid "Support <literal>Private</literal>/<literal>Public</literal> keywords for procedures."
-msgstr ""
-
-#. VGYZH
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"N0111\n"
-"help.text"
-msgid "Compulsory <literal>Set</literal> statement for objects."
-msgstr ""
-
#. xwLEC
#: compatible.xhp
msgctxt ""
@@ -40237,13 +40219,13 @@ msgctxt ""
msgid "' With this option the code works, otherwise it causes a compiling error"
msgstr ""
-#. E6GpA
+#. rWE5B
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"par_id381561650119146\n"
"help.text"
-msgid "Statement <literal>Option VBAsupport 1</literal> sets <literal>Option Compatible</literal> statement automatically."
+msgid "Statement <literal>Option VBAsupport 1</literal> implies <literal>Option Compatible</literal> statement automatically."
msgstr ""
#. j8iHM
@@ -41416,13 +41398,13 @@ msgctxt ""
msgid "<bookmark_value>Property statement</bookmark_value>"
msgstr ""
-#. 6Gjab
+#. a5AX6
#: property.xhp
msgctxt ""
"property.xhp\n"
"N0182\n"
"help.text"
-msgid "Property Statement"
+msgid "<variable id=\"Property_h1\"><link href=\"text/sbasic/shared/Property.xhp\" name=\"Property statement\">Property Statement</link></variable>"
msgstr ""
#. CxW74
@@ -41569,22 +41551,22 @@ msgctxt ""
msgid "Use <emph>Let</emph> or <emph>Set</emph> when handling UNO services or class objects:"
msgstr ""
-#. KbzAx
+#. mbhy9
#: property.xhp
msgctxt ""
"property.xhp\n"
-"N0237\n"
+"par_id181647247913872\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> statements"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
msgstr ""
-#. Dh5aG
+#. KbzAx
#: property.xhp
msgctxt ""
"property.xhp\n"
-"N0238\n"
+"N0237\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\" name=\"Using Procedures and Fonctions\">Using Procedures and Functions</link>"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> statements"
msgstr ""
#. uM2zs
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/03.po b/source/am/helpcontent2/source/text/sbasic/shared/03.po
index a385b24c324..5adca70f043 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-04-04 11:40+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"
@@ -196,22 +196,22 @@ msgctxt ""
msgid "Invoking ScriptForge services"
msgstr ""
-#. wKZM6
+#. SaBEy
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id781606153472028\n"
"help.text"
-msgid "The described modules and classes are invoked from user scripts as \"Services\". A generic constructor of those services has been designed for that purpose for each language:"
+msgid "The described modules and classes are invoked from user scripts as \"Services\". A generic constructor of those services has been designed for that purpose for each language."
msgstr ""
-#. VQNBs
+#. xhj84
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id871637256506167\n"
"help.text"
-msgid "The <literal>Dispose</literal> method is available in all services and should be called to free up resources after usage."
+msgid "The <literal>Dispose</literal> method is available in all services and should be called to free up resources after usage:"
msgstr ""
#. Depaw
@@ -2527,6 +2527,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. AvW3k
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Base</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. vi6hS
#: sf_base.xhp
msgctxt ""
@@ -3868,6 +3877,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. RAtZX
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. z3JcW
#: sf_calc.xhp
msgctxt ""
@@ -4597,6 +4615,33 @@ msgctxt ""
msgid "A sheet reference that can be used as argument of methods like <literal>CopySheet</literal>."
msgstr ""
+#. WanFm
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id541591025591322\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wRCYZ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id661591025591188\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. w7Gft
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731591025591006\n"
+"help.text"
+msgid "Returns the sheet name of a given range address."
+msgstr ""
+
#. HLpEQ
#: sf_calc.xhp
msgctxt ""
@@ -7090,6 +7135,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. jkE4f
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Chart</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. LvW6m
#: sf_chart.xhp
msgctxt ""
@@ -7783,6 +7837,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. 8ASCW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Database</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. Cr4oo
#: sf_database.xhp
msgctxt ""
@@ -11770,6 +11833,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. XVADJ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Document</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. X6BV3
#: sf_document.xhp
msgctxt ""
@@ -12553,13 +12625,13 @@ msgctxt ""
msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
msgstr ""
-#. DEEhz
+#. m9AyA
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id191611153511038\n"
"help.text"
-msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools > Customize > Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools - Customize - Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
msgstr ""
#. enSv9
@@ -15334,6 +15406,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. WyEtQ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Form</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. KfjEA
#: sf_form.xhp
msgctxt ""
@@ -16549,6 +16630,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. pzkhK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>FormControl</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. BeDqF
#: sf_formcontrol.xhp
msgctxt ""
@@ -18727,13 +18817,13 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. nkcFt
+#. 9xE8t
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id421614353247163\n"
"help.text"
-msgid "To invoke the <literal>L10N</literal> service, two optional arguments can be specified to determine the folder where PO files are located and the locale to be used, as described below."
+msgid "There are several ways to invoke the <literal>L10N</literal> service using up to five optional arguments that specify the folder where PO files are stored, the locale and encoding to be used, as well as a fallback PO file and its encoding."
msgstr ""
#. cCwBS
@@ -18754,49 +18844,85 @@ msgctxt ""
msgid "<emph>locale</emph>: A string in the form \"la-CO\" (language-COUNTRY) or in the form \"la\" (language) only."
msgstr ""
-#. Z5Pb3
+#. gswGR
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
-"par_id301614358956087\n"
+"par_id591646219881864\n"
"help.text"
-msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgid "<emph>encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
-#. 3YPqe
+#. CXd3e
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281646219882464\n"
+"help.text"
+msgid "<emph>locale2</emph>: A string specifying the fallback locale to be used in case the PO file corresponding to the locale defined the <literal>locale</literal> parameter does not exist. This parameter is expressed in the form \"la-CO\" (language-COUNTRY) or \"la\" (language) only."
+msgstr ""
+
+#. TaFFX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id881646219882951\n"
+"help.text"
+msgid "<emph>encoding2</emph>: The character set of the fallback PO file corresponding to the <literal>locale2</literal> argument. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. wbSFz
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Beware that %PRODUCTNAME does not implement all existing character sets."
+msgstr ""
+
+#. 3ApdD
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id891614358528334\n"
"help.text"
-msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods."
+msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods, which is useful for creating POT files."
msgstr ""
-#. XUTWZ
+#. rFfgF
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id611614358672609\n"
"help.text"
-msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the current %PRODUCTNAME locale settings."
+msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the locale defined for the %PRODUCTNAME user interface, which is the same locale defined in the <literal>OfficeLocale</literal> property of the <link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"OfficeLocale_link\">Platform</link> service."
msgstr ""
-#. F998n
+#. FewYJ
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id391625855630975\n"
"help.text"
-msgid "The example above will result in an runtime error if the PO file for the current locale does not exist in the specified folder."
+msgid "The example above will result in an runtime error if the PO file corresponding to the <literal>OfficeLocale</literal> locale does not exist in the specified folder."
msgstr ""
-#. Ab7iH
+#. gSzLN
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id321614358809763\n"
"help.text"
-msgid "In the example below, both the folder name and locale settings are explicitly defined to be Belgian French."
+msgid "In the example below, the locale is explicitly defined to be Belgian French (\"fr-BE\"), hence the service will load the file \"fr-BE.po\" from the folder \"C:\\myPOFiles\". If the file does not exist, an error will occur."
+msgstr ""
+
+#. WpYLF
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id271646220649616\n"
+"help.text"
+msgid "To avoid errors, it is possible to specify a preferred and a fallback locale and encoding. The following example will first try to load the file \"fr-BE.po\" from the specified folder and if it does not exist, the file \"en-US.po\" will be loaded."
msgstr ""
#. UGFWB
@@ -18826,6 +18952,15 @@ msgctxt ""
msgid "The examples above can be translated to Python as follows:"
msgstr ""
+#. Z5Pb3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301614358956087\n"
+"help.text"
+msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgstr ""
+
#. 6mcLb
#: sf_l10n.xhp
msgctxt ""
@@ -19492,22 +19627,22 @@ msgctxt ""
msgid "The examples above can be written in Python as follows:"
msgstr ""
-#. ENT7Q
+#. 6LQF4
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"pyc_id981636717957632\n"
"help.text"
-msgid "msg = f\"Menu item: {s_args[0]}\\n\""
+msgid "msg = f\"Menu name: {s_args[0]}\\n\""
msgstr ""
-#. 8MYNj
+#. GPKGe
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"pyc_id851636718008427\n"
"help.text"
-msgid "msg += f\"Menu name: {s_args[1]}\\n\""
+msgid "msg += f\"Menu item: {s_args[1]}\\n\""
msgstr ""
#. EfEaE
@@ -25963,13 +26098,13 @@ msgctxt ""
msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
-#. TxY93
+#. shCRf
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id201588520551463\n"
"help.text"
-msgid "Returns a document object referring to either the active window, a given window or the active document."
+msgid "Returns an open document object referring to either the active window, a given window or the active document."
msgstr ""
#. xgMAv
@@ -26278,13 +26413,13 @@ msgctxt ""
msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
msgstr ""
-#. khKSW
+#. Em5in
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191611153511038\n"
"help.text"
-msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools > Customize > Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools - Customize - Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
msgstr ""
#. NnBWM
@@ -26440,6 +26575,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. YFLf6
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Writer</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. 3LPrN
#: sf_writer.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/00.po b/source/am/helpcontent2/source/text/scalc/00.po
index ad0c506e3e2..9416f9a53f6 100644
--- a/source/am/helpcontent2/source/text/scalc/00.po
+++ b/source/am/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2021-01-25 14:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/am/>\n"
@@ -1105,6 +1105,24 @@ msgctxt ""
msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph>.</variable>"
msgstr ""
+#. YELPK
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id971647297529392\n"
+"help.text"
+msgid "<variable id=\"tools_forms\">Choose <emph>Tools - Forms</emph>.</variable>"
+msgstr ""
+
+#. QLPxD
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id371647273694433\n"
+"help.text"
+msgid "<variable id=\"share_spreadsheet\">Choose <menuitem>Tools - Share Spreadsheet</menuitem></variable>"
+msgstr ""
+
#. uHRwy
#: 00000406.xhp
msgctxt ""
@@ -1132,14 +1150,14 @@ msgctxt ""
msgid "Choose <emph>Data - Calculate - Recalculate</emph>."
msgstr ""
-#. egZqC
+#. CwoaA
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3149257\n"
"help.text"
-msgid "F9"
-msgstr "F9"
+msgid "Press <keycode>F9</keycode>"
+msgstr ""
#. EA2vV
#: 00000406.xhp
@@ -1150,6 +1168,33 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph>."
msgstr ""
+#. CAGQA
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id891645217179561\n"
+"help.text"
+msgid "Choose <menuitem>Data - Calculate - Recalculate hard</menuitem>."
+msgstr ""
+
+#. e6kAE
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id21645217233263\n"
+"help.text"
+msgid "Press <keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>"
+msgstr ""
+
+#. soEE4
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id31645223233125\n"
+"help.text"
+msgid "Select a formula cell or a formula cell range and choose <menuitem>Data - Calculate - Formula to values</menuitem>"
+msgstr ""
+
#. YmRzU
#: 00000406.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index bf9dbb20fc2..a5e61eb2c35 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
"PO-Revision-Date: 2021-10-31 12:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/am/>\n"
@@ -15235,13 +15235,13 @@ msgctxt ""
msgid "RANDBETWEEN.NV(Bottom; Top)"
msgstr ""
-#. q82vw
+#. Cwb6C
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id91590242400917\n"
"help.text"
-msgid "Returns an non-volatile integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive). A non-volatile function is not recalculated at new input events or pressing <keycode>F9</keycode>. However, the function is recalculated when pressing <keycode>F9</keycode> with the cursor on the cell containing the function, when opening the file, and when <emph>Top</emph> or <emph>Bottom</emph> are recalculated."
+msgid "Returns an non-volatile integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive). A non-volatile function is not recalculated at new input events or pressing <keycode>F9</keycode>. However, the function is recalculated when pressing <keycode>F9</keycode> with the cursor on the cell containing the function, when opening the file, when using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>) and when <emph>Top</emph> or <emph>Bottom</emph> are recalculated."
msgstr ""
#. AngvN
@@ -15388,13 +15388,13 @@ msgctxt ""
msgid "RAND.NV()"
msgstr ""
-#. QARNV
+#. G5FWM
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id271590239748534\n"
"help.text"
-msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing <keycode>F9</keycode>, except when the cursor is on the cell containing the function. The function is recalculated when opening the file."
+msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing <keycode>F9</keycode>, except when the cursor is on the cell containing the function or using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>). The function is recalculated when opening the file."
msgstr ""
#. sCwno
@@ -46852,49 +46852,31 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Calculate\">In either mode, with formula cell(s) selected pressing F9 recalculates the currently selected cells and formula cells that depend on them. This can be useful after reading documents with recalculation disabled and individual cells need recalculation.</ahelp>"
msgstr ""
-#. jVUni
+#. g7GEo
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"par_id315475899\n"
"help.text"
-msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
-msgstr "ይጫኑ F9 እንደገና ለ ማስላት ይጫኑ Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 ሁሉንም መቀመሪያ በ ሰነድ ውስጥ እንደገና ለ ማስላት"
-
-#. wosFk
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id3150793\n"
-"help.text"
-msgid "Recalculation options are, Recalculation on File Load, with values:"
+msgid "Press <keycode>F9</keycode> to recalculate. Press <keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode> to recalculate all formulas in the document, including Add-In functions and non-volatile functions."
msgstr ""
-#. Cr8g8
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id3150795\n"
-"help.text"
-msgid "Always recalculate, Never recalculate (default option), Prompt user."
-msgstr ""
-
-#. TCBFm
+#. qyZ6P
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
-"par_id315475855\n"
+"par_id3150799\n"
"help.text"
-msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document, including Add-In functions. The hard recalculation correctly recalculates all formula cells."
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
msgstr ""
-#. qyZ6P
+#. a9keX
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
-"par_id3150799\n"
+"par_id641645233417894\n"
"help.text"
-msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgid "<link href=\"text/shared/optionen/01060900.xhp\" name=\"recalculationoptions\">Recalculation options</link>"
msgstr ""
#. CWRgk
@@ -52666,13 +52648,22 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/calculate.xhp\" name=\"Calculate\">Calculate</link>"
msgstr ""
-#. CFB7A
+#. 8YGcD
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
"par_id241584668179318\n"
"help.text"
-msgid "<ahelp hid=\".\">Commands to calculate formula cells.</ahelp>"
+msgid "Commands to calculate formula cells."
+msgstr ""
+
+#. f2aRJ
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id251645222672072\n"
+"help.text"
+msgid "Choose <menuitem>Data - Calculate</menuitem>"
msgstr ""
#. 9AbDs
@@ -54430,6 +54421,51 @@ msgctxt ""
msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
msgstr "<ahelp hid=\".\">መቀየሪያ <emph>ነጥቦች ማረሚያ</emph> ዘዴ ለ ገባው ነፃ መስመር ማብሪያ እና ማጥፊያ </ahelp>"
+#. 363bk
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formula to values"
+msgstr ""
+
+#. tthof
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"bm_id321645231251889\n"
+"help.text"
+msgid "<bookmark_value>convert;formula to values</bookmark_value><bookmark_value>replace formula with values</bookmark_value><bookmark_value>recalculate;formula to values</bookmark_value><bookmark_value>formula to values;convert</bookmark_value><bookmark_value>formula to values;recalculate</bookmark_value>"
+msgstr ""
+
+#. u3A5z
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"hd_id701645222861113\n"
+"help.text"
+msgid "<variable id=\"formula2valueh1\"><link href=\"text/scalc/01/formula2value.xhp\" name=\"formula to values\">Formula to value</link></variable>"
+msgstr ""
+
+#. CATpt
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"par_id501645222861116\n"
+"help.text"
+msgid "Replaces the formula cell with value calculated by the formula. The formula is lost."
+msgstr ""
+
+#. AKrcm
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"par_id51645230882532\n"
+"help.text"
+msgid "Use this command to convert formula cells into data cells. The converted cells contents becomes static and will not be recalculated."
+msgstr ""
+
#. ebLBc
#: ful_func.xhp
msgctxt ""
@@ -67444,6 +67480,123 @@ msgctxt ""
msgid "Limit the maximum numbers of rows to a specified value or leave undefined, but limited to the %PRODUCTNAME Calc row limit."
msgstr ""
+#. AWPkL
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"tit\n"
+"help.text"
+msgid "Recalculate hard"
+msgstr ""
+
+#. EB6vW
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"bm_id351645231629404\n"
+"help.text"
+msgid "<bookmark_value>calculate;recalculate hard</bookmark_value> <bookmark_value>formulas;recalculate hard</bookmark_value> <bookmark_value>calculate;force recalculation</bookmark_value> <bookmark_value>formulas;force recalculation</bookmark_value> <bookmark_value>non volatile functions;force recalculation</bookmark_value> <bookmark_value>cell contents;force recalculation</bookmark_value>"
+msgstr ""
+
+#. WXR6C
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"hd_id611645217532285\n"
+"help.text"
+msgid "<variable id=\"recalculatehardh1\"><link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\">Recalculate Hard</link></variable>"
+msgstr ""
+
+#. gCAFM
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"par_id631645217532291\n"
+"help.text"
+msgid "Recalculates all formulas in the document, including Add-In functions and non-volatile functions."
+msgstr ""
+
+#. uDfgm
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"par_id361645227084327\n"
+"help.text"
+msgid "The <menuitem>Recalculate Hard</menuitem> command forces recalculation of all formula cells of the spreadsheet document, including explicit non-volatile functions, even if no new input event exist. Examples of explicit non-volatile functions are <link href=\"text/scalc/01/04060106.xhp#rand_nv\" name=\"RAND.NV\">RAND.NV</link> and <link href=\"text/scalc/01/04060106.xhp#randbetween_nv\" name=\"RANDBETWEEN.NV\">RANDBETWEEN.NV</link>."
+msgstr ""
+
+#. t5LiZ
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sharing Spreadsheets"
+msgstr ""
+
+#. nGSyy
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"bm_id671647274159909\n"
+"help.text"
+msgid "<bookmark_value>share spreadsheet</bookmark_value> <bookmark_value>spreadsheet;collaboration</bookmark_value> <bookmark_value>spreadsheet;share</bookmark_value>"
+msgstr ""
+
+#. 3vzpA
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"hd_id461647272004705\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/shared_spreadsheet.xhp\" name=\"Share spreadsheet\">Share Spreadsheet</link></variable>"
+msgstr ""
+
+#. KZGLG
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id551647272004709\n"
+"help.text"
+msgid "Sharing a spreadsheet allows several users to open the same file for editing at the same time."
+msgstr ""
+
+#. 9BuYS
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id211647275285230\n"
+"help.text"
+msgid "The spreadsheet needs to be on a shared drive, server, website, or similar. Some conditions must be met on operating systems with user permission management:"
+msgstr ""
+
+#. 7Cbn3
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id621647275321672\n"
+"help.text"
+msgid "The shared file needs to reside in a location which is accessible by all collaborators."
+msgstr ""
+
+#. 6hGDF
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id731647275360618\n"
+"help.text"
+msgid "The file permissions for both the document and the corresponding lock file need to be set so that all collaborators can create, delete, and change the files."
+msgstr ""
+
+#. UhRSD
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id631647275500217\n"
+"help.text"
+msgid "In order to correctly identify the changes, each collaborator should enter their name in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - User Data</menuitem> on the Menu bar."
+msgstr ""
+
#. k7H5Y
#: solver.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared.po b/source/am/helpcontent2/source/text/shared.po
index 807f05429cf..d203a694a1d 100644
--- a/source/am/helpcontent2/source/text/shared.po
+++ b/source/am/helpcontent2/source/text/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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -277,14 +277,23 @@ msgctxt ""
msgid "Fontwork Gallery"
msgstr "የ ፊደል ስራ አዳራሽ"
-#. Zcwt5
+#. A6ecD
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id81646926301557\n"
+"help.text"
+msgid "<image src=\"cmd/lc_fontworkgalleryfloater.svg\" id=\"img_id311646926301559\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id331646926301560\">Icon Fontwork Gallery</alt></image>"
+msgstr ""
+
+#. zBxMN
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
"par_idN10571\n"
"help.text"
-msgid "Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object."
-msgstr "የ ፊደል ስራ አዳራሽ መክፈቻ ሌሎች ቅድመ እይታዎችን የሚመርጡበት: ይጫኑ እሺ ለመፈጸም አዲስ የ ፊደል ስራ ባህሪዎችን እቃ"
+msgid "Opens the Fontwork Gallery where you can select another preview. Click <emph>OK</emph> to apply the new set of properties to your Fontwork object."
+msgstr ""
#. nG6ME
#: fontwork_toolbar.xhp
@@ -295,6 +304,15 @@ msgctxt ""
msgid "Fontwork Shape"
msgstr "የ ፊደል ስራ ቅርጽ"
+#. PgQM4
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id51646926964588\n"
+"help.text"
+msgid "<image src=\"cmd/lc_fontwork.svg\" id=\"img_id801646926964589\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761646926964590\">Icon Fontwork Shape</alt></image>"
+msgstr ""
+
#. CTe3i
#: fontwork_toolbar.xhp
msgctxt ""
@@ -313,6 +331,15 @@ msgctxt ""
msgid "Fontwork Same Letter Heights"
msgstr "የ ፊደል ስራ ተመሳሳይ የ ፊደል እርዝመት"
+#. gBD67
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id501646927155677\n"
+"help.text"
+msgid "<image src=\"cmd/lc_fontworksameletterheights.svg\" id=\"img_id41646927155678\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id141646927155679\">Icon Fontwork Same Letter Height</alt></image>"
+msgstr ""
+
#. dyVEY
#: fontwork_toolbar.xhp
msgctxt ""
@@ -331,6 +358,15 @@ msgctxt ""
msgid "Fontwork Alignment"
msgstr "የ ፊደል ስራ ማሰለፊያ"
+#. dPegd
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id211646927242197\n"
+"help.text"
+msgid "<image src=\"cmd/lc_alignhorizontalcenter.svg\" id=\"img_id281646927242198\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id731646927242199\">Icon Fontwork Alignment</alt></image>"
+msgstr ""
+
#. FvBdo
#: fontwork_toolbar.xhp
msgctxt ""
@@ -358,77 +394,68 @@ msgctxt ""
msgid "Fontwork Character Spacing"
msgstr "የ ፊደል ስራ ባህሪ ክፍተት"
-#. WnmJf
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105F7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ፊደል ስራ ባህሪ ክፍተት መስኮት መክፈቻ</ahelp>"
-
-#. DBE3J
+#. uMC4D
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1060E\n"
+"par_id251646927506111\n"
"help.text"
-msgid "Click to apply the character spacing to the selected Fontwork objects."
-msgstr "ለ ተመረጠው የ ፊደል ስራ እቃ የ ባህሪ ክፍተት ለ መፈጸም ይጫኑ"
+msgid "<image src=\"cmd/lc_spacing.svg\" id=\"img_id441646927506112\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821646927506113\">Icon Fontwork Character Spacing</alt></image>"
+msgstr ""
-#. sNDsK
+#. WLvKk
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1061D\n"
+"par_id791646928579114\n"
"help.text"
-msgid "Custom"
-msgstr "ማስተካከያ"
+msgid "Select the character spacing values to apply to the Fontwork object."
+msgstr ""
-#. MJAQ5
+#. xERFF
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
"par_idN10621\n"
"help.text"
-msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
-msgstr "የ ፊደል ስራ ባህሪ ክፍተት ንግግር መክፈቻ: አዲስ የ ባህሪ ክፍተት ዋጋ ማስገባት ይችላሉ"
+msgid "<emph>Custom:</emph> Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
+msgstr ""
-#. HhFZK
+#. sgFfF
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN10638\n"
+"par_idN1063C\n"
"help.text"
-msgid "Value"
-msgstr "ዋጋ"
+msgid "<ahelp hid=\".\"><emph>Value:</emph> enter the Fontwork character spacing value.</ahelp>"
+msgstr ""
-#. W2WE8
+#. 2aGeB
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1063C\n"
+"hd_id981646929182163\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ፊደል ስራ ባህሪ ክፍተት ዋጋ ያስገቡ</ahelp>"
+msgid "Toggle Extrusion"
+msgstr ""
-#. Si9bP
+#. FcnBM
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1064B\n"
+"par_id611646929193237\n"
"help.text"
-msgid "Kern Character Pairs"
-msgstr "የ ጥንድ ባህሪ ፊደል መሀል ክፍተት ማስተካከያ"
+msgid "<image src=\"cmd/lc_extrusiontoggle.png\" id=\"img_id951646929193238\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id211646929193239\">Icon Toggle Extrusion</alt></image>"
+msgstr ""
-#. MpdDc
+#. Dems2
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1064F\n"
+"par_id191646929193241\n"
"help.text"
-msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
-msgstr "መቀየሪያ የ <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning </link> ጥንድ ባህሪዎች ማብሪያ እና ማጥፊያ"
+msgid "Switches the 3D effects on and off for the Fontwork objects."
+msgstr ""
#. yEKhT
#: main0108.xhp
@@ -1213,6 +1240,15 @@ msgctxt ""
msgid "If an SQL statement is the basis for a form (see <emph>Form Properties</emph> - tab <emph>Data</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph>Data Source</emph></link>), then the filter and sort functions are only available when the SQL statement refers to only one table and is not written in the native SQL mode."
msgstr "ይህ የ SQL አረፍተ ነገር የ ፎርም መሰረት ነው (ይመልከቱ <emph> የ ፎርም ባህሪዎች </emph> - tab <emph> ዳታ </emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph> የ ዳታ ምንጭ </emph></link>) እና ከዛ ማጣሪያ እና መለያ ተግባሮች ዝግጁ ይሆናሉ የ SQL አረፍተ ነገር የሚያመሳክረው አንድ ሰንጠረዥ ነው እና በ native SQL ዘዴ የ ተጻፈ አይደለም"
+#. Ck3Di
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"hd_id3156448\n"
+"help.text"
+msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
+msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">መዝገብ መፈለጊያ</link>"
+
#. daKA6
#: main0213.xhp
msgctxt ""
@@ -1240,14 +1276,14 @@ msgctxt ""
msgid "First Record"
msgstr "የ መጀመሪያው መዝገብ"
-#. nDepA
+#. 4VXqZ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3154013\n"
"help.text"
-msgid "<image id=\"img_id3150010\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150010\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150010\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150010\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150010\" src=\"cmd/lc_firstrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150010\">Icon First Record</alt></image>"
+msgstr ""
#. VCqM6
#: main0213.xhp
@@ -1267,14 +1303,14 @@ msgctxt ""
msgid "Previous Record"
msgstr "ቀደም ያለው መዝገብ"
-#. pAiKq
+#. AgQb3
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3145647\n"
"help.text"
-msgid "<image id=\"img_id3147394\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147394\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147394\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147394\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3147394\" src=\"cmd/lc_prevrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147394\">Icon Previous Record</alt> </image>"
+msgstr ""
#. gitqo
#: main0213.xhp
@@ -1294,14 +1330,14 @@ msgctxt ""
msgid "Next Record"
msgstr "የሚቀጥለው መዝገብ"
-#. zrwqF
+#. ShvmR
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3146913\n"
"help.text"
-msgid "<image id=\"img_id3150753\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150753\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150753\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150753\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150753\" src=\"cmd/lc_nextrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150753\">Icon Next Record</alt></image>"
+msgstr ""
#. BJBj8
#: main0213.xhp
@@ -1321,14 +1357,14 @@ msgctxt ""
msgid "Last Record"
msgstr "የ መጨረሻው መዝገብ"
-#. 7Rc9Q
+#. up7uJ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3155337\n"
"help.text"
-msgid "<image id=\"img_id3163808\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163808\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3163808\" src=\"cmd/lc_lastrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3163808\">Icon Last Record</alt></image>"
+msgstr ""
#. 65BvC
#: main0213.xhp
@@ -1339,6 +1375,33 @@ msgctxt ""
msgid "<ahelp hid=\".uno:LastRecord\">Takes you to the last record.</ahelp>"
msgstr "<ahelp hid=\".uno:LastRecord\">ወደ መጨረሻው መዝገብ ይወስዶታል</ahelp>"
+#. aKiBF
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"hd_id3149967\n"
+"help.text"
+msgid "New Record"
+msgstr "አዲስ መዝገብ"
+
+#. D8UvX
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"par_id3149735\n"
+"help.text"
+msgid "<image id=\"img_id3155578\" src=\"cmd/lc_newrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155578\">Icon New Record</alt></image>"
+msgstr ""
+
+#. e4GJo
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"par_id3148460\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewRecord\">Creates a new record.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewRecord\">አዲስ መዝገብ ይፈጥራል</ahelp>"
+
#. xhXB3
#: main0213.xhp
msgctxt ""
@@ -1348,14 +1411,14 @@ msgctxt ""
msgid "Save Record"
msgstr "መዝገብ ማስቀመጫ"
-#. 8jt28
+#. aLCSc
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3150647\n"
"help.text"
-msgid "<image id=\"img_id3150941\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150941\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150941\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150941\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150941\" src=\"cmd/lc_recsave.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150941\">Icon</alt></image>"
+msgstr ""
#. Dbdf5
#: main0213.xhp
@@ -1375,14 +1438,14 @@ msgctxt ""
msgid "Undo: Data entry"
msgstr "መተው: ዳታ ማስገባቱን"
-#. PUZuM
+#. AbFTp
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3166423\n"
"help.text"
-msgid "<image id=\"img_id3156138\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156138\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156138\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156138\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3156138\" src=\"cmd/lc_recundo.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156138\">Icon Undo Data Entry</alt></image>"
+msgstr ""
#. GAZ7t
#: main0213.xhp
@@ -1393,68 +1456,59 @@ msgctxt ""
msgid "<ahelp hid=\".uno:RecUndo\">Allows you to undo a data entry.</ahelp>"
msgstr "<ahelp hid=\".uno:RecUndo\">የ ዳታ ማስገቢያውን መተው ያስችሎታል</ahelp>"
-#. aKiBF
-#: main0213.xhp
-msgctxt ""
-"main0213.xhp\n"
-"hd_id3149967\n"
-"help.text"
-msgid "New Record"
-msgstr "አዲስ መዝገብ"
-
-#. 6m8Ym
+#. BEGSZ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3149735\n"
+"hd_id3153659\n"
"help.text"
-msgid "<image id=\"img_id3155578\" src=\"cmd/sc_newrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155578\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_newrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155578\">ምልክት</alt></image>"
+msgid "Delete Record"
+msgstr "መዝገብ ማጥፊያ"
-#. e4GJo
+#. QiWg2
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3148460\n"
+"par_id3145584\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewRecord\">Creates a new record.</ahelp>"
-msgstr "<ahelp hid=\".uno:NewRecord\">አዲስ መዝገብ ይፈጥራል</ahelp>"
+msgid "<image id=\"img_id3166434\" src=\"cmd/lc_deleterecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166434\">Icon Delete Record</alt></image>"
+msgstr ""
-#. BEGSZ
+#. noMmE
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"hd_id3153659\n"
+"par_id3148817\n"
"help.text"
-msgid "Delete Record"
-msgstr "መዝገብ ማጥፊያ"
+msgid "<ahelp hid=\".uno:DeleteRecord\">Deletes a record. A query needs to be confirmed before deleting.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRecord\">መዝገብ ማጥፊያ: ጥያቄ መዝገብ ከማጥፋቱ በፊት ማረጋገጫ ይጠይቃል</ahelp>"
-#. GBGFJ
+#. oon6s
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3145584\n"
+"hd_id161647003427601\n"
"help.text"
-msgid "<image id=\"img_id3166434\" src=\"cmd/sc_deleterecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3166434\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166434\" src=\"cmd/sc_deleterecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3166434\">ምልክት</alt></image>"
+msgid "Refresh Control"
+msgstr ""
-#. noMmE
+#. zuPjH
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3148817\n"
+"par_id861647005853278\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteRecord\">Deletes a record. A query needs to be confirmed before deleting.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteRecord\">መዝገብ ማጥፊያ: ጥያቄ መዝገብ ከማጥፋቱ በፊት ማረጋገጫ ይጠይቃል</ahelp>"
+msgid "<image src=\"cmd/lc_refreshformcontrol.svg\" id=\"img_id901647005853278\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id581647005853278\">Icon Refresh Control</alt></image>"
+msgstr ""
-#. Ck3Di
+#. 8RmLu
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"hd_id3156448\n"
+"par_id811647005853278\n"
"help.text"
-msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
-msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">መዝገብ መፈለጊያ</link>"
+msgid "Refresh current control"
+msgstr ""
#. BUNUA
#: main0213.xhp
@@ -1555,41 +1609,32 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">ሜዳ መጨመሪያ</link>"
-#. wRQBB
+#. ibj9F
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
-"hd_id3150669\n"
+"hd_id3146815\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">ቡድን</link>"
-
-#. wGJxh
-#: main0226.xhp
-msgctxt ""
-"main0226.xhp\n"
-"hd_id3147335\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">መለያያ</link>"
+msgid "Automatic Control Focus"
+msgstr ""
-#. xGUB3
+#. gg2Ag
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
-"hd_id3156024\n"
+"par_id3150261\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
-msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">ቡድን ማስገቢያ</link>"
+msgid "<image id=\"img_id3149351\" src=\"cmd/sc_autocontrolfocus.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149351\">Icon</alt></image>"
+msgstr ""
-#. 2C7BG
+#. ZbBmL
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
-"hd_id3149295\n"
+"par_id3109848\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
-msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">ከ ቡድን መውጫ</link>"
+msgid "<ahelp hid=\".uno:AutoControlFocus\">If <emph>Automatic Control Focus</emph> is activated, the first form control will be selected when you open the document. If the button is not activated, the text will be selected after opening. The <link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Tab Order</link> that you have specified determines which is the first form control.</ahelp>"
+msgstr ""
#. pE5xB
#: main0226.xhp
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 1a8102db7bc..9f99b49eb9b 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: 2022-02-04 12:33+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\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"
@@ -9907,13 +9907,13 @@ msgctxt ""
msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar."
msgstr ""
-#. vXBgY
+#. sDtNU
#: 00000450.xhp
msgctxt ""
"00000450.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145606\">Sort Order Icon</alt></image>"
+msgid "<image id=\"img_id3145606\" src=\"cmd/lc_datasort.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145606\">Sort Order Icon</alt></image>"
msgstr ""
#. gPJGC
@@ -14722,6 +14722,15 @@ msgctxt ""
msgid "<variable id=\"dvergl\">Choose <menuitem>Edit - Track Changes - Compare Document</menuitem>.</variable>"
msgstr ""
+#. 6BEEG
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id561647263926698\n"
+"help.text"
+msgid "<variable id=\"protect\">Choose <menuitem>Edit - Track Changes - Protect</menuitem></variable>"
+msgstr ""
+
#. DrLSp
#: edit_menu.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index fc7f5b07e0c..cee7d0c0779 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: 2022-02-18 12:38+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\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"
@@ -12364,6 +12364,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Tracks each change that is made in the current document by author and date.</ahelp>"
msgstr ""
+#. FCvXm
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. FJDpx
#: 02230100.xhp
msgctxt ""
@@ -12553,6 +12562,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Prevents a user from deactivating the record changes feature, or from accepting or rejecting changes unless the user enters a password.</ahelp>"
msgstr ""
+#. T47Qe
+#: 02230150.xhp
+msgctxt ""
+"02230150.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. SuBoG
#: 02230200.xhp
msgctxt ""
@@ -12589,6 +12607,15 @@ msgctxt ""
msgid "<variable id=\"text\"><ahelp hid=\".\">Shows or hides recorded changes.</ahelp></variable>"
msgstr "<variable id=\"text\"><ahelp hid=\".\">የ ተመዘገቡ ለውጦችን ማሳያ ወይንም መደበቂያ</ahelp></variable>"
+#. BkpRH
+#: 02230200.xhp
+msgctxt ""
+"02230200.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. yi8Qe
#: 02230200.xhp
msgctxt ""
@@ -12670,23 +12697,23 @@ msgctxt ""
msgid "Comment"
msgstr "አስተያየት"
-#. kACnW
+#. gYF3A
#: 02230300.xhp
msgctxt ""
"02230300.xhp\n"
"hd_id3083278\n"
"help.text"
-msgid "Comment"
-msgstr "አስተያየት"
+msgid "Insert Track Change Comment"
+msgstr ""
-#. PGH6N
+#. 56iv7
#: 02230300.xhp
msgctxt ""
"02230300.xhp\n"
"par_id3148983\n"
"help.text"
-msgid "<variable id=\"kommentartext\"><ahelp hid=\".\">Enter a comment for the recorded change.</ahelp></variable>"
-msgstr "<variable id=\"kommentartext\"><ahelp hid=\".\">ለ ተመዘገበው ለውጥ አስተያየት ያስገቡ</ahelp></variable>"
+msgid "<variable id=\"kommentartext\"><ahelp hid=\".\">Enter a comment for the recorded change.</ahelp> </variable>"
+msgstr ""
#. C9xGD
#: 02230300.xhp
@@ -12715,14 +12742,14 @@ msgctxt ""
msgid "Manage changes"
msgstr "ለውጦች ማስተዳደሪያ"
-#. boG5C
+#. PLMdJ
#: 02230400.xhp
msgctxt ""
"02230400.xhp\n"
"hd_id3145138\n"
"help.text"
-msgid "Manage changes"
-msgstr "ለውጦች ማስተዳደሪያ"
+msgid "<variable id=\"Manage changesh1\"><link href=\"text/shared/01/02230400.xhp\" name=\"Manage changes\">Manage changes</link></variable>"
+msgstr ""
#. frkxa
#: 02230400.xhp
@@ -12733,6 +12760,15 @@ msgctxt ""
msgid "<variable id=\"redlining\"><ahelp hid=\".\">Accept or reject recorded changes.</ahelp></variable>"
msgstr "<variable id=\"redlining\"><ahelp hid=\".\">የ ተመዘገቡትን ለውጦች እቀበላለሁ ወይንም አልቀበልም</ahelp></variable>"
+#. Em4CR
+#: 02230400.xhp
+msgctxt ""
+"02230400.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. y9E7m
#: 02230401.xhp
msgctxt ""
@@ -13453,6 +13489,15 @@ msgctxt ""
msgid "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">Imports changes made to copies of the same document into the original document. Changes made to footnotes, headers, frames and fields are ignored.</ahelp></variable> Identical changes are merged automatically."
msgstr "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">በ ኮፒ ላይ የ ተደረገውን ለውጥ ማምጫ ወደ ተመሳሳይ ሰነድ ወደ ዋናው ሰነድ: የ ተፈጸመ ለውጥ በ ግርጌ ማስታወሻ: በ ራስጌዎች: ክፈፎች: እና ሜዳዎች ላይ ይተዋል </ahelp></variable> ተመሳሳይ ለውጦች ራሱ በራሱ ይዋሀዳል"
+#. TDL3V
+#: 02230500.xhp
+msgctxt ""
+"02230500.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. fogGd
#: 02240000.xhp
msgctxt ""
@@ -13462,14 +13507,14 @@ msgctxt ""
msgid "Compare Document"
msgstr "ሰነድ ማወዳደሪያ"
-#. GWDPD
+#. gRCCF
#: 02240000.xhp
msgctxt ""
"02240000.xhp\n"
"hd_id3149877\n"
"help.text"
-msgid "Compare Document"
-msgstr "ሰነድ ማወዳደሪያ"
+msgid "<variable id=\"Compare Documenth1\"><link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link></variable>"
+msgstr ""
#. hoReE
#: 02240000.xhp
@@ -13480,6 +13525,15 @@ msgctxt ""
msgid "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Compares the current document with a document that you select.</ahelp></variable> The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking <emph>Reject</emph>, and then clicking <emph>Insert</emph>."
msgstr "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">እርስዎ ከ መረጡት ሰነድ ጋር የ አሁኑን ሰነድ ማወዳደሪያ </ahelp></variable> የ ተመረጠው ሰነድ ይዞታ ምልክት ይደረግበታል ለማጥፋት በ ንግግር መክፈቻ ውስጥ: እርስዎ ከ ፈለጉ እርስዎ ማስገባት ይችላሉ የ ተመረጠውን ፋይል ይዞታዎች ወደ አሁኑ ሰነድ ውስጥ በ መምረጥ አስፈላጊ የ ጠፋ ማስገቢያዎችን: መጫን <emph> አልቀበልም </emph> እና ከዛ ይጫኑ <emph> ማስገቢያ </emph>"
+#. JUG2v
+#: 02240000.xhp
+msgctxt ""
+"02240000.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. RncNB
#: 02240000.xhp
msgctxt ""
@@ -42712,24 +42766,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/accelconfigpage/save\">Saves the current shortcut key configuration, so that you can load it later.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/accelconfigpage/save\">የ አሁኑን አቋራጭ ቁልፍ ማዋቀሪያ ማስቀመጫ: ስለዚህ እርስዎ በኋላ መጫን እንዲችሉ </ahelp>"
-#. 8FyVA
-#: 06140200.xhp
-msgctxt ""
-"06140200.xhp\n"
-"hd_id3150824\n"
-"help.text"
-msgid "Reset"
-msgstr "እንደነበር መመለሻ"
-
-#. TnfSW
-#: 06140200.xhp
-msgctxt ""
-"06140200.xhp\n"
-"par_id756248\n"
-"help.text"
-msgid "<ahelp hid=\".\">Resets modified values back to the default values.</ahelp>"
-msgstr "<ahelp hid=\".\">እንደ ነበር መመለሻ የ ተሻሻሉ ዋጋዎችን ወደ ነባር ዋጋቸው</ahelp>"
-
#. D33Wg
#: 06140200.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index b94a9d1a30b..85a1d0ce985 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2020-02-05 07:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/am/>\n"
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Icon on the <emph>Insert</emph> toolbar (you may need to enable this initially invisible icon):"
msgstr "ምልክት በ <emph>ማስገቢያ</emph> እቃ መደርደሪያ ላይ (ይህን ማስቻል ያስፈልጋል በ ቅድሚያ የማይታይ ምልክት):"
-#. h7uSA
+#. D33rn
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3155341\n"
"help.text"
-msgid "<image id=\"img_id3150943\" src=\"cmd/sc_config.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150943\">Icon</alt></image>"
+msgid "<image id=\"img_id3150943\" src=\"cmd/lc_choosecontrols.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150943\">Icon Select</alt></image>"
msgstr ""
#. Dbydo
@@ -817,13 +817,13 @@ msgctxt ""
msgid "Select"
msgstr "ይምረጡ"
-#. RGwii
+#. fgdPL
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3156106\n"
"help.text"
-msgid "<image id=\"img_id3153516\" src=\"cmd/sc_drawselect.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153516\">Icon</alt></image>"
+msgid "<image id=\"img_id3153516\" src=\"cmd/lc_selectobject.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153516\">Icon Select</alt></image>"
msgstr ""
#. G4itx
@@ -835,131 +835,149 @@ msgctxt ""
msgid "This icon switches the mouse pointer to the select mode, or deactivates this mode. The select mode is used to select the controls of the current form."
msgstr "ይህ ምልክት ይቀይራል የ አይጥ መጠቆሚያውን ወደ መምረጫ ዘዴ: ወይንም ይህን ዘዴ ማቦዘኛ: የ መምረጫ ዘዴ የሚጠቀሙት የ መቆጣጠሪያዎች ለ መምረጥ ነው በ አሁኑ ፎርም ውስጥ"
-#. bHC3y
+#. PaHBt
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3146914\n"
+"par_idN11B57\n"
"help.text"
-msgid "Check Box"
-msgstr "ምልክት ማድረጊያ ሳጥን"
+msgid "Wizards On/Off"
+msgstr "አዋቂዎች ማብሪያ/ማጥፊያ"
-#. xGAoN
+#. fhDwK
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148483\n"
+"par_idN11B65\n"
"help.text"
-msgid "<image id=\"img_id3156380\" src=\"cmd/sc_checkbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156380\">Icon Check Box</alt></image>"
+msgid "<image id=\"img_id6128727\" src=\"cmd/lc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6128727\">Icon Toggle Form Control Wizards</alt></image>"
msgstr ""
-#. fbJjh
+#. ySzEv
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3153927\n"
+"par_idN11B76\n"
"help.text"
-msgid "<ahelp hid=\".uno:CheckBox\">Creates a check box.</ahelp> Check boxes allow you to activate or deactivate a function in a form."
-msgstr "<ahelp hid=\".uno:CheckBox\">ምልክት ማድረጊያ ሳጥን መፍጠሪያ </ahelp> ምልክት ማድረጊያ ሳጥን የሚያስችለው ተግባሮችን ለማስነሳት እና ለማቦዘን ነው"
+msgid "Turns on and turns off the automatic form controls wizards."
+msgstr "ራሱ በራሱ የ ፎርም መቆጣጠሪያዎች አዋቂ ማብሪያ ማጥፊያ"
-#. gpFGz
+#. DAjtU
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3153794\n"
+"par_id6403088\n"
"help.text"
-msgid "Text Box"
-msgstr "የ ጽሁፍ ሳጥን"
+msgid "These wizards help you to enter the properties of list boxes, table controls, and other controls."
+msgstr "ይህ አዋቂ ይረዳዎታል የ ዝርዝር ሳጥኖችን ባህሪዎች ለማስገባት: የ ሰንጠረዥ መቆጣጠሪያዎች እና ሌሎች መቆጣጠሪያዎችን"
-#. jxTx3
+#. aoQcs
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3163665\n"
+"par_idN10CF7\n"
"help.text"
-msgid "<image id=\"img_id3153266\" src=\"cmd/sc_edit.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153266\">Icon Text Box</alt></image>"
+msgid "Form Design"
+msgstr "ንድፍ መፍጠሪያ"
+
+#. JCSYg
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_id671646965582973\n"
+"help.text"
+msgid "<image src=\"cmd/lc_formdesigntools.svg\" id=\"img_id1001646965582975\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641646965582976\">Icon Form Design Tools</alt></image>"
msgstr ""
-#. p3BAw
+#. vxxz2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3158444\n"
+"par_idN10D0D\n"
"help.text"
-msgid "<ahelp hid=\".uno:Edit\">Creates a text box.</ahelp> Text boxes are fields in which the user can enter text. In a form, text boxes display data or allow for new data input."
-msgstr "<ahelp hid=\".uno:Edit\">የ ጽሁፍ ሳጥን መፍጠሪያ</ahelp> የ ጽሁፍ ሳጥኖች ተጠቃሚው ጽሁፍ በፎርም ውስጥ የሚያስገባባቸው ሜዳዎ ናቸው: የ ጽሁፍ ሳጥኖች ዳታ ያሳያሉ ወይንም አዲስ ዳታ ማስገባት ያስችላሉ"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/main0226.xhp\"><emph>Form Design</emph></link> toolbar.</ahelp>"
+msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/shared/main0226.xhp\"><emph>ንድፍ መፍጠሪያ</emph></link> እቃ መደርደሪያ</ahelp>"
-#. cEtdx
+#. yDFji
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3151218\n"
+"hd_id3145618\n"
"help.text"
-msgid "Formatted Field"
-msgstr "የ ሜዳ አቀራረብ"
+msgid "Label Field"
+msgstr "የ ምልክት ሜዳ"
-#. ehyrQ
+#. z6KGA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154836\n"
+"par_id3145295\n"
"help.text"
-msgid "<image id=\"img_id3143277\" src=\"cmd/sc_formattedfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143277\">Icon Formatted Field</alt></image>"
+msgid "<image id=\"img_id3151017\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151017\">Icon Label Field</alt></image>"
msgstr ""
-#. W4Jis
+#. xAedG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3147547\n"
+"par_id3148534\n"
"help.text"
-msgid "<ahelp hid=\".uno:FormattedField\">Creates a formatted field.</ahelp> A formatted field is a text box in which you can define how the inputs and outputs are formatted, and which limiting values apply."
-msgstr "<ahelp hid=\".uno:FormattedField\">የ ሜዳ አቀራረብ መፍጠሪያ</ahelp> የ ሜዳ አቀራረብ የ ጽሁፍ ሳጥን ነው እርስዎ የሚወስኑት ማስገቢያ እና ውጤት አቀራረብ: እና የትኞቹ የ መጠን ዋጋዎች እንደሚፈጸሙ"
+msgid "<ahelp hid=\".uno:Label\">Creates a field for displaying text.</ahelp> These labels are only for displaying predefined text. Entries cannot be made in these fields."
+msgstr "<ahelp hid=\".uno:Label\">ሜዳ መፍጠሪያ ጽሁፍ ለ ማሳያ </ahelp> እነዚህ ምልክቶች የሚያሳዩት በ ቅድሚያ የ ተገለጸ ጽሁፍ ብቻ ነው: እና በ እነዚህ ሜዳ ውስጥ ማስገባት አይችሉም"
-#. aVSCN
+#. gpFGz
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3155346\n"
+"hd_id3153794\n"
"help.text"
-msgid "A formatted field has <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">special control properties</link> (choose <emph>Format - Control</emph>)."
-msgstr "የ አቀራረብ ሜዳ <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\"> የተለዩ መቆጣጠሪያ ባህሪዎች አለው </link> (ይምረጡ <emph> አቀራረብ - መቆጣጠሪያ </emph>)"
+msgid "Text Box"
+msgstr "የ ጽሁፍ ሳጥን"
-#. gcjjG
+#. 4jdgA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3148774\n"
+"par_id3163665\n"
"help.text"
-msgid "Push Button"
-msgstr "ቁልፉን ይጫኑ"
+msgid "<image id=\"img_id3153266\" src=\"cmd/lc_edit.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153266\">Icon Text Box</alt></image>"
+msgstr ""
-#. GsVDb
+#. p3BAw
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145801\n"
+"par_id3158444\n"
"help.text"
-msgid "<image id=\"img_id3151073\" src=\"cmd/sc_insertpushbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151073\">Icon Push Button</alt></image>"
-msgstr ""
+msgid "<ahelp hid=\".uno:Edit\">Creates a text box.</ahelp> Text boxes are fields in which the user can enter text. In a form, text boxes display data or allow for new data input."
+msgstr "<ahelp hid=\".uno:Edit\">የ ጽሁፍ ሳጥን መፍጠሪያ</ahelp> የ ጽሁፍ ሳጥኖች ተጠቃሚው ጽሁፍ በፎርም ውስጥ የሚያስገባባቸው ሜዳዎ ናቸው: የ ጽሁፍ ሳጥኖች ዳታ ያሳያሉ ወይንም አዲስ ዳታ ማስገባት ያስችላሉ"
-#. KTA7G
+#. bHC3y
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3147046\n"
+"hd_id3146914\n"
"help.text"
-msgid "<ahelp hid=\".uno:Pushbutton\">Creates a push button.</ahelp> This function can be used to execute a command for a defined event, such as a mouse click."
-msgstr "<ahelp hid=\".uno:Pushbutton\">የ መግፊያ ቁልፍ መፍጠሪያ</ahelp> ይህን ተግባር መጠቀም ይችላሉ ትእዛዝ ለማስኬድ ለተገለጽ ሁኔታ: እንደ በ አይጥ መጫኛ"
+msgid "Check Box"
+msgstr "ምልክት ማድረጊያ ሳጥን"
-#. WB9wA
+#. GypEC
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154731\n"
+"par_id3148483\n"
"help.text"
-msgid "You can apply text and graphics to these buttons."
-msgstr "ወደ እነዚህ ቁልፎች ጽሁፍ እና ንድፎች መፈጸም ይችላሉ"
+msgid "<image id=\"img_id3156380\" src=\"cmd/lc_checkbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156380\">Icon Check Box</alt></image>"
+msgstr ""
+
+#. fbJjh
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_id3153927\n"
+"help.text"
+msgid "<ahelp hid=\".uno:CheckBox\">Creates a check box.</ahelp> Check boxes allow you to activate or deactivate a function in a form."
+msgstr "<ahelp hid=\".uno:CheckBox\">ምልክት ማድረጊያ ሳጥን መፍጠሪያ </ahelp> ምልክት ማድረጊያ ሳጥን የሚያስችለው ተግባሮችን ለማስነሳት እና ለማቦዘን ነው"
#. J2PmD
#: 01170000.xhp
@@ -970,13 +988,13 @@ msgctxt ""
msgid "Option Button"
msgstr "አማራጭ ቁልፍ"
-#. qpeu3
+#. DQofS
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3152971\n"
"help.text"
-msgid "<image id=\"img_id3152999\" src=\"cmd/sc_radiobutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Icon Option Button</alt></image>"
+msgid "<image id=\"img_id3152999\" src=\"cmd/lc_radiobutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Icon Option Button</alt></image>"
msgstr ""
#. DJdqY
@@ -997,13 +1015,13 @@ msgctxt ""
msgid "List Box"
msgstr "ዝርዝር ሳጥን"
-#. NBqDr
+#. xeMzN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3154326\n"
"help.text"
-msgid "<image id=\"img_id3154135\" src=\"cmd/sc_listbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154135\">Icon List Box</alt></image>"
+msgid "<image id=\"img_id3154135\" src=\"cmd/lc_listbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154135\">Icon List Box</alt></image>"
msgstr ""
#. Dbwav
@@ -1024,13 +1042,13 @@ msgctxt ""
msgid "Combo Box"
msgstr "መቀላቀያ ሳጥን"
-#. 8M2uc
+#. pdZ4w
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3149981\n"
"help.text"
-msgid "<image id=\"img_id3148817\" src=\"cmd/sc_combobox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148817\">Icon Combo Box</alt></image>"
+msgid "<image id=\"img_id3148817\" src=\"cmd/lc_combobox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148817\">Icon Combo Box</alt></image>"
msgstr ""
#. bUeTF
@@ -1042,392 +1060,410 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ComboBox\">Creates a combo box.</ahelp> A combo box is a single-line list box with a drop-down list from which users choose an option. You can assign the \"read-only\" property to the combo box so that users cannot enter other entries than those found in the list. If the form is bound to a database and the database connection is active, the <link href=\"text/shared/02/01170900.xhp\" name=\"Combo Box Wizard\"><emph>Combo Box Wizard</emph></link> will automatically appear after you insert the combo box in the document."
msgstr "<ahelp hid=\".uno:ComboBox\">የ መቀላቀያ ሳጥን መፍጠሪያ </ahelp> የ መቀላቀያ ሳጥን ነጠላ-መስመር ዝርዝር ሳጥን ከ ወደ ታች-የሚዘረገፍ ዝርዝር ተጠቃሚዎች ምርጫ የሚመርጡበት ነው: እርስዎ መመደብ ይችላሉ ለ \"ንባብ-ብቻ\" ባህሪዎች ለ መቀላቀያ ሳጥን ስለዚህ ተጠቃሚዎች ማስገቢያ አያስገቡም ሌሎች ማስገቢያ በ ዝርዝር ላይ ከሚታየው ሌላ: ፎርሙ ተጣምሮ ከሆነ ከ ዳታቤዝ እና የ ዳታቤዝ ግንኙነቶች ንቁ ከሆነ <link href=\"text/shared/02/01170900.xhp\" name=\"Combo Box Wizard\"><emph> የ መቀላቀያ ሳጥን አዋቂ </emph></link> ራሱ በራሱ ይታያል እርስዎ ካስገቡ በኋላ የ መቀላቀያ ሳጥን በ ሰነድ ውስጥ"
-#. yDFji
+#. gcjjG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3145618\n"
+"hd_id3148774\n"
"help.text"
-msgid "Label Field"
-msgstr "የ ምልክት ሜዳ"
+msgid "Push Button"
+msgstr "ቁልፉን ይጫኑ"
-#. z6KGA
+#. EYKJx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145295\n"
+"par_id3145801\n"
"help.text"
-msgid "<image id=\"img_id3151017\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151017\">Icon Label Field</alt></image>"
+msgid "<image id=\"img_id3151073\" src=\"cmd/sc_pushbutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151073\">Icon Push Button</alt></image>"
msgstr ""
-#. xAedG
+#. KTA7G
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148534\n"
+"par_id3147046\n"
"help.text"
-msgid "<ahelp hid=\".uno:Label\">Creates a field for displaying text.</ahelp> These labels are only for displaying predefined text. Entries cannot be made in these fields."
-msgstr "<ahelp hid=\".uno:Label\">ሜዳ መፍጠሪያ ጽሁፍ ለ ማሳያ </ahelp> እነዚህ ምልክቶች የሚያሳዩት በ ቅድሚያ የ ተገለጸ ጽሁፍ ብቻ ነው: እና በ እነዚህ ሜዳ ውስጥ ማስገባት አይችሉም"
+msgid "<ahelp hid=\".uno:Pushbutton\">Creates a push button.</ahelp> This function can be used to execute a command for a defined event, such as a mouse click."
+msgstr "<ahelp hid=\".uno:Pushbutton\">የ መግፊያ ቁልፍ መፍጠሪያ</ahelp> ይህን ተግባር መጠቀም ይችላሉ ትእዛዝ ለማስኬድ ለተገለጽ ሁኔታ: እንደ በ አይጥ መጫኛ"
-#. aoQcs
+#. WB9wA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN10CF7\n"
+"par_id3154731\n"
"help.text"
-msgid "Form Design"
-msgstr "ንድፍ መፍጠሪያ"
+msgid "You can apply text and graphics to these buttons."
+msgstr "ወደ እነዚህ ቁልፎች ጽሁፍ እና ንድፎች መፈጸም ይችላሉ"
-#. vxxz2
+#. YzDya
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN10D0D\n"
+"hd_id3153316\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/main0226.xhp\"><emph>Form Design</emph></link> toolbar.</ahelp>"
-msgstr "<ahelp hid=\".\">መክፈቻ የ <link href=\"text/shared/main0226.xhp\"><emph>ንድፍ መፍጠሪያ</emph></link> እቃ መደርደሪያ</ahelp>"
+msgid "Image Button"
+msgstr "የ ምስል ቁልፍ"
-#. PaHBt
+#. SpSoG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B57\n"
+"par_id3159622\n"
"help.text"
-msgid "Wizards On/Off"
-msgstr "አዋቂዎች ማብሪያ/ማጥፊያ"
+msgid "<image id=\"img_id3154378\" src=\"cmd/lc_imagebutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154378\">Icon image button</alt></image>"
+msgstr ""
-#. GY3P2
+#. B9Era
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B65\n"
+"par_id3148601\n"
"help.text"
-msgid "<image id=\"img_id6128727\" src=\"cmd/sc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6128727\">Icon</alt></image>"
-msgstr ""
+msgid "<ahelp hid=\".uno:Imagebutton\">Creates a button displayed as an image.</ahelp> Aside from the graphic representation, an image button has the same properties as a \"normal\" button."
+msgstr "<ahelp hid=\".uno:Imagebutton\">እንደ ምስል የሚታይ ቁልፍ መፍጠሪያ </ahelp> ንድፍ ከ መወከል ባሻገር: የ ምስል ቁልፍ ተመሳሳይ ባህሪ ነው ያለው እንደ \"መደበኛ\" ቁልፍ"
-#. ySzEv
+#. cEtdx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B76\n"
+"hd_id3151218\n"
"help.text"
-msgid "Turns on and turns off the automatic form controls wizards."
-msgstr "ራሱ በራሱ የ ፎርም መቆጣጠሪያዎች አዋቂ ማብሪያ ማጥፊያ"
+msgid "Formatted Field"
+msgstr "የ ሜዳ አቀራረብ"
-#. DAjtU
+#. eFvnd
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id6403088\n"
+"par_id3154836\n"
"help.text"
-msgid "These wizards help you to enter the properties of list boxes, table controls, and other controls."
-msgstr "ይህ አዋቂ ይረዳዎታል የ ዝርዝር ሳጥኖችን ባህሪዎች ለማስገባት: የ ሰንጠረዥ መቆጣጠሪያዎች እና ሌሎች መቆጣጠሪያዎችን"
+msgid "<image id=\"img_id3143277\" src=\"cmd/lc_formattedfield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143277\">Icon Formatted Field</alt></image>"
+msgstr ""
-#. DKSBw
+#. W4Jis
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3149436\n"
+"par_id3147547\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">Context Menu Commands</link>"
-msgstr "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">የ አገባብ ዝርዝር ትእዛዞች</link>"
+msgid "<ahelp hid=\".uno:FormattedField\">Creates a formatted field.</ahelp> A formatted field is a text box in which you can define how the inputs and outputs are formatted, and which limiting values apply."
+msgstr "<ahelp hid=\".uno:FormattedField\">የ ሜዳ አቀራረብ መፍጠሪያ</ahelp> የ ሜዳ አቀራረብ የ ጽሁፍ ሳጥን ነው እርስዎ የሚወስኑት ማስገቢያ እና ውጤት አቀራረብ: እና የትኞቹ የ መጠን ዋጋዎች እንደሚፈጸሙ"
-#. MoAVD
+#. aVSCN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11A56\n"
+"par_id3155346\n"
"help.text"
-msgid "Spin Button"
-msgstr "ማሽከርከሪያ ቁልፍ"
+msgid "A formatted field has <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">special control properties</link> (choose <emph>Format - Control</emph>)."
+msgstr "የ አቀራረብ ሜዳ <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\"> የተለዩ መቆጣጠሪያ ባህሪዎች አለው </link> (ይምረጡ <emph> አቀራረብ - መቆጣጠሪያ </emph>)"
-#. 2dBYJ
+#. FDhXd
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11A64\n"
+"hd_id3156040\n"
"help.text"
-msgid "<image id=\"img_id7816400\" src=\"cmd/sc_spinbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id7816400\">Icon</alt></image>"
+msgid "Date Field"
+msgstr "የ ቀን ሜዳ"
+
+#. g7AvH
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_id3149423\n"
+"help.text"
+msgid "<image id=\"img_id3150096\" src=\"cmd/lc_datefield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150096\">Icon Date Field</alt></image>"
msgstr ""
-#. rY5Pe
+#. sSv2y
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11A75\n"
+"par_id3151312\n"
"help.text"
-msgid "<ahelp hid=\".uno:SpinButton\">Creates a spin button.</ahelp>"
-msgstr "<ahelp hid=\".uno:SpinButton\">ማሽከርከሪያ ቁልፍ መፍጠሪያ</ahelp>"
+msgid "<ahelp hid=\".uno:DateField\">Creates a date field.</ahelp> If the form is linked to a database, the date values can be adopted from the database."
+msgstr "<ahelp hid=\".uno:DateField\">የ ቀን ሜዳ መፍጠሪያ</ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ የ ቀን ዋጋዎች ከ ዳታቤዝ ይቀበላል"
-#. L6D5h
+#. rAgZA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id710776\n"
+"par_id3151302\n"
"help.text"
-msgid "If you add a spin button to a Calc spreadsheet, you can use the Data tab page to create a two-way link between the spin button and a cell. As a result, when you change the contents of a cell, the contents of the spin button are updated. Conversely, if you change the value of the spin button, the contents of the cell are updated."
-msgstr "እርስዎ ከ ጨመሩ የ ማሽከርከሪያ ቁልፍ ወደ ሰንጠረዥ ውስጥ: እርስዎ መጠቀም ይችላሉ የዳታ tab ገጽ ለ መፍጠር የ ሁለት-በኩል አገናኝ በ ማሽከርከሪያ ቁልፍ እና በ ክፍል ውስጥ: ውጤቱ የ ክፍሉን ሁኔታ ሲቀይሩ: የ ማሽከርከሪያ ቁልፍ ይሻሻላል: በ ግልባጭ እርስዎ ዋጋ ከ ቀየሩ በ ማሽከርከሪያ ቁልፍ ውስጥ የ ክፍሉ ይዞታ ይሻሻላል"
+msgid "If you assign the \"Dropdown\" property to the date field, the user can open a calendar to select a date under the date field. This also applies to a date field within a <emph>Table Control</emph> field."
+msgstr ""
-#. dHgny
+#. kx8f2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11ABC\n"
+"par_id3154395\n"
"help.text"
-msgid "Scrollbar"
-msgstr "መሸብለያ መደርደሪያ"
+msgid "Date fields can be easily edited by the user with the up arrow and down arrow keys. Depending on the cursor position, the day, month, or the year is can be increased or decreased using the arrow keys."
+msgstr "የ ቀን ሜዳ በቀላሉ ማረም ይቻላል በ ተጠቃሚው ቀስት ወደ ላይ እና ቀስት ወደ ታች ቁልፍ በ መጠቀም: መጠቆሚያው እንዳለበት ሁኔታ የ ቀን: ወር: ወይንም አመት መጨመር ወይንም መቀነስ ይቻላል የ ቀስት ቁልፍ በ መጠቀም"
-#. Mhj4A
+#. zBejA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11ACA\n"
+"par_id3153112\n"
"help.text"
-msgid "<image id=\"img_id8203985\" src=\"cmd/sc_scrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8203985\">Icon</alt></image>"
-msgstr ""
+msgid "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">Specific Remarks on Date Fields</link>."
+msgstr "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">የ ተወሰነ የ ቀን ሜዳ አስተያየት</link>"
-#. RNigC
+#. Qw4Qa
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11ADB\n"
+"hd_id3154652\n"
"help.text"
-msgid "<ahelp hid=\".uno:ScrollBar\">Creates a scrollbar.</ahelp>"
-msgstr "<ahelp hid=\".uno:ScrollBar\">መሸብለያ መደርደሪያ መፍጠሪያ</ahelp>"
+msgid "Numerical Field"
+msgstr "የ ቁጥር ሜዳ"
-#. C8usb
+#. KFezM
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CA3\n"
+"par_id3149396\n"
"help.text"
-msgid "You can specify the following properties for a scrollbar:"
-msgstr "መወሰን ይችላሉ የሚቀጥሉትን ባህሪዎች ለ መሸብለያ መደርደሪያ:"
+msgid "<image id=\"img_id3153012\" src=\"cmd/lc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153012\">Icon Numerical Field</alt></image>"
+msgstr ""
-#. 5NXLp
+#. 3jPvp
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CDA\n"
+"par_id3145601\n"
"help.text"
-msgid "UI name"
-msgstr "የ ተጠቃሚ ገጽታ ስም"
+msgid "<ahelp hid=\".uno:NumericField\">Creates a numerical field.</ahelp> If the form is linked to a database, the numerical values in the form can be adopted from the database."
+msgstr "<ahelp hid=\".uno:NumericField\">የ ቁጥር ሜዳ መፍጠሪያ </ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ የ ቁጥር ዋጋዎች ከ ዳታቤዝ ይቀበላል"
-#. KiE2x
+#. 7u2GY
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CE0\n"
+"hd_id3145147\n"
"help.text"
-msgid "Semantics"
-msgstr "ትርጉም"
+msgid "Group Box"
+msgstr "የ ቡድን ሳጥን"
-#. PNDZB
+#. G7yzH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CE7\n"
+"par_id3159334\n"
"help.text"
-msgid "Scroll value min"
-msgstr "የ መሸብለያ አነስተኝ ዋጋ"
+msgid "<image id=\"img_id3153790\" src=\"cmd/lc_groupbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153790\">Icon Group Box</alt></image>"
+msgstr ""
-#. h7UcE
+#. 3Suwy
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CED\n"
+"par_id3154572\n"
"help.text"
-msgid "Specifies the minimum height or the minimum width of a scrollbar."
-msgstr "ለ መሸብለያ መደርደሪያ አነስተኛ እርዝመት ወይንም አነስተኛ ስፋት መወሰኛ"
+msgid "<ahelp hid=\".uno:GroupBox\">Creates a frame to visually group several controls.</ahelp> <emph>Group boxes</emph> allow you to group option buttons in a frame."
+msgstr ""
-#. 8R3PE
+#. GXbwz
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CF4\n"
+"par_id3148394\n"
"help.text"
-msgid "Scroll value max"
-msgstr "የ መሸብለያ ከፍተኛ ዋጋ"
+msgid "If you insert a group frame into the document, the <link href=\"text/shared/autopi/01120000.xhp\" name=\"Group Element Wizard\"><emph>Group Element Wizard</emph></link> starts, which allows you to easily create an option group."
+msgstr ""
-#. BGGh8
+#. YPpYV
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CFA\n"
+"par_id3150567\n"
"help.text"
-msgid "Specifies the maximum height or the maximum width of a scrollbar."
-msgstr "ለ መሸብለያ መደርደሪያ ከፍተኛ እርዝመት ወይንም ከፍተኛ ስፋት መወሰኛ"
+msgid "<emph>Note:</emph> When you drag a group box over already existing controls and then want to select a control, you have to first open the context menu of the group box and choose <emph>Arrange - Send to Back</emph>. Then select the control while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>."
+msgstr ""
-#. 44sBA
+#. 6DEDD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D01\n"
+"par_id3145615\n"
"help.text"
-msgid "Default scroll value"
-msgstr "ነባር መሸብለያ ዋጋ"
+msgid "<emph>Group boxes</emph> are used only for a visual effect. A functional grouping of option fields can be made through the name definition: under the <link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph>Name</emph></link> properties of all option fields, enter the same name in order to group them."
+msgstr ""
-#. TFnZ8
+#. Aj5PP
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D07\n"
+"hd_id3152369\n"
"help.text"
-msgid "Specifies the default value of a scrollbar, used when the form is reset."
-msgstr "ለ መሸብለያ መደርደሪያ ነባር ዋጋ መወሰኛ ፎርሙ እንደ ነበር በሚመለስበት ጊዜ"
+msgid "Time Field"
+msgstr "የ ሰአት ሜዳ"
-#. bK7Vi
+#. ebcMe
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D0E\n"
+"par_id3153687\n"
"help.text"
-msgid "Orientation"
-msgstr "አቅጣጫ"
+msgid "<image id=\"img_id3155949\" src=\"cmd/lc_timefield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155949\">Icon Time Field</alt></image>"
+msgstr ""
-#. xUPB2
+#. 7apBh
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D14\n"
+"par_id3155399\n"
"help.text"
-msgid "Specifies the orientation of a scrollbar, that is, horizontal or vertical."
-msgstr "በ አግድም ወይንም በ ቁመት የ መሸብለያ መደርደሪያ አቅጣጫ መወሰኛ"
+msgid "<ahelp hid=\".uno:TimeField\">Creates a time field.</ahelp> If the form is linked to a database, the time values for the form can be adopted from the database."
+msgstr "<ahelp hid=\".uno:TimeField\">የ ቀን ሜዳ መፍጠሪያ</ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ የ ቀን ዋጋዎች ከ ዳታቤዝ ይቀበላል"
-#. fmsPT
+#. keYu2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D1B\n"
+"par_id3154764\n"
"help.text"
-msgid "Small change"
-msgstr "ትንሽ ለውጥ"
+msgid "Time fields can be easily edited by the user with the up and down arrow keys. Depending on the cursor position, the hours, minutes, or the seconds are increased or decreased using the arrow keys."
+msgstr "የ ሰአት ሜዳ በቀላሉ ማረም ይቻላል በ ተጠቃሚው ቀስት ወደ ላይ እና ቀስት ወደ ታች ቁልፍ በ መጠቀም: መጠቆሚያው እንዳለበት ሁኔታ የ ሰአት: ደቂቃ: ወይንም ሰከንዶች መጨመር ወይንም መቀነስ ይቻላል የ ቀስት ቁልፍ በ መጠቀም"
-#. ZXezA
+#. EGmCN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D21\n"
+"hd_id3153612\n"
"help.text"
-msgid "Specifies the minimum amount by which you can scroll a scrollbar, for example, by clicking an arrow."
-msgstr "ለ እርስዎ አነስተኛ መጠን እንደሚሸበልሉ መወሰኛ: መሸብለያ መደርደሪያውን: ለምሳሌ: ቀስቱን በ መጫን"
+msgid "Currency Field"
+msgstr "የ ገንዘብ ሜዳ"
-#. CySRJ
+#. Znjzh
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D28\n"
+"par_id3145324\n"
"help.text"
-msgid "Large change"
-msgstr "ትልቅ ለውጥ"
+msgid "<image id=\"img_id3152866\" src=\"cmd/lc_currencyfield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152866\">Icon Currency Field</alt></image>"
+msgstr ""
-#. h3r9X
+#. dc7AD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D2E\n"
+"par_id3145115\n"
"help.text"
-msgid "Specifies the amount that a large step scrolls a scrollbar, for example, when you click between the scrollbar thumb and a scrollbar arrow."
-msgstr "ለ እርስዎ ከፍተኛ መጠን እንደሚሸበልሉ መወሰኛ: መሸብለያ መደርደሪያውን: ለምሳሌ: እርስዎ በሚሸበልሉ ጊዜ በ አውራ ጥፍር እና በ መሸብለያ መደርደሪያ ቀስቱን ሲጫኑ"
+msgid "<ahelp hid=\".uno:CurrencyField\">Creates a currency field.</ahelp> If the form is linked to a database, the currency field contents for in the form can be adopted from the database."
+msgstr "<ahelp hid=\".uno:CurrencyField\">የ ገንዘብ ሜዳ መፍጠሪያ </ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ: የ ገንዘብ ሜዳ ይዞታዎች ለ ፎርሙ ከ ዳታቤዝ ማግኘት ይቻላል"
-#. 34PS4
+#. 2KYgF
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D35\n"
+"hd_id3148825\n"
"help.text"
-msgid "Delay"
-msgstr "ማዘግያ"
+msgid "Pattern Field"
+msgstr "የ ንድፍ ሜዳ"
-#. RAwEx
+#. 3CqxF
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D3B\n"
+"par_id3149742\n"
"help.text"
-msgid "Specifies the delay in milliseconds between scrollbar trigger events. For example, the delay that occurs when you click an arrow button on the scrollbar and hold down the mouse button."
-msgstr "ማዘግያ መወሰኛ በ ሚሊ ሰከንዶች በ መሸብለያ ማስጀመሪያ ሁኔታ መካከል: ለምሳሌ ማዘግያ የሚፈጠረው እርስዎ በሚጫኑ ጊዜ የ ቀስት ቁልፍ በ መሸብለያ መደርደሪያ ላይ እና ተጭነው ይያዙ የ አይጥ ቁልፍ"
+msgid "<image id=\"img_id3148924\" src=\"cmd/lc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148924\">Icon Pattern Field</alt></image>"
+msgstr ""
-#. 4cEzG
+#. 4SYQW
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D42\n"
+"par_id3150122\n"
"help.text"
-msgid "Symbol color"
-msgstr "የ ምልክት ቀለም"
+msgid "<ahelp hid=\".uno:PatternField\">Creates a pattern field.</ahelp> Pattern fields consist of an edit mask and a literal mask. The edit mask determines which data can be entered. The literal mask determines the contents of the pattern field when loading the form."
+msgstr "<ahelp hid=\".uno:PatternField\">የ ድግግሞሽ ሜዳ መፍጠሪያ.</ahelp> የ ድግግሞሽ ሜዳ ይዟል የ edit mask እና የ literal mask. የ edit mask የሚወስነው የትኛው ዳታ እንደሚገባ ነው: የ literal mask የሚወስነው የ ድግግሞሽ ሜዳ ይዞታዎችን ነው: ፎርሙን በሚጭኑ ጊዜ"
-#. wrXfx
+#. NiY7c
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D48\n"
+"par_id3152947\n"
"help.text"
-msgid "Specifies the color of the arrows on the scrollbar."
-msgstr "የ ቀስት ቀለም በ መሸብለያ መደርደሪያ ላይ መወሰኛ"
+msgid "Please note that pattern fields are not exported into HTML format."
+msgstr "እባክዎን ያስታውሱ የ ድግግሞሽ ሜዳዎች መላክ አይቻልም ወደ HTML አቀራረብ"
-#. nqHkR
+#. JBDBc
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D4F\n"
+"hd_id3157996\n"
"help.text"
-msgid "Visible Size"
-msgstr "የሚታይ መጠን"
+msgid "Table Control"
+msgstr "ሰንጠረዥ መቆጣጠሪያ"
-#. bGBpN
+#. bxMfG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D55\n"
+"par_id3156402\n"
"help.text"
-msgid "Specifies the size of the scrollbar thumb in \"value units\". For example, a value of <emph>(\"Scroll value max.\" minus \"Scroll value min.\") / 2</emph> results in a scrollbar thumb that occupies half of the scrollbar."
+msgid "<image id=\"img_id3146324\" src=\"cmd/lc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146324\">Icon Table Control</alt></image>"
msgstr ""
-#. kPyUP
+#. YNpAD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D58\n"
+"par_id3154579\n"
"help.text"
-msgid "To make the width of the scrollbar equal to the height of the scrollbar, set the <emph>Visible Size</emph> to zero."
-msgstr ""
+msgid "<ahelp hid=\".\">Creates a <emph>table control</emph> to display a database table.</ahelp> If you create a new table control, the <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph>Table Element Wizard</emph></link> appears."
+msgstr "<ahelp hid=\".\">የ <emph>ሰንጠረዥ መቆጣጠሪያ </emph> መፍጠሪያ የ ዳታቤዝ ሰንጠረዥ ለማሳየት </ahelp> እርስዎ አዲስ የ ሰንጠረዥ መቆጣጠሪያ ከ ፈጠሩ የ <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph> ሰንጠረዥ አካል አዋቂ </emph></link> ይታያል"
-#. E82RH
+#. n4JKM
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D63\n"
+"par_id3154697\n"
"help.text"
-msgid "In a Calc spreadsheet, you can use the <emph>Data</emph> tab page to create a two-way link between a scrollbar and a cell."
-msgstr ""
+msgid "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Special information about Table Controls</link>."
+msgstr "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">የተለየ መረጃ ስለ ሰንጠረዥ መቆጣጠሪያ</link>"
-#. YzDya
+#. yJm6y
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3153316\n"
+"par_idN11B1E\n"
"help.text"
-msgid "Image Button"
-msgstr "የ ምስል ቁልፍ"
+msgid "Navigation bar"
+msgstr "መቃኛ መደርደሪያ"
-#. Dc2HC
+#. vGBDH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3159622\n"
+"par_idN11B2C\n"
"help.text"
-msgid "<image id=\"img_id3154378\" src=\"cmd/sc_imagebutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154378\">Icon image button</alt></image>"
+msgid "<image id=\"img_id5074922\" src=\"cmd/lc_navigationbar.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5074922\">Icon Navigation bar</alt></image>"
msgstr ""
-#. B9Era
+#. dmjpG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148601\n"
+"par_idN11B3D\n"
"help.text"
-msgid "<ahelp hid=\".uno:Imagebutton\">Creates a button displayed as an image.</ahelp> Aside from the graphic representation, an image button has the same properties as a \"normal\" button."
-msgstr "<ahelp hid=\".uno:Imagebutton\">እንደ ምስል የሚታይ ቁልፍ መፍጠሪያ </ahelp> ንድፍ ከ መወከል ባሻገር: የ ምስል ቁልፍ ተመሳሳይ ባህሪ ነው ያለው እንደ \"መደበኛ\" ቁልፍ"
+msgid "<ahelp hid=\".\">Creates a <emph>Navigation</emph> bar.</ahelp>"
+msgstr ""
+
+#. VUmFZ
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_idN11DB1\n"
+"help.text"
+msgid "The <emph>Navigation</emph> bar allows you to move through the records of a database or a database form. The controls on this <emph>Navigation</emph> bar work the same way as the controls on the default <link href=\"text/shared/main0213.xhp\"><emph>Navigation</emph> bar</link> in $[officename]."
+msgstr ""
#. uB2m7
#: 01170000.xhp
@@ -1438,13 +1474,13 @@ msgctxt ""
msgid "Image Control"
msgstr "ምስል መቆጣጠሪያ"
-#. ymnGP
+#. TFQ2v
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3155869\n"
"help.text"
-msgid "<image id=\"img_id3152381\" src=\"cmd/sc_objectcatalog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152381\">Icon Image Control</alt></image>"
+msgid "<image id=\"img_id3152381\" src=\"cmd/lc_objectcatalog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152381\">Icon Image Control</alt></image>"
msgstr ""
#. ZJDNH
@@ -1465,365 +1501,311 @@ msgctxt ""
msgid "Images from a database can be displayed in a form, and new images can be inserted in the database as long as the image control is not write-protected. The control must refer to a database field of the image type. Therefore, enter the data field into the properties window on the <emph>Data</emph> tab page."
msgstr "ምስሎች ከ ዳታቤዝ ውስጥ በ ፎርም ላይ ማሳየት ይቻላል: እና አዲስ ምስሎች ማስገባት ይቻላል የ ምስል መቆጣጠሪያ ለመጻፍ-የሚጠበቅ ካልሆነ በስተቀር: መቆጣጠሪያው ወደ ዳታቤዝ ሜዳ ምስል አይነት መምራት አለበት: ስለዚህ ያስገቡ የ ዳታ ሜዳ ወደ ባህሪዎች መስኮት ከ <emph> ዳታ </emph> tab ገጽ ውስጥ"
-#. FDhXd
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"hd_id3156040\n"
-"help.text"
-msgid "Date Field"
-msgstr "የ ቀን ሜዳ"
-
-#. faE9Y
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_id3149423\n"
-"help.text"
-msgid "<image id=\"img_id3150096\" src=\"cmd/sc_adddatefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150096\">Icon</alt></image>"
-msgstr ""
-
-#. sSv2y
+#. 4iACX
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3151312\n"
+"hd_id3156186\n"
"help.text"
-msgid "<ahelp hid=\".uno:DateField\">Creates a date field.</ahelp> If the form is linked to a database, the date values can be adopted from the database."
-msgstr "<ahelp hid=\".uno:DateField\">የ ቀን ሜዳ መፍጠሪያ</ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ የ ቀን ዋጋዎች ከ ዳታቤዝ ይቀበላል"
+msgid "File Selection"
+msgstr "የ ፋይል ምርጫዎች"
-#. rAgZA
+#. VRYA8
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3151302\n"
+"par_id3150531\n"
"help.text"
-msgid "If you assign the \"Dropdown\" property to the date field, the user can open a calendar to select a date under the date field. This also applies to a date field within a <emph>Table Control</emph> field."
+msgid "<image id=\"img_id3154344\" src=\"cmd/lc_filecontrol.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon File Selection</alt></image>"
msgstr ""
-#. kx8f2
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_id3154395\n"
-"help.text"
-msgid "Date fields can be easily edited by the user with the up arrow and down arrow keys. Depending on the cursor position, the day, month, or the year is can be increased or decreased using the arrow keys."
-msgstr "የ ቀን ሜዳ በቀላሉ ማረም ይቻላል በ ተጠቃሚው ቀስት ወደ ላይ እና ቀስት ወደ ታች ቁልፍ በ መጠቀም: መጠቆሚያው እንዳለበት ሁኔታ የ ቀን: ወር: ወይንም አመት መጨመር ወይንም መቀነስ ይቻላል የ ቀስት ቁልፍ በ መጠቀም"
-
-#. zBejA
+#. 4CELT
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3153112\n"
+"par_id3149438\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">Specific Remarks on Date Fields</link>."
-msgstr "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">የ ተወሰነ የ ቀን ሜዳ አስተያየት</link>"
+msgid "<ahelp hid=\".uno:FileControl\">Creates a button that enables file selection.</ahelp>"
+msgstr "<ahelp hid=\".uno:FileControl\">የ ፋይል ምርጫዎች የሚያስችል ቁልፍ መፍጠሪያ</ahelp>"
-#. Aj5PP
+#. MoAVD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3152369\n"
+"par_idN11A56\n"
"help.text"
-msgid "Time Field"
-msgstr "የ ሰአት ሜዳ"
+msgid "Spin Button"
+msgstr "ማሽከርከሪያ ቁልፍ"
-#. T6act
+#. CtQfD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3153687\n"
+"par_idN11A64\n"
"help.text"
-msgid "<image id=\"img_id3155949\" src=\"cmd/sc_timefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155949\">Icon</alt></image>"
+msgid "<image id=\"img_id7816400\" src=\"cmd/lc_spinbutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id7816400\">Icon Spin Button</alt></image>"
msgstr ""
-#. 7apBh
+#. rY5Pe
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3155399\n"
+"par_idN11A75\n"
"help.text"
-msgid "<ahelp hid=\".uno:TimeField\">Creates a time field.</ahelp> If the form is linked to a database, the time values for the form can be adopted from the database."
-msgstr "<ahelp hid=\".uno:TimeField\">የ ቀን ሜዳ መፍጠሪያ</ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ የ ቀን ዋጋዎች ከ ዳታቤዝ ይቀበላል"
+msgid "<ahelp hid=\".uno:SpinButton\">Creates a spin button.</ahelp>"
+msgstr "<ahelp hid=\".uno:SpinButton\">ማሽከርከሪያ ቁልፍ መፍጠሪያ</ahelp>"
-#. keYu2
+#. L6D5h
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154764\n"
+"par_id710776\n"
"help.text"
-msgid "Time fields can be easily edited by the user with the up and down arrow keys. Depending on the cursor position, the hours, minutes, or the seconds are increased or decreased using the arrow keys."
-msgstr "የ ሰአት ሜዳ በቀላሉ ማረም ይቻላል በ ተጠቃሚው ቀስት ወደ ላይ እና ቀስት ወደ ታች ቁልፍ በ መጠቀም: መጠቆሚያው እንዳለበት ሁኔታ የ ሰአት: ደቂቃ: ወይንም ሰከንዶች መጨመር ወይንም መቀነስ ይቻላል የ ቀስት ቁልፍ በ መጠቀም"
+msgid "If you add a spin button to a Calc spreadsheet, you can use the Data tab page to create a two-way link between the spin button and a cell. As a result, when you change the contents of a cell, the contents of the spin button are updated. Conversely, if you change the value of the spin button, the contents of the cell are updated."
+msgstr "እርስዎ ከ ጨመሩ የ ማሽከርከሪያ ቁልፍ ወደ ሰንጠረዥ ውስጥ: እርስዎ መጠቀም ይችላሉ የዳታ tab ገጽ ለ መፍጠር የ ሁለት-በኩል አገናኝ በ ማሽከርከሪያ ቁልፍ እና በ ክፍል ውስጥ: ውጤቱ የ ክፍሉን ሁኔታ ሲቀይሩ: የ ማሽከርከሪያ ቁልፍ ይሻሻላል: በ ግልባጭ እርስዎ ዋጋ ከ ቀየሩ በ ማሽከርከሪያ ቁልፍ ውስጥ የ ክፍሉ ይዞታ ይሻሻላል"
-#. 4iACX
+#. dHgny
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3156186\n"
+"par_idN11ABC\n"
"help.text"
-msgid "File Selection"
-msgstr "የ ፋይል ምርጫዎች"
+msgid "Scrollbar"
+msgstr "መሸብለያ መደርደሪያ"
-#. oGq2E
+#. teRA6
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150531\n"
+"par_idN11ACA\n"
"help.text"
-msgid "<image id=\"img_id3154344\" src=\"cmd/sc_filecontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon File Selection</alt></image>"
+msgid "<image id=\"img_id8203985\" src=\"cmd/lc_scrollbar.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8203985\">Icon Scrollbar</alt></image>"
msgstr ""
-#. 4CELT
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_id3149438\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FileControl\">Creates a button that enables file selection.</ahelp>"
-msgstr "<ahelp hid=\".uno:FileControl\">የ ፋይል ምርጫዎች የሚያስችል ቁልፍ መፍጠሪያ</ahelp>"
-
-#. Qw4Qa
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"hd_id3154652\n"
-"help.text"
-msgid "Numerical Field"
-msgstr "የ ቁጥር ሜዳ"
-
-#. c2Gra
+#. RNigC
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3149396\n"
+"par_idN11ADB\n"
"help.text"
-msgid "<image id=\"img_id3153012\" src=\"cmd/sc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153012\">Icon</alt></image>"
-msgstr ""
+msgid "<ahelp hid=\".uno:ScrollBar\">Creates a scrollbar.</ahelp>"
+msgstr "<ahelp hid=\".uno:ScrollBar\">መሸብለያ መደርደሪያ መፍጠሪያ</ahelp>"
-#. 3jPvp
+#. C8usb
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145601\n"
+"par_idN11CA3\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumericField\">Creates a numerical field.</ahelp> If the form is linked to a database, the numerical values in the form can be adopted from the database."
-msgstr "<ahelp hid=\".uno:NumericField\">የ ቁጥር ሜዳ መፍጠሪያ </ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ የ ቁጥር ዋጋዎች ከ ዳታቤዝ ይቀበላል"
+msgid "You can specify the following properties for a scrollbar:"
+msgstr "መወሰን ይችላሉ የሚቀጥሉትን ባህሪዎች ለ መሸብለያ መደርደሪያ:"
-#. EGmCN
+#. 5NXLp
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3153612\n"
+"par_idN11CDA\n"
"help.text"
-msgid "Currency Field"
-msgstr "የ ገንዘብ ሜዳ"
+msgid "UI name"
+msgstr "የ ተጠቃሚ ገጽታ ስም"
-#. 6nQhR
+#. KiE2x
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145324\n"
+"par_idN11CE0\n"
"help.text"
-msgid "<image id=\"img_id3152866\" src=\"cmd/sc_currencyfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152866\">Icon</alt></image>"
-msgstr ""
+msgid "Semantics"
+msgstr "ትርጉም"
-#. dc7AD
+#. PNDZB
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145115\n"
+"par_idN11CE7\n"
"help.text"
-msgid "<ahelp hid=\".uno:CurrencyField\">Creates a currency field.</ahelp> If the form is linked to a database, the currency field contents for in the form can be adopted from the database."
-msgstr "<ahelp hid=\".uno:CurrencyField\">የ ገንዘብ ሜዳ መፍጠሪያ </ahelp> ፎርሙ ከ ዳታቤዝ ጋር ከ ተገናኘ: የ ገንዘብ ሜዳ ይዞታዎች ለ ፎርሙ ከ ዳታቤዝ ማግኘት ይቻላል"
+msgid "Scroll value min"
+msgstr "የ መሸብለያ አነስተኝ ዋጋ"
-#. 2KYgF
+#. h7UcE
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3148825\n"
+"par_idN11CED\n"
"help.text"
-msgid "Pattern Field"
-msgstr "የ ንድፍ ሜዳ"
+msgid "Specifies the minimum height or the minimum width of a scrollbar."
+msgstr "ለ መሸብለያ መደርደሪያ አነስተኛ እርዝመት ወይንም አነስተኛ ስፋት መወሰኛ"
-#. zwZsE
+#. 8R3PE
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3149742\n"
+"par_idN11CF4\n"
"help.text"
-msgid "<image id=\"img_id3148924\" src=\"cmd/sc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148924\">Icon</alt></image>"
-msgstr ""
+msgid "Scroll value max"
+msgstr "የ መሸብለያ ከፍተኛ ዋጋ"
-#. 4SYQW
+#. BGGh8
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150122\n"
+"par_idN11CFA\n"
"help.text"
-msgid "<ahelp hid=\".uno:PatternField\">Creates a pattern field.</ahelp> Pattern fields consist of an edit mask and a literal mask. The edit mask determines which data can be entered. The literal mask determines the contents of the pattern field when loading the form."
-msgstr "<ahelp hid=\".uno:PatternField\">የ ድግግሞሽ ሜዳ መፍጠሪያ.</ahelp> የ ድግግሞሽ ሜዳ ይዟል የ edit mask እና የ literal mask. የ edit mask የሚወስነው የትኛው ዳታ እንደሚገባ ነው: የ literal mask የሚወስነው የ ድግግሞሽ ሜዳ ይዞታዎችን ነው: ፎርሙን በሚጭኑ ጊዜ"
+msgid "Specifies the maximum height or the maximum width of a scrollbar."
+msgstr "ለ መሸብለያ መደርደሪያ ከፍተኛ እርዝመት ወይንም ከፍተኛ ስፋት መወሰኛ"
-#. NiY7c
+#. 44sBA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3152947\n"
+"par_idN11D01\n"
"help.text"
-msgid "Please note that pattern fields are not exported into HTML format."
-msgstr "እባክዎን ያስታውሱ የ ድግግሞሽ ሜዳዎች መላክ አይቻልም ወደ HTML አቀራረብ"
+msgid "Default scroll value"
+msgstr "ነባር መሸብለያ ዋጋ"
-#. 7u2GY
+#. TFnZ8
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3145147\n"
+"par_idN11D07\n"
"help.text"
-msgid "Group Box"
-msgstr "የ ቡድን ሳጥን"
+msgid "Specifies the default value of a scrollbar, used when the form is reset."
+msgstr "ለ መሸብለያ መደርደሪያ ነባር ዋጋ መወሰኛ ፎርሙ እንደ ነበር በሚመለስበት ጊዜ"
-#. ZpKrz
+#. bK7Vi
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3159334\n"
+"par_idN11D0E\n"
"help.text"
-msgid "<image id=\"img_id3153790\" src=\"cmd/sc_groupbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153790\">Icon Group Box</alt></image>"
-msgstr ""
+msgid "Orientation"
+msgstr "አቅጣጫ"
-#. 3Suwy
+#. xUPB2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154572\n"
+"par_idN11D14\n"
"help.text"
-msgid "<ahelp hid=\".uno:GroupBox\">Creates a frame to visually group several controls.</ahelp> <emph>Group boxes</emph> allow you to group option buttons in a frame."
-msgstr ""
+msgid "Specifies the orientation of a scrollbar, that is, horizontal or vertical."
+msgstr "በ አግድም ወይንም በ ቁመት የ መሸብለያ መደርደሪያ አቅጣጫ መወሰኛ"
-#. GXbwz
+#. fmsPT
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148394\n"
+"par_idN11D1B\n"
"help.text"
-msgid "If you insert a group frame into the document, the <link href=\"text/shared/autopi/01120000.xhp\" name=\"Group Element Wizard\"><emph>Group Element Wizard</emph></link> starts, which allows you to easily create an option group."
-msgstr ""
+msgid "Small change"
+msgstr "ትንሽ ለውጥ"
-#. YPpYV
+#. ZXezA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150567\n"
+"par_idN11D21\n"
"help.text"
-msgid "<emph>Note:</emph> When you drag a group box over already existing controls and then want to select a control, you have to first open the context menu of the group box and choose <emph>Arrange - Send to Back</emph>. Then select the control while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>."
-msgstr ""
+msgid "Specifies the minimum amount by which you can scroll a scrollbar, for example, by clicking an arrow."
+msgstr "ለ እርስዎ አነስተኛ መጠን እንደሚሸበልሉ መወሰኛ: መሸብለያ መደርደሪያውን: ለምሳሌ: ቀስቱን በ መጫን"
-#. 6DEDD
+#. CySRJ
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145615\n"
+"par_idN11D28\n"
"help.text"
-msgid "<emph>Group boxes</emph> are used only for a visual effect. A functional grouping of option fields can be made through the name definition: under the <link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph>Name</emph></link> properties of all option fields, enter the same name in order to group them."
-msgstr ""
+msgid "Large change"
+msgstr "ትልቅ ለውጥ"
-#. JBDBc
+#. h3r9X
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3157996\n"
+"par_idN11D2E\n"
"help.text"
-msgid "Table Control"
-msgstr "ሰንጠረዥ መቆጣጠሪያ"
+msgid "Specifies the amount that a large step scrolls a scrollbar, for example, when you click between the scrollbar thumb and a scrollbar arrow."
+msgstr "ለ እርስዎ ከፍተኛ መጠን እንደሚሸበልሉ መወሰኛ: መሸብለያ መደርደሪያውን: ለምሳሌ: እርስዎ በሚሸበልሉ ጊዜ በ አውራ ጥፍር እና በ መሸብለያ መደርደሪያ ቀስቱን ሲጫኑ"
-#. sXNiD
+#. 34PS4
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3156402\n"
+"par_idN11D35\n"
"help.text"
-msgid "<image id=\"img_id3146324\" src=\"cmd/sc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146324\">Icon Table Control</alt></image>"
-msgstr ""
+msgid "Delay"
+msgstr "ማዘግያ"
-#. YNpAD
+#. RAwEx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154579\n"
+"par_idN11D3B\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates a <emph>table control</emph> to display a database table.</ahelp> If you create a new table control, the <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph>Table Element Wizard</emph></link> appears."
-msgstr "<ahelp hid=\".\">የ <emph>ሰንጠረዥ መቆጣጠሪያ </emph> መፍጠሪያ የ ዳታቤዝ ሰንጠረዥ ለማሳየት </ahelp> እርስዎ አዲስ የ ሰንጠረዥ መቆጣጠሪያ ከ ፈጠሩ የ <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph> ሰንጠረዥ አካል አዋቂ </emph></link> ይታያል"
+msgid "Specifies the delay in milliseconds between scrollbar trigger events. For example, the delay that occurs when you click an arrow button on the scrollbar and hold down the mouse button."
+msgstr "ማዘግያ መወሰኛ በ ሚሊ ሰከንዶች በ መሸብለያ ማስጀመሪያ ሁኔታ መካከል: ለምሳሌ ማዘግያ የሚፈጠረው እርስዎ በሚጫኑ ጊዜ የ ቀስት ቁልፍ በ መሸብለያ መደርደሪያ ላይ እና ተጭነው ይያዙ የ አይጥ ቁልፍ"
-#. n4JKM
+#. 4cEzG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154697\n"
+"par_idN11D42\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Special information about Table Controls</link>."
-msgstr "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">የተለየ መረጃ ስለ ሰንጠረዥ መቆጣጠሪያ</link>"
+msgid "Symbol color"
+msgstr "የ ምልክት ቀለም"
-#. yJm6y
+#. wrXfx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B1E\n"
+"par_idN11D48\n"
"help.text"
-msgid "Navigation bar"
-msgstr "መቃኛ መደርደሪያ"
+msgid "Specifies the color of the arrows on the scrollbar."
+msgstr "የ ቀስት ቀለም በ መሸብለያ መደርደሪያ ላይ መወሰኛ"
-#. z63Mz
+#. nqHkR
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B2C\n"
+"par_idN11D4F\n"
"help.text"
-msgid "<image id=\"img_id5074922\" src=\"cmd/sc_navigationbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5074922\">Icon Navigation bar</alt></image>"
-msgstr ""
+msgid "Visible Size"
+msgstr "የሚታይ መጠን"
-#. dmjpG
+#. bGBpN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B3D\n"
+"par_idN11D55\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates a <emph>Navigation</emph> bar.</ahelp>"
+msgid "Specifies the size of the scrollbar thumb in \"value units\". For example, a value of <emph>(\"Scroll value max.\" minus \"Scroll value min.\") / 2</emph> results in a scrollbar thumb that occupies half of the scrollbar."
msgstr ""
-#. VUmFZ
+#. kPyUP
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11DB1\n"
+"par_idN11D58\n"
"help.text"
-msgid "The <emph>Navigation</emph> bar allows you to move through the records of a database or a database form. The controls on this <emph>Navigation</emph> bar work the same way as the controls on the default <link href=\"text/shared/main0213.xhp\"><emph>Navigation</emph> bar</link> in $[officename]."
+msgid "To make the width of the scrollbar equal to the height of the scrollbar, set the <emph>Visible Size</emph> to zero."
msgstr ""
-#. R6tBB
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"hd_id3146815\n"
-"help.text"
-msgid "Automatic Control Focus"
-msgstr "ራሱ በራሱ ትኩረት መቆጣጠሪያ"
-
-#. LWHkL
+#. E82RH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150261\n"
+"par_idN11D63\n"
"help.text"
-msgid "<image id=\"img_id3149351\" src=\"cmd/sc_autocontrolfocus.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149351\">Icon</alt></image>"
+msgid "In a Calc spreadsheet, you can use the <emph>Data</emph> tab page to create a two-way link between a scrollbar and a cell."
msgstr ""
-#. iDFFL
+#. DKSBw
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3109848\n"
+"hd_id3149436\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoControlFocus\">If <emph>Automatic Control Focus</emph> is activated, the first form control will be selected when you open the document. If the button is not activated, the text will be selected after opening. The <link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Tab Order</link> that you have specified determines which is the first form control.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">Context Menu Commands</link>"
+msgstr "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">የ አገባብ ዝርዝር ትእዛዞች</link>"
#. EphvU
#: 01170001.xhp
@@ -9268,6 +9250,15 @@ msgctxt ""
msgid "Add Field"
msgstr "ሜዳ መጨመሪያ"
+#. EJFFb
+#: 01170400.xhp
+msgctxt ""
+"01170400.xhp\n"
+"bm_id871647297744020\n"
+"help.text"
+msgid "<bookmark_value>database field;add to form</bookmark_value><bookmark_value>forms;add database field</bookmark_value><bookmark_value>database field;add to report</bookmark_value><bookmark_value>report;add database field</bookmark_value>"
+msgstr ""
+
#. AmADg
#: 01170400.xhp
msgctxt ""
@@ -10483,14 +10474,14 @@ msgctxt ""
msgid "Display Grid"
msgstr "መጋጠሚያ ማሳያ"
-#. TqCDo
+#. RQ8je
#: 01171200.xhp
msgctxt ""
"01171200.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<image id=\"img_id3153049\" src=\"cmd/sc_gridvisible.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153049\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153049\" src=\"cmd/sc_gridvisible.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153049\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3153049\" src=\"cmd/lc_gridvisible.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153049\">Icon Display Grid</alt></image>"
+msgstr ""
#. UKBCB
#: 01171200.xhp
@@ -10528,14 +10519,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether to move frames, drawing elements, and controls only between grid points.</ahelp>"
msgstr "<ahelp hid=\".\">መወሰኛ ይንቀሳቀሱ እንደሆን ክፈፎች: መሳያ አካሎች: እና መቆጣጠሪያዎች ብቻ በ መጋጠሚያ ነጥቦች መካከል</ahelp>"
-#. SGEDb
+#. m7PAZ
#: 01171300.xhp
msgctxt ""
"01171300.xhp\n"
"par_id3156027\n"
"help.text"
-msgid "<image id=\"img_id3157896\" src=\"cmd/sc_griduse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157896\">Icon</alt></image>"
-msgstr "<image id=\"img_id3157896\" src=\"cmd/sc_griduse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157896\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3157896\" src=\"cmd/lc_griduse.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157896\">Icon Snap to Grid</alt></image>"
+msgstr ""
#. Fb5KQ
#: 01171300.xhp
@@ -10564,14 +10555,14 @@ msgctxt ""
msgid "Helplines While Moving"
msgstr "የ እርዳታ መስመሮች በ ማንቀሳቀስ ላይ እንዳሉ"
-#. CLGAJ
+#. KFSbC
#: 01171400.xhp
msgctxt ""
"01171400.xhp\n"
"par_id3149549\n"
"help.text"
-msgid "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149760\">Icon Helplines While Moving</alt></image>"
+msgstr ""
#. AFaA2
#: 01171400.xhp
@@ -14074,14 +14065,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AutoFilter\">Filters the records, based on the content of the currently selected data field.</ahelp>"
msgstr "<ahelp hid=\".uno:AutoFilter\">አሁን የተመረጠውን የ ዳታ ሜዳ ይዞታ መሰረት ባደረገ መዝገብ ማጣሪያ</ahelp>"
-#. sbJDk
+#. 74YJk
#: 12030000.xhp
msgctxt ""
"12030000.xhp\n"
"par_id3151234\n"
"help.text"
-msgid "<image id=\"img_id3147261\" src=\"cmd/sc_formfiltered.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147261\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147261\" src=\"cmd/sc_formfiltered.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147261\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3147261\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147261\">Icon AutoFilter</alt></image>"
+msgstr ""
#. qhCWv
#: 12030000.xhp
@@ -14200,14 +14191,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Refresh\">Refreshes the displayed data.</ahelp> In a multi-user environment, refreshing the data ensures that it remains current."
msgstr "<ahelp hid=\".uno:Refresh\">የሚታየውን ዳታ ማነቃቂያ</ahelp> በ በርካታ-ተጠቃሚዎች አካባቢ: የሚታየውን ዳታ ማነቃቃት ዳታውን ዘመናዊ ያደርገዋል"
-#. sCdzm
+#. FDdEV
#: 12050000.xhp
msgctxt ""
"12050000.xhp\n"
"par_id3147261\n"
"help.text"
-msgid "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153910\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153910\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153910\">Icon Refresh</alt></image>"
+msgstr ""
#. fovgD
#: 12050000.xhp
@@ -16540,14 +16531,14 @@ msgctxt ""
msgid "Unlike the normal search, which is activated by the <link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\"><emph>Find Record</emph></link> icon on the <emph>Form</emph> bar, you can search more quickly by using the form-based filter. Usually a quick database server is charged with the search. Also, you can enter more complex search conditions."
msgstr ""
-#. LnpgE
+#. kDLDD
#: 12110000.xhp
msgctxt ""
"12110000.xhp\n"
"par_id3153394\n"
"help.text"
-msgid "<image id=\"img_id3147226\" src=\"cmd/sc_formfilter.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147226\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147226\" src=\"cmd/sc_formfilter.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147226\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3147226\" src=\"cmd/lc_datafilterspecialfilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147226\">Icon Form Filter</alt></image>"
+msgstr ""
#. 5NfGA
#: 12110000.xhp
@@ -16585,13 +16576,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormFiltered\" visibility=\"visible\">Switches between the filtered and unfiltered view of the table.</ahelp>"
msgstr "<ahelp hid=\".uno:FormFiltered\" visibility=\"visible\">በ ሰንጠረዡ የተጣረው እና ያልተጣራው መመልከቻ መካከል መቀያየሪያ</ahelp>"
-#. zstf3
+#. WUQE5
#: 12120000.xhp
msgctxt ""
"12120000.xhp\n"
"par_id3149999\n"
"help.text"
-msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3146130\" width=\"38px\" height=\"38px\"><alt id=\"alt_id3146130\">Icon</alt></image>"
+msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3146130\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Form Filter</alt></image>"
msgstr ""
#. yEcEB
@@ -16648,14 +16639,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ViewFormAsGrid\">Activates an additional table view when in the form view.</ahelp> When the <emph>Data source as table</emph> function is activated, you see the table in an area above the form."
msgstr ""
-#. 3C96W
+#. zFZbc
#: 12130000.xhp
msgctxt ""
"12130000.xhp\n"
"par_id3093440\n"
"help.text"
-msgid "<image id=\"img_id3156414\" src=\"cmd/sc_viewformasgrid.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156414\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156414\" src=\"cmd/sc_viewformasgrid.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156414\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3156414\" src=\"cmd/lc_viewformasgrid.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156414\">Icon</alt></image>"
+msgstr ""
#. u7TDW
#: 12130000.xhp
diff --git a/source/am/helpcontent2/source/text/shared/04.po b/source/am/helpcontent2/source/text/shared/04.po
index ba585d0e3e0..ab123d2d90b 100644
--- a/source/am/helpcontent2/source/text/shared/04.po
+++ b/source/am/helpcontent2/source/text/shared/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-19 17:31+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2018-12-10 00:53+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -106,13 +106,13 @@ msgctxt ""
msgid "You can enter arbitrary Unicode characters in the document typing the Unicode hexadecimal code point and then pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> (default). Type the Unicode hexadecimal notation and press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> to toggle between the Unicode character and its hexadecimal notation. Selection is not necessary but the conversion will apply to the selected characters. Toggling occurs on the characters prior to the cursor position when these characters form a valid Unicode hexadecimal point. Hexadecimal code points with value in the range U+0000 to U+0020 are not converted."
msgstr ""
-#. u4AsW
+#. PwHVE
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"par_id1001591272531804\n"
"help.text"
-msgid "The default Unicode conversion shortcut is <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> and <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+C</keycode></caseinline><defaultinline><keycode>Alt+C</keycode></defaultinline></switchinline> in some locales where the default Unicode shortcut interferes with the main menu shortcut. To reassign the shortcut, choose <menuitem>Tools > Customize > Keyboard</menuitem> and select <emph>Category:Options</emph> with <emph>Function:Toggle Unicode Notation</emph>."
+msgid "The default Unicode conversion shortcut is <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> and <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+C</keycode></caseinline><defaultinline><keycode>Alt+C</keycode></defaultinline></switchinline> in some locales where the default Unicode shortcut interferes with the main menu shortcut. To reassign the shortcut, choose <menuitem>Tools - Customize - Keyboard</menuitem> and select <emph>Category:Options</emph> with <emph>Function:Toggle Unicode Notation</emph>."
msgstr ""
#. cBDHp
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index a95be3ba6bc..5421111de56 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: 2022-02-21 15:23+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\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"
@@ -673,22 +673,31 @@ msgctxt ""
msgid "<bookmark_value>spreadsheet; auto-redact</bookmark_value> <bookmark_value>presentations; auto-redact</bookmark_value> <bookmark_value>text documents; auto-redact contents</bookmark_value> <bookmark_value>automatic redaction</bookmark_value>"
msgstr ""
-#. dujqZ
+#. ycDxe
#: auto_redact.xhp
msgctxt ""
"auto_redact.xhp\n"
"hd_id171562795247122\n"
"help.text"
-msgid "<variable id=\"autoredact_h1\"><link href=\"text/shared/guide/auto_redact.xhp\" name=\"auto_redact\">Automatic Redaction</link></variable>"
+msgid "<variable id=\"autoredact_h1\"><link href=\"text/shared/guide/auto_redact.xhp\" name=\"auto_redact\">Auto-Redact</link></variable>"
msgstr ""
-#. 5TXro
+#. wiGmP
#: auto_redact.xhp
msgctxt ""
"auto_redact.xhp\n"
"par_id4715627952214572\n"
"help.text"
-msgid "<variable id=\"auto_redact_var\"><ahelp hid=\"sfx/ui/autoredactdialog/\">Use automatic redaction to define words and patterns that are automatically marked for redaction.</ahelp></variable> This makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues."
+msgid "<variable id=\"auto_redact_var\"><ahelp hid=\"sfx/ui/autoredactdialog/\">Use automatic redaction to define words and patterns that are automatically marked for redaction.</ahelp></variable>"
+msgstr ""
+
+#. kCE9E
+#: auto_redact.xhp
+msgctxt ""
+"auto_redact.xhp\n"
+"par_id641647277510873\n"
+"help.text"
+msgid "Automatic redaction makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues."
msgstr ""
#. erJBg
@@ -8971,13 +8980,22 @@ msgctxt ""
msgid "<variable id=\"DevTools_h1\"><link href=\"text/shared/guide/dev_tools.xhp\" name=\"DevTools_help\">Development Tools</link></variable>"
msgstr ""
-#. p3pqz
+#. khuRq
#: dev_tools.xhp
msgctxt ""
"dev_tools.xhp\n"
"par_id3155069\n"
"help.text"
-msgid "<variable id=\"DevTools_intro\"><ahelp hid=\".uno:LoadToolBox\">Inspects objects in %PRODUCTNAME documents and shows supported UNO services, as well as available methods, properties and implemented interfaces. This feature also allows to explore the document structure using the Document Object Model (DOM).</ahelp></variable>"
+msgid "<variable id=\"DevTools_intro\"><ahelp hid=\".uno:LoadToolBox\">Inspects objects in %PRODUCTNAME documents and shows supported UNO services, as well as available methods, properties and implemented interfaces.</ahelp></variable>"
+msgstr ""
+
+#. DtSfG
+#: dev_tools.xhp
+msgctxt ""
+"dev_tools.xhp\n"
+"par_id791647281944610\n"
+"help.text"
+msgid "This feature also allows to explore the document structure using the Document Object Model (DOM)."
msgstr ""
#. st97j
@@ -22552,22 +22570,31 @@ msgctxt ""
msgid "<bookmark_value>spreadsheet; redacting contents</bookmark_value> <bookmark_value>presentations; redacting contents</bookmark_value> <bookmark_value>text documents; redacting contents</bookmark_value> <bookmark_value>redaction</bookmark_value>"
msgstr ""
-#. A7KDQ
+#. vYCGW
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"hd_id171562795247717\n"
"help.text"
-msgid "<variable id=\"redaction_h1\"><link href=\"text/shared/guide/redaction.xhp\" name=\"redaction_link\">Redacting Documents</link></variable>"
+msgid "<variable id=\"redaction_h1\"><link href=\"text/shared/guide/redaction.xhp\" name=\"redaction_link\">Redaction</link></variable>"
msgstr ""
-#. AFwWF
+#. 4DfDB
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"par_id471562795247717\n"
"help.text"
-msgid "<variable id=\"redaction_desc\"><ahelp hid=\".\">Redacting documents blocks out words or portions of a document for authorized use or viewing.</ahelp></variable> Redaction protects sensitive information and helps enterprises and organizations to comply with regulations on confidentiality or privacy."
+msgid "<variable id=\"redaction_desc\"><ahelp hid=\".\">Redacting documents blocks out words or portions of a document for authorized use or viewing.</ahelp></variable>"
+msgstr ""
+
+#. sB25i
+#: redaction.xhp
+msgctxt ""
+"redaction.xhp\n"
+"par_id291647277725275\n"
+"help.text"
+msgid "Redaction protects sensitive information and helps enterprises and organizations to comply with regulations on confidentiality or privacy."
msgstr ""
#. QdoMp
diff --git a/source/am/helpcontent2/source/text/shared/menu.po b/source/am/helpcontent2/source/text/shared/menu.po
index a41e521c6d6..14b08837af0 100644
--- a/source/am/helpcontent2/source/text/shared/menu.po
+++ b/source/am/helpcontent2/source/text/shared/menu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-11-08 19:34+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2016-11-14 16:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,6 +16,24 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1479142228.000000\n"
+#. rxCQJ
+#: forms.xhp
+msgctxt ""
+"forms.xhp\n"
+"tit\n"
+"help.text"
+msgid "Forms submenu"
+msgstr ""
+
+#. EHLP3
+#: forms.xhp
+msgctxt ""
+"forms.xhp\n"
+"hd_id491647289210348\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/menu/forms.xhp\" name=\"Forms Submenu\">Forms Submenu</link></variable>"
+msgstr ""
+
#. EEMss
#: insert_chart.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index cded6ffab13..5c552b996e1 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: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\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"
@@ -15667,6 +15667,24 @@ msgctxt ""
msgid "<emph>Calc A1 | Excel A1</emph>"
msgstr ""
+#. oJiom
+#: detailedcalculation.xhp
+msgctxt ""
+"detailedcalculation.xhp\n"
+"hd_id71645215179431\n"
+"help.text"
+msgid "Apply those settings to current document only"
+msgstr ""
+
+#. AKoD6
+#: detailedcalculation.xhp
+msgctxt ""
+"detailedcalculation.xhp\n"
+"par_id111645215251396\n"
+"help.text"
+msgid "Mark this checkbox to apply the settings to the document only."
+msgstr ""
+
#. YBuej
#: detailedcalculation.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index 46583c98079..0484922f6ba 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\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"
@@ -1726,14 +1726,14 @@ msgctxt ""
msgid "<link href=\"text/swriter/main0120.xhp\" name=\"Form menu\">Form</link>"
msgstr "<link href=\"text/swriter/main0120.xhp\" name=\"Form menu\">ፎርም</link>"
-#. LQF4M
+#. FK2va
#: main0120.xhp
msgctxt ""
"main0120.xhp\n"
"par_id991529755027118\n"
"help.text"
-msgid "<variable id=\"variable name\"><ahelp hid=\"hid path or command\">Contains commands for activate form design mode, open control wizards and insert form controls in your text document.</ahelp></variable>"
-msgstr "<variable id=\"variable name\"><ahelp hid=\"hid path or command\">የ ፎርም ንድፍ ዘዴ ማስጀመሪያ ትእዛዝ ይዟል: የ መቆጣጠሪያ አዋቂ መክፈቻ እና የ ፎርም መቆጣጠሪያ በ እርስዎ የ ጽሁፍ ሰነድ ውስጥ ማስገቢያ: </ahelp></variable>"
+msgid "<variable id=\"form_intro\"><ahelp hid=\".\">Contains commands for activate form design mode, open control wizards and insert form controls in your document.</ahelp></variable>"
+msgstr ""
#. AdXBE
#: main0120.xhp
@@ -2895,3 +2895,399 @@ msgctxt ""
"help.text"
msgid "You can use the <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">Help system</link> as a complete reference for $[officename] applications, including <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">instructions</link> for simple and complex tasks."
msgstr "መጠቀም ይችላሉ <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">የ እርዳታ ስርአቱን</link> እንደ ሙሉ ማመሳከሪያ ለ $[officename] መተግበሪያዎች እንዲሁም <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">መመሪያዎች</link> ለ ቀላል እና ለ ውስብስብ ስራዎች"
+
+#. DNbRR
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"tit\n"
+"help.text"
+msgid "Track Changes Toolbar"
+msgstr ""
+
+#. a8US4
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id671647012520594\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/track_changes_toolbar.xhp\" name=\"Track Changes Toolbar\">Track Changes Toolbar</link></variable>"
+msgstr ""
+
+#. 4XWe5
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id471647012520596\n"
+"help.text"
+msgid "Contains the commands that are available for tracking changes in your file."
+msgstr ""
+
+#. iUjGN
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id261647012734234\n"
+"help.text"
+msgid "Choose <menuitem>View - Toolbars - Track Changes</menuitem>."
+msgstr ""
+
+#. T8AaM
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id221647013245370\n"
+"help.text"
+msgid "<image src=\"cmd/lc_showtrackedchanges.svg\" id=\"img_id801647013245371\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821647013245372\">Icon Show track changes</alt></image>"
+msgstr ""
+
+#. eBTMj
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id31647013245373\n"
+"help.text"
+msgid "Show track changes"
+msgstr ""
+
+#. FSoq4
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id791647013362400\n"
+"help.text"
+msgid "<image src=\"cmd/lc_trackchanges.svg\" id=\"img_id921647013362401\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id561647013362402\">Icon Record Changes</alt></image>"
+msgstr ""
+
+#. BxM8k
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id781647013362404\n"
+"help.text"
+msgid "Record Changes"
+msgstr ""
+
+#. R7EFt
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id731647013552967\n"
+"help.text"
+msgid "Previous Track Change"
+msgstr ""
+
+#. nxbjC
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id901647013566069\n"
+"help.text"
+msgid "<image src=\"cmd/lc_previoustrackedchange.svg\" id=\"img_id151647013566070\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id981647013566071\">Icon Previous track change</alt></image>"
+msgstr ""
+
+#. poJng
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id391647013566073\n"
+"help.text"
+msgid "Previous track change"
+msgstr ""
+
+#. v76PF
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id551647013674361\n"
+"help.text"
+msgid "Next Track Change"
+msgstr ""
+
+#. NyWdo
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id231647013679440\n"
+"help.text"
+msgid "<image src=\"cmd/lc_nexttrackedchange.svg\" id=\"img_id1001647013679441\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id971647013679442\">Icon Next track change</alt></image>"
+msgstr ""
+
+#. XE2LH
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id531647013679443\n"
+"help.text"
+msgid "Next track change"
+msgstr ""
+
+#. cniUB
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id421647013795427\n"
+"help.text"
+msgid "Accept Track Change"
+msgstr ""
+
+#. UgReW
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id1001647013785665\n"
+"help.text"
+msgid "<image src=\"cmd/lc_accepttrackedchange.svg\" id=\"img_id491647013785666\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id301647013785667\">Icon Accept Track Change</alt></image>"
+msgstr ""
+
+#. qe8kW
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id971647013785668\n"
+"help.text"
+msgid "Accept Track Change"
+msgstr ""
+
+#. 37qtQ
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id871647013918576\n"
+"help.text"
+msgid "Reject Track Change"
+msgstr ""
+
+#. Dw5dd
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id981647013912301\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rejecttrackedchange.svg\" id=\"img_id931647013912302\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id811647013912303\">Icon Reject Track Change</alt></image>"
+msgstr ""
+
+#. D68WB
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id21647013912304\n"
+"help.text"
+msgid "Reject Track Change"
+msgstr ""
+
+#. DZWAf
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id991647014048136\n"
+"help.text"
+msgid "Accept All Tracked Changes"
+msgstr ""
+
+#. 6FjwL
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id161647014053976\n"
+"help.text"
+msgid "<image src=\"cmd/lc_acceptalltrackedchanges.svg\" id=\"img_id981647014053977\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761647014053978\">Icon Accept All Tracked Changes</alt></image>"
+msgstr ""
+
+#. B8Sna
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id701647014053979\n"
+"help.text"
+msgid "Accept All Tracked Changes"
+msgstr ""
+
+#. CxSzX
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id341647014115494\n"
+"help.text"
+msgid "Reject All Tracked Changes"
+msgstr ""
+
+#. Nh45F
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id891647014121791\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rejectalltrackedchanges.svg\" id=\"img_id141647014121792\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861647014121793\">Icon Reject All Tracked Changes</alt></image>"
+msgstr ""
+
+#. YAGs7
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id451647014121795\n"
+"help.text"
+msgid "Reject All Tracked Changes"
+msgstr ""
+
+#. aEELF
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id901647014258055\n"
+"help.text"
+msgid "Accept Track Change and select next one"
+msgstr ""
+
+#. vCCQp
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id511647014293796\n"
+"help.text"
+msgid "<image src=\"cmd/lc_accepttrackedchangetonext.svg\" id=\"img_id791647014293797\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id611647014293798\">Icon Accept Track Change and select next one</alt></image>"
+msgstr ""
+
+#. 2E2qH
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id851647014293800\n"
+"help.text"
+msgid "Accept Track Change and select next one"
+msgstr ""
+
+#. o2wCB
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id451647014408416\n"
+"help.text"
+msgid "Reject Track Change and select next one"
+msgstr ""
+
+#. LGqTK
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id971647014413668\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rejecttrackedchangetonext.svg\" id=\"img_id631647014413669\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661647014413670\">Icon Reject Track Change and select next one</alt></image>"
+msgstr ""
+
+#. h9smy
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id361647014413671\n"
+"help.text"
+msgid "Reject Track Change and select next one"
+msgstr ""
+
+#. s3jxf
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id721647014498850\n"
+"help.text"
+msgid "<image src=\"cmd/lc_accepttrackedchanges.svg\" id=\"img_id551647014498851\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381647014498852\">Icon Manage Track Changes</alt></image>"
+msgstr ""
+
+#. nyhMH
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id641647014498854\n"
+"help.text"
+msgid "Manage Track Changes"
+msgstr ""
+
+#. WAoEE
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id111647018300377\n"
+"help.text"
+msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id271647018300378\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61647018300380\">Icon Insert Comment</alt></image>"
+msgstr ""
+
+#. JRJZp
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id851647018300382\n"
+"help.text"
+msgid "Insert Comment"
+msgstr ""
+
+#. KxwHJ
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id411647015103299\n"
+"help.text"
+msgid "<image src=\"cmd/lc_commentchangetracking.svg\" id=\"img_id181647015103300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381647015103301\">Icon Insert Track Change Comment</alt></image>"
+msgstr ""
+
+#. w43CP
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id611647015103302\n"
+"help.text"
+msgid "Insert Track Change Comment"
+msgstr ""
+
+#. vHtJD
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id481647015406606\n"
+"help.text"
+msgid "<image src=\"cmd/lc_protecttracechangemode.svg\" id=\"img_id591647015406607\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311647015406608\">Icon Protect Changes</alt></image>"
+msgstr ""
+
+#. GrZBC
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id901647015406609\n"
+"help.text"
+msgid "Protect Changes"
+msgstr ""
+
+#. n4z84
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id611647015829636\n"
+"help.text"
+msgid "<image src=\"cmd/lc_comparedocuments.svg\" id=\"img_id31647015829637\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id691647015829638\">Icon Compare Document</alt></image>"
+msgstr ""
+
+#. RxYUx
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id441647015829640\n"
+"help.text"
+msgid "Compare Document"
+msgstr ""
+
+#. RMv9v
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id331647019044607\n"
+"help.text"
+msgid "<image src=\"cmd/lc_mergedocuments.svg\" id=\"img_id271647019044609\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id451647019044610\">Icon Merge Document</alt></image>"
+msgstr ""
+
+#. GPhfh
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id201647019044612\n"
+"help.text"
+msgid "Merge Document"
+msgstr ""
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 65e6e156c19..7464d02a444 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-04-04 11:41+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"
@@ -4516,13 +4516,229 @@ msgctxt ""
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr "የ አሁኑን መስመር መጨረሻ: እና በ መጠቆሚያው በ ቀኝ በኩል ያለውን ጽሁፍ ወደ የሚቀጥለው መስመር ማንቀሳቀሻ: አዲስ አንቀጽ ሳይፈጥሩ"
-#. K54uB
+#. dG28G
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3149806\n"
+"help.text"
+msgid "The restart location specifies where the next line will start after a line break."
+msgstr ""
+
+#. dAvpm
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id781648827677698\n"
+"help.text"
+msgid "Possible values are below."
+msgstr ""
+
+#. 2VByF
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id251648822718602\n"
+"help.text"
+msgid "Original text layout"
+msgstr ""
+
+#. Y2mYP
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id341648819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_orig.png\" id=\"img_id941648819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id361648819712406\">Original text layout</alt></image>"
+msgstr ""
+
+#. GhVWf
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id191648813862661\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. dmg79
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id251648813862662\n"
+"help.text"
+msgid "Formatting Mark"
+msgstr ""
+
+#. fjDym
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id61648813862663\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. GgweD
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id141648813862664\n"
+"help.text"
+msgid "[None]"
+msgstr ""
+
+#. MhD6q
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id71648813862665\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_none.png\" id=\"img_id71648815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815500905\">Line break none</alt></image>"
+msgstr ""
+
+#. C3oyH
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id811648813862667\n"
+"help.text"
+msgid "Continue right after the current line."
+msgstr ""
+
+#. r9gv5
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id346648819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_none.png\" id=\"img_id941148819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id361648819752406\">Sample line break none (default)</alt></image>"
+msgstr ""
+
+#. gmKv3
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id991648813999363\n"
+"help.text"
+msgid "Next Full Line"
+msgstr ""
+
+#. 5jXBF
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id401648813999364\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_full.png\" id=\"img_id71638815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815501905\">Line break full</alt></image>"
+msgstr ""
+
+#. yP6GD
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id871648813999365\n"
+"help.text"
+msgid "Continue at the next full line, that is below all of the anchored objects intersecting with the current line."
+msgstr ""
+
+#. szejD
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id341641819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_full.png\" id=\"img_id341648819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id961648819712406\">Sample line break full</alt></image>"
+msgstr ""
+
+#. M4cmF
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id161648814025099\n"
+"help.text"
+msgid "Left"
+msgstr ""
+
+#. pD6fu
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id731748814025100\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_left.png\" id=\"img_id71647815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815500905\">Line break left</alt></image>"
+msgstr ""
+
+#. jrVKp
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id791648814025101\n"
+"help.text"
+msgid "Continue at the next line which is unblocked on the left hand side."
+msgstr ""
+
+#. ZBxDu
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id351648819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_left.png\" id=\"img_id941649819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id321648819712406\">Original text layout</alt></image>"
+msgstr ""
+
+#. hRhpk
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id271648814369416\n"
+"help.text"
+msgid "Right"
+msgstr ""
+
+#. 2BFuP
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id801648814369418\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_right.png\" id=\"img_id71648815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815500905\">Line break right</alt></image>"
+msgstr ""
+
+#. RE7s8
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id671648814369419\n"
+"help.text"
+msgid "Continue at the next line which is unblocked on the right hand side."
+msgstr ""
+
+#. Jd3mG
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id341648819715404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_right.png\" id=\"img_id94164883712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id361648819712407\">Original text layout</alt></image>"
+msgstr ""
+
+#. HjTa9
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id961648814424612\n"
+"help.text"
+msgid "The default value for the line break is none."
+msgstr ""
+
+#. L77Xt
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"par_id3149685\n"
"help.text"
-msgid "You can also insert a line break by pressing <keycode>Shift+Enter</keycode>."
+msgid "You can also insert a default line break by pressing <keycode>Shift+Enter</keycode>."
msgstr ""
#. CZccf
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index 5213ad2bcf4..9944567f2dd 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -709,23 +709,23 @@ msgctxt ""
msgid "<bookmark_value>spellcheck;Automatic Spell Checking on/off</bookmark_value> <bookmark_value>automatic spellcheck</bookmark_value> <bookmark_value>checking spelling;while typing</bookmark_value> <bookmark_value>words;disabling spellcheck</bookmark_value>"
msgstr "<bookmark_value>ፊደል ማረሚያ;ራሱ በራሱ ፊደል ማረሚያ ማብሪያ/ማጥፊያ</bookmark_value> <bookmark_value>ራሱ በራሱ ፊደል ማረሚያ</bookmark_value> <bookmark_value>ፊደል ማረሚያ;በምጽፍበት ጊዜ</bookmark_value> <bookmark_value>ቃላት;ፊደል ማረሚያ ማሰናከያ</bookmark_value>"
-#. NED6R
+#. D3Z5v
#: auto_spellcheck.xhp
msgctxt ""
"auto_spellcheck.xhp\n"
"hd_id3154265\n"
"help.text"
-msgid "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\" name=\"Automatically Check Spelling\">Automatically Check Spelling</link></variable>"
-msgstr "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\" name=\"Automatically Check Spelling\">ራሱ በራሱ ፊደል ማረሚያ</link></variable>"
+msgid "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\" name=\"Automatically Check Spelling\">Automatic Check Spelling</link></variable>"
+msgstr ""
-#. S35vF
+#. 2zePN
#: auto_spellcheck.xhp
msgctxt ""
"auto_spellcheck.xhp\n"
"par_id3154664\n"
"help.text"
-msgid "You can have $[officename] automatically check spelling while you type and underline possible misspelt words with a red wavy line."
-msgstr "ማድረግ ይችላሉ $[officename] ራሱ በራሱ ፊደል እንዲያርም እርስዎ በሚጽፉበት ጊዜ የተሳሳተ የፊደል ግድፈት ሲያገኝ በ ቀይ ማዕበል መስመር ከ ስሩ እንዲያሰምርበት"
+msgid "%PRODUCTNAME can automatically check spelling while you type and underline possible misspelled words with a red wavy line."
+msgstr ""
#. tUdEw
#: auto_spellcheck.xhp
@@ -15397,14 +15397,14 @@ msgctxt ""
msgid "To Enable and Disable Smart Tags"
msgstr "Smart Tags ለማስቻል ወይንም ለማሰናከል"
-#. oLnFX
+#. dFEPA
#: smarttags.xhp
msgctxt ""
"smarttags.xhp\n"
"par_id349131\n"
"help.text"
-msgid "When you have installed at least one Smart Tags extension, you see the <link href=\"text/shared/01/06040700.xhp\">Smart Tags</link> page in <item type=\"menuitem\">Tools - Autocorrect Options</item>. Use this dialog to enable or disable Smart Tags and to manage the installed tags."
-msgstr "እርስዎ ቢያንስ አንድ የ Smart Tag ተጨማሪዎች ከ ገጠሙ: ለ እርስዎ ይታያል የ <link href=\"text/shared/01/06040700.xhp\">Smart Tags</link> ገጽ ውስጥ: <item type=\"menuitem\"> መሳሪያዎች - በራሱ አራሚ ምርጫዎች</item> ይህን ንግግር ይጠቀሙ ለ ማስቻል ወይንም ለማሰናከል የ Smart Tags እና ለ ማስተዳደር የ ተገጠሙ tags"
+msgid "When you have installed at least one Smart Tags extension, you see the <link href=\"text/shared/01/06040700.xhp\">Smart Tags</link> page in <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>. Use this dialog to enable or disable Smart Tags and to manage the installed tags."
+msgstr ""
#. CPCjL
#: smarttags.xhp
@@ -19096,14 +19096,14 @@ msgctxt ""
msgid "<variable id=\"using_thesaurus\"><link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"Thesaurus\">Thesaurus</link></variable>"
msgstr "<variable id=\"using_thesaurus\"><link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"Thesaurus\">ተመሳሳይ</link></variable>"
-#. PSuH5
+#. FdDJr
#: using_thesaurus.xhp
msgctxt ""
"using_thesaurus.xhp\n"
"par_id3149820\n"
"help.text"
-msgid "You can use the thesaurus to look up synonyms or related terms."
-msgstr "እርስዎ መጠቀም ይችላሉ የ ተመሳሳይ መመልከቻ ለ ተመሳሳይ ወይንም ለ ተዛመዱ ደንቦች"
+msgid "Use the thesaurus to look up synonyms or related terms."
+msgstr ""
#. ynxEV
#: using_thesaurus.xhp
diff --git a/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 4d621ad80a3..708b572f5a2 100644
--- a/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-03-31 10:35+0200\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-11-26 20:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/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: 1563125605.000000\n"
#. tBfTE
@@ -2455,15 +2455,6 @@ msgctxt ""
msgid "&Cancel"
msgstr "&መሰረዣ"
-#. rvG8Q
-#: Control.ulf
-msgctxt ""
-"Control.ulf\n"
-"OOO_CONTROL_206\n"
-"LngText.text"
-msgid "error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here"
-msgstr "የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል የስህተት ጽሁፍ ወደዚህ ይሄዳል"
-
#. D6Bgs
#: Control.ulf
msgctxt ""
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 3510c0d2faf..fbd39043a96 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
"PO-Revision-Date: 2021-12-12 19:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/am/>\n"
@@ -2086,6 +2086,26 @@ msgctxt ""
msgid "F~ourier Analysis..."
msgstr "የ ፉ~ሪዬር መመርመሪያ..."
+#. aTBPM
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertSparkline\n"
+"Label\n"
+"value.text"
+msgid "Insert Sparkline..."
+msgstr ""
+
+#. CoZgJ
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:DeleteSparkline\n"
+"Label\n"
+"value.text"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dTXDB
#: CalcCommands.xcu
msgctxt ""
@@ -2116,16 +2136,6 @@ msgctxt ""
msgid "Data ~Validation..."
msgstr "ዳታ ~ማረጋገጫ..."
-#. xxDxd
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "ረድፎች ማጥፊያ"
-
#. wZAYL
#: CalcCommands.xcu
msgctxt ""
@@ -2136,16 +2146,6 @@ msgctxt ""
msgid "Insert"
msgstr "ማስገቢያ"
-#. jgGQR
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "አምዶች ማጥፊያ"
-
#. 5PPGW
#: CalcCommands.xcu
msgctxt ""
@@ -2276,26 +2276,6 @@ msgctxt ""
msgid "Delete All Comments"
msgstr "ሁሉንም አስተያየቶች ማጥፊያ"
-#. PzCtT
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comm~ent"
-msgstr "አስተ~ያየት"
-
-#. HAWW3
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"PopupLabel\n"
-"value.text"
-msgid "Insert Co~mment"
-msgstr "አስ~ተያየት ማስገቢያ"
-
#. uUwKE
#: CalcCommands.xcu
msgctxt ""
@@ -3196,16 +3176,6 @@ msgctxt ""
msgid "~Show Sheet..."
msgstr "ወረቀቶች ~ማሳያ..."
-#. BARqL
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "ክፍሎች ማዋሀጃ"
-
#. APBqu
#: CalcCommands.xcu
msgctxt ""
@@ -10586,26 +10556,6 @@ msgctxt ""
msgid "Tas~k Pane"
msgstr "የ ስ~ራ ክፍል"
-#. EAawg
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "ክፍሎች ማዋሀጃ"
-
-#. eQphw
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells"
-msgstr "ክፍሎች መክፈያ"
-
#. Bvk8Q
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10736,26 +10686,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "አምዶች ማስገቢያ"
-#. momxn
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Row"
-msgstr "ረድፍ ማጥፊያ"
-
-#. YzuWU
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Column"
-msgstr "አምድ ማጥፊያ"
-
#. yTCcA
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10866,16 +10796,6 @@ msgctxt ""
msgid "~Table..."
msgstr "~ሰንጠረዥ..."
-#. apmru
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comme~nt"
-msgstr "አስተያ~የት"
-
#. XUrBD
#: DrawImpressCommands.xcu
msgctxt ""
@@ -21918,6 +21838,26 @@ msgctxt ""
msgid "~Merge"
msgstr "~ማዋሀጃ"
+#. rAjSP
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:MergeCells\n"
+"Label\n"
+"value.text"
+msgid "Merge Cells"
+msgstr ""
+
+#. ktF7K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SplitCell\n"
+"Label\n"
+"value.text"
+msgid "Split Cells..."
+msgstr ""
+
#. 2gYcx
#: GenericCommands.xcu
msgctxt ""
@@ -26408,6 +26348,66 @@ msgctxt ""
msgid "Insert Column"
msgstr "አምድ ማስገቢያ"
+#. LhLtz
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"Label\n"
+"value.text"
+msgid "Delete Columns"
+msgstr ""
+
+#. AG4Qy
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Columns"
+msgstr ""
+
+#. KxsdA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected columns"
+msgstr ""
+
+#. VL8Wa
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"Label\n"
+"value.text"
+msgid "Delete Rows"
+msgstr ""
+
+#. uAPr9
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Rows"
+msgstr ""
+
+#. wjm8K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected rows"
+msgstr ""
+
#. poXFa
#: GenericCommands.xcu
msgctxt ""
@@ -29088,6 +29088,16 @@ msgctxt ""
msgid "Slide"
msgstr "ተንሸራታች"
+#. zDinJ
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.DrawPageDeck\n"
+"Title\n"
+"value.text"
+msgid "Page"
+msgstr ""
+
#. E9FJB
#: Sidebar.xcu
msgctxt ""
@@ -32388,66 +32398,6 @@ msgctxt ""
msgid "Columns ~Before"
msgstr "አምዶች ~በፊት"
-#. rzDZU
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "ረድፎች ማጥፊያ"
-
-#. DDmHu
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Rows"
-msgstr "~ረድፎች"
-
-#. mBMTr
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected rows"
-msgstr "የ ተመረጠውን ረድፍ ማጥፊያ"
-
-#. WGcRm
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "አምዶች ማጥፊያ"
-
-#. P6wy9
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Columns"
-msgstr "~አምዶች"
-
-#. rhbdp
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected columns"
-msgstr "የ ተመረጠውን አምድ ማጥፊያ"
-
#. RxF66
#: WriterCommands.xcu
msgctxt ""
@@ -32478,26 +32428,6 @@ msgctxt ""
msgid "Delete table"
msgstr "ሰንጠረዥ ማጥፊያ"
-#. f2Fpk
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells..."
-msgstr "ክፍሎች መክፈያ..."
-
-#. DqRgD
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "ክፍሎች ማዋሀጃ"
-
#. TTVL5
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index 8c4a932a8c7..b796e26745a 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: 2022-02-18 12:18+0100\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
"PO-Revision-Date: 2021-11-26 20:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/am/>\n"
@@ -3251,6 +3251,18 @@ msgctxt "STR_INDENTCELL"
msgid "Indent: "
msgstr "ማስረጊያ: "
+#. HWAmv
+#: sc/inc/globstr.hrc:542
+msgctxt "STR_UNDO_INSERT_SPARKLINE"
+msgid "Insert Sparkline Group"
+msgstr ""
+
+#. LiBMo
+#: sc/inc/globstr.hrc:543
+msgctxt "STR_UNDO_DELETE_SPARKLINE"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dB8cp
#: sc/inc/pvfundlg.hrc:28
msgctxt "SCSTR_DPFUNCLISTBOX"
@@ -27219,11 +27231,11 @@ msgctxt "pastespecial|PasteSpecial"
msgid "Paste Special"
msgstr "የ ተለየ መለጠፊያ"
-#. diPtG
+#. 9DVsp
#: sc/uiconfig/scalc/ui/pastespecial.ui:130
msgctxt "pastespecial|paste_values_only|label"
-msgid "_Values Only"
-msgstr "_ዋጋዎች ብቻ"
+msgid "Values Only"
+msgstr ""
#. XyU8o
#: sc/uiconfig/scalc/ui/pastespecial.ui:134
@@ -27237,11 +27249,11 @@ msgctxt "pastespecial|extended_tip|paste_values_only"
msgid "Pastes numbers, text, dates and the results of formulas."
msgstr "ቁጥሮች: ጽሁፍ: ቀኖች እና የ መቀመሪያ ውጤቶች መለጠፊያ:"
-#. CTEKF
+#. qDbrz
#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
-msgid "Values & _Formats"
-msgstr "ዋጋዎች & _አቀራረብ"
+msgid "Values & Formats"
+msgstr ""
#. 7GuDi
#: sc/uiconfig/scalc/ui/pastespecial.ui:157
@@ -27255,11 +27267,11 @@ msgctxt "pastespecial|extended_tip|paste_values_formats"
msgid "Pastes cell values, formula results and formats applied to cells."
msgstr ""
-#. Rb8KR
+#. uCJBB
#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
-msgid "Formats Onl_y"
-msgstr "አቀራረብ ብ_ቻ"
+msgid "Formats Only"
+msgstr ""
#. Cvyjn
#: sc/uiconfig/scalc/ui/pastespecial.ui:180
@@ -27273,11 +27285,11 @@ 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
+#. osqEX
#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
-msgid "_Transpose All"
-msgstr "ሁሉንም _መቀየሪያ"
+msgid "Transpose All"
+msgstr ""
#. sbLGi
#: sc/uiconfig/scalc/ui/pastespecial.ui:203
@@ -27291,11 +27303,11 @@ msgctxt "pastespecial|extended_tip|paste_transpose"
msgid "Pastes cell contents transposed, hence columns are converted to rows."
msgstr ""
-#. 4ETCT
+#. B28BC
#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
-msgid "_Run immediately"
-msgstr "ወዲያውኑ _ማስኬጃ"
+msgid "Run immediately"
+msgstr ""
#. 7a9JE
#: sc/uiconfig/scalc/ui/pastespecial.ui:238
@@ -27309,11 +27321,11 @@ msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr "በቅድሚያ ማሰናጃ"
-#. g6DfA
+#. huhPQ
#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
-msgid "_All"
-msgstr "_ሁሉንም"
+msgid "All"
+msgstr ""
#. Labin
#: sc/uiconfig/scalc/ui/pastespecial.ui:298
@@ -27321,11 +27333,11 @@ msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
-#. qzFbg
+#. sg69o
#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
-msgid "_Numbers"
-msgstr "_ቁጥሮች"
+msgid "Numbers"
+msgstr ""
#. SCVEu
#: sc/uiconfig/scalc/ui/pastespecial.ui:317
@@ -27333,11 +27345,11 @@ msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr "ቁጥሮች የያዙ ክፍሎች ማስገቢያ"
-#. BSEWE
+#. APG3W
#: sc/uiconfig/scalc/ui/pastespecial.ui:328
msgctxt "pastespecial|text"
-msgid "Te_xt"
-msgstr "ጽ_ሁፍ"
+msgid "Text"
+msgstr ""
#. JWDk5
#: sc/uiconfig/scalc/ui/pastespecial.ui:336
@@ -27345,11 +27357,11 @@ msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr "ጽሁፍ የያዙ ክፍሎች ማስገቢያ"
-#. DBaJD
+#. HEwjB
#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
-msgid "_Date & time"
-msgstr "_ቀን & ሰአት"
+msgid "Date & time"
+msgstr ""
#. jq6Md
#: sc/uiconfig/scalc/ui/pastespecial.ui:355
@@ -27357,11 +27369,11 @@ msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr "ቀን እና የ ጊዜ ዋጋዎች የያዙ ክፍሎች ማስገቢያ:"
-#. aHXF8
+#. HKgB9
#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
-msgid "For_mats"
-msgstr "አቀራ_ረብ"
+msgid "Formats"
+msgstr ""
#. ehyEf
#: sc/uiconfig/scalc/ui/pastespecial.ui:374
@@ -27369,11 +27381,11 @@ msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr "የ ክፍል አቀራረብ መለያ ማስገቢያ:"
-#. NT4Am
+#. vAFRC
#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
-msgid "_Comments"
-msgstr "_አስተያየቶች"
+msgid "Comments"
+msgstr ""
#. 3uP7i
#: sc/uiconfig/scalc/ui/pastespecial.ui:393
@@ -27381,11 +27393,11 @@ 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
+#. 5n5r7
#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
-msgid "Ob_jects"
-msgstr "እቃ_ዎች"
+msgid "Objects"
+msgstr ""
#. DZsnr
#: sc/uiconfig/scalc/ui/pastespecial.ui:412
@@ -27393,11 +27405,11 @@ 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
+#. 2wYuG
#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
-msgid "F_ormulas"
-msgstr "መ_ቀመሪያዎች"
+msgid "Formulas"
+msgstr ""
#. Na5Ba
#: sc/uiconfig/scalc/ui/pastespecial.ui:431
@@ -27411,11 +27423,11 @@ msgctxt "pastespecial|label1"
msgid "Paste"
msgstr "መለጠፊያ"
-#. fonBJ
+#. SKs5y
#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
-msgid "Don't sh_ift"
-msgstr "አትቀ_ይር"
+msgid "Don't shift"
+msgstr ""
#. q3Xv3
#: sc/uiconfig/scalc/ui/pastespecial.ui:486
@@ -27423,11 +27435,11 @@ msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
-#. RuiU6
+#. 4hD8A
#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
-msgid "_Down"
-msgstr "ወደ _ታች"
+msgid "Down"
+msgstr ""
#. BNALN
#: sc/uiconfig/scalc/ui/pastespecial.ui:507
@@ -27435,11 +27447,11 @@ msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
-#. obSAt
+#. Psyof
#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
-msgid "_Right"
-msgstr "ወደ _ቀኝ"
+msgid "Right"
+msgstr ""
#. GEFe7
#: sc/uiconfig/scalc/ui/pastespecial.ui:528
@@ -27453,11 +27465,11 @@ msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr "ክፍሎች መቀየሪያ"
-#. nuJd9
+#. JXJTf
#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
-msgid "As _Link"
-msgstr "እንደ _አገናኝ"
+msgid "As Link"
+msgstr ""
#. Bg9dc
#: sc/uiconfig/scalc/ui/pastespecial.ui:596
@@ -27465,11 +27477,11 @@ 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
+#. 7yzbi
#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
-msgid "Trans_pose"
-msgstr "መቀየ_ሪያ"
+msgid "Transpose"
+msgstr ""
#. P3eE4
#: sc/uiconfig/scalc/ui/pastespecial.ui:615
@@ -27477,11 +27489,11 @@ 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
+#. 3VcAr
#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
-msgid "_Skip empty cells"
-msgstr "ባዶ ክፍሎች _መዝለያ"
+msgid "Skip empty cells"
+msgstr ""
#. BodqB
#: sc/uiconfig/scalc/ui/pastespecial.ui:630
@@ -27501,11 +27513,11 @@ msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr "ምርጫዎች"
-#. nJiy4
+#. ekYg5
#: sc/uiconfig/scalc/ui/pastespecial.ui:681
msgctxt "pastespecial|none"
-msgid "Non_e"
-msgstr "ምን_ም"
+msgid "None"
+msgstr ""
#. 7GKDG
#: sc/uiconfig/scalc/ui/pastespecial.ui:690
@@ -27513,11 +27525,11 @@ 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
+#. QhQnq
#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
-msgid "_Add"
-msgstr "_መጨመሪያ"
+msgid "Add"
+msgstr ""
#. bNyh2
#: sc/uiconfig/scalc/ui/pastespecial.ui:711
@@ -27525,11 +27537,11 @@ 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
+#. 4SmrC
#: sc/uiconfig/scalc/ui/pastespecial.ui:723
msgctxt "pastespecial|subtract"
-msgid "_Subtract"
-msgstr "_መቀነሻ"
+msgid "Subtract"
+msgstr ""
#. 2SKbT
#: sc/uiconfig/scalc/ui/pastespecial.ui:732
@@ -27537,11 +27549,11 @@ msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
-#. zdDUB
+#. 4HCRU
#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
-msgid "_Multiply"
-msgstr "_ማባዣ"
+msgid "Multiply"
+msgstr ""
#. jkRDm
#: sc/uiconfig/scalc/ui/pastespecial.ui:753
@@ -27549,11 +27561,11 @@ msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
-#. 7Nd8u
+#. 55rBT
#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
-msgid "_Divide"
-msgstr "_ማካፈያ"
+msgid "Divide"
+msgstr ""
#. 9VKdS
#: sc/uiconfig/scalc/ui/pastespecial.ui:774
@@ -30269,307 +30281,307 @@ msgid "Optimize result to"
msgstr "ከፍተኛው ውጤት ወደ"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:155
+#: sc/uiconfig/scalc/ui/solverdlg.ui:162
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "ክፍሎቹን _በ መቀየር"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:166
+#: sc/uiconfig/scalc/ui/solverdlg.ui:173
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "አነስ_ተኛ"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:178
+#: sc/uiconfig/scalc/ui/solverdlg.ui:185
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:189
+#: sc/uiconfig/scalc/ui/solverdlg.ui:196
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_ከፍተኛ"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:201
+#: sc/uiconfig/scalc/ui/solverdlg.ui:208
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:226
+#: sc/uiconfig/scalc/ui/solverdlg.ui:233
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:269
+#: sc/uiconfig/scalc/ui/solverdlg.ui:276
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:312
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_ዋጋ ከ"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:317
+#: sc/uiconfig/scalc/ui/solverdlg.ui:324
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:342
+#: sc/uiconfig/scalc/ui/solverdlg.ui:349
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:428
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "_ክፍል ማመሳከሪያ"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:442
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_አንቀሳቃሽ"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:456
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "ዋ_ጋ"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:476
+#: sc/uiconfig/scalc/ui/solverdlg.ui:483
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "የ ክፍል ማመሳከሪያ"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:495
+#: sc/uiconfig/scalc/ui/solverdlg.ui:502
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "የ ክፍል ማመሳከሪያ"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:514
+#: sc/uiconfig/scalc/ui/solverdlg.ui:521
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "የ ክፍል ማመሳከሪያ"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:533
+#: sc/uiconfig/scalc/ui/solverdlg.ui:540
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "የ ክፍል ማመሳከሪያ"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:591
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:592
+#: sc/uiconfig/scalc/ui/solverdlg.ui:599
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:593
+#: sc/uiconfig/scalc/ui/solverdlg.ui:600
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:594
+#: sc/uiconfig/scalc/ui/solverdlg.ui:601
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Integer"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:595
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binary"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:599
+#: sc/uiconfig/scalc/ui/solverdlg.ui:606
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "አንቀሳቃሽ"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:613
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:614
+#: sc/uiconfig/scalc/ui/solverdlg.ui:621
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:615
+#: sc/uiconfig/scalc/ui/solverdlg.ui:622
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:616
+#: sc/uiconfig/scalc/ui/solverdlg.ui:623
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Integer"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:617
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binary"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:621
+#: sc/uiconfig/scalc/ui/solverdlg.ui:628
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "አንቀሳቃሽ"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:635
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:636
+#: sc/uiconfig/scalc/ui/solverdlg.ui:643
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:637
+#: sc/uiconfig/scalc/ui/solverdlg.ui:644
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:638
+#: sc/uiconfig/scalc/ui/solverdlg.ui:645
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Integer"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:639
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binary"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:643
+#: sc/uiconfig/scalc/ui/solverdlg.ui:650
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "አንቀሳቃሽ"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:657
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:658
+#: sc/uiconfig/scalc/ui/solverdlg.ui:665
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:659
+#: sc/uiconfig/scalc/ui/solverdlg.ui:666
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:660
+#: sc/uiconfig/scalc/ui/solverdlg.ui:667
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Integer"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:661
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binary"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:665
+#: sc/uiconfig/scalc/ui/solverdlg.ui:672
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "አንቀሳቃሽ"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:685
+#: sc/uiconfig/scalc/ui/solverdlg.ui:692
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "ዋጋ"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:705
+#: sc/uiconfig/scalc/ui/solverdlg.ui:712
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "ዋጋ"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:725
+#: sc/uiconfig/scalc/ui/solverdlg.ui:732
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "ዋጋ"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:745
+#: sc/uiconfig/scalc/ui/solverdlg.ui:752
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "ዋጋ"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:803
+#: sc/uiconfig/scalc/ui/solverdlg.ui:810
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "ማስወገጃ"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:815
+#: sc/uiconfig/scalc/ui/solverdlg.ui:822
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "ማስወገጃ"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:827
+#: sc/uiconfig/scalc/ui/solverdlg.ui:834
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "ማስወገጃ"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:839
+#: sc/uiconfig/scalc/ui/solverdlg.ui:846
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "ማስወገጃ"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:862
+#: sc/uiconfig/scalc/ui/solverdlg.ui:869
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "ሁኔታዎችን መወሰኛ"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:895
+#: sc/uiconfig/scalc/ui/solverdlg.ui:899
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
@@ -30677,13 +30689,13 @@ msgid "Sort"
msgstr "መለያ"
#. BMbZ7
-#: sc/uiconfig/scalc/ui/sortdialog.ui:139
+#: sc/uiconfig/scalc/ui/sortdialog.ui:112
msgctxt "sortdialog|criteria"
msgid "Sort Criteria"
msgstr "መመዘኛ መለያ"
#. gMSdg
-#: sc/uiconfig/scalc/ui/sortdialog.ui:186
+#: sc/uiconfig/scalc/ui/sortdialog.ui:135
msgctxt "sortdialog|options"
msgid "Options"
msgstr "ምርጫዎች"
@@ -30988,6 +31000,102 @@ msgctxt "sortwarning|sorttip"
msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
msgstr "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
+#. 5YeNV
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:8
+msgctxt "SparklineDialog"
+msgid "Sparkline Dialog"
+msgstr ""
+
+#. Atj7n
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:161
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Input range:"
+msgstr ""
+
+#. gYQBd
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:178
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Output range:"
+msgstr ""
+
+#. faM2q
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:197
+msgctxt "SparklineDialog|label-data"
+msgid "Data"
+msgstr ""
+
+#. mcBDU
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:231
+msgctxt "SparklineDialog|label-series"
+msgid "Series:"
+msgstr ""
+
+#. N5L8b
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:246
+msgctxt "SparklineDialog|label-negative"
+msgid "Negative Points:"
+msgstr ""
+
+#. y5dsG
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:318
+msgctxt "SparklineDialog|label-low"
+msgid "Low Points:"
+msgstr ""
+
+#. LRGMH
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:390
+msgctxt "SparklineDialog|label-high"
+msgid "High Points:"
+msgstr ""
+
+#. WSgFy
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:426
+msgctxt "SparklineDialog|label-marker"
+msgid "Marker:"
+msgstr ""
+
+#. 6kVrt
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:556
+msgctxt "SparklineDialog|label-first"
+msgid "First Points:"
+msgstr ""
+
+#. tdvGa
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:572
+msgctxt "SparklineDialog|label-last"
+msgid "Last Points:"
+msgstr ""
+
+#. UAFwj
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:588
+msgctxt "SparklineDialog|label-type"
+msgid "Type:"
+msgstr ""
+
+#. gxMQL
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:608
+msgctxt "SparklineDialog|line-radiobutton"
+msgid "Line"
+msgstr ""
+
+#. VPdbn
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:627
+msgctxt "SparklineDialog|column-radiobutton"
+msgid "Column"
+msgstr ""
+
+#. oLsAN
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:646
+msgctxt "SparklineDialog|stacked-radiobutton"
+msgid "Stacked"
+msgstr ""
+
+#. 9uKMb
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:688
+msgctxt "SparklineDialog|label-properties"
+msgid "Properties"
+msgstr ""
+
#. p9BBw
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29
msgctxt "splitcolumnentry|name"
diff --git a/source/am/scp2/source/ooo.po b/source/am/scp2/source/ooo.po
index fd5fe0e48b6..7d18d53e175 100644
--- a/source/am/scp2/source/ooo.po
+++ b/source/am/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-02-21 15:23+0100\n"
-"PO-Revision-Date: 2021-09-12 07:36+0000\n"
+"PO-Revision-Date: 2022-03-13 03:06+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/am/>\n"
"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: 1558724533.000000\n"
#. CYBGJ
@@ -4487,7 +4487,7 @@ msgctxt ""
"STR_NAME_MODULE_EXTENSION_DICTIONARY_CKB\n"
"LngText.text"
msgid "Central Kurdish"
-msgstr ""
+msgstr "Central Kurdish"
#. xEtQ6
#: module_ooo.ulf
@@ -4496,7 +4496,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_CKB\n"
"LngText.text"
msgid "Central Kurdish spelling dictionary"
-msgstr ""
+msgstr "Central Kurdish spelling dictionary"
#. CCE5q
#: module_ooo.ulf
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index 2f7b367e35c..730d5c359ae 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: 2022-02-21 15:23+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-11-24 11:09+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/am/>\n"
@@ -9070,10 +9070,10 @@ msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
msgstr ""
-#. GuDqe
+#. CA9F9
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1195
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
-msgid "Select a full hd resolution for a very high quality slide display."
+msgid "Select a full HD resolution for a very high-quality slide display."
msgstr ""
#. zsvW6
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index 271a0c79f1c..34bd68f86bd 100644
--- a/source/am/sfx2/messages.po
+++ b/source/am/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-09 16:46+0100\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
"PO-Revision-Date: 2021-11-23 08:09+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/am/>\n"
@@ -1638,334 +1638,346 @@ msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr ""
+#. BSyb4
+#: include/sfx2/strings.hrc:293
+msgctxt "STR_REFRESH_MASTER_PASSWORD"
+msgid "The master password is stored in an outdated format, you should refresh it"
+msgstr ""
+
+#. ysChU
+#: include/sfx2/strings.hrc:294
+msgctxt "STR_REFRESH_PASSWORD"
+msgid "Refresh Password"
+msgstr ""
+
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "የ ንብ እንጀራ"
#. uwaPH
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "ሰማያዊ ክብ"
#. hHRDz
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "የ ንድፍ እቅድ"
#. MAnPU
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "ከረሜላ"
#. jEiAn
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "ትኩረት"
#. GADdA
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "የ ጫካ ወፍ"
#. TT8G5
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "ቀስቃሽ"
#. fCKG9
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "ብርሃን"
#. pcLWs
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "ትልቅ ከተማ"
#. FFDBk
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "እኩለ ሌሊት ሰማያዊ"
#. yiCzk
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "ተፈጥሮ ማሳያ"
#. cCZzC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "እርሳስ"
#. Ji4Cw
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "ፒያኖ"
#. mrbiq
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "ቦርሳ"
#. ysBGy
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "ሂደት"
#. gtPt9
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "ፀሐይ መጥለቂያ"
#. 73Y2e
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "የ ጥንት"
#. MSY8y
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "ደማቅ"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "ስራ ማመልከቻ"
#. Koe3V
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "መቀጠያ"
#. hCpfD
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "ነባር"
#. d7Hyk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "ዘመናዊ"
#. CVJEC
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ serif"
#. XdU49
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "የ ንግድ ካርድ ከ አርማ ጋር"
#. UAmSj
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "ቀላል"
#. W7NVH
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:331
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ማስወገጃ"
#. JReRY
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:332
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "ሁሉንም ማጽጃ"
#. yC8Gs
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:334
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "የ መግቢያ ቃል እርዝመት"
#. FKFmJ
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:335
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "እርስዎ ያስገቡት የ መግቢያ ቃል የ መረጃ መለዋወጫ ችግር ይፈጥራል: እባክዎን የ መግቢያ ቃል ያስገቡ ያነሰ ከ 52 ባይትስ: ወይንም የ በለጠ ከ 55 ባይትስ:"
#. jBQFN
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:338
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:340
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:342
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "ሰነድ"
#. XDGTb
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "ሰንጠረዥ"
#. 3UZXB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "ማቅረቢያ"
#. noN5s
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:345
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "መሳያ"
#. QpuFo
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "በቅርብ ጊዜ የ ተጠቀሙበት"
#. EcAjb
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "የ ቅርብ ጊዜ ባህሪ የለም"
#. tfjbD
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "ሁሉንም ነባ~ር ቴምፕሌቶች እንደ ነበር መመለሻ"
#. GWuDE
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:350
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~ማምጫ"
#. 8Cwfk
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "ተ~ጨማሪዎች"
#. idGvM
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "እንደገና መሰየሚያ"
#. EyjE3
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:357
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "ምድብ እንደገና መሰየሚያ"
#. T79Eb
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "አዲስ ምድብ"
@@ -2036,289 +2048,289 @@ msgid "_Yes"
msgstr "_አዎ"
#. F5rSU
-#: sfx2/inc/dinfdlg.hrc:27
+#: sfx2/inc/dinfdlg.hrc:29
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Checked by"
msgstr "የ ተመረመረው በ"
#. BCYGG
-#: sfx2/inc/dinfdlg.hrc:28
+#: sfx2/inc/dinfdlg.hrc:30
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Client"
msgstr "ደምበኛ"
#. nSrT3
-#: sfx2/inc/dinfdlg.hrc:29
+#: sfx2/inc/dinfdlg.hrc:31
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date completed"
msgstr "የ ተፈጸመበት ቀን"
#. HEaEC
-#: sfx2/inc/dinfdlg.hrc:30
+#: sfx2/inc/dinfdlg.hrc:32
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Department"
msgstr "ክፍል"
#. TxAux
-#: sfx2/inc/dinfdlg.hrc:31
+#: sfx2/inc/dinfdlg.hrc:33
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Destinations"
msgstr "መድረሻው"
#. f3nqh
-#: sfx2/inc/dinfdlg.hrc:32
+#: sfx2/inc/dinfdlg.hrc:34
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Disposition"
msgstr "አቀማመጥ"
#. uznMD
-#: sfx2/inc/dinfdlg.hrc:33
+#: sfx2/inc/dinfdlg.hrc:35
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Division"
msgstr "ማካፈያ"
#. 6DuFF
-#: sfx2/inc/dinfdlg.hrc:34
+#: sfx2/inc/dinfdlg.hrc:36
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Document number"
msgstr "የ ሰነድ ቁጥር"
#. XXKuP
-#: sfx2/inc/dinfdlg.hrc:35
+#: sfx2/inc/dinfdlg.hrc:37
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Editor"
msgstr "አራሚው"
#. hRRmF
-#: sfx2/inc/dinfdlg.hrc:36
+#: sfx2/inc/dinfdlg.hrc:38
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Email"
msgstr "ኢሜይል"
#. xNvDx
-#: sfx2/inc/dinfdlg.hrc:37
+#: sfx2/inc/dinfdlg.hrc:39
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Forward to"
msgstr "ወደ ፊት ለ"
#. xwv85
-#: sfx2/inc/dinfdlg.hrc:38
+#: sfx2/inc/dinfdlg.hrc:40
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Group"
msgstr "ቡድን"
#. u59Qp
-#: sfx2/inc/dinfdlg.hrc:39
+#: sfx2/inc/dinfdlg.hrc:41
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Info"
msgstr "መረጃ"
#. Ltq9H
-#: sfx2/inc/dinfdlg.hrc:40
+#: sfx2/inc/dinfdlg.hrc:42
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Language"
msgstr "ቋንቋ"
#. bv3HC
-#: sfx2/inc/dinfdlg.hrc:41
+#: sfx2/inc/dinfdlg.hrc:43
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Mailstop"
msgstr "ፖስታ ቤት"
#. AFGi2
-#: sfx2/inc/dinfdlg.hrc:42
+#: sfx2/inc/dinfdlg.hrc:44
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Matter"
msgstr "እቃ"
#. wGAD6
-#: sfx2/inc/dinfdlg.hrc:43
+#: sfx2/inc/dinfdlg.hrc:45
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Office"
msgstr "ቢሮ"
#. ZqphY
-#: sfx2/inc/dinfdlg.hrc:44
+#: sfx2/inc/dinfdlg.hrc:46
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Owner"
msgstr "ባለቤት"
#. mK8Th
-#: sfx2/inc/dinfdlg.hrc:45
+#: sfx2/inc/dinfdlg.hrc:47
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Project"
msgstr "እቅድ"
#. zFeHt
-#: sfx2/inc/dinfdlg.hrc:46
+#: sfx2/inc/dinfdlg.hrc:48
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Publisher"
msgstr "አሳታሚው"
#. pF2eJ
-#: sfx2/inc/dinfdlg.hrc:47
+#: sfx2/inc/dinfdlg.hrc:49
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Purpose"
msgstr "አላማው"
#. GTPFZ
-#: sfx2/inc/dinfdlg.hrc:48
+#: sfx2/inc/dinfdlg.hrc:50
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Received from"
msgstr "የ ተቀበለው ከ"
#. dvGyQ
-#: sfx2/inc/dinfdlg.hrc:49
+#: sfx2/inc/dinfdlg.hrc:51
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded by"
msgstr "የ ተመዘገበው በ"
#. GjVXD
-#: sfx2/inc/dinfdlg.hrc:50
+#: sfx2/inc/dinfdlg.hrc:52
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded date"
msgstr "የ ተመዘገበበት ቀን"
#. o5oXa
-#: sfx2/inc/dinfdlg.hrc:51
+#: sfx2/inc/dinfdlg.hrc:53
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Reference"
msgstr "ማመሳከሪያ"
#. ex26g
-#: sfx2/inc/dinfdlg.hrc:52
+#: sfx2/inc/dinfdlg.hrc:54
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Source"
msgstr "ምንጭ"
#. 4HSZB
-#: sfx2/inc/dinfdlg.hrc:53
+#: sfx2/inc/dinfdlg.hrc:55
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Status"
msgstr "ሁኔታው"
#. U3RdC
-#: sfx2/inc/dinfdlg.hrc:54
+#: sfx2/inc/dinfdlg.hrc:56
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Telephone number"
msgstr "የ ስልክ ቁጥር"
#. Geeuu
-#: sfx2/inc/dinfdlg.hrc:55
+#: sfx2/inc/dinfdlg.hrc:57
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Typist"
msgstr "ፀሀፊ"
#. xxHtR
-#: sfx2/inc/dinfdlg.hrc:56
+#: sfx2/inc/dinfdlg.hrc:58
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "URL"
msgstr "URL"
#. CxTQY
-#: sfx2/inc/dinfdlg.hrc:71
+#: sfx2/inc/dinfdlg.hrc:73
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Text"
msgstr "ጽሁፍ"
#. MMGFi
-#: sfx2/inc/dinfdlg.hrc:72
+#: sfx2/inc/dinfdlg.hrc:74
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "DateTime"
msgstr "ቀን ሰአት"
#. GvJMH
-#: sfx2/inc/dinfdlg.hrc:73
+#: sfx2/inc/dinfdlg.hrc:75
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date"
msgstr "ቀን"
#. GyrbX
-#: sfx2/inc/dinfdlg.hrc:74
+#: sfx2/inc/dinfdlg.hrc:76
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Duration"
msgstr "የሚፈጀው ጊዜ"
#. CxZ4Z
-#: sfx2/inc/dinfdlg.hrc:75
+#: sfx2/inc/dinfdlg.hrc:77
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Number"
msgstr "ቁጥር"
#. CDgvL
-#: sfx2/inc/dinfdlg.hrc:76
+#: sfx2/inc/dinfdlg.hrc:78
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Yes or no"
msgstr "አዎ ወይንም አይ"
#. AxhLy
-#: sfx2/inc/doctempl.hrc:27
+#: sfx2/inc/doctempl.hrc:29
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "My Templates"
msgstr "የ እኔ ቴምፕሌቶች"
#. 5aNp8
-#: sfx2/inc/doctempl.hrc:28
+#: sfx2/inc/doctempl.hrc:30
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Styles"
msgstr "ዘዴዎች"
#. t5QK9
-#: sfx2/inc/doctempl.hrc:29
+#: sfx2/inc/doctempl.hrc:31
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Business Correspondence"
msgstr "የ ንግድ ስምምነት"
#. Y79e8
-#: sfx2/inc/doctempl.hrc:30
+#: sfx2/inc/doctempl.hrc:32
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Other Business Documents"
msgstr "ሌሎች የ ንግድ ሰነዶች"
#. 2RCC9
-#: sfx2/inc/doctempl.hrc:31
+#: sfx2/inc/doctempl.hrc:33
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Personal Correspondence and Documents"
msgstr "የ ግል ስምምነት እና ሰነዶች"
#. 6Dgiz
-#: sfx2/inc/doctempl.hrc:32
+#: sfx2/inc/doctempl.hrc:34
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Forms and Contracts"
msgstr "ፎርሞች እና ኮንትራቶች"
#. VCKTG
-#: sfx2/inc/doctempl.hrc:33
+#: sfx2/inc/doctempl.hrc:35
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Finances"
msgstr "ገንዘብ"
#. HmqGP
-#: sfx2/inc/doctempl.hrc:34
+#: sfx2/inc/doctempl.hrc:36
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Education"
msgstr "ትምህርት"
#. xopM8
-#: sfx2/inc/doctempl.hrc:35
+#: sfx2/inc/doctempl.hrc:37
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentation Backgrounds"
msgstr "የ ማቅረቢይ መደቦች"
#. tSQLA
-#: sfx2/inc/doctempl.hrc:36
+#: sfx2/inc/doctempl.hrc:38
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentations"
msgstr "ማቅረቢያዎች"
#. KuNzz
-#: sfx2/inc/doctempl.hrc:37
+#: sfx2/inc/doctempl.hrc:39
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Miscellaneous"
msgstr "የተለያዩ"
#. SC4E5
-#: sfx2/inc/doctempl.hrc:38
+#: sfx2/inc/doctempl.hrc:40
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "ምልክቶች"
diff --git a/source/am/starmath/messages.po b/source/am/starmath/messages.po
index ed71bd42bb3..67612ccaec0 100644
--- a/source/am/starmath/messages.po
+++ b/source/am/starmath/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: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-11-26 20:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/am/>\n"
@@ -13,413 +13,413 @@ 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: 1563643654.000000\n"
#. GrDhX
-#: starmath/inc/smmod.hrc:16
+#: starmath/inc/smmod.hrc:18
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Greek"
msgstr "Greek"
#. bApbv
-#: starmath/inc/smmod.hrc:17
+#: starmath/inc/smmod.hrc:19
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Special"
msgstr "የተለየ"
#. aXhLc
-#: starmath/inc/smmod.hrc:22
+#: starmath/inc/smmod.hrc:24
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "alpha"
msgstr "alpha"
#. rhVhw
-#: starmath/inc/smmod.hrc:23
+#: starmath/inc/smmod.hrc:25
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ALPHA"
msgstr "ALPHA"
#. U3CqD
-#: starmath/inc/smmod.hrc:24
+#: starmath/inc/smmod.hrc:26
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "beta"
msgstr "beta"
#. pEoCL
-#: starmath/inc/smmod.hrc:25
+#: starmath/inc/smmod.hrc:27
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "BETA"
msgstr "BETA"
#. D2jkQ
-#: starmath/inc/smmod.hrc:26
+#: starmath/inc/smmod.hrc:28
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "gamma"
msgstr "gamma"
#. 4Cw8A
-#: starmath/inc/smmod.hrc:27
+#: starmath/inc/smmod.hrc:29
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "GAMMA"
msgstr "GAMMA"
#. uMmke
-#: starmath/inc/smmod.hrc:28
+#: starmath/inc/smmod.hrc:30
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "delta"
msgstr "ዴልታ"
#. dBy8u
-#: starmath/inc/smmod.hrc:29
+#: starmath/inc/smmod.hrc:31
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "DELTA"
msgstr "ዴልታ"
#. CrJqB
-#: starmath/inc/smmod.hrc:30
+#: starmath/inc/smmod.hrc:32
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "epsilon"
msgstr "epsilon"
#. jSZ7F
-#: starmath/inc/smmod.hrc:31
+#: starmath/inc/smmod.hrc:33
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "EPSILON"
msgstr "EPSILON"
#. kRvNs
-#: starmath/inc/smmod.hrc:32
+#: starmath/inc/smmod.hrc:34
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "zeta"
msgstr "zeta"
#. YA3sh
-#: starmath/inc/smmod.hrc:33
+#: starmath/inc/smmod.hrc:35
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ZETA"
msgstr "ZETA"
#. kEWFU
-#: starmath/inc/smmod.hrc:34
+#: starmath/inc/smmod.hrc:36
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "eta"
msgstr "eta"
#. r8ivE
-#: starmath/inc/smmod.hrc:35
+#: starmath/inc/smmod.hrc:37
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ETA"
msgstr "ETA"
#. CaW5B
-#: starmath/inc/smmod.hrc:36
+#: starmath/inc/smmod.hrc:38
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "theta"
msgstr "theta"
#. MUaj7
-#: starmath/inc/smmod.hrc:37
+#: starmath/inc/smmod.hrc:39
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "THETA"
msgstr "THETA"
#. FAdCp
-#: starmath/inc/smmod.hrc:38
+#: starmath/inc/smmod.hrc:40
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "iota"
msgstr "iota"
#. 2RFqS
-#: starmath/inc/smmod.hrc:39
+#: starmath/inc/smmod.hrc:41
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "IOTA"
msgstr "IOTA"
#. E6LBi
-#: starmath/inc/smmod.hrc:40
+#: starmath/inc/smmod.hrc:42
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "kappa"
msgstr "kappa"
#. PGGyZ
-#: starmath/inc/smmod.hrc:41
+#: starmath/inc/smmod.hrc:43
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "KAPPA"
msgstr "KAPPA"
#. QhGid
-#: starmath/inc/smmod.hrc:42
+#: starmath/inc/smmod.hrc:44
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "lambda"
msgstr "lambda"
#. JBLgu
-#: starmath/inc/smmod.hrc:43
+#: starmath/inc/smmod.hrc:45
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "LAMBDA"
msgstr "LAMBDA"
#. AkyEU
-#: starmath/inc/smmod.hrc:44
+#: starmath/inc/smmod.hrc:46
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "mu"
msgstr "mu"
#. t4RFD
-#: starmath/inc/smmod.hrc:45
+#: starmath/inc/smmod.hrc:47
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "MU"
msgstr "MU"
#. DwBRA
-#: starmath/inc/smmod.hrc:46
+#: starmath/inc/smmod.hrc:48
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "nu"
msgstr "nu"
#. sDc6Z
-#: starmath/inc/smmod.hrc:47
+#: starmath/inc/smmod.hrc:49
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "NU"
msgstr "NU"
#. dMns2
-#: starmath/inc/smmod.hrc:48
+#: starmath/inc/smmod.hrc:50
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "xi"
msgstr "xi"
#. 2cEVh
-#: starmath/inc/smmod.hrc:49
+#: starmath/inc/smmod.hrc:51
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "XI"
msgstr "XI"
#. PWUDK
-#: starmath/inc/smmod.hrc:50
+#: starmath/inc/smmod.hrc:52
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omicron"
msgstr "omicron"
#. ZvPw7
-#: starmath/inc/smmod.hrc:51
+#: starmath/inc/smmod.hrc:53
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMICRON"
msgstr "OMICRON"
#. VmDhA
-#: starmath/inc/smmod.hrc:52
+#: starmath/inc/smmod.hrc:54
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "pi"
msgstr "pi"
#. A3eoZ
-#: starmath/inc/smmod.hrc:53
+#: starmath/inc/smmod.hrc:55
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PI"
msgstr "PI"
#. Pu9vL
-#: starmath/inc/smmod.hrc:54
+#: starmath/inc/smmod.hrc:56
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "rho"
msgstr "rho"
#. HjNFe
-#: starmath/inc/smmod.hrc:55
+#: starmath/inc/smmod.hrc:57
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "RHO"
msgstr "RHO"
#. 9Aa3V
-#: starmath/inc/smmod.hrc:56
+#: starmath/inc/smmod.hrc:58
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "sigma"
msgstr "sigma"
#. JLWqn
-#: starmath/inc/smmod.hrc:57
+#: starmath/inc/smmod.hrc:59
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "SIGMA"
msgstr "SIGMA"
#. NTuqk
-#: starmath/inc/smmod.hrc:58
+#: starmath/inc/smmod.hrc:60
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tau"
msgstr "tau"
#. GdhQ5
-#: starmath/inc/smmod.hrc:59
+#: starmath/inc/smmod.hrc:61
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "TAU"
msgstr "TAU"
#. 6djSp
-#: starmath/inc/smmod.hrc:60
+#: starmath/inc/smmod.hrc:62
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "upsilon"
msgstr "upsilon"
#. ymFBb
-#: starmath/inc/smmod.hrc:61
+#: starmath/inc/smmod.hrc:63
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "UPSILON"
msgstr "UPSILON"
#. YxRXi
-#: starmath/inc/smmod.hrc:62
+#: starmath/inc/smmod.hrc:64
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "phi"
msgstr "phi"
#. enCD7
-#: starmath/inc/smmod.hrc:63
+#: starmath/inc/smmod.hrc:65
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PHI"
msgstr "PHI"
#. GcQPF
-#: starmath/inc/smmod.hrc:64
+#: starmath/inc/smmod.hrc:66
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "chi"
msgstr "chi"
#. 6SBnr
-#: starmath/inc/smmod.hrc:65
+#: starmath/inc/smmod.hrc:67
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "CHI"
msgstr "CHI"
#. NAmaK
-#: starmath/inc/smmod.hrc:66
+#: starmath/inc/smmod.hrc:68
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "psi"
msgstr "psi"
#. GLZ2h
-#: starmath/inc/smmod.hrc:67
+#: starmath/inc/smmod.hrc:69
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PSI"
msgstr "PSI"
#. JEF5A
-#: starmath/inc/smmod.hrc:68
+#: starmath/inc/smmod.hrc:70
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omega"
msgstr "omega"
#. 9QKj8
-#: starmath/inc/smmod.hrc:69
+#: starmath/inc/smmod.hrc:71
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMEGA"
msgstr "OMEGA"
#. YQGDY
-#: starmath/inc/smmod.hrc:70
+#: starmath/inc/smmod.hrc:72
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varepsilon"
msgstr "varepsilon"
#. VLAFM
-#: starmath/inc/smmod.hrc:71
+#: starmath/inc/smmod.hrc:73
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "vartheta"
msgstr "vartheta"
#. UJB26
-#: starmath/inc/smmod.hrc:72
+#: starmath/inc/smmod.hrc:74
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varpi"
msgstr "ቫርፒ"
#. BCNqp
-#: starmath/inc/smmod.hrc:73
+#: starmath/inc/smmod.hrc:75
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varrho"
msgstr "varrho"
#. SUNDb
-#: starmath/inc/smmod.hrc:74
+#: starmath/inc/smmod.hrc:76
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varsigma"
msgstr "varsigma"
#. cHCgN
-#: starmath/inc/smmod.hrc:75
+#: starmath/inc/smmod.hrc:77
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varphi"
msgstr "ቫርፊ"
#. c9n9F
-#: starmath/inc/smmod.hrc:76
+#: starmath/inc/smmod.hrc:78
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "element"
msgstr "element"
#. yXYWE
-#: starmath/inc/smmod.hrc:77
+#: starmath/inc/smmod.hrc:79
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "noelement"
msgstr "noelement"
#. nDkSp
-#: starmath/inc/smmod.hrc:78
+#: starmath/inc/smmod.hrc:80
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlylessthan"
msgstr "strictlylessthan"
#. 9AZxy
-#: starmath/inc/smmod.hrc:79
+#: starmath/inc/smmod.hrc:81
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlygreaterthan"
msgstr "strictlygreaterthan"
#. 4F3qH
-#: starmath/inc/smmod.hrc:80
+#: starmath/inc/smmod.hrc:82
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "notequal"
msgstr "notequal"
#. 6UYC3
-#: starmath/inc/smmod.hrc:81
+#: starmath/inc/smmod.hrc:83
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "identical"
msgstr "ተመሳሳይ"
#. 38B2B
-#: starmath/inc/smmod.hrc:82
+#: starmath/inc/smmod.hrc:84
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tendto"
msgstr "tendto"
#. kDCC4
-#: starmath/inc/smmod.hrc:83
+#: starmath/inc/smmod.hrc:85
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "infinite"
msgstr "infinite"
#. CnJUL
-#: starmath/inc/smmod.hrc:84
+#: starmath/inc/smmod.hrc:86
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "angle"
msgstr "አንግል"
#. MVfFZ
-#: starmath/inc/smmod.hrc:85
+#: starmath/inc/smmod.hrc:87
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "perthousand"
msgstr "perthousand"
#. tqFYX
-#: starmath/inc/smmod.hrc:86
+#: starmath/inc/smmod.hrc:88
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "and"
msgstr "እና"
#. jFASF
-#: starmath/inc/smmod.hrc:87
+#: starmath/inc/smmod.hrc:89
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "or"
msgstr "ወይንም"
diff --git a/source/am/svtools/messages.po b/source/am/svtools/messages.po
index db92d0406ed..41b05c9aaaa 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-12-06 02:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/am/>\n"
@@ -1799,115 +1799,115 @@ msgid "_Yes"
msgstr "_አዎ"
#. tBGDJ
-#: svtools/inc/borderline.hrc:17
+#: svtools/inc/borderline.hrc:18
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "None"
msgstr "ምንም"
#. Xx4Fb
-#: svtools/inc/borderline.hrc:18
+#: svtools/inc/borderline.hrc:19
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Solid"
msgstr "ሙሉ"
#. Paqxg
-#: svtools/inc/borderline.hrc:19
+#: svtools/inc/borderline.hrc:20
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dotted"
msgstr "ነጠብጣብ"
#. Bucas
-#: svtools/inc/borderline.hrc:20
+#: svtools/inc/borderline.hrc:21
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dashed"
msgstr "ዳሽ"
#. 6XEca
-#: svtools/inc/borderline.hrc:21
+#: svtools/inc/borderline.hrc:22
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double"
msgstr "ድርብ"
#. fB75B
-#: svtools/inc/borderline.hrc:22
+#: svtools/inc/borderline.hrc:23
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Small Gap"
msgstr "ቀጭን: ወፍራም: ትንሽ ክፍተት"
#. MwnWC
-#: svtools/inc/borderline.hrc:23
+#: svtools/inc/borderline.hrc:24
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Medium Gap"
msgstr "ቀጭን: ወፍራም: መካከለኛ ክፍተት"
#. V2QAy
-#: svtools/inc/borderline.hrc:24
+#: svtools/inc/borderline.hrc:25
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Large Gap"
msgstr "ቀጭን: ወፍራም: ትልቅ ክፍተት"
#. 4pwSe
-#: svtools/inc/borderline.hrc:25
+#: svtools/inc/borderline.hrc:26
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Small Gap"
msgstr "ወፍራም: ቀጭን: ትንሽ ክፍተት"
#. PYjTF
-#: svtools/inc/borderline.hrc:26
+#: svtools/inc/borderline.hrc:27
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Medium Gap"
msgstr "ወፍራም: ቀጭን: መካከለኛ ክፍተት"
#. EYXfK
-#: svtools/inc/borderline.hrc:27
+#: svtools/inc/borderline.hrc:28
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Large Gap"
msgstr "ወፍራም: ቀጭን: ትልቅ ክፍተት"
#. 7gh6t
-#: svtools/inc/borderline.hrc:28
+#: svtools/inc/borderline.hrc:29
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Embossed"
msgstr "መቅረጫ"
#. WK8Yy
-#: svtools/inc/borderline.hrc:29
+#: svtools/inc/borderline.hrc:30
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Engraved"
msgstr "የተቀረጸ"
#. NDS6G
-#: svtools/inc/borderline.hrc:30
+#: svtools/inc/borderline.hrc:31
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Outset"
msgstr "ማውጫ"
#. 7m7iw
-#: svtools/inc/borderline.hrc:31
+#: svtools/inc/borderline.hrc:32
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Inset"
msgstr "ማስገቢያ"
#. F9rwV
-#: svtools/inc/borderline.hrc:32
+#: svtools/inc/borderline.hrc:33
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Fine Dashed"
msgstr "ደቃቃ ዳሽ"
#. GyT7A
-#: svtools/inc/borderline.hrc:33
+#: svtools/inc/borderline.hrc:34
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double Thin"
msgstr "ድርብ ቀጭን"
#. FyVvE
-#: svtools/inc/borderline.hrc:34
+#: svtools/inc/borderline.hrc:35
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot"
msgstr "ዳሽ ነጥብ"
#. 7yoVE
-#: svtools/inc/borderline.hrc:35
+#: svtools/inc/borderline.hrc:36
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot Dot"
msgstr "ዳሽ ነጥብ: ነጥብ"
@@ -2563,2473 +2563,2473 @@ msgid "$(ERR) activating object"
msgstr "$(ERR) እቃውን በ ማስነሳት ላይ"
#. jGYA8
-#: svtools/inc/langtab.hrc:28
+#: svtools/inc/langtab.hrc:29
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "[None]"
msgstr "[ምንም]"
#. aUWzb
-#: svtools/inc/langtab.hrc:29
+#: svtools/inc/langtab.hrc:30
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Unknown"
msgstr "ያልታወቀ"
#. AQgxZ
-#: svtools/inc/langtab.hrc:30 svtools/inc/langtab.hrc:31
+#: svtools/inc/langtab.hrc:31 svtools/inc/langtab.hrc:32
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Default"
msgstr "ነባር"
#. hsqmD
-#: svtools/inc/langtab.hrc:32
+#: svtools/inc/langtab.hrc:33
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (South Africa)"
msgstr "Afrikaans (South Africa)"
#. TVGco
-#: svtools/inc/langtab.hrc:33
+#: svtools/inc/langtab.hrc:34
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Albanian"
msgstr "Albanian"
#. unNc6
-#: svtools/inc/langtab.hrc:34
+#: svtools/inc/langtab.hrc:35
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic"
msgstr "Arabic"
#. yStAU
-#: svtools/inc/langtab.hrc:35
+#: svtools/inc/langtab.hrc:36
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Algeria)"
msgstr "Arabic (Algeria)"
#. 6GPFd
-#: svtools/inc/langtab.hrc:36
+#: svtools/inc/langtab.hrc:37
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Bahrain)"
msgstr "Arabic (Bahrain)"
#. tvtct
-#: svtools/inc/langtab.hrc:37
+#: svtools/inc/langtab.hrc:38
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Chad)"
msgstr "Arabic (Chad)"
#. sAaq7
-#: svtools/inc/langtab.hrc:38
+#: svtools/inc/langtab.hrc:39
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Comoros)"
msgstr "Arabic (Comoros)"
#. CtwpU
-#: svtools/inc/langtab.hrc:39
+#: svtools/inc/langtab.hrc:40
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Djibouti)"
msgstr "Arabic (Djibouti)"
#. XgGyg
-#: svtools/inc/langtab.hrc:40
+#: svtools/inc/langtab.hrc:41
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Egypt)"
msgstr "Arabic (Egypt)"
#. iwYQR
-#: svtools/inc/langtab.hrc:41
+#: svtools/inc/langtab.hrc:42
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Eritrea)"
msgstr "Arabic (Eritrea)"
#. nKF3r
-#: svtools/inc/langtab.hrc:42
+#: svtools/inc/langtab.hrc:43
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Iraq)"
msgstr "Arabic (Iraq)"
#. JdGNA
-#: svtools/inc/langtab.hrc:43
+#: svtools/inc/langtab.hrc:44
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Israel)"
msgstr "Arabic (Israel)"
#. bVjMH
-#: svtools/inc/langtab.hrc:44
+#: svtools/inc/langtab.hrc:45
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Jordan)"
msgstr "Arabic (Jordan)"
#. 2tQFC
-#: svtools/inc/langtab.hrc:45
+#: svtools/inc/langtab.hrc:46
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Kuwait)"
msgstr "Arabic (Kuwait)"
#. EvECi
-#: svtools/inc/langtab.hrc:46
+#: svtools/inc/langtab.hrc:47
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Lebanon)"
msgstr "Arabic (Lebanon)"
#. AWBGA
-#: svtools/inc/langtab.hrc:47
+#: svtools/inc/langtab.hrc:48
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Libya)"
msgstr "Arabic (Libya)"
#. FBSpG
-#: svtools/inc/langtab.hrc:48
+#: svtools/inc/langtab.hrc:49
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Mauritania)"
msgstr "Arabic (Mauritania)"
#. YmCZY
-#: svtools/inc/langtab.hrc:49
+#: svtools/inc/langtab.hrc:50
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Morocco)"
msgstr "Arabic (Morocco)"
#. VB6tk
-#: svtools/inc/langtab.hrc:50
+#: svtools/inc/langtab.hrc:51
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Oman)"
msgstr "Arabic (Oman)"
#. ErqSh
-#: svtools/inc/langtab.hrc:51
+#: svtools/inc/langtab.hrc:52
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Palestine)"
msgstr "Arabic (Palestine)"
#. nURdz
-#: svtools/inc/langtab.hrc:52
+#: svtools/inc/langtab.hrc:53
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Qatar)"
msgstr "Arabic (Qatar)"
#. FdyFU
-#: svtools/inc/langtab.hrc:53
+#: svtools/inc/langtab.hrc:54
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Saudi Arabia)"
msgstr "Arabic (Saudi Arabia)"
#. x8UtA
-#: svtools/inc/langtab.hrc:54
+#: svtools/inc/langtab.hrc:55
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Somalia)"
msgstr "Arabic (Somalia)"
#. y9ptg
-#: svtools/inc/langtab.hrc:55
+#: svtools/inc/langtab.hrc:56
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Sudan)"
msgstr "Arabic (Sudan)"
#. caDrq
-#: svtools/inc/langtab.hrc:56
+#: svtools/inc/langtab.hrc:57
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Syria)"
msgstr "Arabic (Syria)"
#. TqKZQ
-#: svtools/inc/langtab.hrc:57
+#: svtools/inc/langtab.hrc:58
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Tunisia)"
msgstr "Arabic (Tunisia)"
#. VfYi2
-#: svtools/inc/langtab.hrc:58
+#: svtools/inc/langtab.hrc:59
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (UAE)"
msgstr "Arabic (UAE)"
#. f7D5o
-#: svtools/inc/langtab.hrc:59
+#: svtools/inc/langtab.hrc:60
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Yemen)"
msgstr "Arabic (Yemen)"
#. vDhQJ
-#: svtools/inc/langtab.hrc:60
+#: svtools/inc/langtab.hrc:61
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aragonese"
msgstr "Aragonese"
#. yE4TR
-#: svtools/inc/langtab.hrc:61
+#: svtools/inc/langtab.hrc:62
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Armenia)"
msgstr "Armenian, Eastern (Armenia)"
#. bacGJ
-#: svtools/inc/langtab.hrc:62
+#: svtools/inc/langtab.hrc:63
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Assamese"
msgstr "Assamese"
#. xAg9Q
-#: svtools/inc/langtab.hrc:63
+#: svtools/inc/langtab.hrc:64
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Latin"
msgstr "Azerbaijani Latin"
#. juADB
-#: svtools/inc/langtab.hrc:64
+#: svtools/inc/langtab.hrc:65
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Cyrillic"
msgstr "Azerbaijani Cyrillic"
#. C3C7G
-#: svtools/inc/langtab.hrc:65
+#: svtools/inc/langtab.hrc:66
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Basque"
msgstr "Basque"
#. dJPsj
-#: svtools/inc/langtab.hrc:66
+#: svtools/inc/langtab.hrc:67
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (India)"
msgstr "Bengali (India)"
#. K6cbb
-#: svtools/inc/langtab.hrc:67
+#: svtools/inc/langtab.hrc:68
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bulgarian"
msgstr "Bulgarian"
#. sBBmA
-#: svtools/inc/langtab.hrc:68
+#: svtools/inc/langtab.hrc:69
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Belarusian"
msgstr "Belarusian"
#. 3SEoJ
-#: svtools/inc/langtab.hrc:69
+#: svtools/inc/langtab.hrc:70
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan"
msgstr "Catalan"
#. PoUeZ
-#: svtools/inc/langtab.hrc:70
+#: svtools/inc/langtab.hrc:71
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan (Valencian)"
msgstr "Catalan (Valencian)"
#. ErGw2
-#: svtools/inc/langtab.hrc:71
+#: svtools/inc/langtab.hrc:72
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (traditional)"
msgstr "Chinese (traditional)"
#. Gbige
-#: svtools/inc/langtab.hrc:72
+#: svtools/inc/langtab.hrc:73
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (simplified)"
msgstr "Chinese (simplified)"
#. WzgGw
-#: svtools/inc/langtab.hrc:73
+#: svtools/inc/langtab.hrc:74
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Hong Kong)"
msgstr "Chinese (Hong Kong)"
#. Kfrv5
-#: svtools/inc/langtab.hrc:74
+#: svtools/inc/langtab.hrc:75
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Singapore)"
msgstr "Chinese (Singapore)"
#. BSHqu
-#: svtools/inc/langtab.hrc:75
+#: svtools/inc/langtab.hrc:76
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Macau)"
msgstr "Chinese (Macau)"
#. FMwd9
-#: svtools/inc/langtab.hrc:76
+#: svtools/inc/langtab.hrc:77
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Church Slavic"
msgstr "Church Slavic"
#. cAkoV
-#: svtools/inc/langtab.hrc:77
+#: svtools/inc/langtab.hrc:78
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Croatian"
msgstr "Croatian"
#. DjdDj
-#: svtools/inc/langtab.hrc:78
+#: svtools/inc/langtab.hrc:79
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Czech"
msgstr "Czech"
#. xnGM2
-#: svtools/inc/langtab.hrc:79
+#: svtools/inc/langtab.hrc:80
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Danish"
msgstr "Danish"
#. yMGyj
-#: svtools/inc/langtab.hrc:80
+#: svtools/inc/langtab.hrc:81
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Netherlands)"
msgstr "Dutch (Netherlands)"
#. qgJE9
-#: svtools/inc/langtab.hrc:81
+#: svtools/inc/langtab.hrc:82
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Belgium)"
msgstr "Dutch (Belgium)"
#. STsDT
-#: svtools/inc/langtab.hrc:82
+#: svtools/inc/langtab.hrc:83
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (USA)"
msgstr "English (USA)"
#. aCBBC
-#: svtools/inc/langtab.hrc:83
+#: svtools/inc/langtab.hrc:84
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (UK)"
msgstr "English (UK)"
#. 46Cte
-#: svtools/inc/langtab.hrc:84
+#: svtools/inc/langtab.hrc:85
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English, OED spelling (UK)"
msgstr "English, OED spelling (UK)"
#. XCJAF
-#: svtools/inc/langtab.hrc:85
+#: svtools/inc/langtab.hrc:86
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Australia)"
msgstr "English (Australia)"
#. KPGdA
-#: svtools/inc/langtab.hrc:86
+#: svtools/inc/langtab.hrc:87
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Canada)"
msgstr "English (Canada)"
#. vGWET
-#: svtools/inc/langtab.hrc:87
+#: svtools/inc/langtab.hrc:88
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (New Zealand)"
msgstr "English (New Zealand)"
#. JpNB4
-#: svtools/inc/langtab.hrc:88
+#: svtools/inc/langtab.hrc:89
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ireland)"
msgstr "English (Ireland)"
#. RYtwA
-#: svtools/inc/langtab.hrc:89
+#: svtools/inc/langtab.hrc:90
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (South Africa)"
msgstr "English (South Africa)"
#. fEWbR
-#: svtools/inc/langtab.hrc:90
+#: svtools/inc/langtab.hrc:91
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Jamaica)"
msgstr "English (Jamaica)"
#. 4tDmL
-#: svtools/inc/langtab.hrc:91
+#: svtools/inc/langtab.hrc:92
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Caribbean)"
msgstr "English (Caribbean)"
#. craLz
-#: svtools/inc/langtab.hrc:92
+#: svtools/inc/langtab.hrc:93
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Belize)"
msgstr "English (Belize)"
#. oAnX9
-#: svtools/inc/langtab.hrc:93
+#: svtools/inc/langtab.hrc:94
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Trinidad)"
msgstr "English (Trinidad)"
#. DbBaG
-#: svtools/inc/langtab.hrc:94
+#: svtools/inc/langtab.hrc:95
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zimbabwe)"
msgstr "English (Zimbabwe)"
#. bGuDT
-#: svtools/inc/langtab.hrc:95
+#: svtools/inc/langtab.hrc:96
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Philippines)"
msgstr "English (Philippines)"
#. sf7j9
-#: svtools/inc/langtab.hrc:96
+#: svtools/inc/langtab.hrc:97
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (India)"
msgstr "English (India)"
#. uqECc
-#: svtools/inc/langtab.hrc:97
+#: svtools/inc/langtab.hrc:98
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Estonian"
msgstr "Estonian"
#. AGGnV
-#: svtools/inc/langtab.hrc:98
+#: svtools/inc/langtab.hrc:99
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Finnish"
msgstr "Finnish"
#. UyH2X
-#: svtools/inc/langtab.hrc:99
+#: svtools/inc/langtab.hrc:100
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Faroese"
msgstr "Faroese"
#. riCt7
-#: svtools/inc/langtab.hrc:100
+#: svtools/inc/langtab.hrc:101
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Persian"
msgstr "Persian"
#. FSxwV
-#: svtools/inc/langtab.hrc:101
+#: svtools/inc/langtab.hrc:102
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (France)"
msgstr "French (France)"
#. LGkgS
-#: svtools/inc/langtab.hrc:102
+#: svtools/inc/langtab.hrc:103
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Belgium)"
msgstr "French (Belgium)"
#. TFQ8G
-#: svtools/inc/langtab.hrc:103
+#: svtools/inc/langtab.hrc:104
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Canada)"
msgstr "French (Canada)"
#. 8NnQa
-#: svtools/inc/langtab.hrc:104
+#: svtools/inc/langtab.hrc:105
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Switzerland)"
msgstr "French (Switzerland)"
#. DkXiH
-#: svtools/inc/langtab.hrc:105
+#: svtools/inc/langtab.hrc:106
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Luxembourg)"
msgstr "French (Luxembourg)"
#. 8BeKQ
-#: svtools/inc/langtab.hrc:106
+#: svtools/inc/langtab.hrc:107
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Monaco)"
msgstr "French (Monaco)"
#. DoQUZ
-#: svtools/inc/langtab.hrc:107
+#: svtools/inc/langtab.hrc:108
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gascon"
msgstr "Gascon"
#. 6m5ud
-#: svtools/inc/langtab.hrc:108
+#: svtools/inc/langtab.hrc:109
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Germany)"
msgstr "German (Germany)"
#. bTDdf
-#: svtools/inc/langtab.hrc:109
+#: svtools/inc/langtab.hrc:110
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Switzerland)"
msgstr "German (Switzerland)"
#. H6rUb
-#: svtools/inc/langtab.hrc:110
+#: svtools/inc/langtab.hrc:111
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Austria)"
msgstr "German (Austria)"
#. EXUrT
-#: svtools/inc/langtab.hrc:111
+#: svtools/inc/langtab.hrc:112
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Luxembourg)"
msgstr "German (Luxembourg)"
#. wYXvd
-#: svtools/inc/langtab.hrc:112
+#: svtools/inc/langtab.hrc:113
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Liechtenstein)"
msgstr "German (Liechtenstein)"
#. yBvcg
-#: svtools/inc/langtab.hrc:113
+#: svtools/inc/langtab.hrc:114
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek"
msgstr "Greek"
#. QzGHA
-#: svtools/inc/langtab.hrc:114
+#: svtools/inc/langtab.hrc:115
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gujarati"
msgstr "Gujarati"
#. gU5Y9
-#: svtools/inc/langtab.hrc:115
+#: svtools/inc/langtab.hrc:116
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hebrew"
msgstr "Hebrew"
#. vkmai
-#: svtools/inc/langtab.hrc:116
+#: svtools/inc/langtab.hrc:117
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hindi"
msgstr "Hindi"
#. FdD6d
-#: svtools/inc/langtab.hrc:117
+#: svtools/inc/langtab.hrc:118
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian"
msgstr "Hungarian"
#. sRD2B
-#: svtools/inc/langtab.hrc:118
+#: svtools/inc/langtab.hrc:119
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Icelandic"
msgstr "Icelandic"
#. K95FW
-#: svtools/inc/langtab.hrc:119
+#: svtools/inc/langtab.hrc:120
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Indonesian"
msgstr "Indonesian"
#. dshDi
-#: svtools/inc/langtab.hrc:120
+#: svtools/inc/langtab.hrc:121
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Italy)"
msgstr "Italian (Italy)"
#. DELVB
-#: svtools/inc/langtab.hrc:121
+#: svtools/inc/langtab.hrc:122
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Switzerland)"
msgstr "Italian (Switzerland)"
#. ruFE2
-#: svtools/inc/langtab.hrc:122
+#: svtools/inc/langtab.hrc:123
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Japanese"
msgstr "Japanese"
#. qFQYv
-#: svtools/inc/langtab.hrc:123
+#: svtools/inc/langtab.hrc:124
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kannada"
msgstr "Kannada"
#. HBG3C
-#: svtools/inc/langtab.hrc:124
+#: svtools/inc/langtab.hrc:125
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (Kashmir)"
msgstr "Kashmiri (Kashmir)"
#. DwhmJ
-#: svtools/inc/langtab.hrc:125
+#: svtools/inc/langtab.hrc:126
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (India)"
msgstr "Kashmiri (India)"
#. UMfCV
-#: svtools/inc/langtab.hrc:126
+#: svtools/inc/langtab.hrc:127
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kazakh"
msgstr "Kazak"
#. fABxX
-#: svtools/inc/langtab.hrc:127
+#: svtools/inc/langtab.hrc:128
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Konkani"
msgstr "Konkani"
#. 5XXpX
-#: svtools/inc/langtab.hrc:128
+#: svtools/inc/langtab.hrc:129
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Korean (RoK)"
msgstr "Korean (RoK)"
#. Ynb76
-#: svtools/inc/langtab.hrc:129
+#: svtools/inc/langtab.hrc:130
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latvian"
msgstr "Latvian"
#. C4VrT
-#: svtools/inc/langtab.hrc:130
+#: svtools/inc/langtab.hrc:131
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lithuanian"
msgstr "Lithuanian"
#. zPNto
-#: svtools/inc/langtab.hrc:131
+#: svtools/inc/langtab.hrc:132
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Macedonian"
msgstr "Macedonian"
#. nVTHg
-#: svtools/inc/langtab.hrc:132
+#: svtools/inc/langtab.hrc:133
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Malaysia)"
msgstr "Malay (Malaysia)"
#. fwb55
-#: svtools/inc/langtab.hrc:133
+#: svtools/inc/langtab.hrc:134
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Brunei Darussalam)"
msgstr "Malay (Brunei Darussalam)"
#. 8niko
-#: svtools/inc/langtab.hrc:134
+#: svtools/inc/langtab.hrc:135
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malayalam"
msgstr "Malayalam"
#. wX45Q
-#: svtools/inc/langtab.hrc:135
+#: svtools/inc/langtab.hrc:136
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manipuri"
msgstr "Manipuri"
#. wdBgL
-#: svtools/inc/langtab.hrc:136
+#: svtools/inc/langtab.hrc:137
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Marathi"
msgstr "Marathi"
#. gkEEQ
-#: svtools/inc/langtab.hrc:137
+#: svtools/inc/langtab.hrc:138
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (Nepal)"
msgstr "Nepali (Nepal)"
#. LaDAA
-#: svtools/inc/langtab.hrc:138
+#: svtools/inc/langtab.hrc:139
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (India)"
msgstr "Nepali (India)"
#. 7HpyY
-#: svtools/inc/langtab.hrc:139
+#: svtools/inc/langtab.hrc:140
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Bokmål"
msgstr "Norwegian, Bokmål"
#. kCv9u
-#: svtools/inc/langtab.hrc:140
+#: svtools/inc/langtab.hrc:141
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Nynorsk"
msgstr "Norwegian, Nynorsk"
#. 3BNF8
-#: svtools/inc/langtab.hrc:141
+#: svtools/inc/langtab.hrc:142
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Odia"
msgstr "Odia"
#. KEoWD
-#: svtools/inc/langtab.hrc:142
+#: svtools/inc/langtab.hrc:143
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Polish"
msgstr "Polish"
#. yyj9v
-#: svtools/inc/langtab.hrc:143
+#: svtools/inc/langtab.hrc:144
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Angola)"
msgstr "Portuguese (Angola)"
#. hZAXE
-#: svtools/inc/langtab.hrc:144
+#: svtools/inc/langtab.hrc:145
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Portugal)"
msgstr "Portuguese (Portugal)"
#. A5CG3
-#: svtools/inc/langtab.hrc:145
+#: svtools/inc/langtab.hrc:146
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Brazil)"
msgstr "Portuguese (Brazil)"
#. EGfKG
-#: svtools/inc/langtab.hrc:146
+#: svtools/inc/langtab.hrc:147
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punjabi"
msgstr "Punjabi"
#. 4ATDT
-#: svtools/inc/langtab.hrc:147
+#: svtools/inc/langtab.hrc:148
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rhaeto-Romance"
msgstr "Rhaeto-Romance"
#. TLUGG
-#: svtools/inc/langtab.hrc:148
+#: svtools/inc/langtab.hrc:149
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Romania)"
msgstr "Romanian (Romania)"
#. uCPF7
-#: svtools/inc/langtab.hrc:149
+#: svtools/inc/langtab.hrc:150
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Moldova)"
msgstr "Romanian (Moldova)"
#. tJTih
-#: svtools/inc/langtab.hrc:150
+#: svtools/inc/langtab.hrc:151
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Russian"
msgstr "Russian"
#. Rih6F
-#: svtools/inc/langtab.hrc:151
+#: svtools/inc/langtab.hrc:152
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sanskrit"
msgstr "Sanskrit"
#. CyZtm
-#: svtools/inc/langtab.hrc:152
+#: svtools/inc/langtab.hrc:153
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia and Montenegro)"
msgstr "Serbian Cyrillic (Serbia and Montenegro)"
#. sFnB8
-#: svtools/inc/langtab.hrc:153
+#: svtools/inc/langtab.hrc:154
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia and Montenegro)"
msgstr "Serbian Latin (Serbia and Montenegro)"
#. WbsFA
-#: svtools/inc/langtab.hrc:154
+#: svtools/inc/langtab.hrc:155
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia)"
msgstr "Serbian Cyrillic (Serbia)"
#. WL3zM
-#: svtools/inc/langtab.hrc:155
+#: svtools/inc/langtab.hrc:156
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia)"
msgstr "Serbian Latin (Serbia)"
#. JFnsJ
-#: svtools/inc/langtab.hrc:156
+#: svtools/inc/langtab.hrc:157
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Montenegro)"
msgstr "Serbian Cyrillic (Montenegro)"
#. AHpmF
-#: svtools/inc/langtab.hrc:157
+#: svtools/inc/langtab.hrc:158
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Montenegro)"
msgstr "Serbian Latin (Montenegro)"
#. JcJT4
-#: svtools/inc/langtab.hrc:158
+#: svtools/inc/langtab.hrc:159
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin"
msgstr "Serbian Latin"
#. ubCyV
-#: svtools/inc/langtab.hrc:159
+#: svtools/inc/langtab.hrc:160
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sidama"
msgstr "Sidama"
#. 66wdH
-#: svtools/inc/langtab.hrc:160
+#: svtools/inc/langtab.hrc:161
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Devanagari"
msgstr "Sindhi, Devanagari"
#. RF77g
-#: svtools/inc/langtab.hrc:161
+#: svtools/inc/langtab.hrc:162
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Arabic"
msgstr "Sindhi, Arabic"
#. E8DXb
-#: svtools/inc/langtab.hrc:162
+#: svtools/inc/langtab.hrc:163
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovak"
msgstr "Slovak"
#. GS6BZ
-#: svtools/inc/langtab.hrc:163
+#: svtools/inc/langtab.hrc:164
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovenian"
msgstr "Slovenian"
#. bCFN3
-#: svtools/inc/langtab.hrc:164
+#: svtools/inc/langtab.hrc:165
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Spain)"
msgstr "Spanish (Spain)"
#. AXKJF
-#: svtools/inc/langtab.hrc:165
+#: svtools/inc/langtab.hrc:166
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Mexico)"
msgstr "Spanish (Mexico)"
#. 4ExjA
-#: svtools/inc/langtab.hrc:166
+#: svtools/inc/langtab.hrc:167
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Guatemala)"
msgstr "Spanish (Guatemala)"
#. ndaNA
-#: svtools/inc/langtab.hrc:167
+#: svtools/inc/langtab.hrc:168
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Costa Rica)"
msgstr "Spanish (Costa Rica)"
#. rAYvf
-#: svtools/inc/langtab.hrc:168
+#: svtools/inc/langtab.hrc:169
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Panama)"
msgstr "Spanish (Panama)"
#. rwjDV
-#: svtools/inc/langtab.hrc:169
+#: svtools/inc/langtab.hrc:170
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Dom. Rep.)"
msgstr "Spanish (Dom. Rep.)"
#. aeV5T
-#: svtools/inc/langtab.hrc:170
+#: svtools/inc/langtab.hrc:171
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Venezuela)"
msgstr "Spanish (Venezuela)"
#. H4CHi
-#: svtools/inc/langtab.hrc:171
+#: svtools/inc/langtab.hrc:172
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Colombia)"
msgstr "Spanish (Colombia)"
#. NkaU2
-#: svtools/inc/langtab.hrc:172
+#: svtools/inc/langtab.hrc:173
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Peru)"
msgstr "Spanish (Peru)"
#. 2yKQy
-#: svtools/inc/langtab.hrc:173
+#: svtools/inc/langtab.hrc:174
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Argentina)"
msgstr "Spanish (Argentina)"
#. cTFoB
-#: svtools/inc/langtab.hrc:174
+#: svtools/inc/langtab.hrc:175
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Ecuador)"
msgstr "Spanish (Ecuador)"
#. Q7iGB
-#: svtools/inc/langtab.hrc:175
+#: svtools/inc/langtab.hrc:176
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Chile)"
msgstr "Spanish (Chile)"
#. SQeC3
-#: svtools/inc/langtab.hrc:176
+#: svtools/inc/langtab.hrc:177
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Uruguay)"
msgstr "Spanish (Uruguay)"
#. EmgTp
-#: svtools/inc/langtab.hrc:177
+#: svtools/inc/langtab.hrc:178
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Paraguay)"
msgstr "Spanish (Paraguay)"
#. T7rLH
-#: svtools/inc/langtab.hrc:178
+#: svtools/inc/langtab.hrc:179
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Bolivia)"
msgstr "Spanish (Bolivia)"
#. GNG7W
-#: svtools/inc/langtab.hrc:179
+#: svtools/inc/langtab.hrc:180
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (El Salvador)"
msgstr "Spanish (El Salvador)"
#. HoGhs
-#: svtools/inc/langtab.hrc:180
+#: svtools/inc/langtab.hrc:181
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Honduras)"
msgstr "Spanish (Honduras)"
#. KgEGv
-#: svtools/inc/langtab.hrc:181
+#: svtools/inc/langtab.hrc:182
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Nicaragua)"
msgstr "Spanish (Nicaragua)"
#. uj9QF
-#: svtools/inc/langtab.hrc:182
+#: svtools/inc/langtab.hrc:183
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Puerto Rico)"
msgstr "Spanish (Puerto Rico)"
#. 3bTTE
-#: svtools/inc/langtab.hrc:183
+#: svtools/inc/langtab.hrc:184
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Kenya)"
msgstr "Swahili (Kenya)"
#. AFhrJ
-#: svtools/inc/langtab.hrc:184
+#: svtools/inc/langtab.hrc:185
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Sweden)"
msgstr "Swedish (Sweden)"
#. BKF86
-#: svtools/inc/langtab.hrc:185
+#: svtools/inc/langtab.hrc:186
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Finland)"
msgstr "Swedish (Finland)"
#. E6Ede
-#: svtools/inc/langtab.hrc:186
+#: svtools/inc/langtab.hrc:187
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tajik"
msgstr "Tajik"
#. dAFTH
-#: svtools/inc/langtab.hrc:187
+#: svtools/inc/langtab.hrc:188
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tamil"
msgstr "Tamil"
#. RHZbp
-#: svtools/inc/langtab.hrc:188
+#: svtools/inc/langtab.hrc:189
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tatar"
msgstr "Tatar"
#. pTFA6
-#: svtools/inc/langtab.hrc:189
+#: svtools/inc/langtab.hrc:190
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Telugu"
msgstr "Telugu"
#. 3xQFG
-#: svtools/inc/langtab.hrc:190
+#: svtools/inc/langtab.hrc:191
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Thai"
msgstr "Thai"
#. 7SBCF
-#: svtools/inc/langtab.hrc:191
+#: svtools/inc/langtab.hrc:192
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkish"
msgstr "Turkish"
#. jg4Y4
-#: svtools/inc/langtab.hrc:192
+#: svtools/inc/langtab.hrc:193
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (Pakistan)"
msgstr "Urdu (Pakistan)"
#. reDrZ
-#: svtools/inc/langtab.hrc:193
+#: svtools/inc/langtab.hrc:194
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (India)"
msgstr "Urdu (India)"
#. AciD4
-#: svtools/inc/langtab.hrc:194
+#: svtools/inc/langtab.hrc:195
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ukrainian"
msgstr "Ukrainian"
#. 9s6wZ
-#: svtools/inc/langtab.hrc:195
+#: svtools/inc/langtab.hrc:196
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Latin"
msgstr "Uzbek Latin"
#. HrnFi
-#: svtools/inc/langtab.hrc:196
+#: svtools/inc/langtab.hrc:197
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Cyrillic"
msgstr "Uzbek Cyrillic"
#. seQBA
-#: svtools/inc/langtab.hrc:197
+#: svtools/inc/langtab.hrc:198
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Welsh"
msgstr "Welsh"
#. MyZMt
-#: svtools/inc/langtab.hrc:198
+#: svtools/inc/langtab.hrc:199
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latin"
msgstr "Latin"
#. UxE47
-#: svtools/inc/langtab.hrc:199
+#: svtools/inc/langtab.hrc:200
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Esperanto"
msgstr "Esperanto"
#. QDEQB
-#: svtools/inc/langtab.hrc:200
+#: svtools/inc/langtab.hrc:201
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kinyarwanda (Rwanda)"
msgstr "Kinyarwanda (Rwanda)"
#. VDEdz
-#: svtools/inc/langtab.hrc:201
+#: svtools/inc/langtab.hrc:202
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maori"
msgstr "Maori"
#. BCRzB
-#: svtools/inc/langtab.hrc:202
+#: svtools/inc/langtab.hrc:203
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Galician"
msgstr "Galician"
#. EJSEG
-#: svtools/inc/langtab.hrc:203
+#: svtools/inc/langtab.hrc:204
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dhivehi"
msgstr "Dhivehi"
#. HyrCw
-#: svtools/inc/langtab.hrc:204
+#: svtools/inc/langtab.hrc:205
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Northern Sotho"
msgstr "Northern Sotho"
#. iZE5p
-#: svtools/inc/langtab.hrc:205
+#: svtools/inc/langtab.hrc:206
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gaelic (Scotland)"
msgstr "Gaelic (Scotland)"
#. hUdfG
-#: svtools/inc/langtab.hrc:206
+#: svtools/inc/langtab.hrc:207
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Cyrillic"
msgstr "Mongolian Cyrillic"
#. XSmCF
-#: svtools/inc/langtab.hrc:207
+#: svtools/inc/langtab.hrc:208
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Mongolian"
msgstr "Mongolian Mongolian"
#. SmxD2
-#: svtools/inc/langtab.hrc:208
+#: svtools/inc/langtab.hrc:209
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingua"
msgstr "Interlingua"
#. dBUa9
-#: svtools/inc/langtab.hrc:209
+#: svtools/inc/langtab.hrc:210
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bosnian"
msgstr "Bosnian"
#. c29GE
-#: svtools/inc/langtab.hrc:210
+#: svtools/inc/langtab.hrc:211
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (Bangladesh)"
msgstr "Bengali (Bangladesh)"
#. 9CTyH
-#: svtools/inc/langtab.hrc:211
+#: svtools/inc/langtab.hrc:212
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Occitan"
msgstr "Occitan"
#. wRpTQ
-#: svtools/inc/langtab.hrc:212
+#: svtools/inc/langtab.hrc:213
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khmer"
msgstr "Khmer"
#. 6C2PP
-#: svtools/inc/langtab.hrc:213
+#: svtools/inc/langtab.hrc:214
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Turkey)"
msgstr "Kurdish, Northern (Turkey)"
#. JBSdg
-#: svtools/inc/langtab.hrc:214
+#: svtools/inc/langtab.hrc:215
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Syria)"
msgstr "Kurdish, Northern (Syria)"
#. 7LmT2
-#: svtools/inc/langtab.hrc:215
+#: svtools/inc/langtab.hrc:216
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iraq)"
msgstr "Kurdish, Central (Iraq)"
#. rzDHD
-#: svtools/inc/langtab.hrc:216
+#: svtools/inc/langtab.hrc:217
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iran)"
msgstr "Kurdish, Central (Iran)"
#. CeAFw
-#: svtools/inc/langtab.hrc:217
+#: svtools/inc/langtab.hrc:218
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iran)"
msgstr "Kurdish, Southern (Iran)"
#. epbri
-#: svtools/inc/langtab.hrc:218
+#: svtools/inc/langtab.hrc:219
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iraq)"
msgstr "Kurdish, Southern (Iraq)"
#. 2KhAB
-#: svtools/inc/langtab.hrc:219
+#: svtools/inc/langtab.hrc:220
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian"
msgstr "Sardinian"
#. 3sZxr
-#: svtools/inc/langtab.hrc:220
+#: svtools/inc/langtab.hrc:221
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dzongkha"
msgstr "Dzongkha"
#. NdNMD
-#: svtools/inc/langtab.hrc:221
+#: svtools/inc/langtab.hrc:222
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Tanzania)"
msgstr "Swahili (Tanzania)"
#. ywH3p
-#: svtools/inc/langtab.hrc:222
+#: svtools/inc/langtab.hrc:223
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lao"
msgstr "Lao"
#. HNY5w
-#: svtools/inc/langtab.hrc:223
+#: svtools/inc/langtab.hrc:224
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Irish"
msgstr "Irish"
#. oGuLJ
-#: svtools/inc/langtab.hrc:224
+#: svtools/inc/langtab.hrc:225
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (PR China)"
msgstr "Tibetan (PR China)"
#. DpbUS
-#: svtools/inc/langtab.hrc:225
+#: svtools/inc/langtab.hrc:226
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Georgian"
msgstr "Georgian"
#. vXTTC
-#: svtools/inc/langtab.hrc:226
+#: svtools/inc/langtab.hrc:227
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Frisian"
msgstr "Frisian"
#. hYSBQ
-#: svtools/inc/langtab.hrc:227
+#: svtools/inc/langtab.hrc:228
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (South Africa)"
msgstr "Tswana (South Africa)"
#. iBrft
-#: svtools/inc/langtab.hrc:228
+#: svtools/inc/langtab.hrc:229
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Zulu"
msgstr "Zulu"
#. efx7v
-#: svtools/inc/langtab.hrc:229
+#: svtools/inc/langtab.hrc:230
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vietnamese"
msgstr "Vietnamese"
#. uik8N
-#: svtools/inc/langtab.hrc:230
+#: svtools/inc/langtab.hrc:231
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Breton"
msgstr "Breton"
#. UuDPF
-#: svtools/inc/langtab.hrc:231
+#: svtools/inc/langtab.hrc:232
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kalaallisut"
msgstr "Kalaallisut"
#. h8yi2
-#: svtools/inc/langtab.hrc:232
+#: svtools/inc/langtab.hrc:233
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ndebele, South"
msgstr "Ndebele, South"
#. GAkRJ
-#: svtools/inc/langtab.hrc:233
+#: svtools/inc/langtab.hrc:234
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Southern Sotho"
msgstr "Southern Sotho"
#. 2beka
-#: svtools/inc/langtab.hrc:234
+#: svtools/inc/langtab.hrc:235
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swazi"
msgstr "Swazi"
#. GFCYC
-#: svtools/inc/langtab.hrc:235
+#: svtools/inc/langtab.hrc:236
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsonga"
msgstr "Tsonga"
#. Fd3yC
-#: svtools/inc/langtab.hrc:236
+#: svtools/inc/langtab.hrc:237
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venda"
msgstr "Venda"
#. BQkT8
-#: svtools/inc/langtab.hrc:237
+#: svtools/inc/langtab.hrc:238
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (Botswana)"
msgstr "Tswana (Botswana)"
#. aCLs3
-#: svtools/inc/langtab.hrc:238
+#: svtools/inc/langtab.hrc:239
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xhosa"
msgstr "Xhosa"
#. 8tGkA
-#: svtools/inc/langtab.hrc:239
+#: svtools/inc/langtab.hrc:240
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sinhala"
msgstr "Sinhala"
#. MyZBb
-#: svtools/inc/langtab.hrc:240
+#: svtools/inc/langtab.hrc:241
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moore"
msgstr "Moore"
#. MuwMr
-#: svtools/inc/langtab.hrc:241
+#: svtools/inc/langtab.hrc:242
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bambara"
msgstr "Bambara"
#. ohYHE
-#: svtools/inc/langtab.hrc:242
+#: svtools/inc/langtab.hrc:243
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Akan"
msgstr "Akan"
#. Rpc24
-#: svtools/inc/langtab.hrc:243
+#: svtools/inc/langtab.hrc:244
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Luxembourgish"
msgstr "Luxembourgish"
#. TPr9P
-#: svtools/inc/langtab.hrc:244
+#: svtools/inc/langtab.hrc:245
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Friulian"
msgstr "Friulian"
#. XFeaU
-#: svtools/inc/langtab.hrc:245
+#: svtools/inc/langtab.hrc:246
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fijian"
msgstr "Fijian"
#. DmEsD
-#: svtools/inc/langtab.hrc:246
+#: svtools/inc/langtab.hrc:247
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (Namibia)"
msgstr "Afrikaans (Namibia)"
#. 2dS3j
-#: svtools/inc/langtab.hrc:247
+#: svtools/inc/langtab.hrc:248
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Namibia)"
msgstr "English (Namibia)"
#. pxpQo
-#: svtools/inc/langtab.hrc:248
+#: svtools/inc/langtab.hrc:249
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Walloon"
msgstr "Walloon"
#. uSw8S
-#: svtools/inc/langtab.hrc:249
+#: svtools/inc/langtab.hrc:250
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Coptic"
msgstr "Coptic"
#. cXUkb
-#: svtools/inc/langtab.hrc:250
+#: svtools/inc/langtab.hrc:251
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Eritrea)"
msgstr "Tigrigna (Eritrea)"
#. 4X4SP
-#: svtools/inc/langtab.hrc:251
+#: svtools/inc/langtab.hrc:252
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Ethiopia)"
msgstr "Tigrigna (Ethiopia)"
#. vebCw
-#: svtools/inc/langtab.hrc:252
+#: svtools/inc/langtab.hrc:253
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Amharic"
msgstr "Amharic"
#. wVfCr
-#: svtools/inc/langtab.hrc:253
+#: svtools/inc/langtab.hrc:254
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kirghiz"
msgstr "Kirghiz"
#. zCrUd
-#: svtools/inc/langtab.hrc:254
+#: svtools/inc/langtab.hrc:255
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Belgium)"
msgstr "German (Belgium)"
#. bZjgG
-#: svtools/inc/langtab.hrc:255
+#: svtools/inc/langtab.hrc:256
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chuvash"
msgstr "Chuvash"
#. Hhf2V
-#: svtools/inc/langtab.hrc:256
+#: svtools/inc/langtab.hrc:257
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Burmese"
msgstr "Burmese"
#. YCarY
-#: svtools/inc/langtab.hrc:257
+#: svtools/inc/langtab.hrc:258
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Nigeria)"
msgstr "Hausa (Nigeria)"
#. JXCmu
-#: svtools/inc/langtab.hrc:258
+#: svtools/inc/langtab.hrc:259
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Ghana)"
msgstr "Hausa (Ghana)"
#. 7jrGb
-#: svtools/inc/langtab.hrc:259
+#: svtools/inc/langtab.hrc:260
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Éwé"
msgstr "Éwé"
#. QWBZG
-#: svtools/inc/langtab.hrc:260
+#: svtools/inc/langtab.hrc:261
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ghana)"
msgstr "English (Ghana)"
#. pAEtz
-#: svtools/inc/langtab.hrc:261
+#: svtools/inc/langtab.hrc:262
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sango"
msgstr "Sango"
#. L9sDt
-#: svtools/inc/langtab.hrc:262
+#: svtools/inc/langtab.hrc:263
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tagalog"
msgstr "Tagalog"
#. iFSZs
-#: svtools/inc/langtab.hrc:263
+#: svtools/inc/langtab.hrc:264
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ganda"
msgstr "Ganda"
#. Gdbhz
-#: svtools/inc/langtab.hrc:264
+#: svtools/inc/langtab.hrc:265
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lingala"
msgstr "Lingala"
#. TnDKB
-#: svtools/inc/langtab.hrc:265
+#: svtools/inc/langtab.hrc:266
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Low German"
msgstr "Low German"
#. Yr5hK
-#: svtools/inc/langtab.hrc:266
+#: svtools/inc/langtab.hrc:267
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hiligaynon"
msgstr "Hiligaynon"
#. nF96G
-#: svtools/inc/langtab.hrc:267
+#: svtools/inc/langtab.hrc:268
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nyanja"
msgstr "Nyanja"
#. v4jmr
-#: svtools/inc/langtab.hrc:268
+#: svtools/inc/langtab.hrc:269
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashubian"
msgstr "Kashubian"
#. nbEp5
-#: svtools/inc/langtab.hrc:269
+#: svtools/inc/langtab.hrc:270
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Cuba)"
msgstr "Spanish (Cuba)"
#. CGkDF
-#: svtools/inc/langtab.hrc:270
+#: svtools/inc/langtab.hrc:271
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Indonesia)"
msgstr "Tetun (Indonesia)"
#. yXqvC
-#: svtools/inc/langtab.hrc:271
+#: svtools/inc/langtab.hrc:272
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, North)"
msgstr "Quechua (Bolivia, North)"
#. V3XMi
-#: svtools/inc/langtab.hrc:272
+#: svtools/inc/langtab.hrc:273
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, South)"
msgstr "Quechua (Bolivia, South)"
#. 3WCP7
-#: svtools/inc/langtab.hrc:273
+#: svtools/inc/langtab.hrc:274
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Somali"
msgstr "Somali"
#. zFoBp
-#: svtools/inc/langtab.hrc:274
+#: svtools/inc/langtab.hrc:275
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Inari (Finland)"
msgstr "Sami, Inari (Finland)"
#. FJAQR
-#: svtools/inc/langtab.hrc:275
+#: svtools/inc/langtab.hrc:276
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Norway)"
msgstr "Sami, Lule (Norway)"
#. yBxW5
-#: svtools/inc/langtab.hrc:276
+#: svtools/inc/langtab.hrc:277
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Sweden)"
msgstr "Sami, Lule (Sweden)"
#. 8yPLy
-#: svtools/inc/langtab.hrc:277
+#: svtools/inc/langtab.hrc:278
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Finland)"
msgstr "Sami, Northern (Finland)"
#. SQTD9
-#: svtools/inc/langtab.hrc:278
+#: svtools/inc/langtab.hrc:279
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Norway)"
msgstr "Sami, Northern (Norway)"
#. BHGpD
-#: svtools/inc/langtab.hrc:279
+#: svtools/inc/langtab.hrc:280
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Sweden)"
msgstr "Sami, Northern (Sweden)"
#. cdYkC
-#: svtools/inc/langtab.hrc:280
+#: svtools/inc/langtab.hrc:281
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Skolt (Finland)"
msgstr "Sami, Skolt (Finland)"
#. od3Hp
-#: svtools/inc/langtab.hrc:281
+#: svtools/inc/langtab.hrc:282
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Norway)"
msgstr "Sami, Southern (Norway)"
#. 5Ueff
-#: svtools/inc/langtab.hrc:282
+#: svtools/inc/langtab.hrc:283
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Sweden)"
msgstr "Sami, Southern (Sweden)"
#. 7x4mU
-#: svtools/inc/langtab.hrc:283
+#: svtools/inc/langtab.hrc:284
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Kildin (Russia)"
msgstr "Sami, Kildin (Russia)"
#. A5Crw
-#: svtools/inc/langtab.hrc:284
+#: svtools/inc/langtab.hrc:285
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guarani (Paraguay)"
msgstr "Guarani (Paraguay)"
#. ESc5d
-#: svtools/inc/langtab.hrc:285
+#: svtools/inc/langtab.hrc:286
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bodo"
msgstr "Bodo"
#. sSAvV
-#: svtools/inc/langtab.hrc:286
+#: svtools/inc/langtab.hrc:287
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dogri"
msgstr "Dogri"
#. f2nfh
-#: svtools/inc/langtab.hrc:287
+#: svtools/inc/langtab.hrc:288
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maithili"
msgstr "Maithili"
#. Rm94B
-#: svtools/inc/langtab.hrc:288
+#: svtools/inc/langtab.hrc:289
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Santali"
msgstr "Santali"
#. C7EGu
-#: svtools/inc/langtab.hrc:289
+#: svtools/inc/langtab.hrc:290
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Timor-Leste)"
msgstr "Tetun (Timor-Leste)"
#. JzTF8
-#: svtools/inc/langtab.hrc:290
+#: svtools/inc/langtab.hrc:291
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkmen"
msgstr "Turkmen"
#. XbECR
-#: svtools/inc/langtab.hrc:291
+#: svtools/inc/langtab.hrc:292
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maltese"
msgstr "Maltese"
#. PJ6DF
-#: svtools/inc/langtab.hrc:292
+#: svtools/inc/langtab.hrc:293
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tok Pisin"
msgstr "Tok Pisin"
#. kAWUo
-#: svtools/inc/langtab.hrc:293
+#: svtools/inc/langtab.hrc:294
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Shuswap"
msgstr "Shuswap"
#. sBWQv
-#: svtools/inc/langtab.hrc:294
+#: svtools/inc/langtab.hrc:295
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Oromo"
msgstr "Oromo"
#. jYDYi
-#: svtools/inc/langtab.hrc:295
+#: svtools/inc/langtab.hrc:296
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek, Ancient"
msgstr "Greek, Ancient"
#. WY8GH
-#: svtools/inc/langtab.hrc:296
+#: svtools/inc/langtab.hrc:297
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (Israel)"
msgstr "Yiddish (Israel)"
#. VAWnd
-#: svtools/inc/langtab.hrc:297
+#: svtools/inc/langtab.hrc:298
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Ecuador)"
msgstr "Quechua (Ecuador)"
#. UDB2F
-#: svtools/inc/langtab.hrc:298
+#: svtools/inc/langtab.hrc:299
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uyghur"
msgstr "Uyghur"
#. XAu8x
-#: svtools/inc/langtab.hrc:299
+#: svtools/inc/langtab.hrc:300
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Asturian"
msgstr "Asturian"
#. hwM5p
-#: svtools/inc/langtab.hrc:300
+#: svtools/inc/langtab.hrc:301
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Upper"
msgstr "Sorbian, Upper"
#. iGTFG
-#: svtools/inc/langtab.hrc:301
+#: svtools/inc/langtab.hrc:302
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Lower"
msgstr "Sorbian, Lower"
#. RvdrP
-#: svtools/inc/langtab.hrc:302
+#: svtools/inc/langtab.hrc:303
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latgalian"
msgstr "Latgalian"
#. 94i7A
-#: svtools/inc/langtab.hrc:303
+#: svtools/inc/langtab.hrc:304
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maore"
msgstr "Maore"
#. FeuXJ
-#: svtools/inc/langtab.hrc:304
+#: svtools/inc/langtab.hrc:305
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bushi"
msgstr "Bushi"
#. CWFtg
-#: svtools/inc/langtab.hrc:305
+#: svtools/inc/langtab.hrc:306
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tahitian"
msgstr "Tahitian"
#. TDoMB
-#: svtools/inc/langtab.hrc:306
+#: svtools/inc/langtab.hrc:307
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malagasy, Plateau"
msgstr "Malagasy, Plateau"
#. EVG88
-#: svtools/inc/langtab.hrc:307
+#: svtools/inc/langtab.hrc:308
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamentu (Netherlands Antilles)"
msgstr "Papiamentu (Netherlands Antilles)"
#. fbGn8
-#: svtools/inc/langtab.hrc:308
+#: svtools/inc/langtab.hrc:309
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Aruba)"
msgstr "Papiamento (Aruba)"
#. 9XBNE
-#: svtools/inc/langtab.hrc:309
+#: svtools/inc/langtab.hrc:310
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Campidanese"
msgstr "Sardinian, Campidanese"
#. d2kAw
-#: svtools/inc/langtab.hrc:310
+#: svtools/inc/langtab.hrc:311
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Gallurese"
msgstr "Sardinian, Gallurese"
#. cJATX
-#: svtools/inc/langtab.hrc:311
+#: svtools/inc/langtab.hrc:312
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Logudorese"
msgstr "Sardinian, Logudorese"
#. PJFYt
-#: svtools/inc/langtab.hrc:312
+#: svtools/inc/langtab.hrc:313
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Sassarese"
msgstr "Sardinian, Sassarese"
#. oDLAc
-#: svtools/inc/langtab.hrc:313
+#: svtools/inc/langtab.hrc:314
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bafia"
msgstr "Bafia"
#. 598zD
-#: svtools/inc/langtab.hrc:314
+#: svtools/inc/langtab.hrc:315
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gikuyu"
msgstr "Gikuyu"
#. PFxrW
-#: svtools/inc/langtab.hrc:315
+#: svtools/inc/langtab.hrc:316
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yoruba"
msgstr "Yoruba"
#. jajFo
-#: svtools/inc/langtab.hrc:316
+#: svtools/inc/langtab.hrc:317
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Ukraine)"
msgstr "Rusyn (Ukraine)"
#. PpWdM
-#: svtools/inc/langtab.hrc:317
+#: svtools/inc/langtab.hrc:318
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Slovakia)"
msgstr "Rusyn (Slovakia)"
#. Wgo9k
-#: svtools/inc/langtab.hrc:318
+#: svtools/inc/langtab.hrc:319
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabyle Latin"
msgstr "Kabyle Latin"
#. MSnHB
-#: svtools/inc/langtab.hrc:319
+#: svtools/inc/langtab.hrc:320
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (USA)"
msgstr "Yiddish (USA)"
#. uYMRX
-#: svtools/inc/langtab.hrc:320
+#: svtools/inc/langtab.hrc:321
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hawaiian"
msgstr "Hawaiian"
#. DyEGX
-#: svtools/inc/langtab.hrc:321
+#: svtools/inc/langtab.hrc:322
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Limbu"
msgstr "Limbu"
#. 3jGCz
-#: svtools/inc/langtab.hrc:322
+#: svtools/inc/langtab.hrc:323
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lojban"
msgstr "Lojban"
#. Ec3C4
-#: svtools/inc/langtab.hrc:323
+#: svtools/inc/langtab.hrc:324
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Haitian"
msgstr "Haitian"
#. D3Xoy
-#: svtools/inc/langtab.hrc:324
+#: svtools/inc/langtab.hrc:325
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Beembe"
msgstr "Beembe"
#. 6Pkbr
-#: svtools/inc/langtab.hrc:325
+#: svtools/inc/langtab.hrc:326
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bekwel"
msgstr "Bekwel"
#. 8WjqB
-#: svtools/inc/langtab.hrc:326
+#: svtools/inc/langtab.hrc:327
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Congo)"
msgstr "Kituba (Congo)"
#. hCFcE
-#: svtools/inc/langtab.hrc:327
+#: svtools/inc/langtab.hrc:328
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lari"
msgstr "Lari"
#. KxXpB
-#: svtools/inc/langtab.hrc:328
+#: svtools/inc/langtab.hrc:329
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mbochi"
msgstr "Mbochi"
#. 6FdTq
-#: svtools/inc/langtab.hrc:329
+#: svtools/inc/langtab.hrc:330
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Eboo"
msgstr "Teke-Eboo"
#. FeBzA
-#: svtools/inc/langtab.hrc:330
+#: svtools/inc/langtab.hrc:331
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Ibali"
msgstr "Teke-Ibali"
#. LKetF
-#: svtools/inc/langtab.hrc:331
+#: svtools/inc/langtab.hrc:332
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Tyee"
msgstr "Teke-Tyee"
#. DfVqj
-#: svtools/inc/langtab.hrc:332
+#: svtools/inc/langtab.hrc:333
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vili"
msgstr "Vili"
#. uBEkT
-#: svtools/inc/langtab.hrc:333
+#: svtools/inc/langtab.hrc:334
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "KeyID"
msgstr "KeyID"
#. maAoG
-#: svtools/inc/langtab.hrc:334
+#: svtools/inc/langtab.hrc:335
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Latin"
msgstr "Pali Latin"
#. eDDSm
-#: svtools/inc/langtab.hrc:335
+#: svtools/inc/langtab.hrc:336
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kyrgyz (China)"
msgstr "Kyrgyz (China)"
#. RCmma
-#: svtools/inc/langtab.hrc:336
+#: svtools/inc/langtab.hrc:337
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Zyrian"
msgstr "Komi-Zyrian"
#. DLxCK
-#: svtools/inc/langtab.hrc:337
+#: svtools/inc/langtab.hrc:338
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Permyak"
msgstr "Komi-Permyak"
#. zRJy3
-#: svtools/inc/langtab.hrc:338
+#: svtools/inc/langtab.hrc:339
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pitjantjatjara"
msgstr "Pitjantjatjara"
#. X2WLD
-#: svtools/inc/langtab.hrc:339
+#: svtools/inc/langtab.hrc:340
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malawi)"
msgstr "English (Malawi)"
#. BNve6
-#: svtools/inc/langtab.hrc:340
+#: svtools/inc/langtab.hrc:341
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Erzya"
msgstr "Erzya"
#. bS6vy
-#: svtools/inc/langtab.hrc:341
+#: svtools/inc/langtab.hrc:342
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Meadow"
msgstr "Mari, Meadow"
#. 2YjMT
-#: svtools/inc/langtab.hrc:342
+#: svtools/inc/langtab.hrc:343
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Curaçao)"
msgstr "Papiamento (Aruba)"
#. QA2V4
-#: svtools/inc/langtab.hrc:343
+#: svtools/inc/langtab.hrc:344
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Bonaire)"
msgstr "Papiamento (Bonaire)"
#. vozw6
-#: svtools/inc/langtab.hrc:344
+#: svtools/inc/langtab.hrc:345
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khanty"
msgstr "Khanty"
#. MBtJM
-#: svtools/inc/langtab.hrc:345
+#: svtools/inc/langtab.hrc:346
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Livonian"
msgstr "Livonian"
#. wNkoh
-#: svtools/inc/langtab.hrc:346
+#: svtools/inc/langtab.hrc:347
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moksha"
msgstr "Moksha"
#. uCDU6
-#: svtools/inc/langtab.hrc:347
+#: svtools/inc/langtab.hrc:348
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Hill"
msgstr "Mari, Hill"
#. JEhY4
-#: svtools/inc/langtab.hrc:348
+#: svtools/inc/langtab.hrc:349
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nganasan"
msgstr "Nganasan"
#. hr4pq
-#: svtools/inc/langtab.hrc:349
+#: svtools/inc/langtab.hrc:350
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Olonets"
msgstr "Olonets"
#. Arpn4
-#: svtools/inc/langtab.hrc:350
+#: svtools/inc/langtab.hrc:351
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Veps"
msgstr "Veps"
#. fJ3Ss
-#: svtools/inc/langtab.hrc:351
+#: svtools/inc/langtab.hrc:352
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Võro"
msgstr "Võro"
#. HuWCs
-#: svtools/inc/langtab.hrc:352
+#: svtools/inc/langtab.hrc:353
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nenets"
msgstr "Nenets"
#. 5Zxgd
-#: svtools/inc/langtab.hrc:353
+#: svtools/inc/langtab.hrc:354
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Central African Republic)"
msgstr ""
#. oBDBe
-#: svtools/inc/langtab.hrc:354
+#: svtools/inc/langtab.hrc:355
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Congo)"
msgstr "Aka (Congo)"
#. GRKCD
-#: svtools/inc/langtab.hrc:355
+#: svtools/inc/langtab.hrc:356
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dibole"
msgstr "Dibole"
#. cgMCr
-#: svtools/inc/langtab.hrc:356
+#: svtools/inc/langtab.hrc:357
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Doondo"
msgstr "Doondo"
#. FmhF6
-#: svtools/inc/langtab.hrc:357
+#: svtools/inc/langtab.hrc:358
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kaamba"
msgstr "Kaamba"
#. BBf4G
-#: svtools/inc/langtab.hrc:358
+#: svtools/inc/langtab.hrc:359
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Koongo (Congo)"
msgstr "Koongo (Congo)"
#. HbeaC
-#: svtools/inc/langtab.hrc:359
+#: svtools/inc/langtab.hrc:360
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kunyi"
msgstr "Kunyi"
#. wLxHD
-#: svtools/inc/langtab.hrc:360
+#: svtools/inc/langtab.hrc:361
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngungwel"
msgstr "Ngungwel"
#. 7cvAe
-#: svtools/inc/langtab.hrc:361
+#: svtools/inc/langtab.hrc:362
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
msgstr "Njyem (Congo)"
#. G2SG8
-#: svtools/inc/langtab.hrc:362
+#: svtools/inc/langtab.hrc:363
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punu"
msgstr "Punu"
#. WjBVL
-#: svtools/inc/langtab.hrc:363
+#: svtools/inc/langtab.hrc:364
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Suundi"
msgstr "Suundi"
#. 9nAA2
-#: svtools/inc/langtab.hrc:364
+#: svtools/inc/langtab.hrc:365
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Kukuya"
msgstr "Teke-Kukuya"
#. dwdUH
-#: svtools/inc/langtab.hrc:365
+#: svtools/inc/langtab.hrc:366
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsaangi"
msgstr "Tsaangi"
#. otqzC
-#: svtools/inc/langtab.hrc:366
+#: svtools/inc/langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Congo)"
msgstr ""
#. JuMFF
-#: svtools/inc/langtab.hrc:367
+#: svtools/inc/langtab.hrc:368
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Democratic Republic of the Congo)"
msgstr ""
#. NDjGL
-#: svtools/inc/langtab.hrc:368
+#: svtools/inc/langtab.hrc:369
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yombe (Congo)"
msgstr "Yombe (Congo)"
#. MvwFr
-#: svtools/inc/langtab.hrc:369
+#: svtools/inc/langtab.hrc:370
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "N'ko"
msgstr "N'ko"
#. WFc6C
-#: svtools/inc/langtab.hrc:370
+#: svtools/inc/langtab.hrc:371
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Udmurt"
msgstr "Udmurt"
#. hEtfX
-#: svtools/inc/langtab.hrc:371
+#: svtools/inc/langtab.hrc:372
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (India)"
msgstr "Tibetan (India)"
#. Agf93
-#: svtools/inc/langtab.hrc:372
+#: svtools/inc/langtab.hrc:373
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cornish"
msgstr "Cornish"
#. EtH3H
-#: svtools/inc/langtab.hrc:373
+#: svtools/inc/langtab.hrc:374
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Pite (Sweden)"
msgstr "Sami, Pite (Sweden)"
#. jp6C9
-#: svtools/inc/langtab.hrc:374
+#: svtools/inc/langtab.hrc:375
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngäbere"
msgstr "Ngäbere"
#. 3nTLx
-#: svtools/inc/langtab.hrc:375
+#: svtools/inc/langtab.hrc:376
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kumyk"
msgstr "Kumyk"
#. c56C9
-#: svtools/inc/langtab.hrc:376
+#: svtools/inc/langtab.hrc:377
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nogai"
msgstr "Nogai"
#. CBiiA
-#: svtools/inc/langtab.hrc:377
+#: svtools/inc/langtab.hrc:378
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Karakalpak Latin"
msgstr "Karakalpak Latin"
#. CkEC7
-#: svtools/inc/langtab.hrc:378
+#: svtools/inc/langtab.hrc:379
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ladin"
msgstr "Ladin"
#. XAiVE
-#: svtools/inc/langtab.hrc:379
+#: svtools/inc/langtab.hrc:380
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Burkina Faso)"
msgstr "French (Burkina Faso)"
#. EGzhe
-#: svtools/inc/langtab.hrc:380
+#: svtools/inc/langtab.hrc:381
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Puinave"
msgstr "Puinave"
#. HNcxe
-#: svtools/inc/langtab.hrc:381
+#: svtools/inc/langtab.hrc:382
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maninkakan, Eastern, Latin"
msgstr "Maninkakan, Eastern, Latin"
#. Kxi9E
-#: svtools/inc/langtab.hrc:382
+#: svtools/inc/langtab.hrc:383
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Avar"
msgstr "Avar"
#. zumBa
-#: svtools/inc/langtab.hrc:383
+#: svtools/inc/langtab.hrc:384
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Latin"
msgstr "Cree, Plains, Latin"
#. PQqU7
-#: svtools/inc/langtab.hrc:384
+#: svtools/inc/langtab.hrc:385
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Syllabics"
msgstr "Cree, Plains, Syllabics"
#. kewgf
-#: svtools/inc/langtab.hrc:385
+#: svtools/inc/langtab.hrc:386
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lengo"
msgstr "Lengo"
#. KtBfE
-#: svtools/inc/langtab.hrc:386
+#: svtools/inc/langtab.hrc:387
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Côte d'Ivoire)"
msgstr "French (Côte d'Ivoire)"
#. DTuEL
-#: svtools/inc/langtab.hrc:387
+#: svtools/inc/langtab.hrc:388
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mali)"
msgstr "French (Mali)"
#. LFLk6
-#: svtools/inc/langtab.hrc:388
+#: svtools/inc/langtab.hrc:389
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Senegal)"
msgstr "French (Senegal)"
#. mSK3x
-#: svtools/inc/langtab.hrc:389
+#: svtools/inc/langtab.hrc:390
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Benin)"
msgstr "French (Benin)"
#. tM6qQ
-#: svtools/inc/langtab.hrc:390
+#: svtools/inc/langtab.hrc:391
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Niger)"
msgstr "French (Niger)"
#. nCq6f
-#: svtools/inc/langtab.hrc:391
+#: svtools/inc/langtab.hrc:392
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Togo)"
msgstr "French (Togo)"
#. oCBvK
-#: svtools/inc/langtab.hrc:392
+#: svtools/inc/langtab.hrc:393
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kven Finnish"
msgstr "Kven Finnish"
#. zjNcC
-#: svtools/inc/langtab.hrc:393
+#: svtools/inc/langtab.hrc:394
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venetian"
msgstr "ቬኒሺያን"
#. 8EbCs
-#: svtools/inc/langtab.hrc:394
+#: svtools/inc/langtab.hrc:395
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Gambia)"
msgstr "English (Gambia)"
#. gEd8L
-#: svtools/inc/langtab.hrc:395
+#: svtools/inc/langtab.hrc:396
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aranese"
msgstr "Aranese"
#. TaEzQ
-#: svtools/inc/langtab.hrc:396
+#: svtools/inc/langtab.hrc:397
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (France)"
msgstr "Arpitan (France)"
#. s4yFD
-#: svtools/inc/langtab.hrc:397
+#: svtools/inc/langtab.hrc:398
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Italy)"
msgstr "Arpitan (Italy)"
#. FvPLF
-#: svtools/inc/langtab.hrc:398
+#: svtools/inc/langtab.hrc:399
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Switzerland)"
msgstr "Arpitan (Switzerland)"
#. GgwXq
-#: svtools/inc/langtab.hrc:399
+#: svtools/inc/langtab.hrc:400
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Botswana)"
msgstr "English (Botswana)"
#. GZfWN
-#: svtools/inc/langtab.hrc:400
+#: svtools/inc/langtab.hrc:401
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingue Occidental"
msgstr "Interlingue Occidental"
#. FFkaK
-#: svtools/inc/langtab.hrc:401
+#: svtools/inc/langtab.hrc:402
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Apatani"
msgstr "Apatani"
#. EHHtS
-#: svtools/inc/langtab.hrc:402
+#: svtools/inc/langtab.hrc:403
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Mauritius)"
msgstr "ኢንግልዝኛ (ሞሪሸስ)"
#. atcMq
-#: svtools/inc/langtab.hrc:403
+#: svtools/inc/langtab.hrc:404
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mauritius)"
msgstr "ፈረንሳይኛ (ሞሪሸስ)"
#. UZ4Pn
-#: svtools/inc/langtab.hrc:404
+#: svtools/inc/langtab.hrc:405
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Silesian"
msgstr "Silesian"
#. RJDLA
-#: svtools/inc/langtab.hrc:405
+#: svtools/inc/langtab.hrc:406
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr "Hungarian (Szekely-Hungarian Rovas)"
#. v3WK8
-#: svtools/inc/langtab.hrc:406
+#: svtools/inc/langtab.hrc:407
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malaysia)"
msgstr "English (Malaysia)"
#. 4sBjT
-#: svtools/inc/langtab.hrc:407
+#: svtools/inc/langtab.hrc:408
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manchu"
msgstr "Manchu"
#. XH3fY
-#: svtools/inc/langtab.hrc:408
+#: svtools/inc/langtab.hrc:409
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xibe"
msgstr "Xibe"
#. oGNdE
-#: svtools/inc/langtab.hrc:409
+#: svtools/inc/langtab.hrc:410
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Democratic Republic of the Congo)"
msgstr "Kituba (Democratic Republic of the Congo)"
#. jQF7C
-#: svtools/inc/langtab.hrc:410
+#: svtools/inc/langtab.hrc:411
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr "Fon"
#. cAPXF
-#: svtools/inc/langtab.hrc:411
+#: svtools/inc/langtab.hrc:412
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Plautdietsch"
msgstr "Plautdietsch"
#. 8LY2A
-#: svtools/inc/langtab.hrc:412
+#: svtools/inc/langtab.hrc:413
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Russia)"
msgstr "Armenian, Eastern (Russia)"
#. ieGNR
-#: svtools/inc/langtab.hrc:413
+#: svtools/inc/langtab.hrc:414
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Iran)"
msgstr "Armenian, Eastern (Iran)"
#. US8Ga
-#: svtools/inc/langtab.hrc:414
+#: svtools/inc/langtab.hrc:415
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Western (Armenia)"
msgstr "Armenian, Western (Armenia)"
#. nzbrZ
-#: svtools/inc/langtab.hrc:415
+#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Classical (Armenia)"
msgstr "Armenian, Classical (Armenia)"
#. BDKAa
-#: svtools/inc/langtab.hrc:416
+#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Malaysia)"
msgstr "Malay Arabic (Malaysia)"
#. AnrGG
-#: svtools/inc/langtab.hrc:417
+#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Brunei Darussalam)"
msgstr "Malay Arabic (Brunei Darussalam)"
#. utBog
-#: svtools/inc/langtab.hrc:418
+#: svtools/inc/langtab.hrc:419
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
msgstr "Juǀ’hoan"
#. jPaAH
-#: svtools/inc/langtab.hrc:419
+#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
msgstr "Naro"
#. mMVAF
-#: svtools/inc/langtab.hrc:420
+#: svtools/inc/langtab.hrc:421
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
msgstr "Iloko"
#. AzGAy
-#: svtools/inc/langtab.hrc:421
+#: svtools/inc/langtab.hrc:422
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
msgstr "English (Zambia)"
#. 7kkKy
-#: svtools/inc/langtab.hrc:422
+#: svtools/inc/langtab.hrc:423
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Sri Lanka)"
msgstr "English (Sri Lanka)"
#. xFPXp
-#: svtools/inc/langtab.hrc:423
+#: svtools/inc/langtab.hrc:424
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Nigeria)"
msgstr "English (Nigeria)"
#. Up6ab
-#: svtools/inc/langtab.hrc:424
+#: svtools/inc/langtab.hrc:425
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabardian"
msgstr "Kabardian"
#. BiDsR
-#: svtools/inc/langtab.hrc:425
+#: svtools/inc/langtab.hrc:426
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guadeloupean Creole French"
msgstr "Guadeloupean Creole French"
#. 2b2P4
-#: svtools/inc/langtab.hrc:426
+#: svtools/inc/langtab.hrc:427
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ligurian"
msgstr "Ligurian"
#. 3LvEE
-#: svtools/inc/langtab.hrc:427
+#: svtools/inc/langtab.hrc:428
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Minangkabau"
msgstr "Minangkabau"
#. nDkKR
-#: svtools/inc/langtab.hrc:428
+#: svtools/inc/langtab.hrc:429
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sundanese"
msgstr "Sundanese"
#. wGEAB
-#: svtools/inc/langtab.hrc:429
+#: svtools/inc/langtab.hrc:430
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Hong Kong)"
msgstr ""
#. qTMB2
-#: svtools/inc/langtab.hrc:430
+#: svtools/inc/langtab.hrc:431
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Kenya)"
msgstr ""
#. SgQ2p
-#: svtools/inc/langtab.hrc:431
+#: svtools/inc/langtab.hrc:432
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Thai"
msgstr ""
#. DGeeF
-#: svtools/inc/langtab.hrc:432
+#: svtools/inc/langtab.hrc:433
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cabécar"
msgstr ""
#. xHCtG
-#: svtools/inc/langtab.hrc:433
+#: svtools/inc/langtab.hrc:434
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bribri"
msgstr ""
#. 2GFgR
-#: svtools/inc/langtab.hrc:434
+#: svtools/inc/langtab.hrc:435
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Denmark)"
msgstr ""
#. gmE6U
-#: svtools/inc/langtab.hrc:435
+#: svtools/inc/langtab.hrc:436
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sesotho"
msgstr ""
#. BkKJX
-#: svtools/inc/langtab.hrc:436
+#: svtools/inc/langtab.hrc:437
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr ""
#. xFYhC
-#: svtools/inc/langtab.hrc:437
+#: svtools/inc/langtab.hrc:438
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Israel)"
msgstr ""
#. Bryjh
-#: svtools/inc/langtab.hrc:438
+#: svtools/inc/langtab.hrc:439
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Latin"
msgstr ""
#. DZBAE
-#: svtools/inc/langtab.hrc:439
+#: svtools/inc/langtab.hrc:440
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Cyrillic"
msgstr ""
#. 4eEDW
-#: svtools/inc/langtab.hrc:440
+#: svtools/inc/langtab.hrc:441
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pennsylvania Dutch"
msgstr ""
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index cedd0236de0..5017eec6e52 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-11-25 15:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/am/>\n"
@@ -34,6666 +34,6672 @@ msgctxt "STR_ObjNameSingulGRUP"
msgid "Group object"
msgstr "እቃ በ ቡድን መመደቢያ"
-#. tC4qm
+#. nsYcw
#: include/svx/strings.hrc:28
+msgctxt "STR_ObjNameSingulDIAGRAM"
+msgid "Diagram"
+msgstr ""
+
+#. tC4qm
+#: include/svx/strings.hrc:29
msgctxt "STR_ObjNamePluralGRUP"
msgid "Group objects"
msgstr "እቃዎችን በ ቡድን መመደቢያ"
#. piV8E
-#: include/svx/strings.hrc:29
+#: include/svx/strings.hrc:30
msgctxt "STR_ObjNameSingulGRUPEMPTY"
msgid "Blank group object"
msgstr "የ ቡድን እቃ ባዶ ማድረጊያ"
#. BBEPU
-#: include/svx/strings.hrc:30
+#: include/svx/strings.hrc:31
msgctxt "STR_ObjNamePluralGRUPEMPTY"
msgid "Blank group objects"
msgstr "እቃዎችን በቡድን መመደቢያ ባዶ ማድረጊያ"
#. NVHmC
-#: include/svx/strings.hrc:31
+#: include/svx/strings.hrc:32
msgctxt "STR_ObjNameSingulLINE"
msgid "Line"
msgstr "መስመር"
#. SD2Wy
-#: include/svx/strings.hrc:32
+#: include/svx/strings.hrc:33
msgctxt "STR_ObjNameSingulLINE_Hori"
msgid "Horizontal line"
msgstr "የ አግድም መስመር"
#. 3dPEH
-#: include/svx/strings.hrc:33
+#: include/svx/strings.hrc:34
msgctxt "STR_ObjNameSingulLINE_Vert"
msgid "Vertical line"
msgstr "የ ቁመት መስመር"
#. JzFtj
-#: include/svx/strings.hrc:34
+#: include/svx/strings.hrc:35
msgctxt "STR_ObjNameSingulLINE_Diag"
msgid "Diagonal line"
msgstr "የ ሰያፍ መስመር"
#. YPAoe
-#: include/svx/strings.hrc:35
+#: include/svx/strings.hrc:36
msgctxt "STR_ObjNamePluralLINE"
msgid "Lines"
msgstr "መስመሮች"
#. yS2nC
-#: include/svx/strings.hrc:36
+#: include/svx/strings.hrc:37
msgctxt "STR_ObjNameSingulRECT"
msgid "Rectangle"
msgstr "አራት ማእዘን"
#. TDTj8
-#: include/svx/strings.hrc:37
+#: include/svx/strings.hrc:38
msgctxt "STR_ObjNamePluralRECT"
msgid "Rectangles"
msgstr "አራት ማእዘኖች"
#. fnV49
-#: include/svx/strings.hrc:38
+#: include/svx/strings.hrc:39
msgctxt "STR_ObjNameSingulQUAD"
msgid "Square"
msgstr "ስኴር"
#. XkEHU
-#: include/svx/strings.hrc:39
+#: include/svx/strings.hrc:40
msgctxt "STR_ObjNamePluralQUAD"
msgid "Squares"
msgstr "ስኴር"
#. vw4Ut
-#: include/svx/strings.hrc:40
+#: include/svx/strings.hrc:41
msgctxt "STR_ObjNameSingulPARAL"
msgid "Parallelogram"
msgstr "ፓራለልግራም"
#. yCpvs
-#: include/svx/strings.hrc:41
+#: include/svx/strings.hrc:42
msgctxt "STR_ObjNamePluralPARAL"
msgid "Parallelograms"
msgstr "ፓራለልግራም"
#. SfDZQ
-#: include/svx/strings.hrc:42
+#: include/svx/strings.hrc:43
msgctxt "STR_ObjNameSingulRECTRND"
msgid "Rounded rectangle"
msgstr "የተከበበ አራት ማእዘን"
#. PYAii
-#: include/svx/strings.hrc:43
+#: include/svx/strings.hrc:44
msgctxt "STR_ObjNamePluralRECTRND"
msgid "Rounded Rectangles"
msgstr "የተከበቡ አራት ማእዘኖች"
#. xQAn8
-#: include/svx/strings.hrc:44
+#: include/svx/strings.hrc:45
msgctxt "STR_ObjNameSingulQUADRND"
msgid "rounded square"
msgstr "የ ተከበበ ስኴር"
#. JHxon
-#: include/svx/strings.hrc:45
+#: include/svx/strings.hrc:46
msgctxt "STR_ObjNamePluralQUADRND"
msgid "Rounded Squares"
msgstr "የ ተከበበ ስኴር"
#. 89eHB
-#: include/svx/strings.hrc:46
+#: include/svx/strings.hrc:47
msgctxt "STR_ObjNameSingulPARALRND"
msgid "Rounded Parallelogram"
msgstr "ክብ ፓራለልግራም"
#. WvCRG
-#: include/svx/strings.hrc:47
+#: include/svx/strings.hrc:48
msgctxt "STR_ObjNamePluralPARALRND"
msgid "Rounded parallelograms"
msgstr "ክብ ፓራለልግራም"
#. NDXG6
-#: include/svx/strings.hrc:48
+#: include/svx/strings.hrc:49
msgctxt "STR_ObjNameSingulCIRC"
msgid "Circle"
msgstr "ክብ"
#. Bzk99
-#: include/svx/strings.hrc:49
+#: include/svx/strings.hrc:50
msgctxt "STR_ObjNamePluralCIRC"
msgid "Circles"
msgstr "ክቦች"
#. 2CxVR
-#: include/svx/strings.hrc:50
+#: include/svx/strings.hrc:51
msgctxt "STR_ObjNameSingulSECT"
msgid "Circle sector"
msgstr "የክብ sector"
#. djBb7
-#: include/svx/strings.hrc:51
+#: include/svx/strings.hrc:52
msgctxt "STR_ObjNamePluralSECT"
msgid "Circle sectors"
msgstr "የክብ sectors"
#. KAhqG
-#: include/svx/strings.hrc:52
+#: include/svx/strings.hrc:53
msgctxt "STR_ObjNameSingulCARC"
msgid "Arc"
msgstr "ቅስት"
#. ZtPEx
-#: include/svx/strings.hrc:53
+#: include/svx/strings.hrc:54
msgctxt "STR_ObjNamePluralCARC"
msgid "Arcs"
msgstr "ቅስቶች"
#. 7mXtq
-#: include/svx/strings.hrc:54
+#: include/svx/strings.hrc:55
msgctxt "STR_ObjNameSingulCCUT"
msgid "Circle segment"
msgstr "የክብ ክፋይ"
#. YkhbA
-#: include/svx/strings.hrc:55
+#: include/svx/strings.hrc:56
msgctxt "STR_ObjNamePluralCCUT"
msgid "Circle segments"
msgstr "የክብ ክፋዮች"
#. QsEuy
-#: include/svx/strings.hrc:56
+#: include/svx/strings.hrc:57
msgctxt "STR_ObjNameSingulCIRCE"
msgid "Ellipse"
msgstr "ኤሊፕስ"
#. rUFxb
-#: include/svx/strings.hrc:57
+#: include/svx/strings.hrc:58
msgctxt "STR_ObjNamePluralCIRCE"
msgid "Ellipses"
msgstr "ኤሊፕስ"
#. UADGo
-#: include/svx/strings.hrc:58
+#: include/svx/strings.hrc:59
msgctxt "STR_ObjNameSingulSECTE"
msgid "Ellipse Pie"
msgstr "ኤሊፕስ ፓይ"
#. afCit
-#: include/svx/strings.hrc:59
+#: include/svx/strings.hrc:60
msgctxt "STR_ObjNamePluralSECTE"
msgid "Ellipse Pies"
msgstr "ኤሊፕስ ፓይ"
#. 7FXAW
-#: include/svx/strings.hrc:60
+#: include/svx/strings.hrc:61
msgctxt "STR_ObjNameSingulCARCE"
msgid "Elliptical arc"
msgstr "Elliptical arc"
#. KdtfM
-#: include/svx/strings.hrc:61
+#: include/svx/strings.hrc:62
msgctxt "STR_ObjNamePluralCARCE"
msgid "Elliptical arcs"
msgstr "Elliptical arcs"
#. C4jME
-#: include/svx/strings.hrc:62
+#: include/svx/strings.hrc:63
msgctxt "STR_ObjNameSingulCCUTE"
msgid "Ellipse Segment"
msgstr "የ ኤሊፕስ ክፋይ"
#. wKC5F
-#: include/svx/strings.hrc:63
+#: include/svx/strings.hrc:64
msgctxt "STR_ObjNamePluralCCUTE"
msgid "Ellipse Segments"
msgstr "የ ኤሊፕስ ክፋዮች"
#. ibJ55
-#: include/svx/strings.hrc:64
+#: include/svx/strings.hrc:65
msgctxt "STR_ObjNameSingulPOLY"
msgid "Polygon"
msgstr "ፖሊጎን"
#. AZFuB
-#: include/svx/strings.hrc:65
+#: include/svx/strings.hrc:66
msgctxt "STR_ObjNameSingulPOLY_PointCount"
msgid "Polygon %2 corners"
msgstr "የ ፖሊጎን %2 ጠርዞች"
#. a6z8j
-#: include/svx/strings.hrc:66
+#: include/svx/strings.hrc:67
msgctxt "STR_ObjNamePluralPOLY"
msgid "Polygons"
msgstr "ፖሊጎኖች"
#. WSEL3
-#: include/svx/strings.hrc:67
+#: include/svx/strings.hrc:68
msgctxt "STR_ObjNameSingulPLIN"
msgid "Polyline"
msgstr "Polyline"
#. eBhxV
-#: include/svx/strings.hrc:68
+#: include/svx/strings.hrc:69
msgctxt "STR_ObjNameSingulPLIN_PointCount"
msgid "Polyline with %2 corners"
msgstr "Polyline with %2 corners"
#. NjP7U
-#: include/svx/strings.hrc:69
+#: include/svx/strings.hrc:70
msgctxt "STR_ObjNamePluralPLIN"
msgid "Polylines"
msgstr "Polylines"
#. KNPXt
-#: include/svx/strings.hrc:70
+#: include/svx/strings.hrc:71
msgctxt "STR_ObjNameSingulPATHLINE"
msgid "Bézier curve"
msgstr "የ ቤዤ ክብ"
#. BhTAu
-#: include/svx/strings.hrc:71
+#: include/svx/strings.hrc:72
msgctxt "STR_ObjNamePluralPATHLINE"
msgid "Bézier curves"
msgstr "የ ቤዤ ክቦች"
#. LU3AK
-#: include/svx/strings.hrc:72
+#: include/svx/strings.hrc:73
msgctxt "STR_ObjNameSingulPATHFILL"
msgid "Bézier curve"
msgstr "የ ቤዤ ክብ"
#. vLAWh
-#: include/svx/strings.hrc:73
+#: include/svx/strings.hrc:74
msgctxt "STR_ObjNamePluralPATHFILL"
msgid "Bézier curves"
msgstr "የ ቤዤ ክቦች"
#. FQeae
-#: include/svx/strings.hrc:74
+#: include/svx/strings.hrc:75
msgctxt "STR_ObjNameSingulFREELINE"
msgid "Freeform Line"
msgstr "ነፃ መስመር መፍጠሪያ"
#. c8gFR
-#: include/svx/strings.hrc:75
+#: include/svx/strings.hrc:76
msgctxt "STR_ObjNamePluralFREELINE"
msgid "Freeform Lines"
msgstr "ነፃ መስመሮች መፍጠሪያ"
#. GSmPG
-#: include/svx/strings.hrc:76
+#: include/svx/strings.hrc:77
msgctxt "STR_ObjNameSingulFREEFILL"
msgid "Freeform Line"
msgstr "ነፃ መስመር መፍጠሪያ"
#. 8k7tC
-#: include/svx/strings.hrc:77
+#: include/svx/strings.hrc:78
msgctxt "STR_ObjNamePluralFREEFILL"
msgid "Freeform Lines"
msgstr "ነፃ መስመሮች መፍጠሪያ"
#. iwxqj
-#: include/svx/strings.hrc:78
+#: include/svx/strings.hrc:79
msgctxt "STR_ObjNameSingulCOMBLINE"
msgid "Curve"
msgstr "መታጠፊያ"
#. CjzRc
-#: include/svx/strings.hrc:79
+#: include/svx/strings.hrc:80
msgctxt "STR_ObjNameSingulNATSPLN"
msgid "Natural Spline"
msgstr "Natural Spline"
#. CSFGL
-#: include/svx/strings.hrc:80
+#: include/svx/strings.hrc:81
msgctxt "STR_ObjNamePluralNATSPLN"
msgid "Natural Splines"
msgstr "Natural Splines"
#. jpijx
-#: include/svx/strings.hrc:81
+#: include/svx/strings.hrc:82
msgctxt "STR_ObjNameSingulPERSPLN"
msgid "Periodic Spline"
msgstr "Periodic Spline"
#. A2GLR
-#: include/svx/strings.hrc:82
+#: include/svx/strings.hrc:83
msgctxt "STR_ObjNamePluralPERSPLN"
msgid "Periodic Splines"
msgstr "Periodic Splines"
#. efEFM
-#: include/svx/strings.hrc:83
+#: include/svx/strings.hrc:84
msgctxt "STR_ObjNameSingulTEXT"
msgid "Text Frame"
msgstr "የ ጽሁፍ ክፈፍ"
#. MdV7N
-#: include/svx/strings.hrc:84
+#: include/svx/strings.hrc:85
msgctxt "STR_ObjNamePluralTEXT"
msgid "Text Frame"
msgstr "የ ጽሁፍ ክፈፍ"
#. 3Pvnw
-#: include/svx/strings.hrc:85
+#: include/svx/strings.hrc:86
msgctxt "STR_ObjNameSingulTEXTLNK"
msgid "Linked text frame"
msgstr "የተገናኘ የ ጽሁፍ ክፈፍ"
#. EtTZB
-#: include/svx/strings.hrc:86
+#: include/svx/strings.hrc:87
msgctxt "STR_ObjNamePluralTEXTLNK"
msgid "Linked text frames"
msgstr "የተገናኙ የ ጽሁፍ ክፈፎች"
#. mw75y
-#: include/svx/strings.hrc:87
+#: include/svx/strings.hrc:88
msgctxt "STR_ObjNameSingulTITLETEXT"
msgid "Title text"
msgstr "የ አርእስት ጽሁፍ"
#. aAKEp
-#: include/svx/strings.hrc:88
+#: include/svx/strings.hrc:89
msgctxt "STR_ObjNamePluralTITLETEXT"
msgid "Title texts"
msgstr "የ አርእስት ጽሁፎች"
#. 3DMmh
-#: include/svx/strings.hrc:89
+#: include/svx/strings.hrc:90
msgctxt "STR_ObjNameSingulOUTLINETEXT"
msgid "Outline Text"
msgstr "የጽሁፍ ረቂቅ"
#. PDZGm
-#: include/svx/strings.hrc:90
+#: include/svx/strings.hrc:91
msgctxt "STR_ObjNamePluralOUTLINETEXT"
msgid "Outline Texts"
msgstr "የጽሁፎች ረቂቅ"
#. HspAE
-#: include/svx/strings.hrc:91
+#: include/svx/strings.hrc:92
msgctxt "STR_ObjNameSingulGRAF"
msgid "Image"
msgstr "ምስል"
#. DzfeY
-#: include/svx/strings.hrc:92
+#: include/svx/strings.hrc:93
msgctxt "STR_ObjNamePluralGRAF"
msgid "Images"
msgstr "ምስሎች"
#. E9w8q
-#: include/svx/strings.hrc:93
+#: include/svx/strings.hrc:94
msgctxt "STR_ObjNameSingulGRAFLNK"
msgid "Linked image"
msgstr "የ ተገናኘ ምስል"
#. YopD6
-#: include/svx/strings.hrc:94
+#: include/svx/strings.hrc:95
msgctxt "STR_ObjNamePluralGRAFLNK"
msgid "Linked images"
msgstr "የ ተገናኙ ምስሎች"
#. wWACk
-#: include/svx/strings.hrc:95
+#: include/svx/strings.hrc:96
msgctxt "STR_ObjNameSingulGRAFNONE"
msgid "Blank image object"
msgstr "ባዶ የ ምስል እቃ"
#. uzsE4
-#: include/svx/strings.hrc:96
+#: include/svx/strings.hrc:97
msgctxt "STR_ObjNamePluralGRAFNONE"
msgid "Blank image objects"
msgstr "ባዶ የ ምስል እቃዎች"
#. 8Za3o
-#: include/svx/strings.hrc:97
+#: include/svx/strings.hrc:98
msgctxt "STR_ObjNameSingulGRAFNONELNK"
msgid "Blank linked image"
msgstr "ባዶ የ ተገናኘ ምስል"
#. 8W5JS
-#: include/svx/strings.hrc:98
+#: include/svx/strings.hrc:99
msgctxt "STR_ObjNamePluralGRAFNONELNK"
msgid "Blank linked images"
msgstr "ባዶ የተገናኙ ምስሎች"
#. kUuBg
-#: include/svx/strings.hrc:99
+#: include/svx/strings.hrc:100
msgctxt "STR_ObjNameSingulGRAFMTF"
msgid "Metafile"
msgstr "Metafile"
#. w5ykB
-#: include/svx/strings.hrc:100
+#: include/svx/strings.hrc:101
msgctxt "STR_ObjNamePluralGRAFMTF"
msgid "Metafiles"
msgstr "Metafiles"
#. XBDAB
-#: include/svx/strings.hrc:101
+#: include/svx/strings.hrc:102
msgctxt "STR_ObjNameSingulGRAFMTFLNK"
msgid "Linked Metafile"
msgstr "የተገናኘ Metafile"
#. ACpDE
-#: include/svx/strings.hrc:102
+#: include/svx/strings.hrc:103
msgctxt "STR_ObjNamePluralGRAFMTFLNK"
msgid "Linked Metafiles"
msgstr "የተገናኙ Metafiles"
#. Pbmqw
-#: include/svx/strings.hrc:103
+#: include/svx/strings.hrc:104
msgctxt "STR_ObjNameSingulGRAFBMP"
msgid "Image"
msgstr "ምስል"
#. WdAhn
-#: include/svx/strings.hrc:104
+#: include/svx/strings.hrc:105
msgctxt "STR_ObjNameSingulGRAFBMPTRANS"
msgid "Image with transparency"
msgstr "ምስል በ ውስጡ ብርሃን የሚያሳልፍ"
#. 3FkK6
-#: include/svx/strings.hrc:105
+#: include/svx/strings.hrc:106
msgctxt "STR_ObjNameSingulGRAFBMPLNK"
msgid "Linked Image"
msgstr "የ ተገናኘ ምስል"
#. ydd77
-#: include/svx/strings.hrc:106
+#: include/svx/strings.hrc:107
msgctxt "STR_ObjNameSingulGRAFBMPTRANSLNK"
msgid "Linked image with transparency"
msgstr "የ ተገናኘ ምስል በ ውስጡ ብርሃን የሚያሳልፍ"
#. FVJeA
-#: include/svx/strings.hrc:107
+#: include/svx/strings.hrc:108
msgctxt "STR_ObjNamePluralGRAFBMP"
msgid "Images"
msgstr "ምስሎች"
#. mjfjF
-#: include/svx/strings.hrc:108
+#: include/svx/strings.hrc:109
msgctxt "STR_ObjNamePluralGRAFBMPTRANS"
msgid "Images with transparency"
msgstr "ምስሎች በ ውስጣቸው ብርሃን የሚያሳልፉ"
#. 8kaaN
-#: include/svx/strings.hrc:109
+#: include/svx/strings.hrc:110
msgctxt "STR_ObjNamePluralGRAFBMPLNK"
msgid "Linked images"
msgstr "የ ተገናኙ ምስሎች"
#. DKMiE
-#: include/svx/strings.hrc:110
+#: include/svx/strings.hrc:111
msgctxt "STR_ObjNamePluralGRAFBMPTRANSLNK"
msgid "Linked images with transparency"
msgstr "የ ተገናኙ ምስሎች በ ውስጣቸው ብርሃን የሚያሳልፉ"
#. aeEoK
-#: include/svx/strings.hrc:111
+#: include/svx/strings.hrc:112
msgctxt "STR_ObjNameSingulCUSTOMSHAPE"
msgid "Shape"
msgstr "ቅርጽ"
#. BZmgL
-#: include/svx/strings.hrc:112
+#: include/svx/strings.hrc:113
msgctxt "STR_ObjNamePluralCUSTOMSHAPE"
msgid "Shapes"
msgstr "ቅርጾች"
#. HBYSq
-#: include/svx/strings.hrc:113
+#: include/svx/strings.hrc:114
msgctxt "STR_ObjNameSingulGRAFSVG"
msgid "SVG"
msgstr "SVG"
#. pzxhb
-#: include/svx/strings.hrc:114
+#: include/svx/strings.hrc:115
msgctxt "STR_ObjNamePluralGRAFSVG"
msgid "SVGs"
msgstr "SVGs"
#. v2DTg
-#: include/svx/strings.hrc:115
+#: include/svx/strings.hrc:116
msgctxt "STR_ObjNameSingulGRAFWMF"
msgid "WMF"
msgstr "WMF"
#. LR2x6
-#: include/svx/strings.hrc:116
+#: include/svx/strings.hrc:117
msgctxt "STR_ObjNamePluralGRAFWMF"
msgid "WMFs"
msgstr "WMFs"
#. XcDs2
-#: include/svx/strings.hrc:117
+#: include/svx/strings.hrc:118
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "EMF"
msgstr "EMF"
#. JtdP2
-#: include/svx/strings.hrc:118
+#: include/svx/strings.hrc:119
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "EMFs"
msgstr "EMFs"
#. H2FkB
-#: include/svx/strings.hrc:119
+#: include/svx/strings.hrc:120
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
msgstr "ፒዲኤፍ"
#. tc3Jb
-#: include/svx/strings.hrc:120
+#: include/svx/strings.hrc:121
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
msgstr "PDFs"
#. b3os5
-#: include/svx/strings.hrc:121
+#: include/svx/strings.hrc:122
msgctxt "STR_ObjNameSingulOLE2"
msgid "embedded object (OLE)"
msgstr "የ ተጣበቀ እቃ (OLE)"
#. QMF8w
-#: include/svx/strings.hrc:122
+#: include/svx/strings.hrc:123
msgctxt "STR_ObjNamePluralOLE2"
msgid "Embedded objects (OLE)"
msgstr "የ ተጣበቁ እቃዎች (OLE)"
#. mAAWu
-#: include/svx/strings.hrc:123
+#: include/svx/strings.hrc:124
msgctxt "STR_ObjNameSingulUno"
msgid "Control"
msgstr "መቆጣጠሪያ"
#. KrTeo
-#: include/svx/strings.hrc:124
+#: include/svx/strings.hrc:125
msgctxt "STR_ObjNamePluralUno"
msgid "Controls"
msgstr "መቆጣጠሪያዎች"
#. wfVg2
-#: include/svx/strings.hrc:125
+#: include/svx/strings.hrc:126
msgctxt "STR_ObjNameSingulFrame"
msgid "Frame"
msgstr "ክፈፍ"
#. q72EC
-#: include/svx/strings.hrc:126
+#: include/svx/strings.hrc:127
msgctxt "STR_ObjNamePluralFrame"
msgid "Frames"
msgstr "ክፈፎች"
#. gYhqY
-#: include/svx/strings.hrc:127
+#: include/svx/strings.hrc:128
msgctxt "STR_ObjNameSingulEDGE"
msgid "Object Connectors"
msgstr "እቃ አገናኞች"
#. 9XiCG
-#: include/svx/strings.hrc:128
+#: include/svx/strings.hrc:129
msgctxt "STR_ObjNamePluralEDGE"
msgid "Object Connectors"
msgstr "እቃ አገናኞች"
#. HSDBo
-#: include/svx/strings.hrc:129
+#: include/svx/strings.hrc:130
msgctxt "STR_ObjNameSingulCAPTION"
msgid "Callout"
msgstr "መጥሪያ"
#. BdAJu
-#: include/svx/strings.hrc:130
+#: include/svx/strings.hrc:131
msgctxt "STR_ObjNamePluralCAPTION"
msgid "Callouts"
msgstr "መጥሪያዎች"
#. Ezpif
-#: include/svx/strings.hrc:131
+#: include/svx/strings.hrc:132
msgctxt "STR_ObjNameSingulPAGE"
msgid "Preview object"
msgstr "እቃውን በቅድሚያ መመልከቻ"
#. UCECt
-#: include/svx/strings.hrc:132
+#: include/svx/strings.hrc:133
msgctxt "STR_ObjNamePluralPAGE"
msgid "Preview objects"
msgstr "እቃዎችን በቅድሚያ መመልከቻ"
#. GCVKi
-#: include/svx/strings.hrc:133
+#: include/svx/strings.hrc:134
msgctxt "STR_ObjNameSingulMEASURE"
msgid "Dimension line"
msgstr "የ አቅጣጫ መስመር"
#. DokjU
-#: include/svx/strings.hrc:134
+#: include/svx/strings.hrc:135
msgctxt "STR_ObjNamePluralMEASURE"
msgid "Dimensioning objects"
msgstr "የ እቃዎች አቅጣጫ"
#. iBQEy
-#: include/svx/strings.hrc:135
+#: include/svx/strings.hrc:136
msgctxt "STR_ObjNamePlural"
msgid "Drawing objects"
msgstr "እቃዎች መሳያ"
#. xHrgo
-#: include/svx/strings.hrc:136
+#: include/svx/strings.hrc:137
msgctxt "STR_ObjNameNoObj"
msgid "No draw object"
msgstr "እቃዎች መሳያ የለም"
#. EEKnk
-#: include/svx/strings.hrc:137
+#: include/svx/strings.hrc:138
msgctxt "STR_ObjNameSingulPlural"
msgid "Draw object(s)"
msgstr "መሳያ እቃ(ዎች)"
#. LYyRP
-#: include/svx/strings.hrc:138
+#: include/svx/strings.hrc:139
msgctxt "STR_ObjNameSingulCube3d"
msgid "3D cube"
msgstr "3ዲ ኪዩብ"
#. ZsF4T
-#: include/svx/strings.hrc:139
+#: include/svx/strings.hrc:140
msgctxt "STR_ObjNamePluralCube3d"
msgid "3D cubes"
msgstr "3ዲ ኪዩብ"
#. h9hf7
-#: include/svx/strings.hrc:140
+#: include/svx/strings.hrc:141
msgctxt "STR_ObjNameSingulExtrude3d"
msgid "Extrusion object"
msgstr "የ ማሾለኪያ እቃ"
#. Ag6Pu
-#: include/svx/strings.hrc:141
+#: include/svx/strings.hrc:142
msgctxt "STR_ObjNamePluralExtrude3d"
msgid "Extrusion objects"
msgstr "የ ማሾለኪያ እቃዎች"
#. L3B8v
-#: include/svx/strings.hrc:142
+#: include/svx/strings.hrc:143
msgctxt "STR_ObjNameSingulLathe3d"
msgid "Rotation object"
msgstr "እቃ ማዞሪያ"
#. e3vFm
-#: include/svx/strings.hrc:143
+#: include/svx/strings.hrc:144
msgctxt "STR_ObjNamePluralLathe3d"
msgid "Rotation objects"
msgstr "እቃዎች ማዞሪያ"
#. CE5Gk
-#: include/svx/strings.hrc:144
+#: include/svx/strings.hrc:145
msgctxt "STR_ObjNameSingulObj3d"
msgid "3D object"
msgstr "3ዲ እቃ"
#. pECo3
-#: include/svx/strings.hrc:145
+#: include/svx/strings.hrc:146
msgctxt "STR_ObjNamePluralObj3d"
msgid "3D objects"
msgstr "3ዲ እቅዎች"
#. Wuqvb
-#: include/svx/strings.hrc:146
+#: include/svx/strings.hrc:147
msgctxt "STR_ObjNameSingulScene3d"
msgid "3D scene"
msgstr "3ዲ ገጽታ"
#. tH8BD
-#: include/svx/strings.hrc:147
+#: include/svx/strings.hrc:148
msgctxt "STR_ObjNamePluralScene3d"
msgid "3D scenes"
msgstr "3ዲ ገጽታዎች"
#. WdWuw
-#: include/svx/strings.hrc:148
+#: include/svx/strings.hrc:149
msgctxt "STR_ObjNameSingulSphere3d"
msgid "Sphere"
msgstr "ስፌር"
#. YNXv5
-#: include/svx/strings.hrc:149
+#: include/svx/strings.hrc:150
msgctxt "STR_ObjNamePluralSphere3d"
msgid "Spheres"
msgstr "ስፌሮች"
#. h4GBf
-#: include/svx/strings.hrc:150
+#: include/svx/strings.hrc:151
msgctxt "STR_EditWithCopy"
msgid "with copy"
msgstr "ከ ኮፒ ጋር"
#. NrVyW
-#: include/svx/strings.hrc:151
+#: include/svx/strings.hrc:152
msgctxt "STR_EditPosSize"
msgid "Set position and size for %1"
msgstr "ቦታ እና መጠን ማሰናጃ ለ %1"
#. ac4yY
-#: include/svx/strings.hrc:152
+#: include/svx/strings.hrc:153
msgctxt "STR_EditDelete"
msgid "Delete %1"
msgstr "ማጥፊያ %1"
#. AweBA
-#: include/svx/strings.hrc:153
+#: include/svx/strings.hrc:154
msgctxt "STR_EditMovToTop"
msgid "Move %1 forward"
msgstr "ማንቀሳቀሻ %1 ወደ ፊት"
#. G7EUR
-#: include/svx/strings.hrc:154
+#: include/svx/strings.hrc:155
msgctxt "STR_EditMovToBtm"
msgid "Move %1 further back"
msgstr "ማንቀሳቀሻ %1 ወደ ኋላ"
#. B83UQ
-#: include/svx/strings.hrc:155
+#: include/svx/strings.hrc:156
msgctxt "STR_EditPutToTop"
msgid "Move %1 to front"
msgstr "ማንቀሳቀሻ %1 ወደ ፊት"
#. aHzgz
-#: include/svx/strings.hrc:156
+#: include/svx/strings.hrc:157
msgctxt "STR_EditPutToBtm"
msgid "Move %1 to back"
msgstr "ማንቀሳቀሻ %1 ወደ ኋላ"
#. Q6nSk
-#: include/svx/strings.hrc:157
+#: include/svx/strings.hrc:158
msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "በተቃራኒው ደንብ ከ %1"
#. rpJs7
-#: include/svx/strings.hrc:158
+#: include/svx/strings.hrc:159
msgctxt "STR_SortShapes"
msgid "Sort shapes"
msgstr "ቅርጾች መለያ"
#. cALbH
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "ማንቀሳቀሻ %1"
#. dskGp
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "እንደገና መመጠኛ %1"
#. 5QxCS
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "ማዞሪያ %1"
#. BD8aF
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "መገልበጫ %1 በ አግድም"
#. g7Qgy
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "መገልበጫ %1 በ ቁመት"
#. 8MR5T
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "መገልበጫ %1 በሰያፍ"
#. zDbgU
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "መገልበጫ %1 ነፃ እጅ"
#. AFUeA
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "ማጣመሚያ %1 (ማዘንበያ)"
#. QRoy3
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "ማዘጋጃ %1 በክብ"
#. wvGVC
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "መታጠፊያ %1 በክብ"
#. iUJAq
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "ማጣመሚያ %1"
#. GRiqx
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "መተው %1"
#. sE8PU
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "የ ቤዤ ባህሪዎች ማሻሻያ በ %1"
#. CzVVY
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "የ ቤዤ ባህሪዎች ማሻሻያ በ %1"
#. 5KcDa
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "የ መውጫ አቅጣጫ ማሰናጃ ለ %1"
#. Gbbmq
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "ተዛማጅ ባህሪዎች ማሰናጃ በ %1"
#. Auc4o
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "መነሻ ነጥቦች ማሰናጃ ለ %1"
#. M5Jac
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "ቡድን %1"
#. wEEok
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "መለያያ %1"
#. XochA
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "ባህሪዎች መፈጸሚያ ወደ %1"
#. kzth3
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "ዘዴዎች መፈጸሚያ ወደ %1"
#. PDT8V
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "ዘዴዎች ማስወገጃ ከ %1"
#. 5DwCY
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "መቀየሪያ %1 ወደ ፖሊጎን"
#. TPv7Q
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "መቀየሪያ %1 ወደ ፖሊጎን"
#. ompqC
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "መቀየሪያ %1 ወደ መታጠፊያ"
#. gax8J
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "መቀየሪያ %1 ወደ ክቦች"
#. s96Mt
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "መቀየሪያ %1 ወደ ቅርጽ"
#. LAyEj
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "መቀየሪያ %1 ወደ ቅርጾች"
#. jzxvB
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "ማሰለፊያ %1"
#. jocJd
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "ማሰለፊያ %1 ወደ ላይ"
#. WFGbz
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "ማሰለፊያ %1 ወደ ታች"
#. SyXzE
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "በ አግድም መሀከል ላይ %1"
#. TgGUN
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "ማሰለፊያ %1 ወደ ግራ"
#. s3Erz
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "ማሰለፊያ %1 ወደ ቀኝ"
#. apfuW
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "በ ቁመት መሀከል ላይ %1"
#. ttEmT
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "መሀከል %1"
#. xkGug
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "መቀየሪያ %1"
#. smiFA
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "መቀላቀያ %1"
#. PypoU
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "ማዋሀጃ %1"
#. 2KfaD
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "መቀነሻ %1"
#. gKFow
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "መገናኛ %1"
#. M8onz
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "የተመረጡትን እቃዎች ማከፋፈያ"
#. CnGYu
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "ስፋት እኩል ማድረጊያ %1"
#. zBTZe
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr "እርዝመት እኩል ማድረጊያ %1"
#. JWmM2
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "መቀላቀያ %1"
#. k5kFN
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "መክፈያ %1"
#. weAmr
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "መክፈያ %1"
#. Yofeq
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "መክፈያ %1"
#. hWuuR
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "እቃ(ዎች) ማስገቢያ"
#. EaVu8
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "ነጥብ ማስገቢያ ወደ %1"
#. G3DCW
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragInsertGluePoint"
msgid "Insert gluepoint to %1"
msgstr ""
#. 6JqED
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "መነሻ-ነጥቡን ማንቀሳቀሻ"
#. o8CAF
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "Geometrically change %1"
#. ghkib
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "ማንቀሳቀሻ %1"
#. BCrkD
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "እንደገና መመጠኛ %1"
#. xonh6
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "ማዞሪያ %1"
#. kBYzN
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "መገልበጫ %1 በ አግድም"
#. CBBXE
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "መገልበጫ %1 በ ቁመት"
#. uHCGD
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "መገልበጫ %1 በሰያፍ"
#. vRwXA
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "መገልበጫ %1 ነፃ እጅ"
#. 9xhJw
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "Interactive gradient for %1"
#. Fst87
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "Interactive transparency for %1"
#. jgbKK
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "ማጣመሚያ %1 (ማዘንበያ)"
#. Eo8H6
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "ማዘጋጃ %1 በክብ"
#. stAcK
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "መታጠፊያ %1 በክብ"
#. VbA6t
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "ማጣመሚያ %1"
#. YjghP
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "መከርከሚያ %1"
#. ViifK
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Alter radius by %1"
#. usEq4
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "መቀየሪያ %1"
#. X4GFU
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "እንደገና መመጠኛ %1"
#. qF4Px
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "ማንቀሳቀሻ %1"
#. fKuKa
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "መጨረሻ ነጥብ ማንቀሳቀሻ ከ %1"
#. ewcHx
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "ማእዘን ማስተካከያ በ %1"
#. L8rCz
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "መቀየሪያ %1"
#. UxCCc
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "ጽሁፍ ማረሚያ: አንቀጽ %1, ረድፍ %2, አምድ %3"
#. 23tL7
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 ተመርጧል"
#. yQkFZ
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "ነጥብ ከ %1"
#. RGnTk
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 ነጥቦች ከ %1"
#. YxpLB
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoint"
msgid "Gluepoint from %1"
msgstr ""
#. qCFmV
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 gluepoints from %1"
msgstr ""
#. CDqRQ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "እቃዎችን ምልክት ማድረጊያ"
#. SLrPJ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "ተጨማሪ እቃዎችን ምልክት ማድረጊያ"
#. hczKZ
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "ነጥቦችን ምልክት ማድረጊያ"
#. 778bF
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "ተጨማሪ ነጥቦችን ምልክት ማድረጊያ"
#. BLEE8
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark gluepoints"
msgstr ""
#. eH9Vs
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional gluepoints"
msgstr ""
#. D5ZZA
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "መፍጠሪያ %1"
#. 7FoxD
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "ማስገቢያ %1"
#. 9hXBp
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "ኮፒ %1"
#. arzhD
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "የእቃዎችን ተራ መቀየሪያ ከ %1"
#. QTZxE
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "ጽሁፍ ማረሚያ ከ %1"
#. un957
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "ገጽ ማስገቢያ"
#. vBvUC
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "ገጽ ማጥፊያ"
#. rFgUQ
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "ገጽ ኮፒ ማድረጊያ"
#. EYfZc
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "የ ገጾችን ተራ መቀየሪያ"
#. BQRVo
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "የ መደብ ገጽ መመደቢያውን ማጽጃ"
#. 79Cxu
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "የ መደብ ገጽ መመደቢያውን መቀየሪያ"
#. 9P8JF
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "ሰነድ ማስገቢያ"
#. w3W7h
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "ደረጃ ማስገቢያ"
#. 7pifL
-#: include/svx/strings.hrc:258
+#: include/svx/strings.hrc:259
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "ደረጃ ማጥፊያ"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "የ እቃውን ስም መቀየሪያ ከ %1 ወደ"
#. D4AsZ
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "የ እቃውን አርእስት መቀየሪያ ከ %1"
#. tqeMT
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "የ እቃውን መግለጫ መቀየሪያ ከ %1"
#. XcY5w
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValON"
msgid "on"
msgstr "ማብሪያ"
#. e6RAB
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "ማጥፊያ"
#. gaXKQ
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "አዎ"
#. 65SoV
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "አይ"
#. aeEuB
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "አይነት 1"
#. BFaLY
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "አይነት 2"
#. KFMjw
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "አይነት 3"
#. 48UKA
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "አይነት 4"
#. DVm64
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "በ አግድም"
#. ZYYeS
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "በ ቁመት"
#. HcoYN
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "ራሱ በራሱ"
#. uZNFq
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "ማጥፊያ"
#. 2ZQvA
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "ተመጣጣኝ"
#. Ej4Ya
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "በመጠኑ ልክ (ሁሉንም አምዶች ለየብቻ) "
#. Wr4kE
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "ጠንካራ ባህሪዎች መጠቀሚያ"
#. 73uL2
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "ከ ላይ"
#. 3Cde5
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "መሀከል"
#. AR3n7
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "ከ ታች"
#. UmBBe
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "ጠቅላላ እርዝመቱን መጠቀሚያ"
#. dRtWD
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "የተስፋፋ"
#. kGXVu
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "በ ግራ"
#. bDPBk
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "መሀከል"
#. tVhNN
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "በ ቀኝ"
#. K8NiD
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "ጠቅላላ ስፋቱን መጠቀሚያ"
#. H7dgd
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "የተስፋፋ"
#. q5eQw
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "ማጥፊያ"
#. Roba3
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "ብርሃን"
#. UDFFC
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "በውስጡ መሸብለያ"
#. A9BQL
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "ማፈራረቂያ"
#. EkPkn
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "በውስጥ መሸብለያ"
#. x3Yd5
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "በ ግራ"
#. w7PTQ
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "ላይ"
#. oMaiF
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "በ ቀኝ"
#. tQTCd
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "ከ ታች"
#. 6MMYx
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "መደበኛ አገናኝ"
#. SLdM8
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "በ መስመር አገናኝ"
#. ZAtDC
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "በ ቀጥታ አገናኝ"
#. 9qXds
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "በ ክብ አገናኝ"
#. MGEse
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "መደበኛ"
#. sNziy
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Radius"
#. zGpyM
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "ራሱ በራሱ"
#. jA4pb
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "በመስመሩ ላይ"
#. iqYjg
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "የተሰበረ መስመር"
#. h8npu
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "ከ መስመሩ በታች"
#. WL8XG
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "መሀከል"
#. hy9eX
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "ሙሉ ክብ"
#. 6BdZt
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "ክብ ፓይ"
#. j6Bc3
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "የክብ ክፋይ"
#. 7sN8d
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "ቅስት"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "ያልታወቀ ባህሪ"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:315
+#: include/svx/strings.hrc:316
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "የመስመር ዘዴ"
#. BbP7X
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "የ ንድፍ መስመር"
#. 4NCnS
-#: include/svx/strings.hrc:317
+#: include/svx/strings.hrc:318
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "የ መስመር ስፋት"
#. NuJkv
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "የ መስመር ቀለም"
#. NgaPV
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "የ መስመር ራስጌ"
#. UYBDU
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "የ መስመር መጨረሻ"
#. DJkAF
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "የ ራስጌ መስመር ስፋት"
#. QqA6b
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "የ መስመር መጨረሻ ስፋት"
#. FcHDB
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "መሀከል የ ቀስት ራስጌ"
#. KnFtT
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "መሀከል የ ቀስት መጨረሻ"
#. 2UZUA
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "የመስመር ግልጽነት"
#. 5MLYD
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "የመስመር መገናኛ"
#. ArqSC
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "የ መስመር ባህሪዎች"
#. dufaT
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "ዘዴ መሙያ"
#. RDcH6
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "ቀለም መሙያ"
#. DJM9B
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "ከፍታ መለኪያ"
#. gbABb
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "በርካታ መስመር"
#. GE68t
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Fillbitmap"
#. DV2Ss
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "ግልጽነት"
#. eK8kh
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "የከፍታ መለኪያ ደረጃዎች ቁጥር"
#. AVtYF
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "ጡብ መሙያ"
#. D7T2o
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "የ bitmap መሙያ ቦታ"
#. NVLGP
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "የ bitmap መሙያ ስፋት"
#. PSCTE
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "የ bitmap መሙያ እርዝመት"
#. zW4zt
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "ግልጽ ከፍታ መለኪያ"
#. DBBgQ
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "መሙያ መጠባበቂያ ለ 2"
#. PaSqp
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "የጡብ መጠን አይደለም በ %"
#. fwikV
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "የጡብ ማካካሻ X በ %"
#. FQgvE
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "የጡብ ማካካሻ Y በ %"
#. NUEGF
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Bitmap መመጠኛ"
#. pc9yk
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "የጡብ ቦታ X በ %"
#. DH43F
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "የጡብ ቦታ Y በ %"
#. 8GFpS
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "መደብ መሙያ"
#. 2SvhA
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "የ ቦታ ባህሪዎች"
#. TE8CS
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "የ ፊደል ስራ ዘዴ"
#. qMnRZ
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "የ ፊደል ስራ ማሰለፊያ"
#. fpGEZ
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "የ ፊደል ስራ ክፍተት"
#. CUBXL
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "የ ፊደል ስራ የ ፊደል መጀመሪያ"
#. JSVHo
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "የ ፊደል ስራ የተንፀባረቀ"
#. P5W29
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "የ ፊደል ስራ ረቂቅ"
#. LKCDD
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "የ ፊደል ስራ ጥላ"
#. oDiYn
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "የ ፊደል ስራ ጥላ ቀለም"
#. sFLRA
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "የ ፊደል ስራ ጥላ ማካካሻ X"
#. daERW
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "የ ፊደል ስራ ጥላ ማካካሻ Y"
#. LdeJZ
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "የ ፊደል ስራ ረቂቅ መደበቂያ"
#. 3sPPg
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "የ ፊደል ስራ ጥላ ግልጽነት"
#. q6MHs
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "ጥላ"
#. dSwen
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "የ ጥላ ቀለም"
#. HcLrC
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "የጥላ ክፍተት ከ X"
#. TMGmk
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "የጥላ ክፍተት ከ Y"
#. u5baB
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "የጥላ ግልጽነት"
#. AtDxf
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr "ማፍዘዣ ጥላ"
#. sDFuG
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "3ዲ ጥላ"
#. FGU8f
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "የጥላ እይታ"
#. MV529
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "የመግለጫው አይነት"
#. GAtWb
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "የተወሰነ መግለጫ ማእዘን"
#. SgHKq
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "የመግለጫ ማእዘን"
#. gwcQp
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "የ መግለጫ መስመሮች ክፍተት"
#. 6uEae
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "ከ መግለጫ ማሰለፊያ መውጫ"
#. TXjGv
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "ከ መግለጫ ግንኙነት መውጫ"
#. Z5bQB
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "ከ መግለጫ ግንኙነት መውጫ"
#. 4TmFK
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "ከ መግለጫ ፍጹም መውጫ"
#. V9TG8
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "የመግለጫ መስመር እርዝመት"
#. haQgi
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "የ መግለጫ መስመሮች በራሱ እርዝመት"
#. 8sDXi
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CORNER_RADIUS"
msgid "Corner radius"
msgstr "የ ጠርዝ ራዲየስ"
#. GEA3m
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "አነስተኛው የክፈፍ እርዝመት"
#. 3jdRR
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "በራሱ በ እርዝመቱ ልክ"
#. NoJR4
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "ጽሁፍ በክፈፉ ልክ"
#. EexDC
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "የ ግራ ጽሁፍ ክፈፍ ክፍተት"
#. 3thvB
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "የ ቀኝ ጽሁፍ ክፈፍ ክፍተት"
#. 8x2Xa
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "የላይ ጽሁፍ ክፈፍ ክፍተት"
#. WyymX
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "የታች ጽሁፍ ክፈፍ ክፍተት"
#. vdbvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "በ ቁመት ጽሁፍ ማስቆሚያ"
#. QzTNc
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "ከፍተኛው የክፈፍ እርዝመት"
#. CcAnR
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "ዝቅተኛው የ ክፈፍ ስፋት"
#. i6nqD
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "ከፍተኛው የ ክፈፍ ስፋት"
#. irtVb
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "በራሱ በ ስፋቱ ልክ"
#. BGR8n
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "በ አግድም ጽሁፍ ማስቆሚያ"
#. ruk5J
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "ቆጣሪ"
#. cvDiA
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "የቆጣሪ አቅጣጫ"
#. GuCC5
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "ቆጣሪ በውስጥ ማስጀመሪያ"
#. ipog5
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "ቆጣሪ በውስጥ ማቆሚያ"
#. pWAHL
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "ቆጣሪው የሄዳቸው ቁጥሮች"
#. vGEjP
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "የቆጣሪው ፍጥነት"
#. SdHEU
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "የቆጣሪው ደረጃ መጠን"
#. LzoA5
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "የ ጽሁፍ ፍሰት ረቂቅ"
#. tNbcC
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXTCOLUMNS_NUMBER"
msgid "Columns number"
msgstr "የ አምዶች ቁጥር"
#. DxZkZ
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXTCOLUMNS_SPACING"
msgid "Columns spacing"
msgstr "የ አምዶች ክፍተት"
#. HDtDf
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "የ ተጠቃሚ-መግለጫ ባህሪዎች"
#. F9FzF
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "ነፃ-የፊደል መስመር ክፍተት መጠቀሚያ"
#. jTAhz
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "በቅርጹ ቃላት መጠቅለያ ጽሁፍ"
#. QDaB6
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr "የሚቀጥለው አገናኝ በ ጽሁፍ ሰንሰለት ውስጥ"
#. BA5dh
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "የ አገናኙ አይነት"
#. CoYH2
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "በ አግድም የ እቃ ክፍተት 1"
#. xdvs2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "በ ቁመት የ እቃ ክፍተት 1"
#. FB4Cj
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "በ አግድም የ እቃ ክፍተት 2"
#. uGKvj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "በ ቁመት የ እቃ ክፍተት 2"
#. FSkBP
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "የ መጋጠሚያ እቃ ክፍተት 1"
#. 845KH
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "የ መጋጠሚያ እቃ ክፍተት 2"
#. FEDAf
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "የሚንቀሳቀሱ መስመሮች ቁጥር"
#. EnGaG
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "ማካካሻ መስመር 1"
#. 5XFzK
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "ማካካሻ መስመር 2"
#. nBFrd
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "ማካካሻ መስመር 3"
#. x7oEC
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Type of dimensioning"
#. 2XCPo
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "የ አቅጣጫ ዋጋ - በ አግድም ቦታ"
#. DxA8Z
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "የ Dimension ዋጋ - በቁመት ቦታ"
#. LQCsj
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "የ Dimension መስመር ቦታ"
#. jZBoK
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "የ Dimension እርዳታ መስመር ማስፋፊያ"
#. Bhboy
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "የ አቅጣጫ እርዳታ መስመር ክፍተት"
#. jw9E7
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "ያልተፈጸመ ስራ ከ Dimension እርዳታ መስመር 1"
#. CYFg6
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "ያልተፈጸመ ስራ ከ Dimension እርዳታ መስመር 2"
#. ocvCK
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "ዝቅተኛ ጠርዝ dimensioning"
#. cFVVA
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "የ Dimension ዋጋ ከ dimension መስመር ባሻገር"
#. VVAgC
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "የ dimension ዋጋ በ 180 ዲግሪ ማዞሪያ"
#. iFX7y
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "የ Dimension መስመር ማስፊያ"
#. DoBGo
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "መለኪያ ክፍል"
#. 2NBMp
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "ተጨማሪ የ መለኪያ ምክንያት"
#. 4yTAW
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "መለኪያ ክፍል ማሳያ"
#. NFDC3
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "የ አቅጣጫ ዋጋ አቀራረብ"
#. UBjQk
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "የ አቅጣጫ ዋጋ በራሱ ቦታ መመደቢያ"
#. GDQC3
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "የ አቅጣጫ ዋጋ ራሱ በራሱ ቦታ መመደቢያ Angle"
#. DB243
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "የ dimension ዋጋ መመደቢያ ማእዘን መወሰኛ"
#. i3Bah
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "የ dimension ዋጋ ማእዘን"
#. qWKC7
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "የዴሲማል ቦታዎች"
#. wkrNX
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "የክቡ አይነት"
#. FRFU8
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "ማእዘን መጀመሪያ"
#. FmSKG
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "ማእዘን መጨረሻ"
#. ejn6F
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "የሚጠበቁ የእቃዎች ቦታ"
#. ZPEB9
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "የሚጠበቁ የእቃዎች መጠን"
#. BN5CM
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "ሊታተም የሚችል እቃ"
#. 3Digj
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "የሚታይ እቃ"
#. nZLtM
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "ደረጃ መለያ"
#. f3ed2
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "ደረጃ"
#. rb6GC
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "የእቃው ስም"
#. 5zRFi
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "የ X, ቦታ ተፈጽሟል"
#. 5enZ7
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "የ Y, ቦታ ተፈጽሟል"
#. 2V5Mn
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "ጠቅላላ ስፋት"
#. P6Y6W
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "ጠቅላላ እርዝመት"
#. yFnnC
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "የ X ነጠላ ቦታ"
#. jEGfd
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "የ Y ነጠላ ቦታ"
#. YJFnY
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "ነጠላ ስፋት"
#. bZFkM
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "ነጠላ እርዝመት"
#. K5Xuq
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "የ Logical ስፋት"
#. 9Niyk
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "የ Logical እርዝመት"
#. yFmvh
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "ነጠላ ማዞሪያ ማእዘን"
#. zNyKY
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "ነጠላ መቁረጫ ማእዘን"
#. bJv8D
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "በ አግድም ማንቀሳቀሻ"
#. z7EPp
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "በ ቁመት ማንቀሳቀሻ"
#. Qn4GS
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "እንደገና መመጠኛ X, ነጠላ"
#. VCtZa
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "እንደገና መመጠኛ Y, ነጠላ"
#. NxatH
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "ነጠላ ማዞሪያ"
#. gNVw9
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "ነጠላ በ አግድም መቁረጫ"
#. iCzED
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "ነጠላ በ ቁመት መቁረጫ"
#. HQcJt
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "X, እንደገና መመጠን ተፈጽሟል"
#. VcK8z
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Y, እንደገና መመጠን ተፈጽሟል"
#. vgGU4
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "ሁሉንም ማዞሪያ"
#. 3faE4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "በ አግድም መቁረጥ ተፈጽሟል"
#. RAEPz
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "በ ቁመት መቁረጥ ተፈጽሟል"
#. gtXM3
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "መነሻ ነጥብ 1 X"
#. YpQDc
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "መነሻ ነጥብ 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "መነሻ ነጥብ 2 X"
#. Rty4j
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "መነሻ ነጥብ 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "ጭረት"
#. HMmA6
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "ነጥቦች ማሳያ"
#. 8Q88u
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "ቁጥር መስጫ ማስረጊያ"
#. inGxX
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "ቁጥር መስጫ ደረጃ"
#. 2CtLK
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "ነጥቦች እና ቁጥር መስጫዎች"
#. hCE5d
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "ማስረጊያዎች"
#. Y5YFm
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "የ አንቀጽ ክፍተት"
#. feirn
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "የ መስመር ክፍተት"
#. gjAVE
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "አንቀጽ ማሰለፊያ"
#. offnT
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "መቁጠሪያዎች"
#. kpiTD
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "የ ፊደል ቀለም"
#. X535C
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "ባህሪ ማሰናጃ"
#. AEbEz
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "የ ፊደል መጠን"
#. UKHSM
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "የ ፊደል ስፋት"
#. SQWpD
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "ማድመቂያ (ውፍረቱ)"
#. AUR7N
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "ከ ስሩ ማስመሪያ"
#. v2AEJ
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "ከ ላይ ማስመሪያ"
#. ARvwR
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "በላዩ ላይ መሰረዣ"
#. gcVzb
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "ማዝመሚያ"
#. kJVaV
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "ረቂቅ"
#. CZR4e
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "የፊደል ጥላ"
#. PFSUR
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "በትንንሹ ከፍ ብሎ መጻፊያ/በትንንሹ ዝቅ ብሎ መጻፊያ"
#. DrBio
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Kerning"
#. tUVvP
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "Manual kerning"
#. S9QCU
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "ለ ክፍተቶች ከ ስሩ አታስምር"
#. GuTzF
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "መቁጠሪያ"
#. U4qgA
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "በምርጫ መስመር መስበሪያ"
#. jzBEA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "ሊቀየር-የማይችል ባህሪ"
#. tZd9C
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "ሜዳዎች"
#. GeKPD
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "ቀይ"
#. EzAu7
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "አረንጓዴ"
#. TmBML
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "ሰማያዊ"
#. 7Gqzs
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "ብርሁነት"
#. rziVW
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "አነጻጻሪ"
#. CHepz
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. 2ESVA
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "ግልጽነት"
#. uZYFG
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "መገልበጫ"
#. 6aFx2
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "የ ምስል ዘዴ"
#. Ni9KZ
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "መከርከሚያ"
#. kVnke
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "ብዙሀን መገናኛ እቃ"
#. nbHgw
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "ብዙሀን መገናኛ እቃዎች"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:523
+#: include/svx/strings.hrc:524
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "አምድ ማስገቢያ"
#. SAmd8
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "ረድፍ ማስገቢያ"
#. yFDYp
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "አምድ ማጥፊያ"
#. 9SF9L
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "ረድፍ ማጥፊያ"
#. iBbtT
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "ክፍሎች መክፈያ"
#. vmzqf
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "ክፍሎች ማዋሀጃ"
#. 3VVmF
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "የ ክፍሎች አቀራረብ"
#. pSCJC
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "ረድፎች ማከፋፈያ"
#. GdLHf
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "አምዶች ማከፋፈያ"
#. fGNto
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "የ ክፍል ይዞታዎችን ማጥፊያ"
#. B33Cb
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "የ ሰንጠረዥ ዘዴ"
#. ZHBAC
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "የ ሰንጠረዥ ዘዴ ማሰናጃዎች"
#. eERmE
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "ሰንጠረዥ"
#. XjgSV
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "ሰንጠረዦች"
#. mLDqP
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr "የ ፊደል ስራ"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:539
+#: include/svx/strings.hrc:540
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "የሚቀጥል"
#. uNL7M
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "ከፍታ መለኪያ"
#. a8YoL
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Bitmap"
#. FDmra
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "ንድፍ"
#. HcGBQ
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr "ያልተሰየመ ንድፍ"
#. GHj4Q
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "የ መስመር ዘዴ"
#. fa7EG
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "ምንም"
#. mrTdk
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "ቀለም"
#. 5bjE5
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "በርካታ መስመር"
#. yGRGW
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "የ ቀስት ራስጌዎች"
#. snuCi
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "ቀስት"
#. 6EvQ7
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "ስኴር"
#. i6cva
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "ክብ"
#. emz9g
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- ምንም -"
#. hGaEK
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "ግልጽነት"
#. X4EFw
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "መሀከል"
#. FFe8m
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "መሀከል ያልሆነ"
#. hFhmH
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "ነባር"
#. DdAzc
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "ግራጫማ"
#. RHEXM
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "ጥቁር/ነጭ"
#. bcXbA
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "የ ውሀ ምልክት"
#. ZWz8Y
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:562
+#: include/svx/strings.hrc:563
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr "ጥቁር ቀይ 2"
#. Rw7nG
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr "ሰማያዊ"
#. UdEYr
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "ቢጫ"
#. 9AUDK
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr "ጥቁር ሰማያዊ 1"
#. aSWwv
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr "ነጣ ያለ ሰማያዊ 2"
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:568
+#: include/svx/strings.hrc:569
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "ጥቁር"
#. PwGvV
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "ግራጫ"
#. Dp9Az
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "ነጭ"
#. TGLmD
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "ቢጫ"
#. YpDke
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "ወርቅ"
#. 7aJCZ
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "ብርቱካን"
#. mZMFN
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr "ሸክላ"
#. juJeM
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "ቀይ"
#. 7xMrN
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Magenta"
#. ELXiM
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "Purple"
#. UTexf
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "ሐምራዊ ሰማያዊ"
#. qbcF9
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "ሰማያዊ"
#. hQ44j
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "አረንጓዴ ሰማያዊ"
#. JpxBr
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "አረንጓዴ"
#. A3aCJ
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "ሎሚ"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:584
+#: include/svx/strings.hrc:585
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "ነጣ ያለ ግራጫ"
#. YF2ud
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr "ነጣ ያለ ቢጫ"
#. BaXBj
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr "ነጣ ያለ ወርቅ"
#. masPL
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr "ነጣ ያለ ብርቱካን"
#. k5GY4
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr "ነጣ ያለ ሸክላ"
#. KGDDj
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "ነጣ ያለ ቀይ"
#. nvB2W
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr "ነጣ ያለ ማጄንታ"
#. y96HS
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr "ነጣ ያለ ሀምራዊ"
#. 8Bg8h
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "ነጣ ያለ ሐምራዊ ሰማያዊ"
#. suGUh
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "ነጣ ያለ ሰማያዊ"
#. 5VFSV
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr "ነጣ ያለ አረንጓዴ ሰማያዊ"
#. 3Z7KA
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "ነጣ ያለ አረንጓዴ"
#. HVPnD
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr "ነጣ ያለ ሎሚ"
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:598
+#: include/svx/strings.hrc:599
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr "ጥቁር ግራጫ"
#. EaFik
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr "ጥቁር ቢጫ"
#. AFByn
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr "ጥቁር ወርቅ"
#. qAGnF
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr "ጥቁር ብርቱካን"
#. NC62Q
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr "ጥቁር ሸክላ"
#. st4Zy
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "ጥቁር ቀይ"
#. indkC
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr "ጥቁር ማጄንታ"
#. AE9Ya
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr "ጥቁር ሀምራዊ"
#. VFKuJ
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr "ጥቁር ሐምራዊ ሰማያዊ"
#. U3qfW
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr "ጥቁር ሰማያዊ"
#. dYdEW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr "ጥቁር አረንጓዴ ሰማያዊ"
#. qFAAB
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr "ጥቁር አረንጓዴ"
#. C3U7v
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "ጥቁር ሎሚ"
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:612
+#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "ወይን ጠጅ"
#. GgboW
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "ወይን ጠጅ (Out of Gamut)"
#. mz3Eo
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "ሰማያዊ (Out of Gamut)"
#. SGvfY
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "ነጣ ያለ ሰማያዊ (Out of Gamut)"
#. dYBjC
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "የ ፀደይ አረንጓዴ (Out of Gamut)"
#. GCcWR
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "አረንጓዴ (Out of Gamut)"
#. DLuCh
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "ፈዛዛ አረንጓዴ (Out of Gamut)"
#. s3ZaC
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "ብርቱካን (Out of Gamut)"
#. A8i2G
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "ቀይ (Out of Gamut)"
#. j4oEv
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "ሮዝ (Out of Gamut)"
#. qBpvR
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr "ነጣ ያለ ሰማያዊ"
#. Y6vVA
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "ሲያን"
#. 583vY
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr "የ ፀደይ አረንጓዴ"
#. jtKm8
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr "ፈዛዛ አረንጓዴ"
#. RkAmE
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr "ሮዝ"
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:628
+#: include/svx/strings.hrc:629
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr "ግራጫ A"
#. 3b7sB
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr "ቢጫ A"
#. DbqvY
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:653
+#: include/svx/strings.hrc:654
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "ሰማያዊ"
#. CWbzY
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "ሰማያዊ ግራጫ"
#. DkKFF
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Bordeaux"
#. 5hZu8
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "ደብዛዛ ቢጫ"
#. wSEGQ
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "ደብዛዛ አረንጓዴ"
#. pUEkF
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "ጥቁር የወይን ጠጅ"
#. qVhW9
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Salmon"
#. QV77P
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "ባህር ሰማያዊ"
#. gYFV6
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "ቻርት"
#. LXcFL
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "ሰማያዊ"
#. QbGU3
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "ቢጫ አረንጓዴ"
#. UDfTh
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "ሮዝ"
#. FXDuA
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "ሰማያዊ አረንጓዴ"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:667
+#: include/svx/strings.hrc:668
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3ዲ"
#. GtMuR
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "ጥቁር 1"
#. AhPLy
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "ጥቁር 2"
#. jVxFC
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "ሰማያዊ"
#. FacjB
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "ቡናማ"
#. uQSDF
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "ገንዘብ"
#. sQpNL
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "ገንዘብ 3ዲ"
#. ACACr
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "ግራጫ ገንዘብ"
#. yy7mJ
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "ገንዘብ ፈዛዛ ወይን ጠጅ"
#. 4THUt
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "ገንዘብ ሰማያዊ አረንጓዴ"
#. a8AGf
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "ግራጫ"
#. B4e9f
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "አረንጓዴ"
#. 3mz4G
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "ፈዛዛ ወይን ጠጅ"
#. gdfFF
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "ቀይ"
#. GsAVb
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "ሰማያዊ አረንጓዴ"
#. sZbit
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "ቢጫ"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:684
+#: include/svx/strings.hrc:685
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr "ትምህርት"
#. CYMbi
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr "የ ሳጥን ዝርዝር ሰማያዊ"
#. njUDn
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr "የ ሳጥን ዝርዝር አረንጓዴ"
#. GUk5r
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr "የ ሳጥን ዝርዝር ቀይ"
#. oNMgD
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr "የ ሳጥን ዝርዝር ቢጫ"
#. YVY2f
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "ድንቅ"
#. Q9rDT
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "ገንዘብ"
#. 3qSCd
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr "ቀላል የ አምዶች መጋጠሚያ"
#. hksaM
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr "ቀላል የ ረድፎች መጋጠሚያ"
#. CHXkk
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr "ቀላል የ ዝርዝር ጥላ"
#. XrHFB
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "መካከለኛ የ መስመር መገናኛ"
#. zbAG7
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "የ መስመር ማገናኛ ስላሽ"
#. EtQJT
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "miter የመስመር ማገናኛ"
#. YUtBv
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "ክብ የመስመር ማገናኛ"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:699
+#: include/svx/strings.hrc:700
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "የመስመር ባርኔጣ ጠፍጣፋ"
#. zKt6C
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "የመስመር ባርኔጣ ክብ"
#. 5Lbx4
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "የ መስመር ባርኔጣ ስኴር"
#. YXbPg
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "ከፍታ መለኪያ"
#. mZwMD
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "ቀጥተኛ ሰማያዊ/ነጭ"
#. WyGuh
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "ቀጥተኛ ቀይ ወይን ጠጅ/አረንጓዴ"
#. cLHvA
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "ቀጥተኛ ቢጫ/ቡናማ"
#. Kfkbm
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "ተሽከርካሪ አረንጓዴ/ጥቁር"
#. uiTTS
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "ተሽከርካሪ ቀይ/ቢጫ"
#. SsUvr
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "አራት ማእዘን ቀይ/ነጭ"
#. CKwQP
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "ስኴር ቢጫ/ነጭ"
#. hi3tb
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "ኤሊፕሶይድ ሰማያዊ ግራጫ/ነጣ ያለ ሰማያዊ"
#. b6AwV
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Axial light ቀይ/ነጭ"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:713
+#: include/svx/strings.hrc:714
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "በሰያፍ 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:715
+#: include/svx/strings.hrc:716
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "በሰያፍ 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:717
+#: include/svx/strings.hrc:718
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "በሰያፍ 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:719
+#: include/svx/strings.hrc:720
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "በሰያፍ 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:721
+#: include/svx/strings.hrc:722
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "በሰያፍ 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:723
+#: include/svx/strings.hrc:724
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "በሰያፍ 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:725
+#: include/svx/strings.hrc:726
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "በሰያፍ 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:727
+#: include/svx/strings.hrc:728
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "በሰያፍ 4r"
#. yqda8
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "በ ሰያፍ ሰማያዊ"
#. GCtJC
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "በ ሰያፍ አረንጓዴ"
#. LCQEB
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "በሰያፍ ብርቱካንማ"
#. oD7FW
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "በሰያፍ ቀይ"
#. vuyUG
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "በ ሰያፍ ሰማያዊ አረንጓዴ"
#. mGtyc
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "በሰያፍ የወይን ጠጅ"
#. cArVy
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "ከ ጥግ"
#. gvXLL
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "ከ ጥግ: ሰማያዊ"
#. GaTPh
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "ከ ጥግ: አረንጓዴ"
#. GE5vm
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "ከ ጥግ , ብርቱካንማ"
#. BFTnr
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "ከ ጥግ , ቀይ"
#. AFKRL
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "ከ ጥግ: ሰማያዊ አረንጓዴ"
#. djBGe
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "ከ ጥግ , የወይን ጠጅ"
#. pwDuE
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "ከ መሀከል"
#. y8qpL
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "ከ መሀከል: ሰማያዊ"
#. PGt5w
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "ከ መሀከል: አረንጓዴ"
#. CyLXB
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "ከ መሀከል: ብርቱካን"
#. vkERJ
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "ከ መሀከል: ቀይ"
#. Sq2SE
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "ከ መሀከል: ሰማያዊ አረንጓዴ"
#. DoSmH
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "ከ መሀከል: የ ወይን ጠጅ"
#. 9XHkg
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "በ አግድም"
#. FDG7B
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "በ አግድም ሰማያዊ"
#. ZEfzF
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "በ አግድም አረንጓዴ"
#. GFRCF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "በ አግድም ብርቱካንማ"
#. iouxG
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "በ አግድም ቀይ"
#. Gta9k
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "በ አግድም ሰማያዊ አረንጓዴ"
#. Tdpw4
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "በ አግድም የ ወይን ጠጅ"
#. DyVEP
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "ተሽከርካሪ"
#. Uyhuj
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "ተሽከርካሪ ሰማያዊ"
#. MA6Qs
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "ተሽከርካሪ አረንጓዴ"
#. Pt24U
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "ተሽከርካሪ ብርቱካንማ"
#. 37T3A
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "ተሽከርካሪ ቀይ"
#. gLwZp
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "ተሽከርካሪ ሰማያዊ አረንጓዴ"
#. gka9C
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "ተሽከርካሪ ወይን ጠጅ"
#. BaGs9
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "በ ቁመት"
#. DqGbG
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "በ ቁመት ሰማያዊ"
#. FCa2X
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "በ ቁመት አረንጓዴ"
#. BNSiE
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "በ ቁመት ብርቱካንማ"
#. DfiaF
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "በ ቁመት ቀይ"
#. 4htXp
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "በ ቁመት ሰማያዊ አረንጓዴ"
#. FVCCq
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "በ ቁመት የወይን ጠጅ"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:770
+#: include/svx/strings.hrc:771
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "ግራጫ ከፍታ"
#. CDxDN
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "ቢጫ ከፍታ"
#. amMze
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "ብርቱካን ከፍታ"
#. bodAW
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "ቀይ ከፍታ"
#. Zn2x3
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "ሮዝ ከፍታ"
#. xXMfH
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "ሰማይ"
#. RYfTi
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "ሲያን ከፍታ"
#. jAu7g
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "ሰማያዊ ከፍታ"
#. idyKS
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "የ ወይን ጠጅ ቧንቧ"
#. fFZia
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "ሌሊት"
#. 4ECED
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "አረንጓዴ ከፍታ"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:782
+#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr "እቅፍ አበባ"
#. 9BV4L
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr "ሕልም"
#. jEVDi
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr "ሰማያዊ ችቦ"
#. ZAj48
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr "ባዶ በ ግራጫ"
#. CJqu3
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr "ግራጫ ምልክት"
#. s6Z54
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr "የ ለንደን ጤዛ"
#. nk99S
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr "ሰማያዊ አረንጓዴ"
#. ud3Bc
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr "እኩለ ሌሊት"
#. 3DFV9
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr "ጥልቅ ውቂያኖስ"
#. beAAG
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr "ሰርጓጅ መርከብ"
#. LCJCH
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr "አረንጓዴ ሳር"
#. wiGu5
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr "የ ኔዮን ብርሃን"
#. EGqXT
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr "የ ፀሐይ ብርሃን"
#. WCs3M
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr "አሁን"
#. 99B5Z
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:798
+#: include/svx/strings.hrc:799
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr "ጥቁር 0 ዲግሪዎች"
#. BUCv6
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr "ጥቁር 90 ዲግሪዎች"
#. gyzNu
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr "ጥቁር 180 ዲግሪዎች መስቀልኛ"
#. KYmyj
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr "ስማያዊ 45 ዲግሪዎች"
#. 2qkyC
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr "ሰማያዊ -45 ዲግሪዎች"
#. GFqzJ
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr "ሰማያዊ 45 ዲግሪዎች መስቀልኛ"
#. wRXH2
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr "አረንጓዴ 30 ዲግሪዎች"
#. JAkb9
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr "አረንጓዴ 60 ዲግሪዎች"
#. DnKyA
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr "አረንጓዴ 90 ዲግሪዎች ሶስትዮሽ"
#. oTAUx
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr "ቀይ 45 ዲግሪዎች"
#. xcHED
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr "ቀይ 90 ዲግሪዎች መስቀልኛ"
#. UZM2R
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr "ቀይ -45 ዲግሪዎች ሶስትዮሽ"
#. TypfV
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr "ቢጫ 45 ዲግሪዎች"
#. eRFD8
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr "ቢጫ 45 ዲግሪዎች መስቀልኛ"
#. JhXx3
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr "ቢጫ 45 ዲግሪዎች ሶስትዮሽ"
#. 78jyB
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "ባዶ"
#. Q4jUs
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr "ነጭ የ ተቀባ"
#. iHX2t
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr "የ ወረቀት ገጽታ"
#. mAyG3
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr "የ ተጨራመተ ወረቀት"
#. i3ARe
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr "የ ወረቀት ግራፍ"
#. 6izYJ
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr "ብራና ወረቀት"
#. mQCXG
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr "አጥር"
#. TriUQ
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr "የ እንጨት መክተፊያ"
#. Hp2Gp
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr "ቅጠሎች"
#. 2B5Wr
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr "የ ቤት ደጃፍ"
#. bAE9x
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr "ባለ ቀለም ጠጠር"
#. nqBbP
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr "የ ቡና ፍሬ"
#. CQS6y
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr "ትንሽ ደመና"
#. 2hE6A
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr "ሸክላዎች"
#. KZeGr
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr "የ ድንጋይ ግድግዳ"
#. wAELs
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr "የ ሜዳ አህያ"
#. AVGfC
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr "ባለ ቀለም መቀነት"
#. ZoUmP
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr "ጠጠር"
#. 5FiBd
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr "ብራና"
#. HYfqK
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr "የ ማታ ሰማይ"
#. NkYV3
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr "መዋኛ"
#. Co6U3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Bitmap"
#. KFEX5
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr "የ ሸክላ ግድግዳ"
#. WNEfT
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr "የ ድንጋይ ግድግዳ"
#. dFqW3
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr "ሕዋ"
#. FzVch
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr "እምነ በረድ"
#. Rzgwp
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr "ድንጋይ"
#. TnkWd
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "5 ፐርሰንት"
#. AAn36
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "10 ፐርሰንት"
#. NLTbt
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "20 ፐርሰንት"
#. vx2XC
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "25 ፐርሰንት"
#. weQqs
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "30 ፐርሰንት"
#. CAdAS
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "40 ፐርሰንት"
#. 5T5vP
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "50 ፐርሰንት"
#. aNdJE
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "60 ፐርሰንት"
#. 3vD8U
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "70 ፐርሰንት"
#. UJmCD
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "75 ፐርሰንት"
#. i9RCR
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "80 ፐርሰንት"
#. 2oEkC
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "90 ፐርሰንት"
#. a3yZ5
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr "ብርሃን ወደ ታች በ ሰያፍ"
#. oiGTx
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr "ብርሃን ወደ ላይ በ ሰያፍ"
#. CGpy7
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr "ጨለማ ወደ ታች በ ሰያፍ"
#. cucpa
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr "ጨለማ ወደ ላይ በ ሰያፍ"
#. EFDcT
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr "ሰፊ ወደ ታች በ ሰያፍ"
#. CWmH5
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr "ሰፊ ወደ ላይ በ ሰያፍ"
#. BZJUK
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr "ብርሃን በ ቁመት"
#. B5FVF
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "ብርሃን በ አግድም"
#. daP9i
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "ጠባብ በ ቁመት"
#. JD5FJ
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "ጠባብ በ አግድም"
#. eB4wk
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "ጨለማ በ ቁመት"
#. MeoCx
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "ጨለማ በ አግድም"
#. gAqnG
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "ጭረት ወደ ታች በ ሰያፍ"
#. DGB5k
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "ጭረት ወደ ላይ በ ሰያፍ"
#. JC7je
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "ጭረት በ አግድም"
#. iFiBq
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "ጭረት በ ቁመት"
#. gWDnG
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "ትንሽ የሚበተን ወረቀት"
#. vbh6h
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "ትልቅ የሚበተን ወረቀት"
#. XFemm
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr "ዚግ ዛግ"
#. mC3BE
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "ማዕበል"
#. icCPR
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "ሸክላ በ ሰያፍ"
#. 8CqPG
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "ሸክላ በ አግድም"
#. GFUZF
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "ጉንጉን"
#. bp9ZY
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "ሰንጠረዥ"
#. ZrVMS
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "ሽንቁር"
#. tFas9
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr "ነጠብጣብ መጋጠሚያ"
#. SECdZ
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr "ነጠብጣብ አልማዝ"
#. ri3Ge
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "ተደራራቢ"
#. jD9er
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr "መወጣጫ"
#. aemFS
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "ስፌር"
#. Ds8Ae
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "ትንሽ መጋጠሚያ"
#. a33Ci
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "ትልቅ መጋጠሚያ"
#. BCSZY
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr "ትንሽ ዳማ መጫወቻ"
#. Bgczw
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr "ትልቅ ዳማ መጫወቻ"
#. sD7Mf
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "ረቂቅ አልማዝ"
#. RNNkR
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr "ሙሉ አልማዝ"
#. HJkgr
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "በ ቁመት"
#. ED3Ga
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "በ አግድም"
#. ENYtZ
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "ወደ ታች በ ሰያፍ"
#. mbjPX
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "ወደ ላይ በ ሰያፍ"
#. TxAfM
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "መስቀል"
#. 4mGJX
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "መስቀል በ ሰያፍ"
#. J4CJa
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. tHgFv
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH2"
msgid "Dot (Rounded)"
msgstr "ነጥብ (የ ተከበበ)"
#. 2X7pw
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr "ዳሽ"
#. A46B5
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr "ረጅም ዳሽ"
#. axE2r
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr "ድርብ ዳሽ"
#. beDTh
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr "ረጅም ዳሽ ነጥብ"
#. gVPtU
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr "ድርብ ዳሽ ነጥብ"
#. UFaLC
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr "ድርብ ዳሽ ነጥብ ነጥብ"
#. F9cPw
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr "የ መስመር ዘዴ 9"
#. evPXr
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr "3 ዳሽ 3 ነጥብ"
#. H7iUz
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr "2 ነጥብ 1 ዳሽ"
#. zbWk3
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. qqS4v
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH20"
msgid "Dash Dot"
msgstr "ዳሽ ነጥብ"
#. 5ZGZy
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH21"
msgid "Long Dot (Rounded)"
msgstr "ረጅም ነጥብ (የ ተከበበ)"
#. Ac2F2
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH22"
msgid "Dash Dot Dot"
msgstr "ዳሽ ነጥብ ነጥብ"
#. mWMXG
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_DASH23"
msgid "Dash (Rounded)"
msgstr "ዳሽ (የ ተከበበ)"
#. B6fd2
-#: include/svx/strings.hrc:931
+#: include/svx/strings.hrc:932
msgctxt "RID_SVXSTR_DASH24"
msgid "Long Dash (Rounded)"
msgstr "ረጅም ዳሽ (የ ተከበበ)"
#. ds2VE
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_DASH25"
msgid "Double Dash (Rounded)"
msgstr "ድርብ ዳሽ (የ ተከበበ)"
#. qtCkm
-#: include/svx/strings.hrc:933
+#: include/svx/strings.hrc:934
msgctxt "RID_SVXSTR_DASH26"
msgid "Dash Dot (Rounded)"
msgstr "ዳሽ ነጥብ (የ ተከበበ)"
#. psNix
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_DASH27"
msgid "Long Dash Dot (Rounded)"
msgstr "ረጅም ዳሽ ነጥብ (የ ተከበበ)"
#. FWkBJ
-#: include/svx/strings.hrc:935
+#: include/svx/strings.hrc:936
msgctxt "RID_SVXSTR_DASH28"
msgid "Double Dash Dot (Rounded)"
msgstr "ድርብ ዳሽ ነጥብ (የ ተከበበ)"
#. eiCNz
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_DASH29"
msgid "Dash Dot Dot (Rounded)"
msgstr "ዳሽ ነጥብ ነጥብ (የ ተከበበ)"
#. BbE5B
-#: include/svx/strings.hrc:937
+#: include/svx/strings.hrc:938
msgctxt "RID_SVXSTR_DASH30"
msgid "Double Dash Dot Dot (Rounded)"
msgstr "ድርብ ዳሽ ነጥብ ነጥብ (የ ተከበበ)"
#. iKAwD
-#: include/svx/strings.hrc:939
+#: include/svx/strings.hrc:940
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr "ሁሉንም አቀራረብ"
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:941
+#: include/svx/strings.hrc:942
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr "አጭር ኮንኬቭ"
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:943
+#: include/svx/strings.hrc:944
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "ስኴር 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:945
+#: include/svx/strings.hrc:946
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr "አጭር ቀስት"
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:947
+#: include/svx/strings.hrc:948
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr "የ አቅጣጫ መስመሮች"
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:949
+#: include/svx/strings.hrc:950
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "ድርብ ቀስት"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:951
+#: include/svx/strings.hrc:952
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr "ትሪያንግል"
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:953
+#: include/svx/strings.hrc:954
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr "ኮንኬቭ"
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:955
+#: include/svx/strings.hrc:956
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr "ትልቅ ቀስት"
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:957
+#: include/svx/strings.hrc:958
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr "የ አቅጣጫ መስመር"
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:959
+#: include/svx/strings.hrc:960
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "ክብ"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:961
+#: include/svx/strings.hrc:962
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "ስኴር"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:963
+#: include/svx/strings.hrc:964
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "ቀስት"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:965
+#: include/svx/strings.hrc:966
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr "ግማሽ ክብ"
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:967
+#: include/svx/strings.hrc:968
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "ያልተሞላ ሶስት ማእዘን"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:969
+#: include/svx/strings.hrc:970
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "ያልተሞላ አልማዝ"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:971
+#: include/svx/strings.hrc:972
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "አልማዝ"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:973
+#: include/svx/strings.hrc:974
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "ያልተሞላ ክብ"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:975
+#: include/svx/strings.hrc:976
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "ስኴር 45 ያልተሞላ"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:977
+#: include/svx/strings.hrc:978
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "ስኴር ያልተሞላ"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:979
+#: include/svx/strings.hrc:980
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr "ግማሽ ክብ ያልተሞላ"
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:981
+#: include/svx/strings.hrc:982
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr "የ አቅጣጫ መስመር ቀስት"
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:983
+#: include/svx/strings.hrc:984
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr "አጭር መስመር"
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:985
+#: include/svx/strings.hrc:986
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr "መስመር"
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:987
+#: include/svx/strings.hrc:988
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:989
+#: include/svx/strings.hrc:990
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:991
+#: include/svx/strings.hrc:992
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:993
+#: include/svx/strings.hrc:994
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1003
+#: include/svx/strings.hrc:1004
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "ግልጽነት"
#. hGytB
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr "አረንጓዴ 1 (%PRODUCTNAME ዋናው ቀለም)"
#. Msh88
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "አረንጓዴ ማጉሊያ"
#. opj2M
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "ሰማያዊ ማጉሊያ"
#. tC5jE
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "ብርቱካንማ ማጉሊያ"
#. 3T9pJ
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Purple"
#. N5FWG
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "ወይን ጠጅ ማጉሊያ"
#. Nhtbq
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "ቢጫ ማጉሊያ"
#. apBBr
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "የ አዳራሽ ገጽታ"
#. BseGn
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "ተሳክተው ድነዋል"
#. LfjDh
-#: include/svx/strings.hrc:1015
+#: include/svx/strings.hrc:1016
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "ዋናው የዳነው ስነድ"
#. BEAbm
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "ማዳን አልተቻለም"
#. 5ye7z
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "ማዳን በሂደት ላይ"
#. tEbUT
-#: include/svx/strings.hrc:1018
+#: include/svx/strings.hrc:1019
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "ማዳኑ ገና አልጨረሰም"
#. EaAMF
-#: include/svx/strings.hrc:1019
+#: include/svx/strings.hrc:1020
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION የ እርስዎን ሰነድ ማዳን ይጀምራል: እንደ ሰነዶቹ መጠን ሂደቱ ትንሽ ጊዜ ይወስዳል"
#. AicJe
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "የ እርስዎን ሰነድ ማዳኑን ጨርሷል ይጫኑ 'መጨረሻ' የሚለውን ሰነዶቹን ለማየት"
#. ZbeCG
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "~መጨረሻ"
#. BBeKk
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "የ መጨረሻው ዋጋ ማስተካከያ"
#. mENBU
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "ነጥብ"
#. fRyqX
-#: include/svx/strings.hrc:1025
+#: include/svx/strings.hrc:1026
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "ምስል መላኪያ"
#. xXhtG
-#: include/svx/strings.hrc:1026
+#: include/svx/strings.hrc:1027
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "እንደ ምስል ማስቀመጫ"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "እቃ(ዎች) ማስገቢያ"
#. Heqmn
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "3ዲ እቃ ማሽከርከሪያ"
#. AC56T
-#: include/svx/strings.hrc:1031
+#: include/svx/strings.hrc:1032
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "የ ማሾለኪያ እቃ መፍጠሪያ"
#. 4DonY
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "የሚሽከረከር እቃ መፍጠሪያ"
#. EL9V9
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "3ዲ እቃዎችን መክፈያ"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[ሁሉንም]"
#. RZVDm
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "ንድፎች ማጣሪያ"
#. YNjeD
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "አዲስ አርእስት"
#. 5uYha
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "3ዲ ውጤቶች"
#. 78DGx
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "እንቅስቃሴ"
#. zGEez
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "ነጥቦች"
#. MwX9z
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "ቢሮ"
#. dAwiC
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "ባንዲራዎች"
#. Ccn8V
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "የ ሂደት ቻርትስ"
#. 6ouMS
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "የስሜት ምልክቶች"
#. 8GPFu
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "ምስሎች"
#. sqh2w
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "መደቦቹ"
#. B3KuT
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "የ ገጽ ቤት"
#. WR8JQ
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "ተፅእኖው"
#. EbEZ6
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "ካርታዎች"
#. GALA8
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "ሰዎች"
#. ZMoiA
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "የውጪ ክፍል"
#. hNaiH
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "ኮምፒዩተሮች"
#. mrvvG
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "ስእላዊ መግለጫ"
#. HhrDx
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "አካባቢ"
#. 2jVzE
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "ገንዘብ"
#. cmF3B
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "መጓጓዣ"
#. as3XM
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "የ ጽሁፍ ቅርጾች"
#. gGyFP
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "ድምጾች"
#. 5NrPj
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "ምልክቶች"
#. AiXUK
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "የ እኔ አርእስት"
#. uRxP4
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "ቀስቶች"
#. c3WXh
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "ፊኛዎች"
#. pmiE7
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "የ ፊደል ገበታ"
#. LYdAf
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "ሰአት"
#. 4UGrY
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "ማቅረቢያ"
#. a46Xm
-#: include/svx/strings.hrc:1069
+#: include/svx/strings.hrc:1070
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "ቀን መቁጠሪያ"
#. YpuGv
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "መቃኛ"
#. gAJH4
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "ግንኙነት"
#. ETEJu
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "ገንዘብ"
#. rNez6
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "ኮምፒዩተሮች"
#. ioX7y
-#: include/svx/strings.hrc:1074
+#: include/svx/strings.hrc:1075
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "የ አየር ፀባይ"
#. MmYFp
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "ትምህርት ቤት & ዩኒቨርስቲ"
#. EKFgg
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "ችግር አፈታት"
#. GgrBp
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Screen Beans"
#. E6onK
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "የህትመት ምርጫዎች"
#. HzX9m
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "ጠቅላላ ሰነዱን ማተም ይፈልጋሉ ወይም የተመረጠውን?"
#. 3UyC8
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~ሁሉንም"
#. UxfS3
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "~ምርጫ"
#. KTgDd
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "ወደ ሰሜን-ምእራብ ማሾለኪያ"
#. N6KLd
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "ወደ ሰሜን ማሾለኪያ"
#. AB6Vj
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "ወደ ሰሜን-ምስራቅ ማሾለኪያ"
#. NBBEB
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "ወደ ምእራብ ማሾለኪያ"
#. d9n5U
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "ወደ ኋላ ማሾለኪያ"
#. A2mcf
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "ወደ ምስራቅ ማሾለኪያ"
#. onGib
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "ወደ ደቡብ-ምእራብ ማሾለኪያ"
#. XLQFD
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "ወደ ደቡብ ማሾለኪያ"
#. v5wRm
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "ወደ ደቡብ-ምስራቅ ማሾለኪያ"
#. 4DGjm
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 ሴሚ"
#. kRzVE
-#: include/svx/strings.hrc:1094
+#: include/svx/strings.hrc:1095
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 ሴሚ"
#. CSmTh
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2.5 ሴሚ"
#. eYrvo
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 ሴሚ"
#. G4Ckx
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~ሴሚ"
#. LGHsL
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 ኢንች"
#. HPevm
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0.~5 ኢንች"
#. GvKjC
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 ኢንች"
#. gmzHb
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 ኢንች"
#. DE5kt
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 ኢንች"
#. K5dY9
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "መሙያ የለም"
#. TFBK3
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "ግልጽነት"
#. c7adj
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "ነባር"
#. djHis
-#: include/svx/strings.hrc:1107
+#: include/svx/strings.hrc:1108
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "ድንበሮች"
#. PURr6
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "የ ድንበሮች ዘዴ"
#. 9Ckww
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "ተጨማሪ ቁጥር መስጫ..."
#. cDG4s
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "ተጨማሪ ነጥቦች..."
#. uDT6G
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "በ ደራሲው"
#. q2Le9
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "ገጾች"
#. jfL9n
-#: include/svx/strings.hrc:1113
+#: include/svx/strings.hrc:1114
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "አቀራረብ ማጽጃ"
#. f6nP8
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "ተጨማሪ ዘዴዎች..."
#. DPbrc
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "ተጫማሪ ምርጫዎች..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "የፊደሉ ስም"
#. SKCYy
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "የ ፊደሉ ስም: የ አሁኑ ፊደል ዝግጁ አይደለም እና በሌላ ይቀየራል"
#. CVvXU
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "ማስተካከያ"
#. xqzJj
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "የ ሰነድ ቀለሞች"
#. aVTAG
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_THEME_COLORS"
msgid "Theme colors"
msgstr ""
#. 6BoWp
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "የ ሰነድ ቀለሞች"
#. D6gmu
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_THEME_COLOR1"
msgid "Background - Dark 1"
msgstr ""
#. JBJhM
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_THEME_COLOR2"
msgid "Text - Light 1"
msgstr ""
#. C7MSY
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_THEME_COLOR3"
msgid "Background - Dark 2"
msgstr ""
#. YdMAB
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_THEME_COLOR4"
msgid "Text - Light 2"
msgstr ""
#. NAAZJ
-#: include/svx/strings.hrc:1127
+#: include/svx/strings.hrc:1128
msgctxt "RID_SVXSTR_THEME_COLOR5"
msgid "Accent 1"
msgstr ""
#. 6txaB
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXSTR_THEME_COLOR6"
msgid "Accent 2"
msgstr ""
#. fECsk
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXSTR_THEME_COLOR7"
msgid "Accent 3"
msgstr ""
#. 4DH3P
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXSTR_THEME_COLOR8"
msgid "Accent 4"
msgstr ""
#. dUUDX
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXSTR_THEME_COLOR9"
msgid "Accent 5"
msgstr ""
#. 73ZEk
-#: include/svx/strings.hrc:1132
+#: include/svx/strings.hrc:1133
msgctxt "RID_SVXSTR_THEME_COLOR10"
msgid "Accent 6"
msgstr ""
#. VKjfB
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVXSTR_THEME_COLOR11"
msgid "Hyperlink"
msgstr ""
#. DBfXC
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_THEME_COLOR12"
msgid "Followed Hyperlink"
msgstr ""
#. sNGoN
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_THEME_EFFECT1"
msgid "%1, 80% Lighter"
msgstr ""
#. uQBgP
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_THEME_EFFECT2"
msgid "%1, 60% Lighter"
msgstr ""
#. sEpvU
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_THEME_EFFECT3"
msgid "%1, 40% Lighter"
msgstr ""
#. XSfNG
-#: include/svx/strings.hrc:1138
+#: include/svx/strings.hrc:1139
msgctxt "RID_SVXSTR_THEME_EFFECT4"
msgid "%1, 25% Darker"
msgstr ""
#. 3xjEA
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_THEME_EFFECT5"
msgid "%1, 50% Darker"
msgstr ""
#. DJGyY
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "ማሾለኪያ"
#. TyWTi
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "ማሾለኪያ ማብሪያ/ማጥፊያ መፈጸሚያ"
#. DKFYE
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "ወደ ታች ማዘንበያ"
#. 2Rrxc
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "ወደ ላይ ማዘንበያ"
#. eDpJK
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "ወደ ግራ ማዘንበያ"
#. CWDSN
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "ወደ ቀኝ ማዘንበያ"
#. CxYgt
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "የ ማሾለኪያ ጥልቀት መቀየሪያ"
#. c5JCp
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "አቅጣጫ መቀየሪያ"
#. KDSyh
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Change Projection Type"
#. JpzeS
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "ብርሃን መቀየሪያ"
#. j4AR9
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "ብሩህነቱን መቀየሪያ"
#. yA2xm
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "የ ማሾለኪያ ገጽታ መቀየሪያ"
#. DFEZP
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "የ ማሾለኪያ ቀለም መቀየሪያ"
#. uPyWe
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "ቀ:"
#. UMMJN
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "አ:"
#. ocdkG
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "ሰ:"
#. L962H
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "የ ፊደል ስራ"
#. 7RVov
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "የ ፊደል ስራ ቅርጽ መፈጸሚያ"
#. h3CLw
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "የ ፊደል ስራ ተመሳሳይ የ ፊደል እርዝመት መፈጸሚያ"
#. 6h2dG
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "የ ፊደል ስራ ማሰለፊያ መፈጸሚያ"
#. eKHcV
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "የ ፊደል ስራ ባህሪ ክፍተት መፈጸሚያ"
#. oo88Y
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "ጋር"
#. 4sz83
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "ዘዴ"
#. fEHXC
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "እና"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "የ ጠርዝ መቆጣጠሪያ"
#. CUEEW
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "የ ጠርዝ ነጥቦች መምረጫ"
#. cQmVp
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "ከ ላይ በ ግራ በኩል"
#. TtnJn
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "ከ ላይ መሀከል"
#. UERVC
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "ከ ላይ በ ቀኝ በኩል"
#. CznfN
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "በ ግራ በኩል መሀከል"
#. jvzC7
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "መሀከል"
#. HPtYD
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "በ ቀኝ በኩል መሀከል"
#. v4SqB
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "ከ ታች በ ግራ በኩል"
#. daA8a
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "ከ ታች መካከል"
#. DGWf8
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "ከ ታች በ ቀኝ በኩል"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "ቅርጽ መቆጣጠሪያ"
#. aMva8
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "እዚህ ነው ቅርጹን የሚያርሙት"
#. DXEuF
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "የ ተለዩ ባህሪዎች ማረሚያ"
#. JfRzP
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "የ ተለዩ ባህሪዎች ከዚህ አካባቢ ይምረጡ"
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "የ ባህሪዎች ኮድ "
#. HECeC
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "በ ሜዳው ውስጥ ማስገባት ያስፈልጋል '#'. እባክዎን ዋጋ ያስገቡ"
#. w4wm8
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "ፎርሞች"
#. cz8aS
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "መቆጣጠሪያ አልተመረጠም"
#. JG7Es
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "ባህሪዎች : "
#. YQvBF
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "ባህሪዎች መፍጠሪያ"
#. qS9Rn
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "መቃኛ መፍጠሪያ"
#. PzEVD
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "ፎርም"
#. FWPxF
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "የ ተደበቀ"
#. DnoDH
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "ፎርም"
#. Ba4Gy
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "የተደበቀ መቆጣጠሪያ"
#. wtZqP
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "መቆጣጠሪያ"
#. HvXRK
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "መቅረጫ"
#. HmTfB
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "ከ"
#. NZ68L
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "ሜዳ መጨመሪያ :"
#. vGXiw
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "ዳታ ወደ ዳታቤዝ ሲጻፍ ስህተት ተፈጥሯል"
#. zzFRi
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Syntax error in query expression"
#. fS8JJ
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "1 መዝገብ ሊያጠፉ ነው"
#. Qb4Gk
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# መዝገብ ይጠፋል"
#. zSJQe
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6703,337 +6709,337 @@ msgstr ""
"ለማንኛውም መቀጠል ይፈልጋሉ?"
#. Kb7sF
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "መቃኛ መደርደሪያ"
#. pKEQb
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "አምድ"
#. FXRKA
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "ባህሪ ማሰናጃ '#'"
#. hXjTN
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "በማጠራቀሚያው ውስጥ ያስገቡ"
#. BWpyC
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "ማጥፊያ #"
#. ZeaDk
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "እቃዎችን # ማጥፊያ"
#. VgGrE
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1214
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "የማጠራቀሚያ አካል መቀየሪያ"
#. FoXgt
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "መቆጣጠሪያ መቀየሪያ"
#. ZGDAr
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "የ ጽሁፍ ሳጥን"
#. CBmAL
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "ሳጥኑ ውስጥ ምልክት ያድርጉ"
#. xwuJF
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "መቀላቀያ ሳጥን"
#. WiNUf
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "የ ዝርዝር ሳጥን"
#. a7gAj
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "የ ቀን ሜዳ"
#. EaBTj
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "የ ሰአት ሜዳ"
#. DWfsm
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "የ ቁጥር ሜዳ"
#. TYjnr
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "የ ገንዘብ ሜዳ"
#. B6MEP
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "የ ንድፍ ሜዳ"
#. DEn9D
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "የ ሜዳ አቀራረብ"
#. V4iMu
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "ቁልፉን ይጫኑ"
#. TreFC
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "አማራጭ ቁልፍ"
#. NFysA
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "የ ምልክት ሜዳ"
#. E5mMK
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "የ ቡድን ሳጥን"
#. 5474w
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "የ ምስል ቁልፍ"
#. qT2Ed
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "ምስል መቆጣጠሪያ"
#. 6Qvho
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "የ ፋይል ምርጫዎች"
#. uEYBR
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "ሰንጠረዥ መቆጣጠሪያ "
#. 3SUEn
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "መሸብለያ መደርደሪያ"
#. VtEN6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "ማሽከርከሪያ ቁልፍ"
#. eGgm4
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "መቃኛ መደርደሪያ"
#. yME46
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "በርካታ ምርጫ"
#. s94UU
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr "የ ቀን እና ሰአት ሜዳ"
#. PzA5d
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "በ አሁኑ ፎርም ውስጥ ምንም ዳታ-የተዛመደ መቆጣጠሪያ የለም"
#. ZyBEz
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (ቀን)"
#. guA5u
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (ሰአት)"
#. 2wgdY
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "መቃኛ ማጣሪያ"
#. BUYuD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "ማጣሪያ ከ"
#. AcTBB
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "ወይም"
#. 6RPtu
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "ዋጋ ያለው መዝለያ መቆጣጠሪያ በ ሰንጠረዥ መመልከቻ ውስጥ የሚጠቀሙበት በ አሁኑ ፎርም ውስጥ አልተገኘም"
#. iEoGb
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<በራሱ ሜዳ>"
#. Da6gx
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Syntax error in SQL statement"
#. ZoEuu
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "The value #1 cannot be used with LIKE."
#. 75ECE
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "LIKE cannot be used with this field."
#. tzFv5
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "ያስገቡት ዋጋ ያለው ቀን አይደለም: እባክዎን ዋጋ ያለው ቀን በ አቀራረብ ያስገቡ ለምሳሌ ወወ/ቀቀ/አአ"
#. y6Z26
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "ሜዳው መወዳደር አይችልም ከቁጥር ጋር"
#. F8FgA
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ሰንጠረዥ የለም \"#\"."
#. EDcU7
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ሰንጠረዥ ወይንም የ ጥያቄ ስም አለ \"#\"."
#. YBFF5
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ሰንጠረዥ ወይንም መመልከቻ አለ \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ጥያቄ አለ \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "ይህ አምድ \"#1\" ያልታወቀ ሰንጠረዥ ነው \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "ሜዳውን ማወዳደር አይቻልም ከተንሳፋፊ ነጥብ ቁጥር ጋር"
#. CEg85
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "ያስገቡት ደንብ ከዚህ ሜዳ ጋር መወዳደር አይችልም"
#. ZGAAQ
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "ዳታ መቃኛ"
#. W4uM2
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (ለማንበብ-ብቻ)"
#. DgfNh
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "ፋይሉ ቀደም ሲል ነበር: በላዩ ላይ ደርቤ ልጻፍበት?"
#. dSYCi
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#እቃ# ምልክት"
#. JpaM6
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -7043,7 +7049,7 @@ msgstr ""
"በእርግጥ ምሳሌውን ማጥፋት ይፈልጋሉ?"
#. y5Dyt
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -7053,7 +7059,7 @@ msgstr ""
"በእርግጥ ምሳሌውን ማጥፋት ይፈልጋሉ?"
#. VEzGF
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -7063,13 +7069,13 @@ msgstr ""
"በእርግጥ አካሉን ማጥፋት ይፈልጋሉ?"
#. 3hF6H
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "ባህሪውን ማጥፋት ይፈልጋሉ '$ATTRIBUTENAME'?"
#. AWEbJ
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -7081,7 +7087,7 @@ msgstr ""
"በእርግጥ ማስገቢያውን ማጥፋት ይፈልጋሉ?"
#. SGiK5
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -7093,1012 +7099,1012 @@ msgstr ""
"በእርግጥ ማጣመሪያውን ማጥፋት ይፈልጋሉ?"
#. 2zzHP
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "ስሙ '%1' ዋጋ የለውም በ XML አይደለም ፡ እባክዎን ሌላ የተለየ ስም ያስገቡ"
#. 4nAtc
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "መነሻው '%1' ዋጋ የለውም በ XML. እባክዎን የተለየ መነሻ ያስገቡ"
#. qrFQD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "ስሙ '%1' ቀደም ሲል ነበር ፡ እባክዎን ሌላ አዲስ ስም ያስገቡ"
#. DKkaw
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "ማስገቢያ ስም ያስፈልገዋል"
#. xcAaD
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "ማስቀመጫ"
#. tkRR3
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "ማግኛ"
#. fsyAL
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "ምንም"
#. Bjxmg
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "ምሳሌ"
#. affmF
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "ሰነድ"
#. gJLHj
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "መሸፈኛ : "
#. AEHco
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "ማመሳከሪያ: "
#. iLaBC
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "ተግባር : "
#. HBV5Q
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "ዘዴ : "
#. dAN2F
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "መቀየሪያ: "
#. QMiqA
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "አካል መጨመሪያ"
#. C9YBB
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "አካል ማረሚያ"
#. XAh7B
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "አካል ማጥፊያ"
#. CLHER
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "ባህሪ መጨመሪያ"
#. 6Ycoo
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "ባህሪ ማረሚያ"
#. 6dSAd
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "ባህሪ ማጥፊያ"
#. Ljhja
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "ማጣመሪያ መጨመሪያ"
#. CHTrw
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "ማጣመሪያ ማረሚያ"
#. yYwEG
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "ማጣመሪያ ማጥፊያ"
#. yVch8
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "ማስገቢያ መጨመሪያ"
#. AX58u
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "ማቅረቢያ ማረሚያ"
#. DFxmD
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "ማቅረቢያ ማጥፊያ"
#. qvvD7
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "አካል"
#. U4Btb
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "መለያ"
#. Prceg
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1303
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "ማጣመሪያ"
#. iFARB
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "መግለጫ ማጣመሪያ"
#. BTmNa
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "በእርግጥ ሰነድ ማዳኑን %PRODUCTNAME መሰረዝ ይፈልጋሉ?"
#. 5WjQZ
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "በ ግራ"
#. JC7pc
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "በ ቀኝ"
#. MhfuC
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "መሀከል"
#. kX7GR
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "ዴሲማል"
#. 7vecp
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "ማስገቢያ ዘዴ: ይጫኑ ለመቀየር ወደ በላዩ ላይ ደርቦ መጻፊያ ዘዴ"
#. ZCWNC
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "በላዩ ላይ ደርቦ መጻፊያ ዘዴ: ይጫኑ ለመቀየር ወደ ማስገቢያ ዘዴ"
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "በላዩ ላይ ደርቦ መጻፊያ"
#. qqCSF
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "ማስገቢያ"
#. 2BBEb
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "የ ዲጂታል ፊርማ: የ ሰነዱ ፊርማ ትክክል ነው"
#. xZprv
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "የ ዲጂታል ፊርማ: የ ሰነዱ ፊርማ ትክክል ነው: ነገር ግን የ ምስክር ወረቀቱን ማረጋገጥ አልተቻለም"
#. Yydkh
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "የ ዲጂታል ፊርማ: ሰነዱ አልተፈረመም"
#. BRmFY
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "የ ዲጂታል ፊርማ: የ ሰነዱ ፊርማ ትክክል ነው: ነገር ግን አንዳንድ የ ሰነዱ ክፍል አልተፈረመም"
#. Swq5S
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "ሰነዱ ተሻሽሏል: ይጫኑ ሰነዱን ለ ማስቀመጥ"
#. tRWKa
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "ሰነዱ አልተሻሻለም መጨረሻ ከ ተቀመጠ በኋላ"
#. 7C8GH
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "ሰነዶችን በመጫን ላይ..."
#. YbNsP
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "ተንሸራታቹን በ አሁኑ መስኮት ልክ ማድረጊያ"
#. Fpkx2
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "የ ማሳያ መጠን: በቀኝ-ይጫኑ ለ መቀየር የ ማሳያ መጠን ወይንም ይጫኑ ለ መክፈት የ ማሳያ ንግግር"
#. HCjAM
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "በቅርብ ማሳያ"
#. 2YBJE
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "በርቀት ማሳያ"
#. n9EyG
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "ጠቅላላ ገጹን"
#. 2UBAF
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "የ ገጽ ስፋት"
#. YBg9X
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "አጥጋቢ መመልከቻ"
#. Wi5Fy
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "ዘዴዎችን ማካተቻ"
#. BJSzf
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "የ አንቀጽ ዘዴ~ዎች"
#. ARuQM
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "የ ክፍል ዘዴ~ዎች"
#. 7ChAu
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "አቀራረብ መፈለጊያ"
#. K6Ave
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "በ አቀራረብ መቀየሪያ"
#. USdBy
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "የ ሰነዱ መጨረሻ ላይ ደርሷል"
#. CVSwo
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "የ ሰነዱ መጨረሻ ላይ ደርሷል: ከ መጀመሪያው ጀምሮ"
#. yCJzd
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "የ ወረቀቱ መጨረሻ ላይ ደርሷል"
#. Diftw
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "መፈለጊያ ቁልፍ አልተገኘም"
#. xACuY
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "ምንም የ መቃኛ አካል አልተገኘም"
#. CGo5w
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "የ ሰነዱ መጀመሪያ ላይ ደርሷል"
#. nDCC4
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "የ ሰነዱ መጀመሪያ ላይ ደርሷል: ከ መጨረሻው ጀምሮ"
#. FNdxE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "ቀለም ማሰናጃ"
#. sDL47
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1362
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "ዋጋ የሌለው የ መግቢያ ቃል"
#. JGJ9F
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "የመግቢያ ቃሎቹ አይመሳሰሉም"
#. VHTRb
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "ሙሉ ትንሽ ክብ ነጥቦች"
#. AiNrB
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "ሙሉ ትልቅ ክብ ነጥቦች"
#. Vtk8J
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "ሙሉ የ አልማዝ ቅርጽ ነጥቦች"
#. bQFBw
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "ሙሉ ትልቅ ስኴር ነጥቦች"
#. 5eJDd
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "የተሞላ ወደ ቀኝ የሚጠቁም ቀስት ነጥቦች"
#. D8zQC
-#: include/svx/strings.hrc:1369
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "ወደ ቀኝ የሚጠቁም ቀስት ነጥቦች"
#. QCULV
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "ምልክት ማድረጊያ ነጥቦች"
#. XuXC7
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "ምልክት ማድረጊያ ነጥቦች"
#. cUEoG
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "ቁጥር 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "ቁጥር 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "ቁጥር (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "በትንንሹ በትልቅ በሮማን ቁጥር መጻፊያ I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "በትንንሹ በትልቅ ፊደል መጻፊያ A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "በትንንሽ ፊደል መጻፊያ a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1379
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "በትንንሽ ፊደል መጻፊያ (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1380
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "በትንንሽ ፊደል በሮማን ቁጥር መጻፊያ i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "ቁጥር: ቁጥር: በትንንሽ ፊደል መጻፊያ: ሙሉ በ ትንንሽ ነጥቦች"
#. m56fN
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "ቁጥር: ቁጥር: በትንንሽ ፊደል መጻፊያ: ሙሉ በ ትንንሽ ነጥቦች"
#. RyTLW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "ቁጥር: በትንንሽ ፊደል መጻፊያ: በትንንሽ ሮማን ፊደል: በትንንሹ በ አቢይ ፊደል መጻፊያ: ሙሉ በ ትንንሽ ነጥቦች"
#. GAfTp
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "ቁጥር"
#. gjEgN
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "በትንንሹ በ ሮማን አቢይ ፊደል መጻፊያ: በትንንሹ በ አቢይ ፊደል መጻፊያ: በትንንሹ በ ሮማን ፊደል መጻፊያ: በትንንሽ ፊደል መጻፊያ: በትንንሽ ሙሉ ክብ ነጥብ"
#. DZ2kE
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "በትንንሹ በ አቢይ ፊደል መጻፊያ: በትንንሹ በ ሮማን አቢይ ፊደል መጻፊያ: በትንንሽ ፊደል መጻፊያ: በትንንሹ በ ሮማን ፊደል መጻፊያ: በትንንሽ ሙሉ ክብ ነጥብ"
#. TV9Mc
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "የቁጥር ከሁሉም ንዑስ ደረጃዎች"
#. tiXu5
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "ወደ ቀኝ የሚጠቁም ነጥብ: ወደ ቀኝ የሚጠቁም ቀስት ነጥብ: ሙሉ የ አልማዝ ቅርጽ ነጥብ: በትንንሽ ሙሉ ክብ ነጥብ"
#. nEJiF
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1390
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "የ ማመቂያ ዚፕ ፋይል መፍጠር አልተቻለም"
#. CC6Sw
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "የ ሰንጠረዥ ንድፍ ዘዴዎች"
#. c69eB
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "የሚተወው ተግባር: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "የሚተወው ተግባር: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "እንደገና የሚሰሩ ተግባሮች: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "እንደገና የሚሰሩ ተግባሮች: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "መፈለጊያ"
#. WbEFL
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "ጉዳይ ማመሳሰያ"
#. 59ENV
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "የ አቀራረብ ማሳያ"
#. vYw6p
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(ስፋት) x $(እርዝመት) ($(ስፋት_በ_ፒክስል) x $(እርዝመት_በ_ፒክስል) ፒክስል)"
#. JEkzY
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1404
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(ስፋት) x $(እርዝመት) በ $(DPI) DPI"
#. n8VBe
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) ኪባ"
#. Xgeqc
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "የ GIF ምስል"
#. G2q7M
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "የ JPEG ምስል"
#. oGKBg
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1409
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "የ PNG ምስል"
#. Fkrjs
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "የ TIFF ምስል"
#. VWyEb
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "የ WMF ምስል"
#. pCpoE
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "የ MET ምስል"
#. DELaB
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1413
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "የ PCT ምስል"
#. 3AZAG
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "የ SVG ምስል"
#. aCEJW
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "የ BMP ምስል"
#. NBoWH
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "ያልታወቀ"
#. 8LBFX
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "መቀየሪያ"
#. xLF42
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "የ ምስል ዘዴ"
#. fw5hA
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "ቀይ"
#. CiQvY
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "አረንጓዴ"
#. BhvBe
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "ሰማያዊ"
#. HSP36
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "ብሩህነት"
#. w5BYP
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "ማነጻጸሪያ"
#. EZUjS
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. ernMB
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "ግልጽነት"
#. LdkNB
-#: include/svx/strings.hrc:1428
+#: include/svx/strings.hrc:1429
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Crop"
#. TJmBu
-#: include/svx/strings.hrc:1430
+#: include/svx/strings.hrc:1431
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "ነባር አቅጣጫ"
#. WQqju
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "ከ ላይ ወደ ታች"
#. ipfz6
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "ከ ታች ወደ ላይ"
#. MLR44
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "የተደረደሩ"
#. vUDeh
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "የ ግራ መስመር: "
#. EFBbE
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "የ ላይ መስመር: "
#. 7HeyP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "የ ቀኝ መስመር: "
#. HCuWQ
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "የታች መስመር : "
#. zD9BB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "የገጽ መግለጫ : "
#. a4eSJ
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Capitals"
#. DuQGP
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1441
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "በትንንሽ ፊደል መጻፊያ"
#. nWQ7R
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "በትንንሹ በ አቢይ ፊደል መጻፊያ"
#. PxkPZ
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "በትንንሽ ፊደል መጻፊያ"
#. B7YEa
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Arabic"
#. vPbGB
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "ምንም"
#. akGGo
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "የመሬት አቀማመጥ"
#. bbcaZ
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "ምስል"
#. BQtGg
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "በ ግራ"
#. JWFLj
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "በ ቀኝ"
#. bxvGx
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "ሁሉንም"
#. S3nm4
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "የተንፀባረቀ"
#. dcvEJ
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "ደራሲው : "
#. 2siC9
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "ቀን: "
#. pWoLe
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "ጽሁፍ : "
#. pAABc
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "የ ባህሪ መደብ"
#. Deknh
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "ቀለም ማሰናጃ"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8108,2115 +8114,2115 @@ msgstr ""
"እርስዎ የ ተሻሻለውን ምስል ማስቀመጥ ይፈልጋሉ?"
#. KycVH
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Basic Latin"
#. bcjRA
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Latin-1"
#. h6THj
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Latin Extended-A"
#. o4EF9
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Latin Extended-B"
#. W3CGs
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA Extensions"
#. yZjF6
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "የ ፊደሎች ክፍተት ማሻሻያ"
#. EASZR
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "የተለዩ ምልክቶችን መቀላቀያ"
#. wBjC4
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Basic Greek"
#. Dh8Es
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Greek Symbols And Coptic"
#. jGT5E
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Cyrillic"
#. DQgLS
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armenian"
#. kXEQY
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Basic Hebrew"
#. Cb8g4
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Hebrew Extended"
#. ZmDCd
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Basic Arabic"
#. hZDFV
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabic Extended"
#. c3CqD
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
#. EfVnG
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengali"
#. iWzLc
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
#. omacG
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Gujarati"
#. Cdwzw
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "Odia"
#. BhEGN
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
#. 6YkEo
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Telugu"
#. J5qn4
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malayalam"
#. C5yzo
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Thai"
#. EvjbD
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Lao"
#. HqFTh
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Basic Georgian"
#. npAc8
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Georgian Extended"
#. AHAB4
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangul Jamo"
#. gMEFL
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Latin Extended Additionals"
#. uVYXp
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Greek Extended"
#. LEQg6
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "ጠቅላላ ስርአተ ነጥብ"
#. D9KFj
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "በትንንሹ ከፍ ብሎ እና በትንንሹ ዝቅ ብሎ መጻፊያ"
#. yaxYV
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "የ ገንዘብ ምልክቶች"
#. jzA5i
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "የተለዩ ምልክቶችን መቀላቀያ"
#. CHNBZ
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "የ ፊደል አይነት ምልክቶች"
#. cDkEd
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "የ ቁጥር ፎርሞች"
#. j25Fp
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "ቀስቶች"
#. p5Tbx
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "ሂሳብ አንቀሳቃሾች"
#. ckgof
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "የተለያዩ ቴክኒካል"
#. 8rXdw
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "ስእል መቆጣጠሪያ"
#. D4J8A
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "የሚታይ ባህሪ መለያ"
#. hXwgf
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "የተዘጉ ቁጥሮች እና ፊደሎች ቅልቅል"
#. AD9HJ
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "ሳጥን መሳያ"
#. vViaR
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "አካሎችን መከልከያ"
#. ok7ks
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "ጂዮሜትሪክ ቅርጾች"
#. sKty5
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "የተለያዩ ምልክቶች"
#. yDpNT
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "የ CJK ምልክቶች እና ስርአተ ነጥቦች"
#. Bo4iK
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofo"
#. F9UFG
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Hangul Compatibility Jamo"
#. yeRDE
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK Miscellaneous"
#. kPFs9
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "የተዘጋ የ CJK ፊደሎች እና ወሮች"
#. 6tAx6
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "የ CJK ተስማሚነት"
#. VakXP
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangul"
#. XzS6D
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK Unified Ideographs"
#. JVCP5
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK Unified Ideographs Extension A"
#. Y33VK
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "የ ግል መጠቀሚያ ቦታ"
#. 8yYiM
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK Compatibility Ideographs"
#. BEfFQ
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "በ ፊደል ቅደም ተከተል ማቅረቢያ ፎርሞች"
#. NCsAG
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Arabic Presentation Forms-A"
#. adi8G
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "ግማሽ ምልክቶች መቀላቀያ"
#. vLBhn
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "የ CJK ተስማሚ ፎርሞች"
#. i6R3B
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "ትንሽ የተለያየ ፎርም"
#. 7EDCh
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Arabic ማቅረቢያ ፎርሞች-B"
#. WWoWx
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "ግማሽ-ስፋት እና ሙሉ-ስፋት ፎርሞች"
#. dkDXh
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "የተለዩ"
#. GQSEx
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Yi Syllables"
#. BL66x
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Yi Radicals"
#. cuQ2k
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Old Italic"
#. wtKAB
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Gothic"
#. GPFqC
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret"
#. 7AovD
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Byzantine Musical Symbols"
#. G3GQF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "የ ሙዚቃ ምልክቶች"
#. YzBDD
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "የ ሂሳብ እና የ ፊደል እና ቁጥር ምልክቶች"
#. 3XZRw
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK Unified Ideographs Extension B"
#. nZnQc
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK Unified Ideographs Extension C"
#. HBwZE
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK Unified Ideographs Extension D"
#. TTFkh
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "CJK Compatibility Ideographs Supplement"
#. 2jALB
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Tags"
#. 2iHJN
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Cyrillic Supplementary"
#. ABgr9
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "መቀያየሪያ መምረጫ"
#. a4q6S
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "በተጨማሪ የ ግል መጠቀሚያ ቦታ-A"
#. k638K
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "በተጨማሪ የ ግል መጠቀሚያ ቦታ-B"
#. pKFTg
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Limbu"
#. TJHGp
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Tai Le"
#. nujxa
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Khmer Symbols"
#. neD93
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Phonetic Extensions"
#. C6LwC
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "የተለያዩ ምልክቶች እና ቀስቶች"
#. giR4r
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Yijing Hexagram Symbols"
#. EqFxm
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Linear B Syllabary"
#. VeZNe
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Linear B Ideograms"
#. Tvkgh
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Aegean Numbers"
#. CuThH
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugaritic"
#. nBtk5
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shavian"
#. vvMNk
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmanya"
#. aiySp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Sinhala"
#. PEGiu
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetan"
#. tRBTP
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Myanmar"
#. 8sgGF
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Khmer"
#. CdXvH
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
#. jFWRQ
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Runic"
#. jhzoc
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Syriac"
#. B66QG
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
#. j8cuG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Ethiopic"
#. AE5wq
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cherokee"
#. 9mgNF
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Canadian Aboriginal Syllables"
#. d5JWE
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongolian"
#. XnzyB
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "የተለያዩ የ ሂሳብ ምልክቶች-A"
#. R5W9H
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "ተጨማሪ ቀስቶች-A"
#. QYf7A
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "የ ብሬል ንድፍ"
#. 63BBg
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "ተጨማሪ ቀስቶች-B"
#. ykowm
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "የተለያዩ የ ሂሳብ ምልክቶች-B"
#. GGdze
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK Radical Supplement"
#. WLLAP
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Kangxi Radicals"
#. EyZR2
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Ideographic Description Characters"
#. o3AQ6
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalog"
#. BVieL
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
#. DwAEz
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
#. 3GDP5
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
#. BfGBm
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
#. cL7Vo
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofo Extended"
#. MQoBs
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Katakana Phonetics"
#. fCpRM
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "CJK Strokes"
#. zyW2q
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Cypriot Syllabary"
#. GWxb8
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Tai Xuan Jing Symbols"
#. 8ZJmr
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Variation Selectors Supplement"
#. RR6Er
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Ancient Greek Musical Notation"
#. K3GsF
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Ancient Greek Numbers"
#. y4HCg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Arabic Supplement"
#. KUnXb
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Buginese"
#. zDaXa
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "የተለዩ ምልክቶችን መቀላቀያ ተጨማሪ"
#. 9Z24A
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Coptic"
#. CANHf
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "የ ኢትዮጵያ የ ተስፋፋ"
#. X8DEc
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "የ ኢትዮጵያ ተጨማሪ"
#. fYpFz
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Georgian Supplement"
#. 3Gzxx
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagolitic"
#. zKCVG
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "የ ፊደሎች ጥራት ማሻሻያ"
#. B2yF8
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "New Tai Lue"
#. J4KdA
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Old Persian"
#. eGPjC
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Phonetic Extensions Supplement"
#. XboFE
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Supplemental Punctuation"
#. tBJi3
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "ፎርሞች በ ቁመት"
#. ihUDF
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Nko"
#. Z3AAi
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Balinese"
#. 428ER
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Latin Extended-C"
#. SqFfT
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Latin Extended-D"
#. yMmow
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phags-Pa"
#. V6CsB
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Phoenician"
#. GNBwz
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Cuneiform"
#. VBPZE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Cuneiform Numbers And Punctuation"
#. 9msGJ
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Counting Rod Numerals"
#. i6Gx9
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Sundanese"
#. WrXXX
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Cyrillic Extended-A"
#. ZkKwE
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Cyrillic Extended-B"
#. GoQpd
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Cham"
#. qYaAV
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Ancient Symbols"
#. At8Tk
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Phaistos Disc"
#. ryGAF
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Lycian"
#. EYLa8
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Carian"
#. TPN6m
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lydian"
#. G5GLd
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Mahjong Tiles"
#. EyMaF
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Domino Tiles"
#. r2YQs
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Samaritan"
#. feZ2Q
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Canadian Aboriginal Syllabics Extended"
#. H4FpF
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Vedic Extensions"
#. bVNYf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu"
#. riEM3
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamum"
#. CQMqK
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Common Indic Number Forms"
#. gDEUp
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari Extended"
#. UsAq2
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul Jamo Extended-A"
#. g5H7j
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Javanese"
#. upBjC
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Myanmar Extended-A"
#. GQ3XX
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul Jamo Extended-B"
#. RTxUc
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Imperial Aramaic"
#. 7E6G8
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Old South Arabian"
#. Ab3wu
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Avestan"
#. 5gN8e
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Inscriptional Parthian"
#. D7rcV
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Inscriptional Pahlavi"
#. d44Dq
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Old Turkic"
#. CLuJC
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Rumi Numeral Symbols"
#. FpFeH
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Egyptian Hieroglyphs"
#. bMYVC
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Enclosed Alphanumeric Supplement"
#. Dqcpa
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Enclosed Ideographic Supplement"
#. 8eCZn
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaic"
#. 8LVFp
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Ethiopic Extended-A"
#. cQEzt
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Bamum Supplement"
#. xibkG
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Kana Supplement"
#. xyswt
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Playing Cards"
#. TqExt
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "የተለያዩ ምልክቶች እና ቀስቶች"
#. wtMts
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "የ ስሜት ምልክቶች"
#. WgGuX
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "መጓጓዣ እና የ ካርታ ምልክቶች"
#. fBitP
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "አልኬሚካል ምልክቶች"
#. CWvjP
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Arabic Extended-A"
#. D7mEf
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "የ አረብኛ የ ሂሳብ ፊደል ቅደም ተከተል ምልክቶች"
#. 8ouWH
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Meetei Mayek Extensions"
#. mFAeA
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Meroitic Cursive"
#. b5m8K
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Meroitic Hieroglyphs"
#. Xrkei
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sora Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Sundanese Supplement"
#. pTsMT
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr "Bassa Vah"
#. GWufB
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr "Caucasian Albanian"
#. t8Bfn
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr "Coptic Epact Numbers"
#. kAeYs
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "የተለዩ ምልክቶችን መቀላቀያ የ ተስፋፉ"
#. 8TGuM
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr "Duployan"
#. Yaq3z
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr "Elbasan"
#. QmkME
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr "Geometric Shapes Extended"
#. R9PgF
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr "Grantha"
#. tpSqU
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr "Khojki"
#. 4pjBM
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr "Khudawadi"
#. GoPep
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Latin Extended-E"
#. wNozk
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Linear A"
#. SjAev
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr "Mahajani"
#. CA7vw
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr "Manichaean"
#. UUKC4
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr "Mende Kikakui"
#. ZhzBz
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Modi"
#. jC4Ue
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr "Mro"
#. TiWmd
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Myanmar Extended-B"
#. y7tCX
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr "Nabataean"
#. T29Cw
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Old North Arabian"
#. EZADa
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr "Old Permic"
#. 9oFL2
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr "Ornamental Dingbats"
#. TYGv3
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr "Pahawh Hmong"
#. wd8bD
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr "Palmyrene"
#. dkSnn
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr "Pau Cin Hau"
#. bts3U
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr "Psalter Pahlavi"
#. XSwsB
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr "Shorthand Format Controls"
#. rdXCX
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr "Siddham"
#. GwT8c
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr "Sinhala Archaic Numbers"
#. mz3Cs
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Supplemental Arrows-C"
#. iGUzh
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr "Tirhuta"
#. HRBEN
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr "Warang Citi"
#. 9NCBd
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr "Ahom"
#. cPJhp
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr "Anatolian Hieroglyphs"
#. GAd7H
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr "Cherokee Supplement"
#. TDgY4
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK Unified Ideographs Extension E"
#. ho93C
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr "Early Dynastic Cuneiform"
#. La5yr
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr "Hatran"
#. e3aXA
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr "Multani"
#. D6qsK
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr "Old Hungarian"
#. aVhdm
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr "Supplemental Symbols And Pictographs"
#. B6UHz
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr "Sutton Signwriting"
#. rFgRw
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr "Adlam"
#. F2AJT
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr "Bhaiksuki"
#. zDLT2
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Cyrillic Extended-C"
#. S69GG
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr "Glagolitic Supplement"
#. QeCxG
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr "Ideographic Symbols and Punctuation"
#. 45hVB
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr "Marchen"
#. Mr7RB
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Mongolian Supplement"
#. RTgGA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Newa"
#. JJrpR
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Osage"
#. o3qMt
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr "Tangut"
#. nRMFd
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr "Tangut Components"
#. uFMWt
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK Unified Ideographs Extension F"
#. DH39v
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Kana Extended-A"
#. jPSFu
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr "Masaram Gondi"
#. TGJHU
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr "Nushu"
#. DHbMR
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr "Soyombo"
#. gPnhH
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Syriac Supplement"
#. rbMNp
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr "ዛናባዛር ስኴር"
#. i5evF
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr "የ ቼዝ ምልክት"
#. BYA5Y
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr "Dogra"
#. xDvRL
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr "Gunjala Gondi"
#. uzq7e
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr "Hanifi Rohingya"
#. FAwvP
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr "Indic Siyaq Numbers"
#. TYjtp
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr "Makasar"
#. abFR5
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr "Mayan Numerals"
#. aDjHx
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr "Medefaidrin"
#. qMf5N
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr "Old Sogdian"
#. rUG8e
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr "Sogdian"
#. B6UKP
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. 9UAmW
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr ""
#. QFLaj
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr ""
#. CYEeS
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr ""
#. ABqB6
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr ""
#. DmagG
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr ""
#. tjuhJ
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr ""
#. naYAA
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr ""
#. JGVtT
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr ""
#. pkBYF
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr ""
#. SEVKT
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr ""
#. NpBis
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr ""
#. ssh5F
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "ከ ግራ-ወደ-ቀኝ (LTR)"
#. Ct9UG
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "ከ ቀኝ-ወደ-ግራ (RTL)"
#. XFhAz
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "ከፍተኛ የ እቃ ማሰናጃዎችን መጠቀሚያ"
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "ከ ግራ-ወደ-ቀኝ (በ አግድም)"
#. b6Guf
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "ከ ቀኝ-ወደ-ግራ (በ አግድም)"
#. yQGoC
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "ከ ቀኝ-ወደ-ግራ (በ ቁመት)"
#. k7B2r
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "ከ ግራ-ወደ-ቀኝ (በ ቁመት)"
#. DF4B8
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr "ከ ታች-ወደ-ላይ: ከ ግራ-ወደ-ቀኝ (በ ቁመት)"
#. siSmL
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
#. LzhYZ
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1806
+#: include/svx/strings.hrc:1807
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1812
+#: include/svx/strings.hrc:1813
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1814
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
#. o8fB8
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
#. 6NnM2
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
#. fRcEu
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr ""
#. uqzE7
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr ""
#. 6ecLB
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr ""
#. B6KZc
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
@@ -10225,19 +10231,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
#. Q2kMw
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
@@ -10650,439 +10656,439 @@ msgid "Vertical text alignment"
msgstr "በ ቁመት ጽሁፍ ማሰለፊያ"
#. DPZws
-#: svx/inc/fieldunit.hrc:30
+#: svx/inc/fieldunit.hrc:31
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Millimeter"
msgstr "ሚሊ ሚትር"
#. RWGZH
-#: svx/inc/fieldunit.hrc:31
+#: svx/inc/fieldunit.hrc:32
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Centimeter"
msgstr "ሴንቲ ሚትር"
#. Uy6BJ
-#: svx/inc/fieldunit.hrc:32
+#: svx/inc/fieldunit.hrc:33
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Meter"
msgstr "ሚትር"
#. ej2m5
-#: svx/inc/fieldunit.hrc:33
+#: svx/inc/fieldunit.hrc:34
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Kilometer"
msgstr "ኪሎ ሚትር"
#. EFSC2
-#: svx/inc/fieldunit.hrc:34
+#: svx/inc/fieldunit.hrc:35
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Inch"
msgstr "ኢንች"
#. pcGHS
-#: svx/inc/fieldunit.hrc:35
+#: svx/inc/fieldunit.hrc:36
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Foot"
msgstr "ጫማ"
#. 5a3Dq
-#: svx/inc/fieldunit.hrc:36
+#: svx/inc/fieldunit.hrc:37
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Miles"
msgstr "ማይልስ"
#. zpCki
-#: svx/inc/fieldunit.hrc:37
+#: svx/inc/fieldunit.hrc:38
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Pica"
msgstr "Pica"
#. aTBVj
-#: svx/inc/fieldunit.hrc:38
+#: svx/inc/fieldunit.hrc:39
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Point"
msgstr "ነጥብ"
#. tkSdX
-#: svx/inc/fieldunit.hrc:39
+#: svx/inc/fieldunit.hrc:40
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Char"
msgstr "Char"
#. DyFjJ
-#: svx/inc/fieldunit.hrc:40
+#: svx/inc/fieldunit.hrc:41
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Line"
msgstr "መስመር"
#. QYjeZ
-#: svx/inc/fmstring.hrc:27
+#: svx/inc/fmstring.hrc:29
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "LIKE"
msgstr "LIKE"
#. iRDFU
-#: svx/inc/fmstring.hrc:28
+#: svx/inc/fmstring.hrc:30
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "NOT"
msgstr "አይደለም"
#. JBngM
-#: svx/inc/fmstring.hrc:29
+#: svx/inc/fmstring.hrc:31
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "EMPTY"
msgstr "ባዶ"
#. zpTCG
-#: svx/inc/fmstring.hrc:30
+#: svx/inc/fmstring.hrc:32
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "TRUE"
msgstr "እውነት"
#. DYBeJ
-#: svx/inc/fmstring.hrc:31
+#: svx/inc/fmstring.hrc:33
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "FALSE"
msgstr "ሀሰት"
#. mtAA5
-#: svx/inc/fmstring.hrc:32
+#: svx/inc/fmstring.hrc:34
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "IS"
msgstr "ነው"
#. YWtNJ
-#: svx/inc/fmstring.hrc:33
+#: svx/inc/fmstring.hrc:35
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "BETWEEN"
msgstr "መካከል"
#. 47bZX
-#: svx/inc/fmstring.hrc:34
+#: svx/inc/fmstring.hrc:36
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "OR"
msgstr "ወይንም"
#. 9ZBAf
-#: svx/inc/fmstring.hrc:35
+#: svx/inc/fmstring.hrc:37
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "AND"
msgstr "እና"
#. xZ65E
-#: svx/inc/fmstring.hrc:36
+#: svx/inc/fmstring.hrc:38
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Average"
msgstr "አማካይ"
#. cTfDS
-#: svx/inc/fmstring.hrc:37
+#: svx/inc/fmstring.hrc:39
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Count"
msgstr "መቁጠሪያ"
#. TFaGE
-#: svx/inc/fmstring.hrc:38
+#: svx/inc/fmstring.hrc:40
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Maximum"
msgstr "ከፍተኛ"
#. gGpDF
-#: svx/inc/fmstring.hrc:39
+#: svx/inc/fmstring.hrc:41
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Minimum"
msgstr "አነስተኛ"
#. 3YcTD
-#: svx/inc/fmstring.hrc:40
+#: svx/inc/fmstring.hrc:42
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Sum"
msgstr "ድምር"
#. GwMS7
-#: svx/inc/fmstring.hrc:41
+#: svx/inc/fmstring.hrc:43
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Every"
msgstr "ሁሉንም"
#. M6DCS
-#: svx/inc/fmstring.hrc:42
+#: svx/inc/fmstring.hrc:44
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Any"
msgstr "ማንኛውም"
#. AyNgd
-#: svx/inc/fmstring.hrc:43
+#: svx/inc/fmstring.hrc:45
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Some"
msgstr "ጥቂት"
#. QYQ2c
-#: svx/inc/fmstring.hrc:44
+#: svx/inc/fmstring.hrc:46
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_POP"
msgstr "STDDEV_POP"
#. DsDPW
-#: svx/inc/fmstring.hrc:45
+#: svx/inc/fmstring.hrc:47
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_SAMP"
msgstr ""
#. RqHwF
-#: svx/inc/fmstring.hrc:46
+#: svx/inc/fmstring.hrc:48
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_SAMP"
msgstr "ልዩነት_ናሙና"
#. id43S
-#: svx/inc/fmstring.hrc:47
+#: svx/inc/fmstring.hrc:49
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_POP"
msgstr ""
#. mjjoD
-#: svx/inc/fmstring.hrc:48
+#: svx/inc/fmstring.hrc:50
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Collect"
msgstr "መሰብሰቢያ"
#. GcZBA
-#: svx/inc/fmstring.hrc:49
+#: svx/inc/fmstring.hrc:51
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Fusion"
msgstr "Fusion"
#. gpKQz
-#: svx/inc/fmstring.hrc:50
+#: svx/inc/fmstring.hrc:52
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Intersection"
msgstr "መገናኛ"
#. 8DMsd
-#: svx/inc/formnavi.hrc:27
+#: svx/inc/formnavi.hrc:29
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit"
msgid "~Text Box"
msgstr ""
#. LaRik
-#: svx/inc/formnavi.hrc:28
+#: svx/inc/formnavi.hrc:30
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
msgid "~Button"
msgstr ""
#. qjKaG
-#: svx/inc/formnavi.hrc:29
+#: svx/inc/formnavi.hrc:31
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
msgid "La~bel field"
msgstr ""
#. sq3AT
-#: svx/inc/formnavi.hrc:30
+#: svx/inc/formnavi.hrc:32
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
msgid "L~ist Box"
msgstr ""
#. agpbk
-#: svx/inc/formnavi.hrc:31
+#: svx/inc/formnavi.hrc:33
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
msgid "~Check Box"
msgstr ""
#. 9WA4B
-#: svx/inc/formnavi.hrc:32
+#: svx/inc/formnavi.hrc:34
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
msgid "~Radio Button"
msgstr ""
#. PpgmW
-#: svx/inc/formnavi.hrc:33
+#: svx/inc/formnavi.hrc:35
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
msgid "G~roup Box"
msgstr ""
#. A8Dbz
-#: svx/inc/formnavi.hrc:34
+#: svx/inc/formnavi.hrc:36
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
msgstr ""
#. HRAoH
-#: svx/inc/formnavi.hrc:35
+#: svx/inc/formnavi.hrc:37
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
msgid "I~mage Button"
msgstr ""
#. gZZqq
-#: svx/inc/formnavi.hrc:36
+#: svx/inc/formnavi.hrc:38
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
msgid "~File Selection"
msgstr ""
#. EEADE
-#: svx/inc/formnavi.hrc:37
+#: svx/inc/formnavi.hrc:39
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
msgid "~Date Field"
msgstr ""
#. gDr8N
-#: svx/inc/formnavi.hrc:38
+#: svx/inc/formnavi.hrc:40
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
msgid "Tim~e Field"
msgstr ""
#. jAbfP
-#: svx/inc/formnavi.hrc:39
+#: svx/inc/formnavi.hrc:41
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
msgid "~Numerical Field"
msgstr ""
#. ryXjj
-#: svx/inc/formnavi.hrc:40
+#: svx/inc/formnavi.hrc:42
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
msgid "C~urrency Field"
msgstr ""
#. GXHFr
-#: svx/inc/formnavi.hrc:41
+#: svx/inc/formnavi.hrc:43
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
msgid "~Pattern Field"
msgstr ""
#. a7jCc
-#: svx/inc/formnavi.hrc:42
+#: svx/inc/formnavi.hrc:44
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
msgid "Ima~ge Control"
msgstr ""
#. WDsBh
-#: svx/inc/formnavi.hrc:43
+#: svx/inc/formnavi.hrc:45
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
msgid "Fo~rmatted Field"
msgstr ""
#. aEXn5
-#: svx/inc/formnavi.hrc:44
+#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
msgstr ""
#. cGxjA
-#: svx/inc/formnavi.hrc:45
+#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
msgstr ""
#. HYbc6
-#: svx/inc/formnavi.hrc:46
+#: svx/inc/formnavi.hrc:48
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
#. d7vkX
-#: svx/inc/frmsel.hrc:30
+#: svx/inc/frmsel.hrc:31
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Border setting"
msgstr "ድንበር ማሰናጃ"
#. CBSYv
-#: svx/inc/frmsel.hrc:31
+#: svx/inc/frmsel.hrc:32
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Left border line"
msgstr "የ ግራ ድንበር መስመር"
#. YAWUD
-#: svx/inc/frmsel.hrc:32
+#: svx/inc/frmsel.hrc:33
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Right border line"
msgstr "የ ቀኝ ድንበር መስመር"
#. VH67W
-#: svx/inc/frmsel.hrc:33
+#: svx/inc/frmsel.hrc:34
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Top border line"
msgstr "የ ላይ ድንበር መስመር"
#. MLMaA
-#: svx/inc/frmsel.hrc:34
+#: svx/inc/frmsel.hrc:35
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Bottom border line"
msgstr "የ ታች ድንበር መስመር"
#. ZqTGF
-#: svx/inc/frmsel.hrc:35
+#: svx/inc/frmsel.hrc:36
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Horizontal border line"
msgstr "የ አግድም ድንበር መስመር"
#. jzGHA
-#: svx/inc/frmsel.hrc:36
+#: svx/inc/frmsel.hrc:37
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Vertical border line"
msgstr "የ ቁመት ድንበር መስመር"
#. DodCu
-#: svx/inc/frmsel.hrc:37
+#: svx/inc/frmsel.hrc:38
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from top left to bottom right"
msgstr "የ ሰያፍ ድንበር መስመር ከ ላይ በ ግራ እስከ ታች ቀኝ በኩል"
#. wfJ23
-#: svx/inc/frmsel.hrc:38
+#: svx/inc/frmsel.hrc:39
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from bottom left to top right"
msgstr "የ ሰያፍ ድንበር መስመር ከ ታች በ ግራ እስከ ላይ ቀኝ በኩል"
#. dTBRy
-#: svx/inc/frmsel.hrc:43
+#: svx/inc/frmsel.hrc:44
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Border setting"
msgstr "ድንበር ማሰናጃ"
#. LhEua
-#: svx/inc/frmsel.hrc:44
+#: svx/inc/frmsel.hrc:45
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Left border line"
msgstr "የ ግራ ድንበር መስመር"
#. DAuHi
-#: svx/inc/frmsel.hrc:45
+#: svx/inc/frmsel.hrc:46
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Right border line"
msgstr "የ ቀኝ ድንበር መስመር"
#. BYUTR
-#: svx/inc/frmsel.hrc:46
+#: svx/inc/frmsel.hrc:47
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Top border line"
msgstr "የ ላይ ድንበር መስመር"
#. QAnid
-#: svx/inc/frmsel.hrc:47
+#: svx/inc/frmsel.hrc:48
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Bottom border line"
msgstr "የ ታች ድንበር መስመር"
#. kDBDR
-#: svx/inc/frmsel.hrc:48
+#: svx/inc/frmsel.hrc:49
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Horizontal border line"
msgstr "የ አግድም ድንበር መስመር"
#. Em9YX
-#: svx/inc/frmsel.hrc:49
+#: svx/inc/frmsel.hrc:50
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Vertical border line"
msgstr "የ ቁመት ድንበር መስመር"
#. oDFKb
-#: svx/inc/frmsel.hrc:50
+#: svx/inc/frmsel.hrc:51
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from top left to bottom right"
msgstr "የ ሰያፍ ድንበር መስመር ከ ላይ በ ግራ እስከ ታች ቀኝ በኩል"
#. 5EYDA
-#: svx/inc/frmsel.hrc:51
+#: svx/inc/frmsel.hrc:52
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "የ ሰያፍ ድንበር መስመር ከ ታች በ ግራ እስከ ላይ ቀኝ በኩል"
@@ -11124,500 +11130,500 @@ msgstr ""
#. hPpj7
#. SVX_NUM_NUMBER_NONE
-#: svx/inc/numberingtype.hrc:29
+#: svx/inc/numberingtype.hrc:31
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "None"
msgstr "ምንም"
#. dQWBh
#. SVX_NUM_CHAR_SPECIAL
-#: svx/inc/numberingtype.hrc:30
+#: svx/inc/numberingtype.hrc:32
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Bullet"
msgstr "ነጥብ"
#. GfQQK
#. SVX_NUM_BITMAP
-#: svx/inc/numberingtype.hrc:31
+#: svx/inc/numberingtype.hrc:33
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Graphics"
msgstr "ንድፍ"
#. DfEKa
#. SVX_NUM_BITMAP|0x80
-#: svx/inc/numberingtype.hrc:32
+#: svx/inc/numberingtype.hrc:34
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Linked graphics"
msgstr "የ ተገናኙ ንድፎች"
#. AF3ts
#. SVX_NUM_ARABIC
-#: svx/inc/numberingtype.hrc:33
+#: svx/inc/numberingtype.hrc:35
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
#. bBGa7
#. SVX_NUM_CHARS_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:34
+#: svx/inc/numberingtype.hrc:36
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
#. 5MDDu
#. SVX_NUM_CHARS_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:35
+#: svx/inc/numberingtype.hrc:37
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, b, c, ..."
msgstr "a, b, c, ..."
#. qGL48
#. SVX_NUM_ROMAN_UPPER
-#: svx/inc/numberingtype.hrc:36
+#: svx/inc/numberingtype.hrc:38
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
#. tZAzS
#. SVX_NUM_ROMAN_LOWER
-#: svx/inc/numberingtype.hrc:37
+#: svx/inc/numberingtype.hrc:39
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
#. hbCEG
#. TEXT_NUMBER
-#: svx/inc/numberingtype.hrc:38
+#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
msgstr "1ኛ, 2ኛ, 3ኛ, ..."
#. ymefj
#. TEXT_CARDINAL
-#: svx/inc/numberingtype.hrc:39
+#: svx/inc/numberingtype.hrc:41
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
msgstr "አንድ, ሁለት, ሶስት, ..."
#. uPBZs
#. TEXT_ORDINAL
-#: svx/inc/numberingtype.hrc:40
+#: svx/inc/numberingtype.hrc:42
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
msgstr "አንደኛ, ሁለተኛ, ሶስተኛ, ..."
#. 2QoAG
#. SVX_NUM_CHARS_UPPER_LETTER_N
-#: svx/inc/numberingtype.hrc:41
+#: svx/inc/numberingtype.hrc:43
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, .., AA, .., AAA, ..."
msgstr "A, .., AA, .., AAA, ..."
#. 7Snqt
#. SVX_NUM_CHARS_LOWER_LETTER_N
-#: svx/inc/numberingtype.hrc:42
+#: svx/inc/numberingtype.hrc:44
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, .., aa, .., aaa, ..."
msgstr "a, .., aa, .., aaa, ..."
#. 2jYQi
#. SYMBOL_CHICAGO
-#: svx/inc/numberingtype.hrc:43
+#: svx/inc/numberingtype.hrc:45
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "*, †, ‡, §, **, ††, ..."
msgstr ""
#. GG8gr
#. NATIVE_NUMBERING
-#: svx/inc/numberingtype.hrc:44
+#: svx/inc/numberingtype.hrc:46
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Native Numbering"
msgstr "Native Numbering"
#. yLB7R
#. CHARS_CYRILLIC_UPPER_LETTER_BG
-#: svx/inc/numberingtype.hrc:45
+#: svx/inc/numberingtype.hrc:47
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (Bulgarian)"
#. JHskj
#. CHARS_CYRILLIC_LOWER_LETTER_BG
-#: svx/inc/numberingtype.hrc:46
+#: svx/inc/numberingtype.hrc:48
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (Bulgarian)"
#. sqKyt
#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:47
+#: svx/inc/numberingtype.hrc:49
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (Bulgarian)"
#. QtcCE
#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:48
+#: svx/inc/numberingtype.hrc:50
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (Bulgarian)"
#. DeUDb
#. CHARS_CYRILLIC_UPPER_LETTER_RU
-#: svx/inc/numberingtype.hrc:49
+#: svx/inc/numberingtype.hrc:51
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (Russian)"
#. kAHJb
#. CHARS_CYRILLIC_LOWER_LETTER_RU
-#: svx/inc/numberingtype.hrc:50
+#: svx/inc/numberingtype.hrc:52
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (Russian)"
#. kHAr7
#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:51
+#: svx/inc/numberingtype.hrc:53
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (Russian)"
#. Dkve7
#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:52
+#: svx/inc/numberingtype.hrc:54
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (Russian)"
#. EdfYn
#. CHARS_CYRILLIC_UPPER_LETTER_SR
-#: svx/inc/numberingtype.hrc:53
+#: svx/inc/numberingtype.hrc:55
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (Serbian)"
#. oFJkn
#. CHARS_CYRILLIC_LOWER_LETTER_SR
-#: svx/inc/numberingtype.hrc:54
+#: svx/inc/numberingtype.hrc:56
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (Serbian)"
#. oA7CM
#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:55
+#: svx/inc/numberingtype.hrc:57
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (Serbian)"
#. Eom7M
#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:56
+#: svx/inc/numberingtype.hrc:58
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (Serbian)"
#. SDSQ6
#. CHARS_GREEK_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:57
+#: svx/inc/numberingtype.hrc:59
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Α, Β, Γ, ... (Greek)"
msgstr ""
#. CMFjw
#. CHARS_GREEK_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:58
+#: svx/inc/numberingtype.hrc:60
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "α, β, γ, ... (Greek)"
msgstr ""
#. 8Cxkk
#. NUMBER_HEBREW
-#: svx/inc/numberingtype.hrc:59
+#: svx/inc/numberingtype.hrc:61
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...י, יא...כ, ..."
msgstr "א...י, יא...כ, ..."
#. n2sV8
#. CHARS_HEBREW
-#: svx/inc/numberingtype.hrc:60
+#: svx/inc/numberingtype.hrc:62
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...ת, אא...תת, ..."
msgstr "א...ת, אא...תת, ..."
#. nR8RG
#. NUMBER_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:61
+#: svx/inc/numberingtype.hrc:63
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "١, ٢, ٣, ٤, ... (Arabic)"
msgstr "١, ٢, ٣, ٤, ... (Arabic)"
#. jEE4r
#. NUMBER_EAST_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:62
+#: svx/inc/numberingtype.hrc:64
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "۱, ۲, ۳, ۴, ... (Farsi)"
msgstr "۱, ۲, ۳, ۴, ... (Farsi)"
#. YFYp2
#. NUMBER_INDIC_DEVANAGARI
-#: svx/inc/numberingtype.hrc:63
+#: svx/inc/numberingtype.hrc:65
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "१, २, ३, ..."
msgstr "१, २, ३, ..."
#. Vd6uV
#. enum SvxRotateMode ----------------------------------------------------
-#: svx/inc/rotationstrings.hrc:18
+#: svx/inc/rotationstrings.hrc:20
msgctxt "RID_SVXITEMS_ROTATE_MODE_STANDARD"
msgid "Rotation only within cell"
msgstr ""
#. r8WzF
-#: svx/inc/rotationstrings.hrc:19
+#: svx/inc/rotationstrings.hrc:21
msgctxt "RID_SVXITEMS_ROTATE_MODE_TOP"
msgid "From upper cell edge"
msgstr ""
#. E7EVi
-#: svx/inc/rotationstrings.hrc:20
+#: svx/inc/rotationstrings.hrc:22
msgctxt "RID_SVXITEMS_ROTATE_MODE_CENTER"
msgid "From vertical middle cell"
msgstr ""
#. NEwyu
-#: svx/inc/rotationstrings.hrc:21
+#: svx/inc/rotationstrings.hrc:23
msgctxt "RID_SVXITEMS_ROTATE_MODE_BOTTOM"
msgid "From lower cell edge"
msgstr ""
#. Je56M
-#: svx/inc/samecontent.hrc:18
+#: svx/inc/samecontent.hrc:20
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
msgstr "ሁሉንም ገጾች"
#. kKCQR
-#: svx/inc/samecontent.hrc:19
+#: svx/inc/samecontent.hrc:21
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First Page"
msgstr "የ መጀመሪያው ገጽ"
#. MHuCA
-#: svx/inc/samecontent.hrc:20
+#: svx/inc/samecontent.hrc:22
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "Left and Right Pages"
msgstr "የ ግራ እና የ ቀኝ ገጾች"
#. XH8p4
-#: svx/inc/samecontent.hrc:21
+#: svx/inc/samecontent.hrc:23
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First, Left and Right Pages"
msgstr "መጀመሪያ: በ ግራ እና በ ቀኝ ገጾች"
#. F9hHK
-#: svx/inc/spacing.hrc:24
+#: svx/inc/spacing.hrc:26
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "None"
msgstr "ምንም"
#. GAuJk
-#: svx/inc/spacing.hrc:25
+#: svx/inc/spacing.hrc:27
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. DB9aM
-#: svx/inc/spacing.hrc:26
+#: svx/inc/spacing.hrc:28
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small (1/8″)"
msgstr ""
#. 5PhsT
-#: svx/inc/spacing.hrc:27
+#: svx/inc/spacing.hrc:29
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. 3LSyH
-#: svx/inc/spacing.hrc:28
+#: svx/inc/spacing.hrc:30
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. NzRZJ
-#: svx/inc/spacing.hrc:29
+#: svx/inc/spacing.hrc:31
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. JBwJZ
-#: svx/inc/spacing.hrc:30
+#: svx/inc/spacing.hrc:32
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Large (3/4″)"
msgstr ""
#. AwWUq
-#: svx/inc/spacing.hrc:31
+#: svx/inc/spacing.hrc:33
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. SGERK
-#: svx/inc/spacing.hrc:38
+#: svx/inc/spacing.hrc:40
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "None"
msgstr "ምንም"
#. ZAZbV
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:40
+#: svx/inc/spacing.hrc:42
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Small (%1)"
msgstr ""
#. DJAZx
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:42
+#: svx/inc/spacing.hrc:44
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small (%1)"
msgstr ""
#. scXTX
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:44
+#: svx/inc/spacing.hrc:46
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small Medium (%1)"
msgstr ""
#. zN8GJ
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:46
+#: svx/inc/spacing.hrc:48
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium (%1)"
msgstr ""
#. cbhBF
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:48
+#: svx/inc/spacing.hrc:50
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium Large (%1)"
msgstr ""
#. 8kTDK
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:50
+#: svx/inc/spacing.hrc:52
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Large (%1)"
msgstr ""
#. etG35
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:52
+#: svx/inc/spacing.hrc:54
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Large (%1)"
msgstr ""
#. F7GxF
-#: svx/inc/spacing.hrc:59
+#: svx/inc/spacing.hrc:61
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "None"
msgstr "ምንም"
#. ZNunF
-#: svx/inc/spacing.hrc:60
+#: svx/inc/spacing.hrc:62
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. BUnaC
-#: svx/inc/spacing.hrc:61
+#: svx/inc/spacing.hrc:63
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small (1/8″)"
msgstr ""
#. oBhFP
-#: svx/inc/spacing.hrc:62
+#: svx/inc/spacing.hrc:64
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. tDBA3
-#: svx/inc/spacing.hrc:63
+#: svx/inc/spacing.hrc:65
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. fDRCW
-#: svx/inc/spacing.hrc:64
+#: svx/inc/spacing.hrc:66
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. Ls2Jq
-#: svx/inc/spacing.hrc:65
+#: svx/inc/spacing.hrc:67
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4″)"
msgstr ""
#. DLXcU
-#: svx/inc/spacing.hrc:66
+#: svx/inc/spacing.hrc:68
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. phGfi
-#: svx/inc/spacing.hrc:73
+#: svx/inc/spacing.hrc:75
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "None"
msgstr "ምንም"
#. XVMbm
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:75
+#: svx/inc/spacing.hrc:77
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Small (%1)"
msgstr ""
#. L3BfG
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:77
+#: svx/inc/spacing.hrc:79
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small (%1)"
msgstr ""
#. 2VGHi
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:79
+#: svx/inc/spacing.hrc:81
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small Medium (%1)"
msgstr ""
#. Z7Wot
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:81
+#: svx/inc/spacing.hrc:83
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium (%1)"
msgstr ""
#. CS6Zz
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:83
+#: svx/inc/spacing.hrc:85
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium Large (%1)"
msgstr ""
#. BaS7j
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:85
+#: svx/inc/spacing.hrc:87
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Large (%1)"
msgstr ""
#. gAc3E
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:87
+#: svx/inc/spacing.hrc:89
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Large (%1)"
msgstr ""
@@ -11741,1129 +11747,1129 @@ msgstr ""
"ሰነዱን ያለ መግቢያ ቃል ጥበቃ ማስቀመጥ ይፈልጋሉ?"
#. xnBAZ
-#: svx/inc/swframeposstrings.hrc:28
+#: svx/inc/swframeposstrings.hrc:30
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left"
msgstr "በ ግራ"
#. GHBGu
-#: svx/inc/swframeposstrings.hrc:29
+#: svx/inc/swframeposstrings.hrc:31
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right"
msgstr "በ ቀኝ"
#. aEeds
-#: svx/inc/swframeposstrings.hrc:30
+#: svx/inc/swframeposstrings.hrc:32
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From left"
msgstr "ከ ግራ"
#. ivTxP
-#: svx/inc/swframeposstrings.hrc:31
+#: svx/inc/swframeposstrings.hrc:33
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inside"
msgstr "ውስጥ"
#. U5FyC
-#: svx/inc/swframeposstrings.hrc:32
+#: svx/inc/swframeposstrings.hrc:34
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outside"
msgstr "ውጪ"
#. 67K4H
-#: svx/inc/swframeposstrings.hrc:33
+#: svx/inc/swframeposstrings.hrc:35
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From inside"
msgstr "ከ ውስጥ"
#. W2X2D
-#: svx/inc/swframeposstrings.hrc:34
+#: svx/inc/swframeposstrings.hrc:36
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph area"
msgstr "የ አንቀጽ ቦታ"
#. CrRe5
-#: svx/inc/swframeposstrings.hrc:35 svx/inc/swframeposstrings.hrc:52
+#: svx/inc/swframeposstrings.hrc:37 svx/inc/swframeposstrings.hrc:54
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph text area"
msgstr "የ አንቀጽ ጽሁፍ ቦታ"
#. MT34e
-#: svx/inc/swframeposstrings.hrc:36
+#: svx/inc/swframeposstrings.hrc:38
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left page border"
msgstr "የ ግራ ገጽ ድንበር"
#. edC8Z
-#: svx/inc/swframeposstrings.hrc:37
+#: svx/inc/swframeposstrings.hrc:39
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right page border"
msgstr "የ ቀኝ ገጽ ድንበር"
#. dCGE9
-#: svx/inc/swframeposstrings.hrc:38
+#: svx/inc/swframeposstrings.hrc:40
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left paragraph border"
msgstr "የ ግራ አንቀጽ ድንበር"
#. 3pAVN
-#: svx/inc/swframeposstrings.hrc:39
+#: svx/inc/swframeposstrings.hrc:41
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right paragraph border"
msgstr "የ ቀኝ አንቀጽ ድንበር"
#. qvFns
-#: svx/inc/swframeposstrings.hrc:40
+#: svx/inc/swframeposstrings.hrc:42
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner page border"
msgstr "የ ውስጥ ገጽ ድንበር"
#. XwtPT
-#: svx/inc/swframeposstrings.hrc:41
+#: svx/inc/swframeposstrings.hrc:43
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer page border"
msgstr "የ ውጪ ገጽ ድንበር"
#. oF2mP
-#: svx/inc/swframeposstrings.hrc:42
+#: svx/inc/swframeposstrings.hrc:44
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner paragraph border"
msgstr "የ ውስጥ አንቀጽ ድንበር"
#. Hffsf
-#: svx/inc/swframeposstrings.hrc:43
+#: svx/inc/swframeposstrings.hrc:45
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer paragraph border"
msgstr "የ ውጪ አንቀጽ ድንበር"
#. ey4rc
-#: svx/inc/swframeposstrings.hrc:44
+#: svx/inc/swframeposstrings.hrc:46
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire page"
msgstr "ጠቅላላ ገጹን"
#. WJocu
-#: svx/inc/swframeposstrings.hrc:45
+#: svx/inc/swframeposstrings.hrc:47
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area"
msgstr "የ ገጽ ጽሁፍ ቦታ"
#. jY8xQ
-#: svx/inc/swframeposstrings.hrc:46
+#: svx/inc/swframeposstrings.hrc:48
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area top"
msgstr ""
#. vWEe2
-#: svx/inc/swframeposstrings.hrc:47
+#: svx/inc/swframeposstrings.hrc:49
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area bottom"
msgstr ""
#. XG9Bj
-#: svx/inc/swframeposstrings.hrc:48
+#: svx/inc/swframeposstrings.hrc:50
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Base line"
msgstr "የ ቤዝ መስመር"
#. A3DbQ
-#: svx/inc/swframeposstrings.hrc:49
+#: svx/inc/swframeposstrings.hrc:51
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Character"
msgstr "ባህሪ"
#. Qyopb
-#: svx/inc/swframeposstrings.hrc:50
+#: svx/inc/swframeposstrings.hrc:52
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Row"
msgstr "ረድፍ"
#. PPkKE
-#: svx/inc/swframeposstrings.hrc:51
+#: svx/inc/swframeposstrings.hrc:53
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Margin"
msgstr "መስመር"
#. FCKGJ
-#: svx/inc/swframeposstrings.hrc:53
+#: svx/inc/swframeposstrings.hrc:55
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left frame border"
msgstr "የ ግራ ክፈፍ ድንበር"
#. dvJgp
-#: svx/inc/swframeposstrings.hrc:54
+#: svx/inc/swframeposstrings.hrc:56
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right frame border"
msgstr "የ ቀኝ ክፈፍ ድንበር"
#. 8wUyB
-#: svx/inc/swframeposstrings.hrc:55
+#: svx/inc/swframeposstrings.hrc:57
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire frame"
msgstr "ጠቅላላ ክፈፉ"
#. FRNBs
-#: svx/inc/swframeposstrings.hrc:56
+#: svx/inc/swframeposstrings.hrc:58
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Frame text area"
msgstr "የ ክፈፍ ጽሁፍ ቦታ"
#. CEgLN
-#: svx/inc/swframeposstrings.hrc:57
+#: svx/inc/swframeposstrings.hrc:59
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner frame border"
msgstr "የ ውስጥ ክፈፍ ድንበር"
#. UroG3
-#: svx/inc/swframeposstrings.hrc:58
+#: svx/inc/swframeposstrings.hrc:60
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer frame border"
msgstr "የ ውጪ ክፈፍ ድንበር"
#. hMCeD
-#: svx/inc/swframeposstrings.hrc:59
+#: svx/inc/swframeposstrings.hrc:61
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top"
msgstr "ከ ላይ"
#. zvKGF
-#: svx/inc/swframeposstrings.hrc:60
+#: svx/inc/swframeposstrings.hrc:62
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom"
msgstr "ከ ታች"
#. zLzw8
-#: svx/inc/swframeposstrings.hrc:61 svx/inc/swframeposstrings.hrc:62
+#: svx/inc/swframeposstrings.hrc:63 svx/inc/swframeposstrings.hrc:64
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Center"
msgstr "መሀከል"
#. HKRAf
-#: svx/inc/swframeposstrings.hrc:63
+#: svx/inc/swframeposstrings.hrc:65
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From top"
msgstr "ከ ላይ"
#. o7Td5
-#: svx/inc/swframeposstrings.hrc:64
+#: svx/inc/swframeposstrings.hrc:66
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From bottom"
msgstr "ከ ታች"
#. bF2Nd
-#: svx/inc/swframeposstrings.hrc:65
+#: svx/inc/swframeposstrings.hrc:67
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Below"
msgstr "ከ ታች"
#. Q9AZn
-#: svx/inc/swframeposstrings.hrc:66
+#: svx/inc/swframeposstrings.hrc:68
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From right"
msgstr "ከ ቀኝ"
#. Y6y4s
-#: svx/inc/swframeposstrings.hrc:67
+#: svx/inc/swframeposstrings.hrc:69
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top page border"
msgstr "የ ላይ ገጽ ድንበር"
#. ZyAri
-#: svx/inc/swframeposstrings.hrc:68
+#: svx/inc/swframeposstrings.hrc:70
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom page border"
msgstr "የ ታች ገጽ ድንበር"
#. 2vRtm
-#: svx/inc/swframeposstrings.hrc:69
+#: svx/inc/swframeposstrings.hrc:71
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top paragraph border"
msgstr "የ ላይ አንቀጽ ድንበር"
#. AAFLn
-#: svx/inc/swframeposstrings.hrc:70
+#: svx/inc/swframeposstrings.hrc:72
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom paragraph border"
msgstr "የ ታች አንቀጽ ድንበር"
#. dmVNj
-#: svx/inc/swframeposstrings.hrc:71
+#: svx/inc/swframeposstrings.hrc:73
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Line of text"
msgstr "የ ጽሁፍ መስመር"
#. gKq8G
-#: svx/inc/tabwin.hrc:27
+#: svx/inc/tabwin.hrc:29
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Table"
msgstr "ሰንጠረዥ"
#. 4mnUW
-#: svx/inc/tabwin.hrc:28
+#: svx/inc/tabwin.hrc:30
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Query"
msgstr "ጥያቄ"
#. rfs4A
-#: svx/inc/tabwin.hrc:29
+#: svx/inc/tabwin.hrc:31
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "SQL"
msgstr "SQL"
#. QF2ZT
-#: svx/inc/txenctab.hrc:32
+#: svx/inc/txenctab.hrc:33
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Windows-1252/WinLatin 1)"
msgstr "Western Europe (Windows-1252/WinLatin 1)"
#. VbWZR
-#: svx/inc/txenctab.hrc:33
+#: svx/inc/txenctab.hrc:34
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh)"
msgstr "Western Europe (Apple Macintosh)"
#. 5yMG7
-#: svx/inc/txenctab.hrc:34
+#: svx/inc/txenctab.hrc:35
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-850/International)"
msgstr "Western Europe (DOS/OS2-850/International)"
#. KYDEk
-#: svx/inc/txenctab.hrc:35
+#: svx/inc/txenctab.hrc:36
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-437/US)"
msgstr "Western Europe (DOS/OS2-437/US)"
#. 3MbrA
-#: svx/inc/txenctab.hrc:36
+#: svx/inc/txenctab.hrc:37
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-860/Portuguese)"
msgstr "Western Europe (DOS/OS2-860/Portuguese)"
#. bdxAU
-#: svx/inc/txenctab.hrc:37
+#: svx/inc/txenctab.hrc:38
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-861/Icelandic)"
msgstr "Western Europe (DOS/OS2-861/Icelandic)"
#. kMQ9X
-#: svx/inc/txenctab.hrc:38
+#: svx/inc/txenctab.hrc:39
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-863/French (Can.))"
msgstr "Western Europe (DOS/OS2-863/French (Can.))"
#. YTGtN
-#: svx/inc/txenctab.hrc:39
+#: svx/inc/txenctab.hrc:40
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-865/Nordic)"
msgstr "Western Europe (DOS/OS2-865/Nordic)"
#. 7f2UV
-#: svx/inc/txenctab.hrc:40
+#: svx/inc/txenctab.hrc:41
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ASCII/US)"
msgstr "Western Europe (ASCII/US)"
#. Hksxs
-#: svx/inc/txenctab.hrc:41
+#: svx/inc/txenctab.hrc:42
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-1)"
msgstr "Western Europe (ISO-8859-1)"
#. PBDdu
-#: svx/inc/txenctab.hrc:42
+#: svx/inc/txenctab.hrc:43
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-2)"
msgstr "Eastern Europe (ISO-8859-2)"
#. MFqWF
-#: svx/inc/txenctab.hrc:43
+#: svx/inc/txenctab.hrc:44
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Latin 3 (ISO-8859-3)"
msgstr "Latin 3 (ISO-8859-3)"
#. WBkLV
-#: svx/inc/txenctab.hrc:44
+#: svx/inc/txenctab.hrc:45
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (ISO-8859-4)"
msgstr "Baltic (ISO-8859-4)"
#. b5SPH
-#: svx/inc/txenctab.hrc:45
+#: svx/inc/txenctab.hrc:46
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (ISO-8859-5)"
msgstr "Cyrillic (ISO-8859-5)"
#. wFCbj
-#: svx/inc/txenctab.hrc:46
+#: svx/inc/txenctab.hrc:47
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (ISO-8859-6)"
msgstr "Arabic (ISO-8859-6)"
#. qTzCE
-#: svx/inc/txenctab.hrc:47
+#: svx/inc/txenctab.hrc:48
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (ISO-8859-7)"
msgstr "Greek (ISO-8859-7)"
#. MmChj
-#: svx/inc/txenctab.hrc:48
+#: svx/inc/txenctab.hrc:49
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (ISO-8859-8)"
msgstr "Hebrew (ISO-8859-8)"
#. 3bHAV
-#: svx/inc/txenctab.hrc:49
+#: svx/inc/txenctab.hrc:50
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (ISO-8859-9)"
msgstr "Turkish (ISO-8859-9)"
#. phdte
-#: svx/inc/txenctab.hrc:50
+#: svx/inc/txenctab.hrc:51
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-14)"
msgstr "Western Europe (ISO-8859-14)"
#. MpHUZ
-#: svx/inc/txenctab.hrc:51
+#: svx/inc/txenctab.hrc:52
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-15/EURO)"
msgstr "Western Europe (ISO-8859-15/EURO)"
#. JgVnj
-#: svx/inc/txenctab.hrc:52
+#: svx/inc/txenctab.hrc:53
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-737)"
msgstr "Greek (DOS/OS2-737)"
#. EQi6s
-#: svx/inc/txenctab.hrc:53
+#: svx/inc/txenctab.hrc:54
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (DOS/OS2-775)"
msgstr "Baltic (DOS/OS2-775)"
#. SDvMf
-#: svx/inc/txenctab.hrc:54
+#: svx/inc/txenctab.hrc:55
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (DOS/OS2-852)"
msgstr "Eastern Europe (DOS/OS2-852)"
#. 3FrUC
-#: svx/inc/txenctab.hrc:55
+#: svx/inc/txenctab.hrc:56
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-855)"
msgstr "Cyrillic (DOS/OS2-855)"
#. G8q5c
-#: svx/inc/txenctab.hrc:56
+#: svx/inc/txenctab.hrc:57
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (DOS/OS2-857)"
msgstr "Turkish (DOS/OS2-857)"
#. kBvdY
-#: svx/inc/txenctab.hrc:57
+#: svx/inc/txenctab.hrc:58
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (DOS/OS2-862)"
msgstr "Hebrew (DOS/OS2-862)"
#. to6H6
-#: svx/inc/txenctab.hrc:58
+#: svx/inc/txenctab.hrc:59
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (DOS/OS2-864)"
msgstr "Arabic (DOS/OS2-864)"
#. BH6K4
-#: svx/inc/txenctab.hrc:59
+#: svx/inc/txenctab.hrc:60
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-866/Russian)"
msgstr "Cyrillic (DOS/OS2-866/Russian)"
#. ms8Dk
-#: svx/inc/txenctab.hrc:60
+#: svx/inc/txenctab.hrc:61
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-869/Modern)"
msgstr "Greek (DOS/OS2-869/Modern)"
#. U9RbL
-#: svx/inc/txenctab.hrc:61
+#: svx/inc/txenctab.hrc:62
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Windows-1250/WinLatin 2)"
msgstr "Eastern Europe (Windows-1250/WinLatin 2)"
#. fRRMB
-#: svx/inc/txenctab.hrc:62
+#: svx/inc/txenctab.hrc:63
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Windows-1251)"
msgstr "Cyrillic (Windows-1251)"
#. 7D9eT
-#: svx/inc/txenctab.hrc:63
+#: svx/inc/txenctab.hrc:64
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Windows-1253)"
msgstr "Greek (Windows-1253)"
#. sa8W8
-#: svx/inc/txenctab.hrc:64
+#: svx/inc/txenctab.hrc:65
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Windows-1254)"
msgstr "Turkish (Windows-1254)"
#. ZxMJy
-#: svx/inc/txenctab.hrc:65
+#: svx/inc/txenctab.hrc:66
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (Windows-1255)"
msgstr "Hebrew (Windows-1255)"
#. 4GLZX
-#: svx/inc/txenctab.hrc:66
+#: svx/inc/txenctab.hrc:67
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (Windows-1256)"
msgstr "Arabic (Windows-1256)"
#. errzy
-#: svx/inc/txenctab.hrc:67
+#: svx/inc/txenctab.hrc:68
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (Windows-1257)"
msgstr "Baltic (Windows-1257)"
#. SSo9X
-#: svx/inc/txenctab.hrc:68
+#: svx/inc/txenctab.hrc:69
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Vietnamese (Windows-1258)"
msgstr "Vietnamese (Windows-1258)"
#. udrZT
-#: svx/inc/txenctab.hrc:69
+#: svx/inc/txenctab.hrc:70
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh)"
msgstr "Eastern Europe (Apple Macintosh)"
#. g2Z7z
-#: svx/inc/txenctab.hrc:70
+#: svx/inc/txenctab.hrc:71
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Croatian)"
msgstr "Eastern Europe (Apple Macintosh/Croatian)"
#. 9jpM6
-#: svx/inc/txenctab.hrc:71
+#: svx/inc/txenctab.hrc:72
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh)"
msgstr "Cyrillic (Apple Macintosh)"
#. YB8BU
-#: svx/inc/txenctab.hrc:72
+#: svx/inc/txenctab.hrc:73
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Apple Macintosh)"
msgstr "Greek (Apple Macintosh)"
#. rEWLF
-#: svx/inc/txenctab.hrc:73
+#: svx/inc/txenctab.hrc:74
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh/Icelandic)"
msgstr "Western Europe (Apple Macintosh/Icelandic)"
#. eCAET
-#: svx/inc/txenctab.hrc:74
+#: svx/inc/txenctab.hrc:75
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Romanian)"
msgstr "Eastern Europe (Apple Macintosh/Romanian)"
#. T4VVK
-#: svx/inc/txenctab.hrc:75
+#: svx/inc/txenctab.hrc:76
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Apple Macintosh)"
msgstr "Turkish (Apple Macintosh)"
#. a8GDk
-#: svx/inc/txenctab.hrc:76
+#: svx/inc/txenctab.hrc:77
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh/Ukrainian)"
msgstr "Cyrillic (Apple Macintosh/Ukrainian)"
#. 4RBWC
-#: svx/inc/txenctab.hrc:77
+#: svx/inc/txenctab.hrc:78
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Apple Macintosh)"
msgstr "Chinese simplified (Apple Macintosh)"
#. 6WCbw
-#: svx/inc/txenctab.hrc:78
+#: svx/inc/txenctab.hrc:79
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Apple Macintosh)"
msgstr "Chinese traditional (Apple Macintosh)"
#. DyADW
-#: svx/inc/txenctab.hrc:79
+#: svx/inc/txenctab.hrc:80
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Apple Macintosh)"
msgstr "Japanese (Apple Macintosh)"
#. BXQq2
-#: svx/inc/txenctab.hrc:80
+#: svx/inc/txenctab.hrc:81
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Apple Macintosh)"
msgstr "Korean (Apple Macintosh)"
#. 6eezP
-#: svx/inc/txenctab.hrc:81
+#: svx/inc/txenctab.hrc:82
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Windows-932)"
msgstr "Japanese (Windows-932)"
#. FuA86
-#: svx/inc/txenctab.hrc:82
+#: svx/inc/txenctab.hrc:83
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Windows-936)"
msgstr "Chinese simplified (Windows-936)"
#. Rgvx2
-#: svx/inc/txenctab.hrc:83
+#: svx/inc/txenctab.hrc:84
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-949)"
msgstr "Korean (Windows-949)"
#. VrtX4
-#: svx/inc/txenctab.hrc:84
+#: svx/inc/txenctab.hrc:85
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Windows-950)"
msgstr "Chinese traditional (Windows-950)"
#. XYyEd
-#: svx/inc/txenctab.hrc:85
+#: svx/inc/txenctab.hrc:86
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Shift-JIS)"
msgstr "Japanese (Shift-JIS)"
#. k5M56
-#: svx/inc/txenctab.hrc:86
+#: svx/inc/txenctab.hrc:87
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-2312)"
msgstr "Chinese simplified (GB-2312)"
#. PFzZY
-#: svx/inc/txenctab.hrc:87
+#: svx/inc/txenctab.hrc:88
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-18030)"
msgstr "Chinese simplified (GB-18030)"
#. gb9bm
-#: svx/inc/txenctab.hrc:88
+#: svx/inc/txenctab.hrc:89
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (GBT-12345)"
msgstr "Chinese traditional (GBT-12345)"
#. C69XX
-#: svx/inc/txenctab.hrc:89
+#: svx/inc/txenctab.hrc:90
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GBK/GB-2312-80)"
msgstr "Chinese simplified (GBK/GB-2312-80)"
#. UP3uw
-#: svx/inc/txenctab.hrc:90
+#: svx/inc/txenctab.hrc:91
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Big5)"
msgstr "Chinese traditional (Big5)"
#. DaFZR
-#: svx/inc/txenctab.hrc:91
+#: svx/inc/txenctab.hrc:92
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (BIG5-HKSCS)"
msgstr "Chinese traditional (BIG5-HKSCS)"
#. qEQVA
-#: svx/inc/txenctab.hrc:92
+#: svx/inc/txenctab.hrc:93
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (EUC-JP)"
msgstr "Japanese (EUC-JP)"
#. auzHg
-#: svx/inc/txenctab.hrc:93
+#: svx/inc/txenctab.hrc:94
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (EUC-CN)"
msgstr "Chinese simplified (EUC-CN)"
#. ndTrZ
-#: svx/inc/txenctab.hrc:94
+#: svx/inc/txenctab.hrc:95
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (EUC-TW)"
msgstr "Chinese traditional (EUC-TW)"
#. 6pPLL
-#: svx/inc/txenctab.hrc:95
+#: svx/inc/txenctab.hrc:96
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (ISO-2022-JP)"
msgstr "Japanese (ISO-2022-JP)"
#. tWf3P
-#: svx/inc/txenctab.hrc:96
+#: svx/inc/txenctab.hrc:97
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (ISO-2022-CN)"
msgstr "Chinese simplified (ISO-2022-CN)"
#. XMFCL
-#: svx/inc/txenctab.hrc:97
+#: svx/inc/txenctab.hrc:98
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-R)"
msgstr "Cyrillic (KOI8-R)"
#. 2pFce
-#: svx/inc/txenctab.hrc:98
+#: svx/inc/txenctab.hrc:99
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-7)"
msgstr "Unicode (UTF-7)"
#. FXEDd
-#: svx/inc/txenctab.hrc:99
+#: svx/inc/txenctab.hrc:100
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-8)"
msgstr "Unicode (UTF-8)"
#. PKDvB
-#: svx/inc/txenctab.hrc:100
+#: svx/inc/txenctab.hrc:101
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-10)"
msgstr "Eastern Europe (ISO-8859-10)"
#. QGYqt
-#: svx/inc/txenctab.hrc:101
+#: svx/inc/txenctab.hrc:102
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-13)"
msgstr "Eastern Europe (ISO-8859-13)"
#. Vx6bY
-#: svx/inc/txenctab.hrc:102
+#: svx/inc/txenctab.hrc:103
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (EUC-KR)"
msgstr "Korean (EUC-KR)"
#. 5CBHm
-#: svx/inc/txenctab.hrc:103
+#: svx/inc/txenctab.hrc:104
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (ISO-2022-KR)"
msgstr "Korean (ISO-2022-KR)"
#. nLGik
-#: svx/inc/txenctab.hrc:104
+#: svx/inc/txenctab.hrc:105
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-Johab-1361)"
msgstr "Korean (Windows-Johab-1361)"
#. QBgZo
-#: svx/inc/txenctab.hrc:105
+#: svx/inc/txenctab.hrc:106
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-16)"
msgstr "Unicode (UTF-16)"
#. JGdVV
-#: svx/inc/txenctab.hrc:106
+#: svx/inc/txenctab.hrc:107
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (ISO-8859-11/TIS-620)"
msgstr "Thai (ISO-8859-11/TIS-620)"
#. monLB
-#: svx/inc/txenctab.hrc:107
+#: svx/inc/txenctab.hrc:108
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (Windows-874)"
msgstr "Thai (Windows-874)"
#. USeUF
-#: svx/inc/txenctab.hrc:108
+#: svx/inc/txenctab.hrc:109
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-U)"
msgstr "Cyrillic (KOI8-U)"
#. vrLQe
-#: svx/inc/txenctab.hrc:109
+#: svx/inc/txenctab.hrc:110
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (PT154)"
msgstr "Cyrillic (PT154)"
#. rKPau
-#: svx/source/dialog/page.hrc:30
+#: svx/source/dialog/page.hrc:31
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A6"
msgstr "A6"
#. URac3
-#: svx/source/dialog/page.hrc:31
+#: svx/source/dialog/page.hrc:32
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A5"
msgstr "A5"
#. EPudF
-#: svx/source/dialog/page.hrc:32
+#: svx/source/dialog/page.hrc:33
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A4"
msgstr "A4"
#. qdkCd
-#: svx/source/dialog/page.hrc:33
+#: svx/source/dialog/page.hrc:34
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A3"
msgstr "A3"
#. HTZUv
-#: svx/source/dialog/page.hrc:34
+#: svx/source/dialog/page.hrc:35
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. cCYrf
-#: svx/source/dialog/page.hrc:35
+#: svx/source/dialog/page.hrc:36
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. xXp6C
-#: svx/source/dialog/page.hrc:36
+#: svx/source/dialog/page.hrc:37
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. A5BnL
-#: svx/source/dialog/page.hrc:37
+#: svx/source/dialog/page.hrc:38
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Letter"
msgstr "ደብዳቤ"
#. sx5cV
-#: svx/source/dialog/page.hrc:38
+#: svx/source/dialog/page.hrc:39
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Legal"
msgstr "ሕጋዊ"
#. Pkxcm
-#: svx/source/dialog/page.hrc:39
+#: svx/source/dialog/page.hrc:40
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Long Bond"
msgstr "ረጅም Bond"
#. JMsqY
-#: svx/source/dialog/page.hrc:40
+#: svx/source/dialog/page.hrc:41
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Tabloid"
msgstr "ታብሎዪድ"
#. UBtQK
-#: svx/source/dialog/page.hrc:41
+#: svx/source/dialog/page.hrc:42
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. Ruu59
-#: svx/source/dialog/page.hrc:42
+#: svx/source/dialog/page.hrc:43
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. CFdsg
-#: svx/source/dialog/page.hrc:43
+#: svx/source/dialog/page.hrc:44
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. PCV4H
-#: svx/source/dialog/page.hrc:44
+#: svx/source/dialog/page.hrc:45
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "16 Kai"
msgstr "16 Kai"
#. GfVjG
-#: svx/source/dialog/page.hrc:45
+#: svx/source/dialog/page.hrc:46
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "32 Kai"
msgstr "32 Kai"
#. FJBrB
-#: svx/source/dialog/page.hrc:46
+#: svx/source/dialog/page.hrc:47
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Big 32 Kai"
msgstr "Big 32 Kai"
#. by7kM
-#: svx/source/dialog/page.hrc:47
+#: svx/source/dialog/page.hrc:48
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "User"
msgstr "ተጠቃሚ"
#. EGzYq
-#: svx/source/dialog/page.hrc:48
+#: svx/source/dialog/page.hrc:49
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "DL Envelope"
msgstr "DL ፖስታ"
#. YFzCy
-#: svx/source/dialog/page.hrc:49
+#: svx/source/dialog/page.hrc:50
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6 Envelope"
msgstr "C6 ፖስታ"
#. Vcc7P
-#: svx/source/dialog/page.hrc:50
+#: svx/source/dialog/page.hrc:51
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6/5 Envelope"
msgstr "C6/5 ፖስታ"
#. XsMRE
-#: svx/source/dialog/page.hrc:51
+#: svx/source/dialog/page.hrc:52
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C5 Envelope"
msgstr "C5 ፖስታ"
#. uFwGu
-#: svx/source/dialog/page.hrc:52
+#: svx/source/dialog/page.hrc:53
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C4 Envelope"
msgstr "C4 ፖስታ"
#. dCpd2
-#: svx/source/dialog/page.hrc:53
+#: svx/source/dialog/page.hrc:54
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#6¾ Envelope"
msgstr "#6¾ ፖስታ"
#. zy6rP
-#: svx/source/dialog/page.hrc:54
+#: svx/source/dialog/page.hrc:55
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#7¾ (Monarch) Envelope"
msgstr "#7¾ (የ ነገስታት) ፖስታ"
#. m4N6Q
-#: svx/source/dialog/page.hrc:55
+#: svx/source/dialog/page.hrc:56
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#9 Envelope"
msgstr "#9 ፖስታ"
#. JsBkZ
-#: svx/source/dialog/page.hrc:56
+#: svx/source/dialog/page.hrc:57
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#10 Envelope"
msgstr "#10 ፖስታ"
#. 7FeU9
-#: svx/source/dialog/page.hrc:57
+#: svx/source/dialog/page.hrc:58
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#11 Envelope"
msgstr "#11 ፖስታ"
#. 6sqhV
-#: svx/source/dialog/page.hrc:58
+#: svx/source/dialog/page.hrc:59
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#12 Envelope"
msgstr "#12 ፖስታ"
#. 8uXDq
-#: svx/source/dialog/page.hrc:59
+#: svx/source/dialog/page.hrc:60
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Japanese Postcard"
msgstr "የ ጃፓኒስ ፖስት ካርድ"
#. N2J2b
-#: svx/source/dialog/page.hrc:64
+#: svx/source/dialog/page.hrc:65
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A6"
msgstr "A6"
#. 78f4A
-#: svx/source/dialog/page.hrc:65
+#: svx/source/dialog/page.hrc:66
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A5"
msgstr "A5"
#. i6x38
-#: svx/source/dialog/page.hrc:66
+#: svx/source/dialog/page.hrc:67
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A4"
msgstr "A4"
#. Dmqus
-#: svx/source/dialog/page.hrc:67
+#: svx/source/dialog/page.hrc:68
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A3"
msgstr "A3"
#. XjWtg
-#: svx/source/dialog/page.hrc:68
+#: svx/source/dialog/page.hrc:69
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A2"
msgstr "A2"
#. yqBrH
-#: svx/source/dialog/page.hrc:69
+#: svx/source/dialog/page.hrc:70
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A1"
msgstr "A1"
#. Ao3sz
-#: svx/source/dialog/page.hrc:70
+#: svx/source/dialog/page.hrc:71
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A0"
msgstr "A0"
#. jvpHD
-#: svx/source/dialog/page.hrc:71
+#: svx/source/dialog/page.hrc:72
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. DGqE3
-#: svx/source/dialog/page.hrc:72
+#: svx/source/dialog/page.hrc:73
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. JrZiW
-#: svx/source/dialog/page.hrc:73
+#: svx/source/dialog/page.hrc:74
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. 8zZQc
-#: svx/source/dialog/page.hrc:74
+#: svx/source/dialog/page.hrc:75
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Letter"
msgstr "ደብዳቤ"
#. NKMub
-#: svx/source/dialog/page.hrc:75
+#: svx/source/dialog/page.hrc:76
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Legal"
msgstr "ሕጋዊ"
#. GyH6H
-#: svx/source/dialog/page.hrc:76
+#: svx/source/dialog/page.hrc:77
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Long Bond"
msgstr "ረጅም Bond"
#. gWjE2
-#: svx/source/dialog/page.hrc:77
+#: svx/source/dialog/page.hrc:78
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Tabloid"
msgstr "ታብሎዪድ"
#. 5Dddp
-#: svx/source/dialog/page.hrc:78
+#: svx/source/dialog/page.hrc:79
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. sYcjZ
-#: svx/source/dialog/page.hrc:79
+#: svx/source/dialog/page.hrc:80
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. f9tD2
-#: svx/source/dialog/page.hrc:80
+#: svx/source/dialog/page.hrc:81
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. DGFbZ
-#: svx/source/dialog/page.hrc:81
+#: svx/source/dialog/page.hrc:82
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "16 Kai"
msgstr "16 Kai"
#. JbFMy
-#: svx/source/dialog/page.hrc:82
+#: svx/source/dialog/page.hrc:83
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "32 Kai"
msgstr "32 Kai"
#. E3CDE
-#: svx/source/dialog/page.hrc:83
+#: svx/source/dialog/page.hrc:84
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Big 32 Kai"
msgstr "Big 32 Kai"
#. rSAv7
-#: svx/source/dialog/page.hrc:84
+#: svx/source/dialog/page.hrc:85
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "User"
msgstr "ተጠቃሚ"
#. z3HXV
-#: svx/source/dialog/page.hrc:85
+#: svx/source/dialog/page.hrc:86
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "DL Envelope"
msgstr "DL ፖስታ"
#. k2HBd
-#: svx/source/dialog/page.hrc:86
+#: svx/source/dialog/page.hrc:87
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6 Envelope"
msgstr "C6 ፖስታ"
#. t43Ta
-#: svx/source/dialog/page.hrc:87
+#: svx/source/dialog/page.hrc:88
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6/5 Envelope"
msgstr "C6/5 ፖስታ"
#. jfDNz
-#: svx/source/dialog/page.hrc:88
+#: svx/source/dialog/page.hrc:89
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C5 Envelope"
msgstr "C5 ፖስታ"
#. h2cDh
-#: svx/source/dialog/page.hrc:89
+#: svx/source/dialog/page.hrc:90
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C4 Envelope"
msgstr "C4 ፖስታ"
#. j4Hms
-#: svx/source/dialog/page.hrc:90
+#: svx/source/dialog/page.hrc:91
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Dia Slide"
msgstr "ስእል ተንሸራታች"
#. ePYVT
-#: svx/source/dialog/page.hrc:91
+#: svx/source/dialog/page.hrc:92
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 4:3"
msgstr "መመልከቻ 4:3"
#. pWa4A
-#: svx/source/dialog/page.hrc:92
+#: svx/source/dialog/page.hrc:93
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:9"
msgstr "መመልከቻ 16:9"
#. T62Dx
-#: svx/source/dialog/page.hrc:93
+#: svx/source/dialog/page.hrc:94
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:10"
msgstr "መመልከቻ 16:10"
#. hwMzF
-#: svx/source/dialog/page.hrc:94
+#: svx/source/dialog/page.hrc:95
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Widescreen"
msgstr ""
#. HqpFJ
-#: svx/source/dialog/page.hrc:95
+#: svx/source/dialog/page.hrc:96
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (4:3)"
msgstr ""
#. PFU8U
-#: svx/source/dialog/page.hrc:96
+#: svx/source/dialog/page.hrc:97
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:9)"
msgstr ""
#. 48LFY
-#: svx/source/dialog/page.hrc:97
+#: svx/source/dialog/page.hrc:98
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:10)"
msgstr ""
#. ryFz3
-#: svx/source/dialog/page.hrc:98
+#: svx/source/dialog/page.hrc:99
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Japanese Postcard"
msgstr "የ ጃፓኒስ ፖስት ካርድ"
@@ -16308,19 +16314,19 @@ msgid "Direction:"
msgstr ""
#. GPC8q
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1009
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1013
msgctxt "findreplacedialog-mobile|rows"
msgid "Ro_ws"
msgstr ""
#. xCeTz
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1028
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1032
msgctxt "findreplacedialog-mobile|cols"
msgid "Colum_ns"
msgstr ""
#. fPE4f
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1072
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1076
msgctxt "findreplacedialog-mobile|label3"
msgid "Other _options"
msgstr ""
@@ -16650,55 +16656,55 @@ msgid "Search i_n:"
msgstr "ው_ስጥ መፈለጊያ:"
#. GGhEA
-#: svx/uiconfig/ui/findreplacedialog.ui:1069
+#: svx/uiconfig/ui/findreplacedialog.ui:1070
msgctxt "findreplacedialog|calcsearchin"
msgid "Formulas"
msgstr "መቀመሪያ"
#. bpBeC
-#: svx/uiconfig/ui/findreplacedialog.ui:1070
+#: svx/uiconfig/ui/findreplacedialog.ui:1071
msgctxt "findreplacedialog|calcsearchin"
msgid "Values"
msgstr "ዋጋዎች"
#. zSUYq
-#: svx/uiconfig/ui/findreplacedialog.ui:1071
+#: svx/uiconfig/ui/findreplacedialog.ui:1072
msgctxt "findreplacedialog|calcsearchin"
msgid "Comments"
msgstr ""
#. K4WuW
-#: svx/uiconfig/ui/findreplacedialog.ui:1096
+#: svx/uiconfig/ui/findreplacedialog.ui:1097
msgctxt "findreplacedialog|searchdir"
msgid "Direction:"
msgstr "አቅጣጫ:"
#. p2HBA
-#: svx/uiconfig/ui/findreplacedialog.ui:1113
+#: svx/uiconfig/ui/findreplacedialog.ui:1119
msgctxt "findreplacedialog|rows"
msgid "Ro_ws"
msgstr "ረድ_ፎች"
#. uib5F
-#: svx/uiconfig/ui/findreplacedialog.ui:1132
+#: svx/uiconfig/ui/findreplacedialog.ui:1138
msgctxt "findreplacedialog|cols"
msgid "Colum_ns"
msgstr "አም_ዶች"
#. Q6fG8
-#: svx/uiconfig/ui/findreplacedialog.ui:1176
+#: svx/uiconfig/ui/findreplacedialog.ui:1182
msgctxt "findreplacedialog|label3"
msgid "Other _options"
msgstr "ሌሎች _ምርጫዎች"
#. CPpFA
-#: svx/uiconfig/ui/findreplacedialog.ui:1183
+#: svx/uiconfig/ui/findreplacedialog.ui:1189
msgctxt "findreplacedialog|extended_tip|label3"
msgid "Shows more or fewer search options. Click this label again to hide the extended search options."
msgstr "አነስተኛ ወይንም ተጨማሪ የ መፈለጊያ ሁኔታዎች ማሳያ: ይጫኑ ይህን ምልክት እንደገና የ ተስፋፋውን የ መፈለጊያ ምርጫ ለ መደበቅ "
#. YpLau
-#: svx/uiconfig/ui/findreplacedialog.ui:1219
+#: svx/uiconfig/ui/findreplacedialog.ui:1222
msgctxt "findreplacedialog|extended_tip|FindReplaceDialog"
msgid "Finds or replaces text or formats in the current document."
msgstr "መፈለጊያ ወይንም መቀየሪያ ጽሁፍ ወይንም አቀራረብ በ አሁኑ ሰነድ ውስጥ "
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index 27fd2f97f26..f28afb78843 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: 2022-02-09 16:46+0100\n"
-"PO-Revision-Date: 2022-02-18 15:30+0100\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
+"PO-Revision-Date: 2022-04-04 12:23+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"
@@ -190,193 +190,193 @@ msgid "_Yes"
msgstr "_አዎ"
#. DdjvG
-#: sw/inc/app.hrc:29
+#: sw/inc/app.hrc:31
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "All Styles"
msgstr "ሁሉንም ዘዴዎች"
#. aF6kb
-#: sw/inc/app.hrc:30
+#: sw/inc/app.hrc:32
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "የ ተደበቁ ዘዴዎች"
#. Sn6Pr
-#: sw/inc/app.hrc:31
+#: sw/inc/app.hrc:33
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Applied Styles"
msgstr "የ ተፈጸሙ ዘዴዎች"
#. dPsnN
-#: sw/inc/app.hrc:32
+#: sw/inc/app.hrc:34
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Custom Styles"
msgstr "ዘዴዎች ማስተካከያ"
#. LL8tn
-#: sw/inc/app.hrc:33
+#: sw/inc/app.hrc:35
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Automatic"
msgstr "ራሱ በራሱ"
#. W2ZFq
-#: sw/inc/app.hrc:34
+#: sw/inc/app.hrc:36
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Text Styles"
msgstr "የ ጽሁፍ ዘዴዎች"
#. j6CkD
-#: sw/inc/app.hrc:35
+#: sw/inc/app.hrc:37
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Chapter Styles"
msgstr "የ ምእራፍ ዘዴዎች"
#. KgUsu
-#: sw/inc/app.hrc:36
+#: sw/inc/app.hrc:38
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "List Styles"
msgstr "የ ዝርዝር ዘዴዎች"
#. ZYAsP
-#: sw/inc/app.hrc:37
+#: sw/inc/app.hrc:39
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Index Styles"
msgstr "የ ማውጫ ዘዴዎች"
#. CXarp
-#: sw/inc/app.hrc:38
+#: sw/inc/app.hrc:40
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Special Styles"
msgstr "የተለዩ ዘዴዎች"
#. M9it7
-#: sw/inc/app.hrc:39
+#: sw/inc/app.hrc:41
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "HTML Styles"
msgstr "የ HTML ዘዴዎች"
#. TeuD3
-#: sw/inc/app.hrc:40
+#: sw/inc/app.hrc:42
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Conditional Styles"
msgstr "እንደ ሁኔታው ዘዴዎች"
#. EBcnz
-#: sw/inc/app.hrc:46
+#: sw/inc/app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "All Styles"
msgstr "ሁሉንም ዘዴዎች"
#. vmFjs
-#: sw/inc/app.hrc:47
+#: sw/inc/app.hrc:49
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "የ ተደበቁ ዘዴዎች"
#. NG33n
-#: sw/inc/app.hrc:48
+#: sw/inc/app.hrc:50
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Applied Styles"
msgstr "የ ተፈጸሙ ዘዴዎች"
#. yubqD
-#: sw/inc/app.hrc:49
+#: sw/inc/app.hrc:51
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Custom Styles"
msgstr "ዘዴዎች ማስተካከያ"
#. hPACX
-#: sw/inc/app.hrc:55
+#: sw/inc/app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "All Styles"
msgstr "ሁሉንም ዘዴዎች"
#. NPGpT
-#: sw/inc/app.hrc:56
+#: sw/inc/app.hrc:58
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "የ ተደበቁ ዘዴዎች"
#. R8bb3
-#: sw/inc/app.hrc:57
+#: sw/inc/app.hrc:59
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Applied Styles"
msgstr "የ ተፈጸሙ ዘዴዎች"
#. RFmiE
-#: sw/inc/app.hrc:58
+#: sw/inc/app.hrc:60
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Custom Styles"
msgstr "ዘዴዎች ማስተካከያ"
#. ADhCx
-#: sw/inc/app.hrc:64
+#: sw/inc/app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
msgid "All Styles"
msgstr "ሁሉንም ዘዴዎች"
#. kGzjB
-#: sw/inc/app.hrc:65
+#: sw/inc/app.hrc:67
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "የ ተደበቁ ዘዴዎች"
#. CAEy6
-#: sw/inc/app.hrc:66
+#: sw/inc/app.hrc:68
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Applied Styles"
msgstr "የ ተፈጸሙ ዘዴዎች"
#. jQvqy
-#: sw/inc/app.hrc:67
+#: sw/inc/app.hrc:69
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Custom Styles"
msgstr "ዘዴዎች ማስተካከያ"
#. xFSbd
-#: sw/inc/app.hrc:73
+#: sw/inc/app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
msgid "All Styles"
msgstr "ሁሉንም ዘዴዎች"
#. DCRLB
-#: sw/inc/app.hrc:74
+#: sw/inc/app.hrc:76
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "የ ተደበቁ ዘዴዎች"
#. 4BdCR
-#: sw/inc/app.hrc:75
+#: sw/inc/app.hrc:77
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Applied Styles"
msgstr "የ ተፈጸሙ ዘዴዎች"
#. A4VNy
-#: sw/inc/app.hrc:76
+#: sw/inc/app.hrc:78
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Custom Styles"
msgstr "ዘዴዎች ማስተካከያ"
#. DwpVB
-#: sw/inc/app.hrc:82
+#: sw/inc/app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
msgid "All Styles"
msgstr "ሁሉንም ዘዴዎች"
#. TPRKY
-#: sw/inc/app.hrc:83
+#: sw/inc/app.hrc:85
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "የ ተደበቁ ዘዴዎች"
#. Y9EKT
-#: sw/inc/app.hrc:84
+#: sw/inc/app.hrc:86
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Applied Styles"
msgstr "የ ተፈጸሙ ዘዴዎች"
#. UFVRD
-#: sw/inc/app.hrc:85
+#: sw/inc/app.hrc:87
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Custom Styles"
msgstr "ዘዴዎች ማስተካከያ"
@@ -617,55 +617,55 @@ msgstr ""
"በ አሁኑ መላኪያ ማሰናጃ ውስጥ አልተቀመጠም:"
#. daCFp
-#: sw/inc/flddinf.hrc:27
+#: sw/inc/flddinf.hrc:29
msgctxt "flddocinfopage|liststore1"
msgid "Author"
msgstr "ደራሲው"
#. syKG4
-#: sw/inc/flddinf.hrc:28
+#: sw/inc/flddinf.hrc:30
msgctxt "flddocinfopage|liststore1"
msgid "Time"
msgstr "ሰአት"
#. YVmE7
-#: sw/inc/flddinf.hrc:29
+#: sw/inc/flddinf.hrc:31
msgctxt "flddocinfopage|liststore1"
msgid "Date"
msgstr "ቀን"
#. 2J6uc
-#: sw/inc/flddinf.hrc:30
+#: sw/inc/flddinf.hrc:32
msgctxt "flddocinfopage|liststore1"
msgid "Date Time Author"
msgstr "ቀን ሰአት ደራሲው"
#. FzXBo
-#: sw/inc/fldref.hrc:27
+#: sw/inc/fldref.hrc:29
msgctxt "fldrefpage|liststore1"
msgid "Bookmarks"
msgstr "ምልክት ማድረጊያዎች"
#. aGQG8
-#: sw/inc/fldref.hrc:28
+#: sw/inc/fldref.hrc:30
msgctxt "fldrefpage|liststore1"
msgid "Footnotes"
msgstr "የ ግርጌ ማስታወሻዎች"
#. DyZeU
-#: sw/inc/fldref.hrc:29
+#: sw/inc/fldref.hrc:31
msgctxt "fldrefpage|liststore1"
msgid "Endnotes"
msgstr "የ መጨረሻ ማስታወሻዎች"
#. Cit9Z
-#: sw/inc/fldref.hrc:30
+#: sw/inc/fldref.hrc:32
msgctxt "fldrefpage|liststore1"
msgid "Headings"
msgstr "ራስጌዎች"
#. 95WGQ
-#: sw/inc/fldref.hrc:31
+#: sw/inc/fldref.hrc:33
msgctxt "fldrefpage|liststore1"
msgid "Numbered Paragraphs"
msgstr "የ አንቀጾች ቁጥር"
@@ -2033,181 +2033,181 @@ msgid "Writing Mode"
msgstr ""
#. QBR3s
-#: sw/inc/mmaddressblockpage.hrc:27
+#: sw/inc/mmaddressblockpage.hrc:29
msgctxt "RA_SALUTATION"
msgid "Dear"
msgstr "ውድ"
#. xc8LH
-#: sw/inc/mmaddressblockpage.hrc:28
+#: sw/inc/mmaddressblockpage.hrc:30
msgctxt "RA_SALUTATION"
msgid "Hello"
msgstr "ሰላም"
#. 3dVR9
-#: sw/inc/mmaddressblockpage.hrc:29
+#: sw/inc/mmaddressblockpage.hrc:31
msgctxt "RA_SALUTATION"
msgid "Hi"
msgstr "ታዲያስ"
#. G4dAq
-#: sw/inc/mmaddressblockpage.hrc:34
+#: sw/inc/mmaddressblockpage.hrc:36
msgctxt "RA_PUNCTUATION"
msgid ","
msgstr ","
#. xpSNV
-#: sw/inc/mmaddressblockpage.hrc:35
+#: sw/inc/mmaddressblockpage.hrc:37
msgctxt "RA_PUNCTUATION"
msgid ":"
msgstr ":"
#. CBNXb
-#: sw/inc/mmaddressblockpage.hrc:36
+#: sw/inc/mmaddressblockpage.hrc:38
msgctxt "RA_PUNCTUATION"
msgid "!"
msgstr "!"
#. av4Wm
-#: sw/inc/mmaddressblockpage.hrc:37
+#: sw/inc/mmaddressblockpage.hrc:39
msgctxt "RA_PUNCTUATION"
msgid "(none)"
msgstr "(ምንም)"
#. ujBVU
-#: sw/inc/optload.hrc:30
+#: sw/inc/optload.hrc:31
msgctxt "STR_ARR_METRIC"
msgid "Millimeter"
msgstr "ሚሊ ሚትር"
#. a9SsD
-#: sw/inc/optload.hrc:31
+#: sw/inc/optload.hrc:32
msgctxt "STR_ARR_METRIC"
msgid "Centimeter"
msgstr "ሴንቲ ሚትር"
#. 2RuJU
-#: sw/inc/optload.hrc:32
+#: sw/inc/optload.hrc:33
msgctxt "STR_ARR_METRIC"
msgid "Meter"
msgstr "ሚትር"
#. s4zrG
-#: sw/inc/optload.hrc:33
+#: sw/inc/optload.hrc:34
msgctxt "STR_ARR_METRIC"
msgid "Kilometer"
msgstr "ኪሎ ሚትር"
#. SGXPk
-#: sw/inc/optload.hrc:34
+#: sw/inc/optload.hrc:35
msgctxt "STR_ARR_METRIC"
msgid "Inch"
msgstr "ኢንች"
#. 3kDJD
-#: sw/inc/optload.hrc:35
+#: sw/inc/optload.hrc:36
msgctxt "STR_ARR_METRIC"
msgid "Foot"
msgstr "ጫማ"
#. Z9v2E
-#: sw/inc/optload.hrc:36
+#: sw/inc/optload.hrc:37
msgctxt "STR_ARR_METRIC"
msgid "Miles"
msgstr "ማይልስ"
#. ngFw4
-#: sw/inc/optload.hrc:37
+#: sw/inc/optload.hrc:38
msgctxt "STR_ARR_METRIC"
msgid "Pica"
msgstr "ፒካ"
#. C2njC
-#: sw/inc/optload.hrc:38
+#: sw/inc/optload.hrc:39
msgctxt "STR_ARR_METRIC"
msgid "Point"
msgstr "ነጥብ"
#. FcXWG
-#: sw/inc/optload.hrc:39
+#: sw/inc/optload.hrc:40
msgctxt "STR_ARR_METRIC"
msgid "Char"
msgstr "Char"
#. ZZCxd
-#: sw/inc/optload.hrc:40
+#: sw/inc/optload.hrc:41
msgctxt "STR_ARR_METRIC"
msgid "Line"
msgstr "መስመር"
#. qQBCu
-#: sw/inc/outline.hrc:27
+#: sw/inc/outline.hrc:29
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 1"
msgstr "ያልተሰየመ 1"
#. fJyA3
-#: sw/inc/outline.hrc:28
+#: sw/inc/outline.hrc:30
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 2"
msgstr "ያልተሰየመ 2"
#. MLeBF
-#: sw/inc/outline.hrc:29
+#: sw/inc/outline.hrc:31
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 3"
msgstr "ያልተሰየመ 3"
#. reXad
-#: sw/inc/outline.hrc:30
+#: sw/inc/outline.hrc:32
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 4"
msgstr "ያልተሰየመ 4"
#. Fgpbv
-#: sw/inc/outline.hrc:31
+#: sw/inc/outline.hrc:33
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 5"
msgstr "ያልተሰየመ 5"
#. Ea4d6
-#: sw/inc/outline.hrc:32
+#: sw/inc/outline.hrc:34
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 6"
msgstr "ያልተሰየመ 6"
#. UcAcC
-#: sw/inc/outline.hrc:33
+#: sw/inc/outline.hrc:35
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 7"
msgstr "ያልተሰየመ 7"
#. Dv26U
-#: sw/inc/outline.hrc:34
+#: sw/inc/outline.hrc:36
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 8"
msgstr "ያልተሰየመ 8"
#. XxC5o
-#: sw/inc/outline.hrc:35
+#: sw/inc/outline.hrc:37
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 9"
msgstr "ያልተሰየመ 9"
#. TTBSc
-#: sw/inc/pageformatpanel.hrc:23
+#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
msgstr "ምንም"
#. eNMWm
-#: sw/inc/pageformatpanel.hrc:24
+#: sw/inc/pageformatpanel.hrc:26
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
msgstr "ጠባብ"
#. MHtci
-#: sw/inc/pageformatpanel.hrc:25
+#: sw/inc/pageformatpanel.hrc:27
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
msgstr "መሀከለኛ"
@@ -2216,38 +2216,38 @@ msgstr "መሀከለኛ"
#. Normal (0.75")
#. Normal (1")
#. Normal (1.25")
-#: sw/inc/pageformatpanel.hrc:27 sw/inc/pageformatpanel.hrc:29
-#: sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:29 sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (%1)"
msgstr ""
#. DjCNK
-#: sw/inc/pageformatpanel.hrc:32
+#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
msgstr "ሰፊ"
#. JDMQe
-#: sw/inc/pageformatpanel.hrc:33
+#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Mirrored"
msgstr "የ ተንፀባረቀ"
#. J9o3y
-#: sw/inc/pageformatpanel.hrc:39
+#: sw/inc/pageformatpanel.hrc:41
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
msgstr "ምንም"
#. LxZSX
-#: sw/inc/pageformatpanel.hrc:40
+#: sw/inc/pageformatpanel.hrc:42
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
msgstr "ጠባብ"
#. EDy4U
-#: sw/inc/pageformatpanel.hrc:41
+#: sw/inc/pageformatpanel.hrc:43
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
msgstr "መሀከለኛ"
@@ -2256,20 +2256,20 @@ msgstr "መሀከለኛ"
#. Normal (1.9 cm)
#. Normal (2.54 cm)
#. Normal (3.18 cm)
-#: sw/inc/pageformatpanel.hrc:43 sw/inc/pageformatpanel.hrc:45
-#: sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:45 sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:49
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (%1)"
msgstr ""
#. oJfxD
-#: sw/inc/pageformatpanel.hrc:48
+#: sw/inc/pageformatpanel.hrc:50
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
msgstr "ሰፊ"
#. H9Qqx
-#: sw/inc/pageformatpanel.hrc:49
+#: sw/inc/pageformatpanel.hrc:51
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr "የ ተንፀባረቀ"
@@ -9215,280 +9215,292 @@ msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "የ አንቀጽ ዘዴዎች መፈጸሚያ"
-#. sgEbW
+#. WghdP
#: sw/inc/strings.hrc:1283
+msgctxt "STR_REDLINE_COMMENT_ADDED"
+msgid "Comment added"
+msgstr ""
+
+#. 2KNu9
+#: sw/inc/strings.hrc:1284
+msgctxt "STR_REDLINE_COMMENT_DELETED"
+msgid "Comment deleted"
+msgstr ""
+
+#. sgEbW
+#: sw/inc/strings.hrc:1285
msgctxt "STR_PAGE"
msgid "Page "
msgstr "ገጽ "
#. 3DpEx
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1286
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "ገጽ %1 ከ %2"
#. HSbzS
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1287
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "ገጽ %1 ከ %2 (ገጽ %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1288
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:1288
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "አንቀጽ"
#. aAtmp
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "ምስል"
#. UBDMK
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "የ OLE እቃ"
#. xEWbo
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ክፈፍ"
#. hfJns
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. GRqNY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1295
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "የሰንጠረዥ ረድፍ"
#. CDQY4
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1296
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "የሰንጠረዥ ክፍል"
#. 2Db9T
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1297
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "ገጽ"
#. 63FuG
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1298
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "ራስጌ"
#. aDuAY
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1299
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "ግርጌ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1302
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML ሰነድ"
#. y2GBv
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TITLE"
msgid "Title"
msgstr "አርእስት"
#. AipGR
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1305
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "መለያያ"
#. CoSEf
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1306
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "ደረጃ "
#. JdTF4
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1307
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:1306
+#: sw/inc/strings.hrc:1308
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ተጠቃሚው-የተወሰነ ማውጫ"
#. t5uWs
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1309
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<ምንም>"
#. vSSnJ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1310
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<ምንም>"
#. NSx98
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1311
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "የምእራፍ ቁጥር"
#. FH365
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "ማስገቢያ"
#. xZjtZ
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "ማስረጊያ ማቆሚያ"
#. aXW8y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. MCUd2
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1324
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "የ ገጽ ቁጥር"
#. pXqw3
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "የምእራፍ መረጃ"
#. DRBSD
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1326
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Hyperlink መጀመሪያ"
#. Ytn5g
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1327
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Hyperlink መጨረሻ"
#. hRo3J
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1328
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "የ ቢብሊዮግራፊ ማስገቢያ...: "
#. ZKG5v
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1329
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "የ ባህሪ ዘዴ: "
#. d9BES
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1330
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "የ ጽሁፍ አካል"
#. kwoGP
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1331
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:1330
+#: sw/inc/strings.hrc:1332
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "ይጫኑ የ ግራ ወይንም የ ቀኝ ቀስት የ መቆጣጠሪያ አካሎችን ለመምረጥ"
#. 59eRi
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1333
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:1332
+#: sw/inc/strings.hrc:1334
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "የ ፋይል ምርጫዎች በ ፊደል ማውጫ (*.sdi)"
@@ -9497,259 +9509,259 @@ msgstr "የ ፋይል ምርጫዎች በ ፊደል ማውጫ (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "መሰረታዊ መስመር ከ ~ላይ"
#. 5GiEA
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~መሰረታዊ መስመር ከ ታች"
#. sdyVF
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "መሰረታዊ መስመር ~መሀከል"
#. NAXyZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1342
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "እቃ ማስገቢያ"
#. 5C6Rc
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1343
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "እቃ ማረሚያ"
#. 3QFYB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1344
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (ቴምፕሌት: "
#. oUhnK
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1345
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "ድንበሮች"
#. T2SH2
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1346
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "መደብ"
#. K6Yvs
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1348
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(የ አንቀጽ ዘዴ: "
#. Fsanh
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1349
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:1349
+#: sw/inc/strings.hrc:1351
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION ዋናው ሰነድ"
#. kWe9j
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1353
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "የፋይል ግንኙነት የአሁኑን ክፍል ይዞታዎች ያጠፋቸዋል ፡ ለማንኛውም ልቀጥል?"
#. dLuAF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1354
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "ያስገቡት የ መግቢያ ቃል ዋጋ የለውም"
#. oUR7Y
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1355
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "የመግቢያ ቃል አልተሰናዳም"
#. GBVqD
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1357
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "ጭረት ተጠናቋል"
#. rZBXF
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1358
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "ምንም (ፊደሎቹን አታርም)"
#. Z8EjG
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1359
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "ነባሩን ቋንቋ እንደነበረ መመለሻ"
#. YEXdS
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1360
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "ተጨማሪ..."
#. QecQ3
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1361
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~መተው"
#. aaiBM
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1362
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "መግለጫዎች..."
#. kSDGu
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1364
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "የተለዩ አካባቢዎች ተሰናክለው እንደሆን መመርመሪያ: ለማንኛውም ልመርምር?"
#. KiAdJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "ሰነዱን ማዋሀድ አልተቻለም"
#. FqsCt
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1366
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:1365
+#: sw/inc/strings.hrc:1367
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "ምንጩን መጫን አልተቻለም"
#. K9qMS
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1368
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "ምንም የ ፋክስ ማተሚያ አልተዘጋጀም በ መሳሪያዎች/ምርጫዎች/%1/ማተሚያ ስር"
#. XWQ8w
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1369
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
#. qVZBx
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1370
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "የ ጽሁፍ ሰነድ"
#. qmmPU
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "ምንጩ አልተገለጸም"
#. 2LgDJ
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1372
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "ደረጃ "
#. AcAD8
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1373
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "ረቂቅ "
#. DE9FZ
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1374
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "የ ግርጌ/መጨረሻ ማስታወሻ ማረሚያ"
#. EzBCZ
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1375
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "መፈለጊያው ቁልፍ በዚህ XX ያህል ጊዜ ተቀይሯል"
#. fgywB
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1376
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "ረድፍ "
#. GUc4a
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1377
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "አምድ "
#. yMyuo
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "ምንጩን ~መላኪያ..."
#. ywFCb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1379
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~መላኪያ የ ኮፒ ምንጭ..."
#. BT3M3
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1381
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~ይቀጥሉ"
#. ZR9aw
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1382
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "በመላክ ላይ ወደ: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1383
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "ተሳክቶ ተልኳል"
#. fmHmE
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1384
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "መላክ አልተቻለም"
#. yAAPM
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1386
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:1386
+#: sw/inc/strings.hrc:1388
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "ጽሁፍ መቀመሪያ"
#. RmBFW
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1390
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "ምንም እቃ አልተገለጸም"
@@ -9758,7 +9770,7 @@ msgstr "ምንም እቃ አልተገለጸም"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1396
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "ሰነድ መመደቢያ ተቀይሯል ምክንያቱም የ አንቀጽ መመደቢያ ደረጃ ከፍተኛ ነው"
@@ -9767,253 +9779,253 @@ msgstr "ሰነድ መመደቢያ ተቀይሯል ምክንያቱም የ አን
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1401
msgctxt "STR_VALID"
msgid " Valid "
msgstr " ዋጋ ያለው "
#. xAKRC
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1402
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "ዋጋ የሌለው"
#. pDAHz
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1403
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "ዋጋ የሌለው ፊርማ"
#. etEEx
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1404
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "የ ተፈረመው-በ"
#. BK7ub
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1405
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "የ አንቀጽ ፊርማ"
#. kZKCf
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1407
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "የ ንግድ ካርዶች"
#. ECFij
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1409
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "ኢሜይል ማሰናጃ"
#. PwrB9
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1411
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "ማስገቢያ"
#. NL48o
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1412
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "ማጥፊያ"
#. PW4Bz
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1413
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "መለያዎች"
#. yfgiq
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "መፈለጊያ ደንብ"
#. fhLzk
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "አማራጭ ማስገቢያ"
#. gD4D3
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1ኛ ቁልፍ"
#. BFszo
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2ኛ ቁልፍ"
#. EoAB8
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1419
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "አስተያየት"
#. Shstx
-#: sw/inc/strings.hrc:1418
+#: sw/inc/strings.hrc:1420
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ጉዳዩን ማመሳሰያ"
#. 8Cjvb
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1421
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "ቃላት ብቻ"
#. zD8rb
-#: sw/inc/strings.hrc:1420
+#: sw/inc/strings.hrc:1422
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "አዎ"
#. 4tTop
-#: sw/inc/strings.hrc:1421
+#: sw/inc/strings.hrc:1423
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "አይ"
#. KhKwa
-#: sw/inc/strings.hrc:1423
+#: sw/inc/strings.hrc:1425
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "ማስተካከያ"
#. YiRsr
-#: sw/inc/utlui.hrc:27
+#: sw/inc/utlui.hrc:29
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Remove empty paragraphs"
msgstr "ባዶ አንቀጾች ማስወገጃ"
#. zWFE6
-#: sw/inc/utlui.hrc:28
+#: sw/inc/utlui.hrc:30
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Use replacement table"
msgstr "ሰንጠረዥ መቀየሪያ ይጠቀሙ"
#. EQfLp
-#: sw/inc/utlui.hrc:29
+#: sw/inc/utlui.hrc:31
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Correct TWo INitial CApitals"
msgstr "በ ሁለት አቢይ የሚጀምር ቃል ማረሚያ TWo INitial CApitals"
#. JBCDA
-#: sw/inc/utlui.hrc:30
+#: sw/inc/utlui.hrc:32
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Capitalize first letter of sentences"
msgstr "ሁሉንም አረፍተ ነገር በ አቢይ ፊደል መጀመሪያውን መጻፊያ"
#. eGLb9
-#: sw/inc/utlui.hrc:31
+#: sw/inc/utlui.hrc:33
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace \"standard\" quotes with %1custom%2 quotes"
msgstr "መቀየሪያ \"መደበኛ\" ጥቅሶችን በ %1ማስተካከያ%2 ጥቅሶች"
#. dgZCx
-#: sw/inc/utlui.hrc:32
+#: sw/inc/utlui.hrc:34
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace Custom Styles"
msgstr "ዘዴዎች ማስተካከያ መቀየሪያ"
#. zXHk9
-#: sw/inc/utlui.hrc:33
+#: sw/inc/utlui.hrc:35
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Bullets replaced"
msgstr "ነጥቦች ተቀይረዋል"
#. p7V6t
-#: sw/inc/utlui.hrc:34
+#: sw/inc/utlui.hrc:36
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic _underline_"
msgstr "ራሱ በራሱ ከ _ስሩ ማስመሪያ_"
#. Hzt7q
-#: sw/inc/utlui.hrc:35
+#: sw/inc/utlui.hrc:37
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic *bold*"
msgstr "ራሱ በራሱ *ማድመቂያ*"
#. oMfhs
-#: sw/inc/utlui.hrc:36
+#: sw/inc/utlui.hrc:38
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1/2 ... with ½ ..."
msgstr "መቀየሪያ 1/2 ... በ ½ ..."
#. UCK6y
-#: sw/inc/utlui.hrc:37
+#: sw/inc/utlui.hrc:39
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "URL recognition"
msgstr "URL ማስታወሻ"
#. MD9fC
-#: sw/inc/utlui.hrc:38
+#: sw/inc/utlui.hrc:40
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace dashes"
msgstr "ዳሾችን መቀየሪያ"
#. YABTx
-#: sw/inc/utlui.hrc:39
+#: sw/inc/utlui.hrc:41
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1st... with 1^st..."
msgstr "መቀየሪያ 1ኛ... በ 1^ኛ..."
#. ebBjY
-#: sw/inc/utlui.hrc:40
+#: sw/inc/utlui.hrc:42
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine single line paragraphs"
msgstr "የ ነጠላ መስመር አንቀጾችን መቀላቀያ"
#. Gtaxa
-#: sw/inc/utlui.hrc:41
+#: sw/inc/utlui.hrc:43
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body\" Style"
msgstr "የ \"ጽሁፍ አካል\" ዘዴ ማሰናጃ"
#. P8xFp
-#: sw/inc/utlui.hrc:42 sw/inc/utlui.hrc:44
+#: sw/inc/utlui.hrc:44 sw/inc/utlui.hrc:46
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body indent\" Style"
msgstr "የ \"ጽሁፍ አካል ማስረጊያ\" ዘዴ ማሰናጃ"
#. UUEwQ
-#: sw/inc/utlui.hrc:43
+#: sw/inc/utlui.hrc:45
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Hanging indent\" Style"
msgstr "የ \"ተንጠልጣይ ማስረጊያ\" ዘዴ ማሰናጃ"
#. qv2KD
-#: sw/inc/utlui.hrc:45
+#: sw/inc/utlui.hrc:47
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Heading $(ARG1)\" Style"
msgstr "ማሰናጃ \"ራስጌ $(ARG1)\" ዘዴ"
#. orFXE
-#: sw/inc/utlui.hrc:46
+#: sw/inc/utlui.hrc:48
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Bullet\" or \"Numbering\" Style"
msgstr "የ \"ነጥብ\" ወይም \"ቁጥር መስጫ\" ዘዴ ማሰናጃ"
#. yGoaB
-#: sw/inc/utlui.hrc:47
+#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine paragraphs"
msgstr "አንቀጾች መቀላቀያ"
#. rpT9U
-#: sw/inc/utlui.hrc:48
+#: sw/inc/utlui.hrc:50
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "ያልተሰባበረ ክፍተት መጨመሪያ"
#. FHPwi
-#: sw/inc/utlui.hrc:49
+#: sw/inc/utlui.hrc:51
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
msgstr ""
@@ -12041,163 +12053,163 @@ msgid "Width and Spacing"
msgstr "ስፋት እና ክፍተት"
#. aBAZn
-#: sw/uiconfig/swriter/ui/columnpage.ui:442
+#: sw/uiconfig/swriter/ui/columnpage.ui:439
msgctxt "columnpage|linestyleft"
msgid "St_yle:"
msgstr "ዘ_ዴ:"
#. iTh5i
-#: sw/uiconfig/swriter/ui/columnpage.ui:456
+#: sw/uiconfig/swriter/ui/columnpage.ui:453
msgctxt "columnpage|linewidthft"
msgid "_Width:"
msgstr "_ስፋት:"
#. fEm38
-#: sw/uiconfig/swriter/ui/columnpage.ui:470
+#: sw/uiconfig/swriter/ui/columnpage.ui:467
msgctxt "columnpage|lineheightft"
msgid "H_eight:"
msgstr "እ_ርዝመት:"
#. vKEyi
-#: sw/uiconfig/swriter/ui/columnpage.ui:484
+#: sw/uiconfig/swriter/ui/columnpage.ui:481
msgctxt "columnpage|lineposft"
msgid "_Position:"
msgstr "_ቦታ:"
#. yhqBe
-#: sw/uiconfig/swriter/ui/columnpage.ui:507
+#: sw/uiconfig/swriter/ui/columnpage.ui:504
msgctxt "columnpage|extended_tip|linestylelb"
msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"."
msgstr "ለ አምድ መለያያ መስመር የ አቀራረብ ዘዴ ይምረጡ: እርስዎ የ መለያያ መስመር መጠቀም ካልፈለጉ: ይምረጡ \"ምንም\"."
#. DcSGt
-#: sw/uiconfig/swriter/ui/columnpage.ui:521
+#: sw/uiconfig/swriter/ui/columnpage.ui:518
msgctxt "columnpage|lineposlb"
msgid "Top"
msgstr "ከ ላይ"
#. MKcWL
-#: sw/uiconfig/swriter/ui/columnpage.ui:522
+#: sw/uiconfig/swriter/ui/columnpage.ui:519
msgctxt "columnpage|lineposlb"
msgid "Centered"
msgstr "መሀከል"
#. CxCJF
-#: sw/uiconfig/swriter/ui/columnpage.ui:523
+#: sw/uiconfig/swriter/ui/columnpage.ui:520
msgctxt "columnpage|lineposlb"
msgid "Bottom"
msgstr "ከ ታች"
#. Akv5r
-#: sw/uiconfig/swriter/ui/columnpage.ui:527
+#: sw/uiconfig/swriter/ui/columnpage.ui:524
msgctxt "columnpage|extended_tip|lineposlb"
msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%."
msgstr "የ ቁመት ማሰለፊያ ይምረጡ ለ መለያያ መስመር: ይህ ምርጫ ዝግጁ የሚሆነው የ እርዝመት የ መስመር ዋጋ አነስተኛ ከሆነ ነው ከ 100%."
#. FMShH
-#: sw/uiconfig/swriter/ui/columnpage.ui:545
+#: sw/uiconfig/swriter/ui/columnpage.ui:542
msgctxt "columnpage|extended_tip|lineheightmf"
msgid "Enter the length of the separator line as a percentage of the height of the column area."
msgstr "የ መለያያ መስመር እርዝመት ያስገቡ እንደ ፐርሰንቴጅ ለ አምድ ቦታ እርዝመት"
#. kkGNR
-#: sw/uiconfig/swriter/ui/columnpage.ui:589
+#: sw/uiconfig/swriter/ui/columnpage.ui:586
msgctxt "columnpage|linecolorft"
msgid "_Color:"
msgstr "_ቀለም:"
#. 9o7DQ
-#: sw/uiconfig/swriter/ui/columnpage.ui:623
+#: sw/uiconfig/swriter/ui/columnpage.ui:620
msgctxt "columnpage|label11"
msgid "Separator Line"
msgstr "መለያያ መስመር"
#. 7SaDT
-#: sw/uiconfig/swriter/ui/columnpage.ui:672
+#: sw/uiconfig/swriter/ui/columnpage.ui:669
msgctxt "columnpage|label3"
msgid "Columns:"
msgstr "አምዶች:"
#. aF466
-#: sw/uiconfig/swriter/ui/columnpage.ui:691
+#: sw/uiconfig/swriter/ui/columnpage.ui:688
msgctxt "columnpage|extended_tip|colsnf"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr "በ ገጹ ላይ የሚፈልጉትን የ አምዶች ቁጥር ያስገቡ ፡ ክፈፍ ወይንም ክፍሎች"
#. X9vG6
-#: sw/uiconfig/swriter/ui/columnpage.ui:714
+#: sw/uiconfig/swriter/ui/columnpage.ui:711
msgctxt "columnpage|balance"
msgid "Evenly distribute contents _to all columns"
msgstr "_ለ ሁሉም አምዶች ይዞታዎችን እኩል ማሰራጫ"
#. BYYDE
-#: sw/uiconfig/swriter/ui/columnpage.ui:722
+#: sw/uiconfig/swriter/ui/columnpage.ui:719
msgctxt "columnpage|extended_tip|balance"
msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically."
msgstr "በ በርካታ-አምድ ክፍሎች ውስጥ ጽሁፍ ማሰራጫ: የ ጽሁፍ ፍሰት ወደ ሁሉም አምዶች ተመሳሳይ እርዝመት: የ ክፍሉ እርዝመት ራሱ በራሱ ይስተካከላል"
#. bV6Pg
-#: sw/uiconfig/swriter/ui/columnpage.ui:742
+#: sw/uiconfig/swriter/ui/columnpage.ui:739
msgctxt "columnpage|liststore2"
msgid "Selection"
msgstr "ምርጫዎች"
#. qA5MH
-#: sw/uiconfig/swriter/ui/columnpage.ui:743
+#: sw/uiconfig/swriter/ui/columnpage.ui:740
msgctxt "columnpage|liststore2"
msgid "Current Section"
msgstr "የ አሁኑ ክፍል"
#. VSvpa
-#: sw/uiconfig/swriter/ui/columnpage.ui:744
+#: sw/uiconfig/swriter/ui/columnpage.ui:741
msgctxt "columnpage|liststore2"
msgid "Selected section"
msgstr "የተመረጠው ክፍል"
#. Mo9GL
-#: sw/uiconfig/swriter/ui/columnpage.ui:745
+#: sw/uiconfig/swriter/ui/columnpage.ui:742
msgctxt "columnpage|liststore2"
msgid "Frame"
msgstr "ክፈፍ"
#. mBmAm
-#: sw/uiconfig/swriter/ui/columnpage.ui:746
+#: sw/uiconfig/swriter/ui/columnpage.ui:743
msgctxt "columnpage|liststore2"
msgid "Page Style: "
msgstr "የ ገጽ ዘዴ: "
#. F7MQT
-#: sw/uiconfig/swriter/ui/columnpage.ui:750
+#: sw/uiconfig/swriter/ui/columnpage.ui:747
msgctxt "columnpage|extended_tip|applytolb"
msgid "Select the item that you want to apply the column layout to."
msgstr "ይምረጡ እቃ እርስዎ መፈጸም የሚፈልጉትን በ አምድ እቅድ ውስጥ ወደ:"
#. AJFqx
-#: sw/uiconfig/swriter/ui/columnpage.ui:763
+#: sw/uiconfig/swriter/ui/columnpage.ui:760
msgctxt "columnpage|applytoft"
msgid "_Apply to:"
msgstr "_መፈጸሚያ ወደ:"
#. rzBnm
-#: sw/uiconfig/swriter/ui/columnpage.ui:790
+#: sw/uiconfig/swriter/ui/columnpage.ui:787
msgctxt "columnpage|textdirectionft"
msgid "Text _direction:"
msgstr "የ ጽሁፍ _አቅጣጫ:"
#. dcDde
-#: sw/uiconfig/swriter/ui/columnpage.ui:834
+#: sw/uiconfig/swriter/ui/columnpage.ui:831
msgctxt "columnpage|extended_tip|valueset"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr "በ ገጹ ላይ የሚፈልጉትን የ አምዶች ቁጥር ያስገቡ: ክፈፍ ወይንም ክፍሎች"
#. fEbMc
-#: sw/uiconfig/swriter/ui/columnpage.ui:849
+#: sw/uiconfig/swriter/ui/columnpage.ui:846
msgctxt "columnpage|label2"
msgid "Settings"
msgstr "ማሰናጃዎች"
#. 3dGYz
-#: sw/uiconfig/swriter/ui/columnpage.ui:904
+#: sw/uiconfig/swriter/ui/columnpage.ui:901
msgctxt "columnpage|extended_tip|ColumnPage"
msgid "Specifies the number of columns and the column layout for a page style, frame, or section."
msgstr "የ አምድ ቁጥር እና የ አምድ እቅድ ለ ገጽ ዘዴ: ክፈፍ: ወይንም ክፍል መወሰኛ"
@@ -14967,181 +14979,181 @@ msgid "Position"
msgstr "ቦታ"
#. okHEF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:86
+#: sw/uiconfig/swriter/ui/footnotepage.ui:92
msgctxt "footnotepage|offset"
msgid "Start at"
msgstr "መጀመሪያ በ"
#. T7pFk
-#: sw/uiconfig/swriter/ui/footnotepage.ui:98
+#: sw/uiconfig/swriter/ui/footnotepage.ui:104
msgctxt "footnotepage|label11"
msgid "After"
msgstr "በኋላ"
#. iA9We
-#: sw/uiconfig/swriter/ui/footnotepage.ui:108
+#: sw/uiconfig/swriter/ui/footnotepage.ui:114
msgctxt "footnotepage|pospagecb"
msgid "End of page"
msgstr "የ ገጽ መጨረሻ"
#. zqfGN
-#: sw/uiconfig/swriter/ui/footnotepage.ui:120
+#: sw/uiconfig/swriter/ui/footnotepage.ui:126
msgctxt "footnotepage|extended_tip|pospagecb"
msgid "Displays footnotes at the bottom of the page."
msgstr "የ ግርጌ ማስታወሻ ከ ገጹ በታች በኩል ማሳያ"
#. 8zwoB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:131
+#: sw/uiconfig/swriter/ui/footnotepage.ui:137
msgctxt "footnotepage|posdoccb"
msgid "End of document"
msgstr "የ ሰነዱ መጨረሻ"
#. xvD3V
-#: sw/uiconfig/swriter/ui/footnotepage.ui:143
+#: sw/uiconfig/swriter/ui/footnotepage.ui:149
msgctxt "footnotepage|extended_tip|posdoccb"
msgid "Displays footnotes at the end of the document as endnotes."
msgstr "የ ግርጌ ማስታወሻ ከ ገጹ በታች በኩል እንደ መጨረሻ ማስታወሻ ማሳያ"
#. BGVTw
-#: sw/uiconfig/swriter/ui/footnotepage.ui:161
+#: sw/uiconfig/swriter/ui/footnotepage.ui:167
msgctxt "footnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box."
msgstr "በ ሰነድ ውስጥ ለ መጀመሪያው የ ግርጌ ማስታወሻ ቁጥር ያስገቡ: ይህ ምርጫ ዝግጁ የሚሆነው እርስው ከ መረጡ ነው \"በየ ሰነዱ\" በ መቁጠሪያሳጥን"
#. RWgzD
-#: sw/uiconfig/swriter/ui/footnotepage.ui:175
+#: sw/uiconfig/swriter/ui/footnotepage.ui:181
msgctxt "footnotepage|liststore1"
msgid "Per page"
msgstr "በ ገጽ"
#. MELvZ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:176
+#: sw/uiconfig/swriter/ui/footnotepage.ui:182
msgctxt "footnotepage|liststore1"
msgid "Per chapter"
msgstr "በ ምእራፍ"
#. oD7zV
-#: sw/uiconfig/swriter/ui/footnotepage.ui:177
+#: sw/uiconfig/swriter/ui/footnotepage.ui:183
msgctxt "footnotepage|liststore1"
msgid "Per document"
msgstr "በ ሰነድ"
#. BDrKx
-#: sw/uiconfig/swriter/ui/footnotepage.ui:181
+#: sw/uiconfig/swriter/ui/footnotepage.ui:187
msgctxt "footnotepage|extended_tip|countinglb"
msgid "Select the numbering option for the footnotes."
msgstr "ለ ግርጌ ማስታወሻ የ ቁጥር መስጫ ምርጫ ይምረጡ "
#. 7GqFA
-#: sw/uiconfig/swriter/ui/footnotepage.ui:198
+#: sw/uiconfig/swriter/ui/footnotepage.ui:204
msgctxt "footnotepage|extended_tip|prefix"
msgid "Enter the text that you want to display in front of the footnote number in the note text."
msgstr "ከ ግርጌ ማስታወሻ ቁጥር መስጫ በፊት እንዲታይ የሚፈልጉትን ጽሁፍ ያስገቡ በ ማስታወሻ ጽሁፍ ውስጥ"
#. 7rE4w
-#: sw/uiconfig/swriter/ui/footnotepage.ui:215
+#: sw/uiconfig/swriter/ui/footnotepage.ui:221
msgctxt "footnotepage|extended_tip|suffix"
msgid "Enter the text that you want to display after the footnote number in the note text."
msgstr "ከ ግርጌ ማስታወሻ ቁጥር መስጫ በኋላ እንዲታይ የሚፈልጉትን ጽሁፍ ያስገቡ በ ማስታወሻ ጽሁፍ ውስጥ"
#. YAUrj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:230
+#: sw/uiconfig/swriter/ui/footnotepage.ui:236
msgctxt "footnotepage|extended_tip|numberinglb"
msgid "Select the numbering scheme that you want to use."
msgstr "እርስዎ መጠቀም የሚፈልጉትን ቁጥር መስጫ ገጽታ ይምረጡ:"
#. Gzv4E
-#: sw/uiconfig/swriter/ui/footnotepage.ui:248
+#: sw/uiconfig/swriter/ui/footnotepage.ui:254
msgctxt "footnotepage|label3"
msgid "Autonumbering"
msgstr "በራሱ ቁጥር መስጫ"
#. NRpEM
-#: sw/uiconfig/swriter/ui/footnotepage.ui:281
+#: sw/uiconfig/swriter/ui/footnotepage.ui:287
msgctxt "footnotepage|label17"
msgid "End of footnote"
msgstr "የ ግርጌ ማስታወሻ መጨረሻ"
#. cQefG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:293
+#: sw/uiconfig/swriter/ui/footnotepage.ui:299
msgctxt "footnotepage|label18"
msgid "Start of next page"
msgstr "ከሚቀጥለው ገጽ መጀመሪያ"
#. CUWNP
-#: sw/uiconfig/swriter/ui/footnotepage.ui:311
+#: sw/uiconfig/swriter/ui/footnotepage.ui:317
msgctxt "footnotepage|extended_tip|contfromed"
msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". Writer automatically inserts the number of the previous page."
msgstr ""
#. 2X7QW
-#: sw/uiconfig/swriter/ui/footnotepage.ui:330
+#: sw/uiconfig/swriter/ui/footnotepage.ui:336
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". Writer automatically inserts the number of the following page."
msgstr ""
#. ZEhG2
-#: sw/uiconfig/swriter/ui/footnotepage.ui:345
+#: sw/uiconfig/swriter/ui/footnotepage.ui:351
msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "የሚቀጥል ማስታወቂያ"
#. jHwyG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:376
+#: sw/uiconfig/swriter/ui/footnotepage.ui:382
msgctxt "footnotepage|label4"
msgid "Paragraph"
msgstr "አንቀጽ"
#. 95fCg
-#: sw/uiconfig/swriter/ui/footnotepage.ui:388
+#: sw/uiconfig/swriter/ui/footnotepage.ui:394
msgctxt "footnotepage|pagestyleft"
msgid "Page"
msgstr "ገጽ"
#. RFDnB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:403
+#: sw/uiconfig/swriter/ui/footnotepage.ui:409
msgctxt "footnotepage|extended_tip|parastylelb"
msgid "Select the paragraph style for the footnote text. Only special styles can be selected."
msgstr ""
#. bhosj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:419
+#: sw/uiconfig/swriter/ui/footnotepage.ui:425
msgctxt "footnotepage|extended_tip|pagestylelb"
msgid "Select the page style that you want to use for footnotes."
msgstr "ለ ግርጌ ማስታወሻ መጠቀም የሚፈልጉትን የ ገጽ ዘዴ ይምረጡ"
#. ESqR9
-#: sw/uiconfig/swriter/ui/footnotepage.ui:435
+#: sw/uiconfig/swriter/ui/footnotepage.ui:441
msgctxt "footnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for footnote anchors in the text area of your document."
msgstr "የ ባህሪ ዘዴዎች ይምረጡ ለ ግርጌ ማስታወሻ መጨረሻ መጠቀም የሚፈልጉትን በ ጽሁፍ ቦታ በ እርስዎ ሰነድ ውስጥ "
#. EfWvJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:451
+#: sw/uiconfig/swriter/ui/footnotepage.ui:457
msgctxt "footnotepage|extended_tip|charstylelb"
msgid "Select the character style that you want to use for the footnote numbers in the footnote area."
msgstr "የ ባህሪ ዘዴዎች ይምረጡ ለ ግርጌ ማስታወሻ ቁጥር መስጫ መጠቀም የሚፈልጉትን በ ግርጌ ማስታወሻ ቦታ "
#. ZP5bQ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:464
+#: sw/uiconfig/swriter/ui/footnotepage.ui:470
msgctxt "footnotepage|label15"
msgid "Text area"
msgstr "የ ጽሁፍ ቦታ"
#. aYFwJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:476
+#: sw/uiconfig/swriter/ui/footnotepage.ui:482
msgctxt "footnotepage|label16"
msgid "Footnote area"
msgstr "የ ግርጌ ማስታወሻ ቦታ"
#. j8ZuF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:490
+#: sw/uiconfig/swriter/ui/footnotepage.ui:496
msgctxt "footnotepage|label12"
msgid "Styles"
msgstr "ዘዴዎች"
#. soD9k
-#: sw/uiconfig/swriter/ui/footnotepage.ui:504
+#: sw/uiconfig/swriter/ui/footnotepage.ui:510
msgctxt "footnotepage|extended_tip|FootnotePage"
msgid "Specifies the formatting for footnotes."
msgstr ""
@@ -16287,127 +16299,127 @@ msgid "New User-defined Index"
msgstr "በ አዲስ ተጠቃሚ-የሚወሰን ማውጫ"
#. zTEFk
-#: sw/uiconfig/swriter/ui/indexentry.ui:213
+#: sw/uiconfig/swriter/ui/indexentry.ui:210
msgctxt "indexentry|label3"
msgid "Entry"
msgstr "ማስገቢያ"
#. jcbjL
-#: sw/uiconfig/swriter/ui/indexentry.ui:229
+#: sw/uiconfig/swriter/ui/indexentry.ui:226
msgctxt "indexentry|key1ft"
msgid "1st key"
msgstr "1ኛ ቁልፍ"
#. B47KE
-#: sw/uiconfig/swriter/ui/indexentry.ui:245
+#: sw/uiconfig/swriter/ui/indexentry.ui:242
msgctxt "indexentry|key2ft"
msgid "2nd key"
msgstr "2ኛ ቁልፍ"
#. ReqDn
-#: sw/uiconfig/swriter/ui/indexentry.ui:260
+#: sw/uiconfig/swriter/ui/indexentry.ui:257
msgctxt "indexentry|levelft"
msgid "Level"
msgstr "ደረጃ"
#. QybEJ
-#: sw/uiconfig/swriter/ui/indexentry.ui:291
+#: sw/uiconfig/swriter/ui/indexentry.ui:288
msgctxt "indexentry|phonetic0ft"
msgid "Phonetic reading"
msgstr "Phonetic reading"
#. JCtnw
-#: sw/uiconfig/swriter/ui/indexentry.ui:307
+#: sw/uiconfig/swriter/ui/indexentry.ui:304
msgctxt "indexentry|phonetic1ft"
msgid "Phonetic reading"
msgstr "Phonetic reading"
#. C6FQC
-#: sw/uiconfig/swriter/ui/indexentry.ui:323
+#: sw/uiconfig/swriter/ui/indexentry.ui:320
msgctxt "indexentry|phonetic2ft"
msgid "Phonetic reading"
msgstr "Phonetic reading"
#. JbXGT
-#: sw/uiconfig/swriter/ui/indexentry.ui:413
+#: sw/uiconfig/swriter/ui/indexentry.ui:410
msgctxt "indexentry|sync|tooltip_text"
msgid "Update entry from selection"
msgstr "ከ ምርጫ ውስጥ ማስገቢያ ማሻሻያ"
#. B5PWe
-#: sw/uiconfig/swriter/ui/indexentry.ui:462
+#: sw/uiconfig/swriter/ui/indexentry.ui:459
msgctxt "indexentry|mainentrycb"
msgid "Main entry"
msgstr "ዋናው ማስገቢያ"
#. 4QfoT
-#: sw/uiconfig/swriter/ui/indexentry.ui:476
+#: sw/uiconfig/swriter/ui/indexentry.ui:473
msgctxt "indexentry|applytoallcb"
msgid "Apply to all similar texts"
msgstr "መፈጸሚያ ለተመሳሳይ ጽሁፎች"
#. ZdMSz
-#: sw/uiconfig/swriter/ui/indexentry.ui:490
+#: sw/uiconfig/swriter/ui/indexentry.ui:487
msgctxt "indexentry|searchcasesensitivecb"
msgid "Match case"
msgstr "ጉዳዩን ማመሳሰያ"
#. 8Q9RW
-#: sw/uiconfig/swriter/ui/indexentry.ui:505
+#: sw/uiconfig/swriter/ui/indexentry.ui:502
msgctxt "indexentry|searchcasewordonlycb"
msgid "Whole words only"
msgstr "ሙሉ ቃሎቹን ብቻ"
#. 62yyk
-#: sw/uiconfig/swriter/ui/indexentry.ui:539
+#: sw/uiconfig/swriter/ui/indexentry.ui:536
msgctxt "indexentry|previous|tooltip_text"
msgid "Previous entry"
msgstr ""
#. Vd86J
-#: sw/uiconfig/swriter/ui/indexentry.ui:542
+#: sw/uiconfig/swriter/ui/indexentry.ui:539
msgctxt "indexentry|extended_tip|previous"
msgid "Jumps to the previous index entry of the same type in the document."
msgstr "ይዘላል ወደ ቀደም ያለው ማውጫ ማስገቢያ ተመሳሳይ አይነት በ ሰነዱ ውስጥ"
#. VsuQU
-#: sw/uiconfig/swriter/ui/indexentry.ui:560
+#: sw/uiconfig/swriter/ui/indexentry.ui:557
msgctxt "indexentry|next|tooltip_text"
msgid "Next entry"
msgstr ""
#. WsgJC
-#: sw/uiconfig/swriter/ui/indexentry.ui:563
+#: sw/uiconfig/swriter/ui/indexentry.ui:560
msgctxt "indexentry|extended_tip|next"
msgid "Jumps to the next index entry of the same type in the document."
msgstr "ይዘላል ወደ ሚቀጥለው ማውጫ ማስገቢያ ተመሳሳይ አይነት በ ሰነዱ ውስጥ"
#. KnhCr
-#: sw/uiconfig/swriter/ui/indexentry.ui:581
+#: sw/uiconfig/swriter/ui/indexentry.ui:578
msgctxt "indexentry|first|tooltip_text"
msgid "Previous entry (same name)"
msgstr ""
#. 3dGEa
-#: sw/uiconfig/swriter/ui/indexentry.ui:584
+#: sw/uiconfig/swriter/ui/indexentry.ui:581
msgctxt "indexentry|extended_tip|first"
msgid "Jumps to the previous index entry of the same type and with the same name in the document."
msgstr ""
#. 2mkMr
-#: sw/uiconfig/swriter/ui/indexentry.ui:602
+#: sw/uiconfig/swriter/ui/indexentry.ui:599
msgctxt "indexentry|last|tooltip_text"
msgid "Next entry (same name)"
msgstr ""
#. gYHoh
-#: sw/uiconfig/swriter/ui/indexentry.ui:605
+#: sw/uiconfig/swriter/ui/indexentry.ui:602
msgctxt "indexentry|extended_tip|last"
msgid "Jumps to the next index entry of the same type and with the same name in the document."
msgstr ""
#. dLE2B
-#: sw/uiconfig/swriter/ui/indexentry.ui:633
+#: sw/uiconfig/swriter/ui/indexentry.ui:630
msgctxt "indexentry|label1"
msgid "Selection"
msgstr "ምርጫዎች"
@@ -16976,74 +16988,104 @@ msgctxt "insertbreak|linerb-atkobject"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr "የ አሁኑን መስመር መጨረሻ: እና በ መጠቆሚያው በ ቀኝ በኩል ያለውን ጽሁፍ ወደ የሚቀጥለው መስመር ማንቀሳቀሻ: አዲስ አንቀጽ ሳይፈጥሩ"
+#. 88jq6
+#: sw/uiconfig/swriter/ui/insertbreak.ui:122
+msgctxt "insertbreak|clearft"
+msgid "Restart Location:"
+msgstr ""
+
+#. fJEqu
+#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+msgctxt "insertbreak|clearlb0"
+msgid "[None]"
+msgstr ""
+
+#. dGBC7
+#: sw/uiconfig/swriter/ui/insertbreak.ui:141
+msgctxt "insertbreak|clearlb1"
+msgid "Left"
+msgstr ""
+
+#. HbijZ
+#: sw/uiconfig/swriter/ui/insertbreak.ui:142
+msgctxt "insertbreak|clearlb2"
+msgid "Right"
+msgstr ""
+
+#. AAg7H
+#: sw/uiconfig/swriter/ui/insertbreak.ui:143
+msgctxt "insertbreak|clearlb3"
+msgid "Next Full Line"
+msgstr ""
+
#. gqCuB
-#: sw/uiconfig/swriter/ui/insertbreak.ui:119
+#: sw/uiconfig/swriter/ui/insertbreak.ui:154
msgctxt "insertbreak|columnrb"
msgid "Column break"
msgstr "የ አምድ መጨረሻ"
#. poiJj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:128
+#: sw/uiconfig/swriter/ui/insertbreak.ui:163
msgctxt "insertbreak|columnrb-atkobject"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column."
msgstr "በ እጅ የ አምድ መጨረሻ ማስገቢያ (በ በርካታ አምድ እቅድ ውስጥ) እና የ ተገኘውን ጽሁፍ ከ መጠቆሚያው በስተ ቀኝ በኩል እስከ ጽሁፉ መጀመሪያ ድረስ: በ እጅ የ አምድ መጨረሻ የሚታየው በ ምንም የማይታተም ድንበር በ አዲስ አምድ ከ ላይ በኩል ነው"
#. 9GAAp
-#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+#: sw/uiconfig/swriter/ui/insertbreak.ui:175
msgctxt "insertbreak|pagerb"
msgid "Page break"
msgstr "የ ገጽ መጨረሻ"
#. G7e9T
-#: sw/uiconfig/swriter/ui/insertbreak.ui:149
+#: sw/uiconfig/swriter/ui/insertbreak.ui:184
msgctxt "insertbreak|pagerb-atkobject"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
msgstr "በ እጅ የ አምድ መጨረሻ ማስገቢያ እና ማንቀሳቀሻ የተገኘውን ጽሁፍ ወደ መጠቆሚያው ቀኝ በኩል ወደሚቀጥለው ጽሁፍ መጀመሪያ ወደሚቀጥለው ገጽ: ያስገቡት የ ገጽ መጨረሻ የሚታየው በ ምንም በማይታተሙ ድንበር በ አዲስ ገጽ ላይ ከ ላይ በኩል ነው"
#. qAj3x
-#: sw/uiconfig/swriter/ui/insertbreak.ui:164
+#: sw/uiconfig/swriter/ui/insertbreak.ui:199
msgctxt "insertbreak|styleft"
msgid "Page Style:"
msgstr "የ ገጽ ዘዴ:"
#. BWnND
-#: sw/uiconfig/swriter/ui/insertbreak.ui:181
+#: sw/uiconfig/swriter/ui/insertbreak.ui:216
msgctxt "insertbreak|liststore1"
msgid "[None]"
msgstr "[ምንም]"
#. 8WDUc
-#: sw/uiconfig/swriter/ui/insertbreak.ui:185
+#: sw/uiconfig/swriter/ui/insertbreak.ui:220
msgctxt "insertbreak|stylelb-atkobject"
msgid "Select the page style for the page that follows the manual page break."
msgstr "አዲስ የ ገጽ ዘዴ ይምረጡ በ እጅ የ ገጽ መጨረሻን ለሚከተለው"
#. LbNq3
-#: sw/uiconfig/swriter/ui/insertbreak.ui:197
+#: sw/uiconfig/swriter/ui/insertbreak.ui:232
msgctxt "insertbreak|pagenumcb"
msgid "Change page number"
msgstr "የ ገጽ ቁጥር መቀየሪያ"
#. cfsdj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:206
+#: sw/uiconfig/swriter/ui/insertbreak.ui:241
msgctxt "insertbreak|pagenumcb-atkobject"
msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break."
msgstr "የ ገጽ ቁጥር መመደቢያ እርስዎ የ ወሰኑትን በ እጅ የ ገጽ መጨረሻ ገጽ ተከትሎ ለሚመጣው ገጽ ነው: ይህ ምርጫ ዝግጁ የሚሆነው እርስዎ የ ተለየ የ ገጽ ዘዴ ከ መደቡ ነው: በ እጅ የ ገጽ መጨረሻ ገጽ ተከትሎ ለሚመጣው ገጽ"
#. iWGZG
-#: sw/uiconfig/swriter/ui/insertbreak.ui:229
+#: sw/uiconfig/swriter/ui/insertbreak.ui:264
msgctxt "insertbreak|pagenumsb-atkobject"
msgid "Enter the new page number for the page that follows the manual page break."
msgstr "አዲስ የ ገጽ ቁጥር ያስገቡ በ እጅ ገጽ መጨረሻን ለሚከተለው"
#. uAMAX
-#: sw/uiconfig/swriter/ui/insertbreak.ui:245
+#: sw/uiconfig/swriter/ui/insertbreak.ui:280
msgctxt "insertbreak|label1"
msgid "Type"
msgstr "አይነት"
#. fYmmW
-#: sw/uiconfig/swriter/ui/insertbreak.ui:269
+#: sw/uiconfig/swriter/ui/insertbreak.ui:304
msgctxt "insertbreak|extended_tip|BreakDialog"
msgid "Inserts a manual line break, column break or a page break at the current cursor position."
msgstr "ማስገቢያ በ እጅ የ መስመር መጨረሻ: የ አምድ መጨረሻ ወይንም የ ገጽ መጨረሻ መጠቆሚያው አሁን ባለበት ቦታ"
@@ -20132,206 +20174,218 @@ msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
-#. dajzZ
+#. iH6Pr
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
+msgctxt "navigatorcontextmenu|STR_COPY_ENTRY"
+msgid "_Copy"
+msgstr ""
+
+#. dajzZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. axFMf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Move Chapter Up"
msgstr ""
#. Radwp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Move Chapter Down"
msgstr ""
#. FJZdw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Outline Level"
msgstr ""
#. GRZmf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr "_ማጥፊያ"
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr "_እንደገና መሰየሚያ..."
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:162
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "ሁሉንም ማሳያ"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:170
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "ሁሉንም መደበቂያ"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:178
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "ሁሉንም መደበቂያ"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:192
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
-msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
-msgid "Outline Level"
-msgstr ""
-
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:212
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:242
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:250
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:258
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:266
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:274
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:282
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:290
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:298
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:306
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:314
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:322
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
+#. vBGAw
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:330
+msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
+msgid "Sort Alphabetically"
+msgstr ""
+
+#. cECoG
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:344
+msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
+msgid "Outline Level"
+msgstr ""
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:358
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr "መጎተቻ ዘዴ"
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:372
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr "ማሳያ"
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:392
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr "ሁሉንም ምድቦች ማሳነሻ"
@@ -23972,19 +24026,19 @@ msgid "Default"
msgstr "ነባር"
#. 8fEFG
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:469
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:466
msgctxt "outlinepositionpage|extended_tip|standard"
msgid "Resets the indent and the spacing values to the default values."
msgstr "የ ማስረጊያ እና ክፍተት ዋጋዎችን ወደ ነባር ዋጋቸው እንደነበር መመለሻ"
#. bLuru
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:490
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:487
msgctxt "outlinepositionpage|label10"
msgid "Position and Spacing"
msgstr "ቦታ እና ክፍተት"
#. ogECa
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:534
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:531
msgctxt "outlinepositionpage|label17"
msgid "Preview"
msgstr ""
@@ -26448,283 +26502,283 @@ msgid "Order"
msgstr "ትእዛዞች"
#. NioK5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:170
+#: sw/uiconfig/swriter/ui/sortdialog.ui:178
msgctxt "sortdialog|up1"
msgid "Ascending"
msgstr "እየጨመረ የሚሄድ"
#. ASaRk
-#: sw/uiconfig/swriter/ui/sortdialog.ui:182
+#: sw/uiconfig/swriter/ui/sortdialog.ui:191
msgctxt "sortdialog|extended_tip|up1"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr "መለያ እየጨመረ በሚሄድ ደንብ (ለምሳሌ 1, 2, 3 ወይንም a, b, c)."
#. yVqST
-#: sw/uiconfig/swriter/ui/sortdialog.ui:193
+#: sw/uiconfig/swriter/ui/sortdialog.ui:202
msgctxt "sortdialog|down1"
msgid "Descending"
msgstr "እየቀነሰ የሚሄድ"
#. YS8zz
-#: sw/uiconfig/swriter/ui/sortdialog.ui:205
+#: sw/uiconfig/swriter/ui/sortdialog.ui:215
msgctxt "sortdialog|extended_tip|down1"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr "እየቀነሰ በሚሄድ ደንብ መለያ (ለምሳሌ 9, 8, 7 ወይንም z, y, x)."
#. P9D2w
-#: sw/uiconfig/swriter/ui/sortdialog.ui:228
+#: sw/uiconfig/swriter/ui/sortdialog.ui:238
msgctxt "sortdialog|up2"
msgid "Ascending"
msgstr "እየጨመረ የሚሄድ"
#. TMLam
-#: sw/uiconfig/swriter/ui/sortdialog.ui:240
+#: sw/uiconfig/swriter/ui/sortdialog.ui:251
msgctxt "sortdialog|extended_tip|up2"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr "መለያ እየጨመረ በሚሄድ ደንብ (ለምሳሌ 1, 2, 3 ወይንም a, b, c)."
#. haL8p
-#: sw/uiconfig/swriter/ui/sortdialog.ui:251
+#: sw/uiconfig/swriter/ui/sortdialog.ui:262
msgctxt "sortdialog|down2"
msgid "Descending"
msgstr "እየቀነሰ የሚሄድ"
#. HMoq2
-#: sw/uiconfig/swriter/ui/sortdialog.ui:263
+#: sw/uiconfig/swriter/ui/sortdialog.ui:275
msgctxt "sortdialog|extended_tip|down2"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr "እየቀነሰ በሚሄድ ደንብ መለያ (ለምሳሌ 9, 8, 7 ወይንም z, y, x)."
#. PHxUv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:286
+#: sw/uiconfig/swriter/ui/sortdialog.ui:298
msgctxt "sortdialog|up3"
msgid "Ascending"
msgstr "እየጨመረ የሚሄድ"
#. jL5gX
-#: sw/uiconfig/swriter/ui/sortdialog.ui:298
+#: sw/uiconfig/swriter/ui/sortdialog.ui:311
msgctxt "sortdialog|extended_tip|up3"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr "መለያ እየጨመረ በሚሄድ ደንብ (ለምሳሌ 1, 2, 3 ወይንም a, b, c)."
#. zsggE
-#: sw/uiconfig/swriter/ui/sortdialog.ui:309
+#: sw/uiconfig/swriter/ui/sortdialog.ui:322
msgctxt "sortdialog|down3"
msgid "Descending"
msgstr "እየቀነሰ የሚሄድ"
#. 8LdjH
-#: sw/uiconfig/swriter/ui/sortdialog.ui:321
+#: sw/uiconfig/swriter/ui/sortdialog.ui:335
msgctxt "sortdialog|extended_tip|down3"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr "እየቀነሰ በሚሄድ ደንብ መለያ (ለምሳሌ 9, 8, 7 ወይንም z, y, x)."
#. 3yLB6
-#: sw/uiconfig/swriter/ui/sortdialog.ui:338
+#: sw/uiconfig/swriter/ui/sortdialog.ui:352
msgctxt "sortdialog|key1"
msgid "Key 1"
msgstr "ቁልፍ 1"
#. GXMCr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:348
+#: sw/uiconfig/swriter/ui/sortdialog.ui:368
msgctxt "sortdialog|extended_tip|key1"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr "ተጨማሪ መለያ መመዘኛ መወሰኛ: እርስዎ እንዲሁም መቀላቀል ይችላሉ የ መለያ ቁልፎችን "
#. XDgAf
-#: sw/uiconfig/swriter/ui/sortdialog.ui:359
+#: sw/uiconfig/swriter/ui/sortdialog.ui:379
msgctxt "sortdialog|key2"
msgid "Key 2"
msgstr "ቁልፍ 2"
#. CgEiB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:368
+#: sw/uiconfig/swriter/ui/sortdialog.ui:394
msgctxt "sortdialog|extended_tip|key2"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr "ተጨማሪ መለያ መመዘኛ መወሰኛ: እርስዎ እንዲሁም መቀላቀል ይችላሉ የ መለያ ቁልፎችን "
#. 8yfoN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:379
+#: sw/uiconfig/swriter/ui/sortdialog.ui:405
msgctxt "sortdialog|key3"
msgid "Key 3"
msgstr "ቁልፍ 3"
#. yS2ky
-#: sw/uiconfig/swriter/ui/sortdialog.ui:388
+#: sw/uiconfig/swriter/ui/sortdialog.ui:420
msgctxt "sortdialog|extended_tip|key3"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr "ተጨማሪ መለያ መመዘኛ መወሰኛ: እርስዎ እንዲሁም መቀላቀል ይችላሉ የ መለያ ቁልፎችን "
#. pFZY3
-#: sw/uiconfig/swriter/ui/sortdialog.ui:411
+#: sw/uiconfig/swriter/ui/sortdialog.ui:443
msgctxt "sortdialog|extended_tip|colsb1"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr "እርስዎ መጠቀም የሚፈልጉትን የ ሰንጠረዥ አምድ ቁጥር ያስገቡ እንደ መሰረታዊ መለያ "
#. n2S79
-#: sw/uiconfig/swriter/ui/sortdialog.ui:434
+#: sw/uiconfig/swriter/ui/sortdialog.ui:466
msgctxt "sortdialog|extended_tip|colsb2"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr "እርስዎ መጠቀም የሚፈልጉትን የ ሰንጠረዥ አምድ ቁጥር ያስገቡ እንደ መሰረታዊ መለያ "
#. ckwsF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:457
+#: sw/uiconfig/swriter/ui/sortdialog.ui:489
msgctxt "sortdialog|extended_tip|colsb3"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr "እርስዎ መጠቀም የሚፈልጉትን የ ሰንጠረዥ አምድ ቁጥር ያስገቡ እንደ መሰረታዊ መለያ "
#. 5bX9W
-#: sw/uiconfig/swriter/ui/sortdialog.ui:478
+#: sw/uiconfig/swriter/ui/sortdialog.ui:510
msgctxt "sortdialog|typelb1-atkobject"
msgid "Key type"
msgstr "የ ቁልፍ አይነት"
#. rAGDj
-#: sw/uiconfig/swriter/ui/sortdialog.ui:479
+#: sw/uiconfig/swriter/ui/sortdialog.ui:511
msgctxt "sortdialog|extended_tip|typelb1"
msgid "Select the sorting option that you want to use."
msgstr "መጠቀም የሚፈልጉትን የመለያ ምርጫዎች ይምረጡ"
#. FxBUC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:501
+#: sw/uiconfig/swriter/ui/sortdialog.ui:533
msgctxt "sortdialog|typelb2-atkobject"
msgid "Key type"
msgstr "የ ቁልፍ አይነት"
#. efrcu
-#: sw/uiconfig/swriter/ui/sortdialog.ui:502
+#: sw/uiconfig/swriter/ui/sortdialog.ui:534
msgctxt "sortdialog|extended_tip|typelb2"
msgid "Select the sorting option that you want to use."
msgstr "መጠቀም የሚፈልጉትን የመለያ ምርጫዎች ይምረጡ"
#. 9D3Mg
-#: sw/uiconfig/swriter/ui/sortdialog.ui:523
+#: sw/uiconfig/swriter/ui/sortdialog.ui:555
msgctxt "sortdialog|typelb3-atkobject"
msgid "Key type"
msgstr "የ ቁልፍ አይነት"
#. RjtNn
-#: sw/uiconfig/swriter/ui/sortdialog.ui:524
+#: sw/uiconfig/swriter/ui/sortdialog.ui:556
msgctxt "sortdialog|extended_tip|typelb3"
msgid "Select the sorting option that you want to use."
msgstr "መጠቀም የሚፈልጉትን የመለያ ምርጫዎች ይምረጡ"
#. m3EJC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:542
+#: sw/uiconfig/swriter/ui/sortdialog.ui:574
msgctxt "sortdialog|1"
msgid "Sort Criteria"
msgstr "መለያ መመዘኛ"
#. dY8Rr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:580
+#: sw/uiconfig/swriter/ui/sortdialog.ui:612
msgctxt "sortdialog|columns"
msgid "Columns"
msgstr "አምዶች"
#. PviSN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:589
+#: sw/uiconfig/swriter/ui/sortdialog.ui:621
msgctxt "sortdialog|extended_tip|columns"
msgid "Sorts the columns in the table according to the current sort options."
msgstr "አምዶችን መለያ በ ሰንጠረዥ ውስጥ እንደ አሁኑ መለያ ምርጫዎች "
#. d7odM
-#: sw/uiconfig/swriter/ui/sortdialog.ui:600
+#: sw/uiconfig/swriter/ui/sortdialog.ui:632
msgctxt "sortdialog|rows"
msgid "Rows"
msgstr "ረድፎች"
#. vsSra
-#: sw/uiconfig/swriter/ui/sortdialog.ui:609
+#: sw/uiconfig/swriter/ui/sortdialog.ui:641
msgctxt "sortdialog|extended_tip|rows"
msgid "Sorts the rows in the table or the paragraphs in the selection according to the current sort options."
msgstr "ረድፎችን መለያ በ ሰንጠረዥ ወይንም በ አንቀጾች ውስጥ እንደ አሁኑ መለያ ምርጫዎች "
#. C4Fuq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:624
+#: sw/uiconfig/swriter/ui/sortdialog.ui:656
msgctxt "sortdialog|label3"
msgid "Direction"
msgstr "አቅጣጫ"
#. JGBYA
-#: sw/uiconfig/swriter/ui/sortdialog.ui:654
+#: sw/uiconfig/swriter/ui/sortdialog.ui:686
msgctxt "sortdialog|tabs"
msgid "Tabs"
msgstr "ማስረጊያ"
#. dE3Av
-#: sw/uiconfig/swriter/ui/sortdialog.ui:663
+#: sw/uiconfig/swriter/ui/sortdialog.ui:695
msgctxt "sortdialog|extended_tip|tabs"
msgid "If the selected paragraphs correspond to a list separated by tabs, select this option."
msgstr "የ ተመረጡትን አንቀጾች ተመሳሳይ ከሆኑ ከ ዝርዝር ጋር በ ማስረጊያ የተለዩ: ይህን ምርጫ ይምረጡ "
#. 7GWNt
-#: sw/uiconfig/swriter/ui/sortdialog.ui:675
+#: sw/uiconfig/swriter/ui/sortdialog.ui:707
msgctxt "sortdialog|character"
msgid "Character "
msgstr "ባህሪ "
#. 9yFT9
-#: sw/uiconfig/swriter/ui/sortdialog.ui:688
+#: sw/uiconfig/swriter/ui/sortdialog.ui:722
msgctxt "sortdialog|extended_tip|character"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr "እርስዎ በ ተመረጠው ቦታ እንደ መለያያ መጠቀም የሚፈልጉትን ባህሪ ያስገቡ "
#. ECCA5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:718
+#: sw/uiconfig/swriter/ui/sortdialog.ui:753
msgctxt "sortdialog|extended_tip|separator"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr "እርስዎ በ ተመረጠው ቦታ እንደ መለያያ መጠቀም የሚፈልጉትን ባህሪ ያስገቡ "
#. XC5zv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:729
+#: sw/uiconfig/swriter/ui/sortdialog.ui:764
msgctxt "sortdialog|delimpb"
msgid "Select..."
msgstr "ይምረጡ..."
#. VhhBB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:739
+#: sw/uiconfig/swriter/ui/sortdialog.ui:774
msgctxt "sortdialog|extended_tip|delimpb"
msgid "Opens the Special Characters dialog, where you can select the character that you want to use as a separator."
msgstr "መክፈቻ የ ተለዩ ባህሪዎች ንግግር: እርስዎ መጠቀም የሚፈልጉትን መለያያ ባህሪዎች የሚመርጡበት "
#. BX6Mq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:760
+#: sw/uiconfig/swriter/ui/sortdialog.ui:795
msgctxt "sortdialog|label4"
msgid "Separator"
msgstr "መለያያ"
#. bBbUV
-#: sw/uiconfig/swriter/ui/sortdialog.ui:808
+#: sw/uiconfig/swriter/ui/sortdialog.ui:843
msgctxt "sortdialog|extended_tip|langlb"
msgid "Select the language that defines the sorting rules."
msgstr "ቋንቋ ይምረጡ ለ መለያ ደንብ መግለጫ "
#. gEcoc
-#: sw/uiconfig/swriter/ui/sortdialog.ui:817
+#: sw/uiconfig/swriter/ui/sortdialog.ui:852
msgctxt "sortdialog|label1"
msgid "Language"
msgstr "ቋንቋ"
#. QnviQ
-#: sw/uiconfig/swriter/ui/sortdialog.ui:837
+#: sw/uiconfig/swriter/ui/sortdialog.ui:872
msgctxt "sortdialog|matchcase"
msgid "Match case"
msgstr "ጉዳዩን ማመሳሰያ"
#. Nd8XG
-#: sw/uiconfig/swriter/ui/sortdialog.ui:847
+#: sw/uiconfig/swriter/ui/sortdialog.ui:882
msgctxt "sortdialog|extended_tip|matchcase"
msgid "Distinguishes between uppercase and lowercase letters when you sort a table. For Asian languages special handling applies."
msgstr "የ ላይኛው ጉዳይ እና የ ታችኛው ጉዳይ ፊደሎች መካከል እርስዎ ሰንጠረዥ ሲለዩ መለያ: ለ እሲያ ቋንቋዎች የ ተለየ አያያዝ ይፈጸማል "
#. Adw2Y
-#: sw/uiconfig/swriter/ui/sortdialog.ui:856
+#: sw/uiconfig/swriter/ui/sortdialog.ui:891
msgctxt "sortdialog|label2"
msgid "Setting"
msgstr "ማሰናጃ"
#. pCcXF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:894
+#: sw/uiconfig/swriter/ui/sortdialog.ui:926
msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Sorts the selected paragraphs or table rows alphabetically or numerically."
msgstr "የ ተመረጡትን አንቀጾች መለያ ወይንም የ ሰንጠረዥ ረድፎች በ ፊደል ቅደም ተከተል ወይንም በ ቁጥር ቅደም ተከተል "
@@ -27144,241 +27198,241 @@ msgid "_Break"
msgstr "_መጨረሻ"
#. LEfit
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:59
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:65
msgctxt "tabletextflowpage|extended_tip|break"
msgid "Select this check box, and then select the type of break that you want to associate with the table."
msgstr "ይምረጡ ይህን ምልክት ማድረጊያ ሳጥን: እና ከዛ ይምረጡ ከ ሰንጠረዡ ጋር ማዛመድ የሚፈልጉትን አይነት መጨረሻ ይምረጡ"
#. 85dHS
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:70
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:76
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_ገጽ"
#. LUPNA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:82
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:88
msgctxt "tabletextflowpage|extended_tip|page"
msgid "Inserts a page break before or after the table."
msgstr "ከ ሰንጠረዥ በ ፊት እና በ ኋላ የ ገጽ መጨረሻ ማስገቢያ"
#. ATESc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:93
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:99
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "አም_ድ"
#. bU9Sj
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:105
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:111
msgctxt "tabletextflowpage|extended_tip|column"
msgid "Inserts a column break before or after the table on a multi-column page."
msgstr "የ አምድ መጨረሻ ማስገቢያ ከ በርካት-አምድ ገጽ በ ፊት እና በ ኋላ"
#. bFvFr
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:116
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:122
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "በፊ_ት"
#. wCFtD
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:128
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:134
msgctxt "tabletextflowpage|extended_tip|before"
msgid "Inserts a page or column break before the table."
msgstr "ከ ሰንጠረዥ በ ፊት ገጽ ወይንም የ አምድ መጨረሻ ማስገቢያ"
#. x9LiQ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:139
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:145
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_በኋላ"
#. y4ECA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:157
msgctxt "tabletextflowpage|extended_tip|after"
msgid "Inserts a page or column break after the table."
msgstr "ከ ሰንጠረዥ በ ኋላ ገጽ ወይንም የ አምድ መጨረሻ ማስገቢያ"
#. ZKgd9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:183
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ከገጽ ዘዴ_ዎች ጋር"
#. NMMdy
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:189
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:195
msgctxt "tabletextflowpage|extended_tip|pagestyle"
msgid "Applies the page style that you specify to the first page that follows the page break."
msgstr "የ ገጽ ዘዴ መፈጸሚያ እርስዎ በ ሚወስኑት በ መጀመሪያው ገጽ ላይ የ ገጽ መጨረሻን ተከትሎ"
#. 4ifHW
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:200
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:206
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "የ ገጽ _ቁጥር"
#. b8xXZ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|extended_tip|pagenonf"
msgid "Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked."
msgstr "የ ገጽ ቁጥር ያስገቡ ለ መጀመሪያው ገጽ መጨረሻውን ተከትሎ: እርስዎ መቀጠል የሚፈልጉ ከሆነ የ አሁኑ የ ገጽ ቁጥር መስጫ: ምልክት ማድረጊያውን ይተዉት ምልክት እንደ ተደረገበት "
#. 5oC83
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:242
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:248
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "ከ ገጽ ዘዴ ጋር"
#. NENyo
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:243
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:249
msgctxt "tabletextflowpage|extended_tip|pagestylelb"
msgid "Select the page style that you want to apply to the first page that follows the break."
msgstr "ይምረጡ የ ገጽ ዘዴ እርስዎ መፈጸም በሚፈልጉት በ መጀመሪያው ገጽ ላይ የ ገጽ መጨረሻን ተከትሎ"
#. CZpDc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:260
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:266
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "_ሰንጠረዦች በገጾች እና አምዶች ባሻገር እንዲከፈሉ መፍቀጃ"
#. QXXZK
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:268
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
msgctxt "tabletextflowpage|extended_tip|split"
msgid "Allows a page break or column break between the rows of a table."
msgstr "የ ገጽ መጨረሻ ወይንም የ አምድ መጨረሻ ማስቻያ በ ረድፎች እና በ ሰንጠረዥ መካከል"
#. SKeze
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:279
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:285
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "ረድፍ በገጾች እና አምዶች ባ_ሻገር እንዲከፈሉ መፍቀጃ"
#. HYN9t
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:295
msgctxt "tabletextflowpage|extended_tip|splitrow"
msgid "Allows a page break or column break inside a row of the table."
msgstr "የ ገጽ መጨረሻ ወይንም የ አምድ መጨረሻ በ ረድፍ ሰንጠረዥ ውስጥ ማስቻያ: "
#. jGCyC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "ከሚቀጥለው አንቀጽ ጋር _አስቀምጥ"
#. iFwuV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:308
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:314
msgctxt "tabletextflowpage|extended_tip|keep"
msgid "Keeps the table and the following paragraph together when you insert the break."
msgstr "ሰንጠረዥ እና የሚቀጥለውን አንቀጽ አብሮ ማድረጊያ: እርስዎ መጨረሻ በሚያስገቡ ጊዜ"
#. QAY45
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:327
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:333
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "የ ጽሁፍ _አቅጣጫ"
#. JsEEP
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:341
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:347
msgctxt "tabletextflowpage|liststore1"
msgid "Horizontal"
msgstr "በ አግድም"
#. RgbAV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:342
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
msgstr "በ ቁመት (ከ ላይ ወደ ታች)"
#. 7yaYB
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:349
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
msgstr "በ ቁመት (ከ ታች ወደ ላይ)"
#. 5CGH9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:344
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:350
msgctxt "tabletextflowpage|liststore1"
msgid "Use superordinate object settings"
msgstr "ከፍተኛ የ እቃ ማሰናጃዎች መጠቀሚያ"
#. FJnts
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:354
msgctxt "tabletextflowpage|extended_tip|textorientation"
msgid "Select the orientation for the text in the cells."
msgstr ""
#. tWodL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:371
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:377
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "ራስጌ መ_ድገሚያ"
#. EpMSY
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:379
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:385
msgctxt "tabletextflowpage|extended_tip|headline"
msgid "Repeats the table heading on a new page when the table spans more than one page."
msgstr "የ ሰንጠረዥ ራስጌ መድገሚያ በ አዲስ ገጽ ላይ ሰንጠረዡ ከ አንድ ገጽ በላይ በሚሆን ጊዜ"
#. 7R7Gn
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:398
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:404
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "መጀመሪያው "
#. KEVNR
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:411
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:417
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "ረድፎች"
#. hLzfu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:427
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:433
msgctxt "tabletextflowpage|extended_tip|repeatheadernf"
msgid "Enter the number of rows to include in the heading."
msgstr "በ ራስጌ ውስጥ የሚካተተውን የ ረድፎች ቁጥር ያስገቡ"
#. yLhbA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:454
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "የ ጽሁፍ ፍሰት"
#. FRUDs
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:484
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:490
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "በ _ቁመት ማሰለፊያ"
#. YLPEL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:498
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
msgctxt "tabletextflowpage|liststore2"
msgid "Top"
msgstr "ከ ላይ"
#. 5Pb5v
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:499
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:505
msgctxt "tabletextflowpage|liststore2"
msgid "Centered"
msgstr "መሀከል"
#. 4aZFz
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:500
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:506
msgctxt "tabletextflowpage|liststore2"
msgid "Bottom"
msgstr "ከ ታች"
#. SwHrE
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:510
msgctxt "tabletextflowpage|extended_tip|vertorient"
msgid "Specify the vertical text alignment for the cells in the table."
msgstr "በ ሰንጠረዥ ክፍል ውስጥ ጽሁፍ በ ቁመት ማሰለፊያ መወሰኛ"
#. ZtGTC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:519
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:525
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ማሰለፊያ"
#. GJKSu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:533
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:539
msgctxt "tabletextflowpage|extended_tip|TableTextFlowPage"
msgid "Set the text flow options for the text before and after the table."
msgstr "ከ ሰንጠረዥ በ ፊት እና በ ኋላ የ ጽሁፍ ፍሰት ምርጫ ማሰናጃ"
diff --git a/source/am/uui/messages.po b/source/am/uui/messages.po
index 087850ad8ee..5f5d4912e76 100644
--- a/source/am/uui/messages.po
+++ b/source/am/uui/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-11-19 15:45+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
"PO-Revision-Date: 2021-09-13 16:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/am/>\n"
@@ -40,17 +40,14 @@ msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "ኢላማው ቀደም ብሎ ነበር"
-#. KgnBz
+#. KneVX
#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
-"You are about to save/export a password protected basic library containing module(s) \n"
+"You are about to save/export a password protected BASIC library containing module(s) \n"
"$(ARG1)\n"
"which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?"
msgstr ""
-"እርስዎ አሁን ሊያስቀምጡ/ሊልኩ ነው በ መግቢያ ቃል የሚጠበቅ መሰረታዊ መጻህፍት ቤት የያዘ ክፍል(ሎች) \n"
-"$(ARG1)\n"
-"በ binary format ለማስቀመጥ በጣም ትልቅ ነው: ሌሎች ተጠቃሚዎች የ ቤተ መጻህፍቱ መግቢያ ቃል የሌላቸው ማክሮስ እንዲያስኬዱ በ እነዚህ ክፍል(ሎች) እርስዎ እነዚህን ክፍል መከፋፈል አለብዎት ወደ ተለያየ ትንንሽ ክፍል መከፈል አለባቸው: መቀጠል ይፈልጋሉ ማስቀመጥ/መላክ ይህን መጻህፍት ቤት?"
#. 3rNDF
#: uui/inc/ids.hrc:42
diff --git a/source/am/vcl/messages.po b/source/am/vcl/messages.po
index 3c88e905ebd..48a4fc15c4b 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: 2022-02-09 16:47+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
"PO-Revision-Date: 2021-11-24 11:09+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/am/>\n"
@@ -848,346 +848,219 @@ msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "ማናቸውም አይነት"
-#. FD7Bf
-#: vcl/inc/strings.hrc:70
-msgctxt "STR_FPICKER_AUTO_EXTENSION"
-msgid "~Automatic file name extension"
-msgstr "~ራሱ በራሱ የፋይል ተቀጥያዎችን መሰየሚያ"
-
-#. 9ECLu
-#: vcl/inc/strings.hrc:71
-msgctxt "STR_FPICKER_PASSWORD"
-msgid "Save with pass~word"
-msgstr "በ መግቢያ~ቃል ማስቀመጫ"
-
-#. nyers
-#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:73
-msgctxt "STR_FPICKER_GPGENCRYPT"
-msgid "Encrypt with ~GPG key"
-msgstr "በ ~GPG ቁልፍ መመስጠሪያ"
-
-#. Z2MmL
-#: vcl/inc/strings.hrc:74
-msgctxt "STR_FPICKER_FILTER_OPTIONS"
-msgid "~Edit filter settings"
-msgstr "የማጣሪያ ማሰናጃዎች ~ማረሚያ"
-
-#. ZDE7y
-#: vcl/inc/strings.hrc:75
-msgctxt "STR_FPICKER_READONLY"
-msgid "~Read-only"
-msgstr "~ለንባብ- ብቻ"
-
-#. EYvCH
-#: vcl/inc/strings.hrc:76
-msgctxt "STR_FPICKER_INSERT_AS_LINK"
-msgid "Insert as ~Link"
-msgstr "እንደ ~አገናኝ ማስገቢያ"
-
-#. zpPD6
-#: vcl/inc/strings.hrc:77
-msgctxt "STR_FPICKER_SHOW_PREVIEW"
-msgid "Pr~eview"
-msgstr "ቅድመ~እይታ"
-
-#. L7QTs
-#: vcl/inc/strings.hrc:78
-msgctxt "STR_FPICKER_PLAY"
-msgid "~Play"
-msgstr "~ማጫወቻ"
-
-#. rPLAU
-#: vcl/inc/strings.hrc:79
-msgctxt "STR_FPICKER_VERSION"
-msgid "~Version:"
-msgstr "~እትም :"
-
-#. dMPHM
-#: vcl/inc/strings.hrc:80
-msgctxt "STR_FPICKER_TEMPLATES"
-msgid "S~tyles:"
-msgstr "ዘ~ዴዎች :"
-
-#. TeuRr
-#: vcl/inc/strings.hrc:81
-msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
-msgid "Frame Style: "
-msgstr "የ ክፈፍ ዘዴ: "
-
-#. Cq63y
-#: vcl/inc/strings.hrc:82
-msgctxt "STR_FPICKER_IMAGE_ANCHOR"
-msgid "A~nchor: "
-msgstr "ማ~ስቆሚያ: "
-
-#. 7yacA
-#: vcl/inc/strings.hrc:83
-msgctxt "STR_FPICKER_SELECTION"
-msgid "~Selection"
-msgstr "~ምርጫዎች"
-
-#. QFCuE
-#: vcl/inc/strings.hrc:84
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
-msgid "Select Path"
-msgstr "መንገድ ይምረጡ"
-
-#. AoCzG
-#: vcl/inc/strings.hrc:85
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
-msgid "Please select a folder."
-msgstr "እባክዎን ፎልደር ይምረጡ"
-
-#. vcC7G
-#: vcl/inc/strings.hrc:86
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
-msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
-msgstr "ፋይል በዚህ ስም \"$filename$\" ቀደም ሲል ነበር፡ ሊቀይሩት ይፈልጋሉ?"
-
-#. MKKjJ
-#: vcl/inc/strings.hrc:87
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
-msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
-msgstr "ፋይሉ ቀደም ሲል ነበር በ \"$dirname$\". ውስጥ፡ መቀየር በ ላዩ ላይ ደርቦ ይጽፍበታል"
-
-#. pF5CC
-#: vcl/inc/strings.hrc:88
-msgctxt "STR_FPICKER_ALLFORMATS"
-msgid "All Formats"
-msgstr "በሁሉም አቀራረብ"
-
-#. xJLGT
-#: vcl/inc/strings.hrc:89
-msgctxt "STR_FPICKER_OPEN"
-msgid "Open"
-msgstr "መክፈቻ"
-
-#. W5xGp
-#: vcl/inc/strings.hrc:90
-msgctxt "STR_FPICKER_SAVE"
-msgid "Save"
-msgstr "ማስቀመጫ"
-
-#. QxrYy
-#: vcl/inc/strings.hrc:91
-msgctxt "STR_FPICKER_TYPE"
-msgid "File ~type"
-msgstr "የፋይል ~አይነት"
-
#. qfg3C
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:70
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "ምንም አይነት ፊደል በስርአቱ ውስጥ የለም"
#. rWAuM
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:72
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "ገጾች የሉም"
#. SFF7G
-#: vcl/inc/strings.hrc:96
+#: vcl/inc/strings.hrc:73
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr "ቅድመ እይታ ተሰናክሏል"
#. xMtCc
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:74
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "ወደ ፋይል ማተሚያ..."
#. GBDRJ
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:75
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "ነባር ማተሚያ"
#. 8BSG2
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:76
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "እባክዎን የ ፋክስ ቁጥር ያስገቡ"
#. GtHUE
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:77
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "ማስተካከያ"
#. yPJTL
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:79
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "ያስገቡት ጽሁፍ ለዚህ ጽሁፍ የተፈቀደውን ከፍተኛ እርዝመት አልፏል: ስለዚህ ጽሁፉ ተቆርጧል"
#. Dk4vc
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:81
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "CPU threads: "
#. 5DyEd
-#: vcl/inc/strings.hrc:105
+#: vcl/inc/strings.hrc:82
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "ስርአት: "
#. Yqrwo
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:83
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr "UI render: "
#. HnDDn
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:84
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr "Skia/Vulkan"
#. f5k6D
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:85
msgctxt "SV_APP_SKIA_METAL"
msgid "Skia/Metal"
msgstr "Skia/Metal"
#. n2Hto
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:86
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr "Skia/Raster"
#. ZitRE
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:87
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "ነባር"
#. 4gWk5
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:89
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "መረጃ"
#. 5gAyW
-#: vcl/inc/strings.hrc:113
+#: vcl/inc/strings.hrc:90
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "ማስጠንቀቂያ"
#. buqyG
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:91
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "ስህተት"
#. 3CTTS
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:92
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "ማረጋገጫ"
#. drUB5
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:94
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "መስመር ማጥፊያ"
#. cxFKH
-#: vcl/inc/strings.hrc:118
+#: vcl/inc/strings.hrc:95
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "በርካታ መስመሮች ማጥፊያ"
#. 7KPRL
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:96
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "በርካታ መስመሮች ማስገቢያ"
#. R2cyr
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:97
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "ማስገቢያ '$1'"
#. 66FYV
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:98
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "ማጥፊያ '$1'"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:124
+#: vcl/inc/strings.hrc:101
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ረድፍ: %1, አምድ: %2"
#. 5RjLF
-#: vcl/inc/strings.hrc:125
+#: vcl/inc/strings.hrc:102
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ባዶ ሜዳ"
#. TcNJT
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:104
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr "ቀን"
#. DhSTi
-#: vcl/inc/strings.hrc:128
+#: vcl/inc/strings.hrc:105
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr "ሳምንት"
#. 5Eyy3
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:106
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ዛሬ"
#. rSVhV
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:108
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ደረጃዎች"
#. wEp9A
-#: vcl/inc/strings.hrc:132
+#: vcl/inc/strings.hrc:109
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~መጨረሻ"
#. ygXBw
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:110
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~ይቀጥሉ >"
#. 5MSDe
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:111
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ወደ ኋ~ላ"
#. urFMt
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:113
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "መለያያ"
#. eCq2K
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:115
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
msgid "Default file formats not registered"
msgstr "ነባር የ ፋይል አቀራረብ አልተመዘገበም"
#. TDctx
-#: vcl/inc/strings.hrc:139
+#: vcl/inc/strings.hrc:116
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
msgid ""
"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
@@ -1199,7 +1072,7 @@ msgstr ""
"ይምረጡ እሺ እርስዎ ነባር የ ፋይል አቀራረብ መቀየር የሚፈልጉ ከሆነ:"
#. EkzSW
-#: vcl/inc/strings.hrc:141
+#: vcl/inc/strings.hrc:118
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
@@ -1207,31 +1080,31 @@ msgid ""
msgstr ""
#. 4jvA7
-#: vcl/inc/strings.hrc:143
+#: vcl/inc/strings.hrc:120
msgctxt "STR_GBU"
msgid "Graphics Backend used: %1"
msgstr ""
#. FBgmu
-#: vcl/inc/strings.hrc:144
+#: vcl/inc/strings.hrc:121
msgctxt "STR_PASSED"
msgid "Passed Tests: %1"
msgstr ""
#. 3nqZp
-#: vcl/inc/strings.hrc:145
+#: vcl/inc/strings.hrc:122
msgctxt "STR_QUIRKY"
msgid "Quirky Tests: %1"
msgstr ""
#. KhjFD
-#: vcl/inc/strings.hrc:146
+#: vcl/inc/strings.hrc:123
msgctxt "STR_FAILED"
msgid "Failed Tests: %1"
msgstr ""
#. uKGQi
-#: vcl/inc/strings.hrc:147
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SKIPPED"
msgid "Skipped Tests: %1"
msgstr ""
diff --git a/source/an/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po b/source/an/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
index e8005040e66..f7473df6d66 100644
--- a/source/an/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/an/connectivity/registry/mysql_jdbc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2018-10-21 19:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,13 +35,3 @@ msgctxt ""
"value.text"
msgid "MySQL (ODBC)"
msgstr ""
-
-#. rcnrk
-#: Drivers.xcu
-msgctxt ""
-"Drivers.xcu\n"
-".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
-"DriverTypeDisplayName\n"
-"value.text"
-msgid "MySQL (Native)"
-msgstr ""
diff --git a/source/an/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po b/source/an/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
index 5a52fcdcf24..f2c3fdeb252 100644
--- a/source/an/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
+++ b/source/an/connectivity/registry/mysqlc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2018-10-02 16:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496440.000000\n"
-#. NHVFU
+#. bTkZz
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "MySQL Connector"
+msgid "MySQL/MariaDB Connector"
msgstr ""
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index c75df28ccec..cd68fdfc7c9 100644
--- a/source/an/cui/messages.po
+++ b/source/an/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-18 12:16+0100\n"
-"PO-Revision-Date: 2022-01-17 16:38+0000\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
+"PO-Revision-Date: 2022-03-31 22:30+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"
@@ -2141,10 +2141,10 @@ msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
msgstr ""
-#. YFfQV
+#. BT9KG
#: cui/inc/strings.hrc:403
msgctxt "RID_CUISTR_ZIPFAIL"
-msgid "Creation of Zip file failed!"
+msgid "Creation of ZIP file failed."
msgstr ""
#. 9QSQr
@@ -2228,10 +2228,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"
msgstr ""
-#. DUvk6
+#. jpiRT
#: cui/inc/tipoftheday.hrc:62
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon style."
+msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon Theme."
msgstr ""
#. RejqP
@@ -3045,11 +3045,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
-#. BnMpb
+#. DBfad
#. local help missing
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
+msgid "Use Format ▸ Align Objects in Impress or Shape ▸ Align Objects in Draw (or the context menu) for precise positioning of objects: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
@@ -4448,71 +4448,77 @@ msgctxt "accelconfigpage|extended_tip|save"
msgid "Saves the current shortcut key configuration, so that you can load it later."
msgstr ""
-#. mJmga
-#: cui/uiconfig/ui/accelconfigpage.ui:297
+#. oSRQ7
+#: cui/uiconfig/ui/accelconfigpage.ui:295
+msgctxt "accelconfigpage|tooltip|reset"
+msgid "Unsaved modifications to shortcut keys are reverted."
+msgstr ""
+
+#. stv4J
+#: cui/uiconfig/ui/accelconfigpage.ui:298
msgctxt "accelconfigpage|extended_tip|reset"
-msgid "Resets modified values back to the default values."
+msgid "Revert any changes made to keyboard shortcuts to the assignments that were present when this dialog was opened."
msgstr ""
#. BKAsD
-#: cui/uiconfig/ui/accelconfigpage.ui:348
+#: cui/uiconfig/ui/accelconfigpage.ui:349
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr ""
#. nGtvW
-#: cui/uiconfig/ui/accelconfigpage.ui:352
+#: cui/uiconfig/ui/accelconfigpage.ui:353
msgctxt "accelconfigpage|extended_tip|searchEntry"
msgid "Type here to search in the list of functions."
msgstr ""
#. T5FGo
-#: cui/uiconfig/ui/accelconfigpage.ui:374
+#: cui/uiconfig/ui/accelconfigpage.ui:375
#, fuzzy
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "ID Categoría"
#. xfWzA
-#: cui/uiconfig/ui/accelconfigpage.ui:388
+#: cui/uiconfig/ui/accelconfigpage.ui:389
#, fuzzy
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "~Función"
#. 7PCeb
-#: cui/uiconfig/ui/accelconfigpage.ui:402
+#: cui/uiconfig/ui/accelconfigpage.ui:403
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr ""
#. 8DnFJ
-#: cui/uiconfig/ui/accelconfigpage.ui:446
+#: cui/uiconfig/ui/accelconfigpage.ui:447
msgctxt "accelconfigpage|extended_tip|category"
msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
msgstr ""
#. wGm8q
-#: cui/uiconfig/ui/accelconfigpage.ui:493
+#: cui/uiconfig/ui/accelconfigpage.ui:494
msgctxt "accelconfigpage|extended_tip|function"
msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
msgstr ""
#. PzCaG
-#: cui/uiconfig/ui/accelconfigpage.ui:539
+#: cui/uiconfig/ui/accelconfigpage.ui:540
msgctxt "accelconfigpage|extended_tip|keys"
msgid "Displays the shortcut keys that are assigned to the selected function."
msgstr ""
#. CqdJF
-#: cui/uiconfig/ui/accelconfigpage.ui:563
+#: cui/uiconfig/ui/accelconfigpage.ui:564
#, fuzzy
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "Funcions"
#. kVeWd
-#: cui/uiconfig/ui/accelconfigpage.ui:576
+#: cui/uiconfig/ui/accelconfigpage.ui:577
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
msgstr ""
@@ -5738,10 +5744,9 @@ msgstr ""
#. b2Ym7
#: cui/uiconfig/ui/borderpage.ui:676
-#, fuzzy
msgctxt "borderpage|label12"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. GVjnt
#: cui/uiconfig/ui/breaknumberoption.ui:29
@@ -5885,7 +5890,7 @@ msgstr ""
#: cui/uiconfig/ui/bulletandposition.ui:430
msgctxt "bulletandposition|label2"
msgid "Properties"
-msgstr ""
+msgstr "Propiedatz"
#. CrtKB
#: cui/uiconfig/ui/bulletandposition.ui:462
@@ -6402,10 +6407,9 @@ msgstr ""
#. jDFtf
#: cui/uiconfig/ui/cellalignment.ui:328
-#, fuzzy
msgctxt "cellalignment|labelProperties"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. eByBx
#: cui/uiconfig/ui/cellalignment.ui:364
@@ -7575,24 +7579,28 @@ msgid "HSB"
msgstr ""
#. sesZZ
+#. This is the C of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:639
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr ""
#. Gw7rx
+#. This is the M of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:654
msgctxt "colorpickerdialog|label6"
msgid "_Magenta:"
msgstr ""
#. Uv2KG
+#. This is the Y of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:669
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
msgstr ""
#. aFvbe
+#. This is the K of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:684
msgctxt "colorpickerdialog|label8"
msgid "_Key:"
@@ -7629,7 +7637,7 @@ msgid "CMYK"
msgstr ""
#. HuUmH
-#: cui/uiconfig/ui/colorpickerdialog.ui:815
+#: cui/uiconfig/ui/colorpickerdialog.ui:812
msgctxt "extended tip | ColorPicker"
msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
msgstr ""
@@ -7979,16 +7987,15 @@ msgstr ""
#. AFMP6
#: cui/uiconfig/ui/cuiimapdlg.ui:8
-#, fuzzy
msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. DcBMH
#: cui/uiconfig/ui/cuiimapdlg.ui:95
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
-msgstr ""
+msgstr "_URL:"
#. EhUMH
#: cui/uiconfig/ui/cuiimapdlg.ui:115
@@ -12119,10 +12126,9 @@ msgstr ""
#. VGiHW
#: cui/uiconfig/ui/linestyletabpage.ui:468
-#, fuzzy
msgctxt "linestyletabpage|label1"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. xjb8g
#: cui/uiconfig/ui/linetabpage.ui:78
@@ -17301,176 +17307,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automatica"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr ""
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr ""
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr ""
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. SXzWW
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "_Theme:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. F7kTw
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Theme"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr ""
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr ""
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr ""
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
@@ -17500,224 +17482,224 @@ msgid "_Orientation:"
msgstr ""
#. mtFWf
-#: cui/uiconfig/ui/pageformatpage.ui:131
+#: cui/uiconfig/ui/pageformatpage.ui:135
msgctxt "pageformatpage|radiobuttonPortrait"
msgid "_Portrait"
msgstr ""
#. LGkU8
-#: cui/uiconfig/ui/pageformatpage.ui:150
+#: cui/uiconfig/ui/pageformatpage.ui:154
msgctxt "pageformatpage|radiobuttonLandscape"
msgid "L_andscape"
msgstr ""
#. PTwDK
-#: cui/uiconfig/ui/pageformatpage.ui:172
+#: cui/uiconfig/ui/pageformatpage.ui:176
msgctxt "pageformatpage|labelTextFlow"
msgid "_Text direction:"
msgstr ""
#. FmMdc
-#: cui/uiconfig/ui/pageformatpage.ui:228
+#: cui/uiconfig/ui/pageformatpage.ui:232
msgctxt "pageformatpage|labelPaperTray"
msgid "Paper _tray:"
msgstr ""
#. u8DFb
-#: cui/uiconfig/ui/pageformatpage.ui:260
+#: cui/uiconfig/ui/pageformatpage.ui:264
msgctxt "pageformatpage|labelPaperFormat"
msgid "Paper Format"
msgstr ""
#. 479hs
-#: cui/uiconfig/ui/pageformatpage.ui:305
+#: cui/uiconfig/ui/pageformatpage.ui:309
#, fuzzy
msgctxt "pageformatpage|labelLeftMargin"
msgid "Left:"
msgstr "Enta la cucha"
#. EoGm2
-#: cui/uiconfig/ui/pageformatpage.ui:319
+#: cui/uiconfig/ui/pageformatpage.ui:323
msgctxt "pageformatpage|labelInner"
msgid "I_nner:"
msgstr ""
#. 7FFiR
-#: cui/uiconfig/ui/pageformatpage.ui:357
+#: cui/uiconfig/ui/pageformatpage.ui:361
#, fuzzy
msgctxt "pageformatpage|labelRightMargin"
msgid "Right:"
msgstr "Enta la dreita"
#. RfnGu
-#: cui/uiconfig/ui/pageformatpage.ui:371
+#: cui/uiconfig/ui/pageformatpage.ui:375
msgctxt "pageformatpage|labelOuter"
msgid "O_uter:"
msgstr ""
#. tGMLA
-#: cui/uiconfig/ui/pageformatpage.ui:404
+#: cui/uiconfig/ui/pageformatpage.ui:408
#, fuzzy
msgctxt "pageformatpage|labelTopMargin"
msgid "Top:"
msgstr "Cobalto"
#. eaqBS
-#: cui/uiconfig/ui/pageformatpage.ui:430
+#: cui/uiconfig/ui/pageformatpage.ui:434
#, fuzzy
msgctxt "pageformatpage|labelBottomMargin"
msgid "Bottom:"
msgstr "Cobaixo"
#. TYx6B
-#: cui/uiconfig/ui/pageformatpage.ui:456
+#: cui/uiconfig/ui/pageformatpage.ui:460
msgctxt "pageformatpage|labelGutterMargin"
msgid "Gutter:"
msgstr ""
#. Tvwu6
-#: cui/uiconfig/ui/pageformatpage.ui:484
+#: cui/uiconfig/ui/pageformatpage.ui:488
msgctxt "pageformatpage|labelMargins"
msgid "Margins"
msgstr ""
#. WcuCU
-#: cui/uiconfig/ui/pageformatpage.ui:517
+#: cui/uiconfig/ui/pageformatpage.ui:521
msgctxt "pageformatpage|labelPageLayout"
msgid "_Page layout:"
msgstr ""
#. vnXWF
-#: cui/uiconfig/ui/pageformatpage.ui:531
+#: cui/uiconfig/ui/pageformatpage.ui:535
msgctxt "pageformatpage|labelPageNumbers"
msgid "Page numbers:"
msgstr ""
#. tyvA3
-#: cui/uiconfig/ui/pageformatpage.ui:543
+#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
msgstr ""
#. DtZQG
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:547
+#: cui/uiconfig/ui/pageformatpage.ui:551
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
msgstr ""
#. p2egb
-#: cui/uiconfig/ui/pageformatpage.ui:552
+#: cui/uiconfig/ui/pageformatpage.ui:556
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr ""
#. 46djR
-#: cui/uiconfig/ui/pageformatpage.ui:566
+#: cui/uiconfig/ui/pageformatpage.ui:570
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr ""
#. xetCH
-#: cui/uiconfig/ui/pageformatpage.ui:567
+#: cui/uiconfig/ui/pageformatpage.ui:571
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr ""
#. 47EHF
-#: cui/uiconfig/ui/pageformatpage.ui:568
+#: cui/uiconfig/ui/pageformatpage.ui:572
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr ""
#. ALSy9
-#: cui/uiconfig/ui/pageformatpage.ui:569
+#: cui/uiconfig/ui/pageformatpage.ui:573
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr ""
#. Fhvzk
-#: cui/uiconfig/ui/pageformatpage.ui:591
+#: cui/uiconfig/ui/pageformatpage.ui:595
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr ""
#. 79BH9
-#: cui/uiconfig/ui/pageformatpage.ui:603
+#: cui/uiconfig/ui/pageformatpage.ui:607
#, fuzzy
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "~Horizontal"
#. krxQZ
-#: cui/uiconfig/ui/pageformatpage.ui:617
+#: cui/uiconfig/ui/pageformatpage.ui:621
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr ""
#. FPLFK
-#: cui/uiconfig/ui/pageformatpage.ui:631
+#: cui/uiconfig/ui/pageformatpage.ui:635
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr ""
#. bqcXW
-#: cui/uiconfig/ui/pageformatpage.ui:648
+#: cui/uiconfig/ui/pageformatpage.ui:651
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
msgstr ""
#. FnoPF
-#: cui/uiconfig/ui/pageformatpage.ui:672
+#: cui/uiconfig/ui/pageformatpage.ui:675
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
msgstr ""
#. LF4Ex
-#: cui/uiconfig/ui/pageformatpage.ui:687
+#: cui/uiconfig/ui/pageformatpage.ui:690
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Left"
msgstr ""
#. DSBY5
-#: cui/uiconfig/ui/pageformatpage.ui:688
+#: cui/uiconfig/ui/pageformatpage.ui:691
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
#. AosV5
-#: cui/uiconfig/ui/pageformatpage.ui:704
+#: cui/uiconfig/ui/pageformatpage.ui:701
msgctxt "pageformatpage|checkRtlGutter"
msgid "Gutter on right side of page"
msgstr ""
#. cuazP
-#: cui/uiconfig/ui/pageformatpage.ui:718
+#: cui/uiconfig/ui/pageformatpage.ui:715
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:722
+#: cui/uiconfig/ui/pageformatpage.ui:719
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:727
+#: cui/uiconfig/ui/pageformatpage.ui:724
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:742
+#: cui/uiconfig/ui/pageformatpage.ui:754
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr ""
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:763
+#: cui/uiconfig/ui/pageformatpage.ui:775
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -17865,10 +17847,9 @@ msgstr ""
#. pfaYp
#: cui/uiconfig/ui/paragalignpage.ui:372
-#, fuzzy
msgctxt "paragalignpage|labelFL_PROPERTIES"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. FTBKZ
#: cui/uiconfig/ui/paraindentspacing.ui:72
@@ -19627,10 +19608,9 @@ msgstr ""
#. JsPjd
#: cui/uiconfig/ui/shadowtabpage.ui:245
-#, fuzzy
msgctxt "shadowtabpage|label"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. SYFAn
#: cui/uiconfig/ui/shadowtabpage.ui:290
@@ -21002,10 +20982,9 @@ msgstr ""
#. pbjT5
#: cui/uiconfig/ui/textanimtabpage.ui:527
-#, fuzzy
msgctxt "textanimtabpage|label2"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. 7cYvC
#: cui/uiconfig/ui/textanimtabpage.ui:543
@@ -21206,10 +21185,10 @@ msgctxt "textcolumnstabpage|extended_tip|MTR_FLD_COL_SPACING"
msgid "Enter the amount of space to leave between the columns."
msgstr ""
-#. 4u4bL
+#. 7Fgep
#: cui/uiconfig/ui/textcolumnstabpage.ui:108
msgctxt "textcolumnstabpage|extended_tip|TextColumnsPage"
-msgid "Sets the columns layout properties for text in the selected drawing or text object."
+msgid "Sets the columns’ layout properties for text in the selected drawing or text object."
msgstr ""
#. 3Huae
@@ -22282,38 +22261,38 @@ msgid "In columns view layout you see pages in a given number of columns side by
msgstr ""
#. opsyv
-#: cui/uiconfig/ui/zoomdialog.ui:367
+#: cui/uiconfig/ui/zoomdialog.ui:366
#, fuzzy
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr "Columna"
#. psRyA
-#: cui/uiconfig/ui/zoomdialog.ui:368
+#: cui/uiconfig/ui/zoomdialog.ui:367
msgctxt "zoomdialog|extended_tip|columnssb"
msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
msgstr ""
#. rhLet
-#: cui/uiconfig/ui/zoomdialog.ui:387
+#: cui/uiconfig/ui/zoomdialog.ui:386
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr ""
#. egdNS
-#: cui/uiconfig/ui/zoomdialog.ui:400
+#: cui/uiconfig/ui/zoomdialog.ui:398
msgctxt "zoomdialog|extended_tip|bookmode"
msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number."
msgstr ""
#. pdZqi
-#: cui/uiconfig/ui/zoomdialog.ui:416
+#: cui/uiconfig/ui/zoomdialog.ui:414
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr ""
#. DWWgJ
-#: cui/uiconfig/ui/zoomdialog.ui:448
+#: cui/uiconfig/ui/zoomdialog.ui:446
msgctxt "zoomdialog|extended_tip|ZoomDialog"
msgid "Reduces or enlarges the screen display."
msgstr ""
diff --git a/source/an/dbaccess/messages.po b/source/an/dbaccess/messages.po
index 2614545d9d4..829a066af44 100644
--- a/source/an/dbaccess/messages.po
+++ b/source/an/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
"PO-Revision-Date: 2022-01-17 16:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/an/>\n"
@@ -1864,10 +1864,10 @@ msgctxt "STR_WRITER_PATH_OR_FILE"
msgid "Path to the Writer document"
msgstr ""
-#. zQxCp
+#. JScWd
#: dbaccess/inc/strings.hrc:335
msgctxt "STR_MYSQL_DATABASE_NAME"
-msgid "Name of the MySQL database"
+msgid "Name of the MySQL/MariaDB database"
msgstr ""
#. uhRMQ
@@ -2052,10 +2052,10 @@ msgctxt "STR_PAGETITLE_ORACLE"
msgid "Set up Oracle database connection"
msgstr ""
-#. KbAqW
+#. rdZFv
#: dbaccess/inc/strings.hrc:368
msgctxt "STR_PAGETITLE_MYSQL"
-msgid "Set up MySQL connection"
+msgid "Set up MySQL/MariaDB connection"
msgstr ""
#. uJuNs
@@ -2076,10 +2076,10 @@ msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
msgid "Set up user authentication"
msgstr ""
-#. YgsyA
+#. twW6d
#: dbaccess/inc/strings.hrc:372
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
-msgid "Set up MySQL server data"
+msgid "Set up MySQL/MariaDB server data"
msgstr ""
#. 6Fy7C
@@ -2094,24 +2094,24 @@ msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
msgstr ""
-#. DoGLb
+#. f5EbK
#: dbaccess/inc/strings.hrc:375
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
-msgid "Set up connection to a MySQL database using JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
msgstr ""
-#. B5kEC
+#. tqpeM
#: dbaccess/inc/strings.hrc:376
msgctxt "STR_MYSQLJDBC_HELPTEXT"
msgid ""
-"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-#. uGTyY
+#. Lrd3G
#: dbaccess/inc/strings.hrc:377
msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
-msgid "MySQL JDBC d~river class:"
+msgid "MySQL/MariaDB JDBC d~river class:"
msgstr ""
#. cBiSe
@@ -3012,10 +3012,10 @@ msgctxt "dbwizmysqlintropage|jdbc"
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr ""
-#. AW2n6
+#. 3haAx
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:93
msgctxt "dbwizmysqlintropage|directly"
-msgid "Connect directly"
+msgid "Connect directly (using MariaDB C connector)"
msgstr ""
#. C9PFE
@@ -3024,22 +3024,22 @@ msgctxt "dbwizmysqlintropage|label1"
msgid "How do you want to connect to your MySQL database?"
msgstr ""
-#. pdEL5
+#. C9PGh
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:128
msgctxt "dbwizmysqlintropage|header"
-msgid "Set Up a Connection to a MySQL Database"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
msgstr ""
-#. E8ACc
+#. 3cSEi
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:35
msgctxt "dbwizmysqlnativepage|helptext"
-msgid "Please enter the required information to connect to a MySQL database."
+msgid "Please enter the required information to connect to a MySQL/MariaDB database."
msgstr ""
-#. 2HCAG
+#. 4uetU
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:70
msgctxt "dbwizmysqlnativepage|header"
-msgid "Set Up a Connection to a MySQL Database"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
msgstr ""
#. AEty7
@@ -4571,16 +4571,16 @@ msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Specifies the sort criteria for the data display."
msgstr ""
-#. CsLXB
+#. nDP3A
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
msgctxt "specialjdbcconnectionpage|header"
-msgid "Set up connection to a MySQL database using JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
msgstr ""
-#. oxw5Q
+#. EVDCG
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:39
msgctxt "specialjdbcconnectionpage|helpLabel"
-msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
+msgid "Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
msgstr ""
#. GchzZ
@@ -4607,10 +4607,10 @@ msgctxt "specialjdbcconnectionpage|portNumDefLabel"
msgid "Default: 3306"
msgstr ""
-#. dhiYx
+#. o9YhU
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:188
msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
-msgid "MySQL JDBC d_river class:"
+msgid "MySQL/MariaDB JDBC d_river class:"
msgstr ""
#. 8oG6P
diff --git a/source/an/extensions/messages.po b/source/an/extensions/messages.po
index 3d297ada1a4..4fc8c496911 100644
--- a/source/an/extensions/messages.po
+++ b/source/an/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-01-17 16:38+0000\n"
+"PO-Revision-Date: 2022-03-16 10:17+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"
"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.11.2\n"
"X-POOTLE-MTIME: 1542022400.000000\n"
#. cBx8W
@@ -3872,7 +3872,7 @@ msgstr ""
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:939
msgctxt "generalpage|localpagecb"
msgid "Page"
-msgstr ""
+msgstr "Pachina"
#. x9s9K
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:1015
diff --git a/source/an/fpicker/messages.po b/source/an/fpicker/messages.po
index 040c8a697a9..b77c0f62a00 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-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2022-01-17 16:38+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
@@ -488,8 +488,20 @@ msgid ""
"Do you want to replace it?"
msgstr ""
-#. z6Eo3
+#. t4wDh
#: include/fpicker/strings.hrc:32
+msgctxt "STR_SVT_ALREADYEXISTOVERWRITE_SECONDARY"
+msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
+msgstr ""
+
+#. cBvCB
+#: include/fpicker/strings.hrc:33
+msgctxt "STR_SVT_ALLFORMATS"
+msgid "All Formats"
+msgstr ""
+
+#. z6Eo3
+#: include/fpicker/strings.hrc:34
msgctxt "STR_SVT_DELETESERVICE"
msgid ""
"Are you sure you want to delete the service?\n"
@@ -497,32 +509,32 @@ msgid ""
msgstr ""
#. KegFE
-#: include/fpicker/strings.hrc:33
+#: include/fpicker/strings.hrc:35
#, fuzzy
msgctxt "STR_SVT_ROOTLABEL"
msgid "Root"
msgstr "Pietz"
#. sWRTd
-#: include/fpicker/strings.hrc:34
+#: include/fpicker/strings.hrc:36
msgctxt "STR_FILTERNAME_ALL"
msgid "All files"
msgstr "Totz os fichers"
#. FBggE
-#: include/fpicker/strings.hrc:35
+#: include/fpicker/strings.hrc:37
msgctxt "STR_FILEDLG_OPEN"
msgid "Open"
msgstr "Ubrir"
#. wJYsA
-#: include/fpicker/strings.hrc:36
+#: include/fpicker/strings.hrc:38
msgctxt "STR_FILEDLG_TYPE"
msgid "File ~type"
msgstr ""
#. EEBg4
-#: include/fpicker/strings.hrc:37
+#: include/fpicker/strings.hrc:39
msgctxt "STR_FILEDLG_SAVE"
msgid "Save"
msgstr ""
diff --git a/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 2ee84c51fc0..5af43071a83 100644
--- a/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/an/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-03-31 10:35+0200\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2018-11-12 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2458,15 +2458,6 @@ msgctxt ""
msgid "&Cancel"
msgstr "Cancelar"
-#. rvG8Q
-#: Control.ulf
-msgctxt ""
-"Control.ulf\n"
-"OOO_CONTROL_206\n"
-"LngText.text"
-msgid "error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here"
-msgstr ""
-
#. D6Bgs
#: Control.ulf
msgctxt ""
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 2481bc145a9..59d2a0cd93f 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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-01-21 04:38+0000\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
+"PO-Revision-Date: 2022-03-31 22:30+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"
@@ -816,7 +816,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xternal Links..."
-msgstr ""
+msgstr "Vinclos e~xternos..."
#. FTLfZ
#: CalcCommands.xcu
@@ -2210,6 +2210,26 @@ msgctxt ""
msgid "F~ourier Analysis..."
msgstr ""
+#. aTBPM
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertSparkline\n"
+"Label\n"
+"value.text"
+msgid "Insert Sparkline..."
+msgstr ""
+
+#. CoZgJ
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:DeleteSparkline\n"
+"Label\n"
+"value.text"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dTXDB
#: CalcCommands.xcu
#, fuzzy
@@ -2242,17 +2262,6 @@ msgctxt ""
msgid "Data ~Validation..."
msgstr ""
-#. xxDxd
-#: CalcCommands.xcu
-#, fuzzy
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "Eliminar ringleras"
-
#. wZAYL
#: CalcCommands.xcu
#, fuzzy
@@ -2264,17 +2273,6 @@ msgctxt ""
msgid "Insert"
msgstr "Ficar"
-#. jgGQR
-#: CalcCommands.xcu
-#, fuzzy
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "Eliminar columnas"
-
#. 5PPGW
#: CalcCommands.xcu
#, fuzzy
@@ -2407,27 +2405,6 @@ msgctxt ""
msgid "Delete All Comments"
msgstr "Eliminar totz os comentarios"
-#. PzCtT
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comm~ent"
-msgstr "Com~entarios"
-
-#. HAWW3
-#: CalcCommands.xcu
-#, fuzzy
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"PopupLabel\n"
-"value.text"
-msgid "Insert Co~mment"
-msgstr "Ficar comando"
-
#. uUwKE
#: CalcCommands.xcu
#, fuzzy
@@ -3389,17 +3366,6 @@ msgctxt ""
msgid "~Show Sheet..."
msgstr "Amos~trar fuellas..."
-#. BARqL
-#: CalcCommands.xcu
-#, fuzzy
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Unir celdas"
-
#. APBqu
#: CalcCommands.xcu
msgctxt ""
@@ -9512,7 +9478,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xternal Links..."
-msgstr ""
+msgstr "Vinclos e~xternos..."
#. pQhVJ
#: DrawImpressCommands.xcu
@@ -11238,28 +11204,6 @@ msgctxt ""
msgid "Tas~k Pane"
msgstr "Panel de tareas"
-#. EAawg
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Unir celdas"
-
-#. eQphw
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells"
-msgstr "Dividir celdas"
-
#. Bvk8Q
#: DrawImpressCommands.xcu
#, fuzzy
@@ -11395,28 +11339,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "Ficar columnas"
-#. momxn
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Row"
-msgstr "Eliminar ringlera"
-
-#. YzuWU
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Column"
-msgstr "Eliminar columna"
-
#. yTCcA
#: DrawImpressCommands.xcu
msgctxt ""
@@ -11532,17 +11454,6 @@ msgctxt ""
msgid "~Table..."
msgstr "Tabla..."
-#. apmru
-#: DrawImpressCommands.xcu
-#, fuzzy
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comme~nt"
-msgstr "Minchantario"
-
#. XUrBD
#: DrawImpressCommands.xcu
#, fuzzy
@@ -22111,7 +22022,6 @@ msgstr ""
#. 2rDGb
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShowPropBrowser\n"
@@ -22122,14 +22032,13 @@ msgstr "Propiedatz"
#. zMasG
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertObject\n"
"Label\n"
"value.text"
msgid "~OLE Object..."
-msgstr "Obchecto OLE..."
+msgstr "Obchecto ~OLE..."
#. 6B9a2
#: GenericCommands.xcu
@@ -23384,6 +23293,26 @@ msgctxt ""
msgid "~Merge"
msgstr "Unir"
+#. rAjSP
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:MergeCells\n"
+"Label\n"
+"value.text"
+msgid "Merge Cells"
+msgstr ""
+
+#. ktF7K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SplitCell\n"
+"Label\n"
+"value.text"
+msgid "Split Cells..."
+msgstr ""
+
#. 2gYcx
#: GenericCommands.xcu
#, fuzzy
@@ -28166,6 +28095,66 @@ msgctxt ""
msgid "Insert Column"
msgstr ""
+#. LhLtz
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"Label\n"
+"value.text"
+msgid "Delete Columns"
+msgstr ""
+
+#. AG4Qy
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Columns"
+msgstr ""
+
+#. KxsdA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected columns"
+msgstr ""
+
+#. VL8Wa
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"Label\n"
+"value.text"
+msgid "Delete Rows"
+msgstr ""
+
+#. uAPr9
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Rows"
+msgstr ""
+
+#. wjm8K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected rows"
+msgstr ""
+
#. poXFa
#: GenericCommands.xcu
#, fuzzy
@@ -30365,7 +30354,6 @@ msgstr ""
#. bEFbz
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ControlProperties\n"
@@ -30620,7 +30608,6 @@ msgstr ""
#. B6dcS
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.PropertyDeck\n"
@@ -30757,7 +30744,6 @@ msgstr "Diseño"
#. YS3Gr
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.ChartDeck\n"
@@ -30958,6 +30944,16 @@ msgctxt ""
msgid "Slide"
msgstr "Diapositiva"
+#. zDinJ
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.DrawPageDeck\n"
+"Title\n"
+"value.text"
+msgid "Page"
+msgstr ""
+
#. E9FJB
#: Sidebar.xcu
#, fuzzy
@@ -34171,7 +34167,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xternal Links..."
-msgstr ""
+msgstr "Vinclos e~xternos..."
#. PCFhM
#: WriterCommands.xcu
@@ -34410,70 +34406,6 @@ msgctxt ""
msgid "Columns ~Before"
msgstr ""
-#. rzDZU
-#: WriterCommands.xcu
-#, fuzzy
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "Eliminar ringleras"
-
-#. DDmHu
-#: WriterCommands.xcu
-#, fuzzy
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Rows"
-msgstr "Ringleras"
-
-#. mBMTr
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected rows"
-msgstr ""
-
-#. WGcRm
-#: WriterCommands.xcu
-#, fuzzy
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "Eliminar columnas"
-
-#. P6wy9
-#: WriterCommands.xcu
-#, fuzzy
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Columns"
-msgstr "Columnas"
-
-#. rhbdp
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected columns"
-msgstr ""
-
#. RxF66
#: WriterCommands.xcu
#, fuzzy
@@ -34506,28 +34438,6 @@ msgctxt ""
msgid "Delete table"
msgstr ""
-#. f2Fpk
-#: WriterCommands.xcu
-#, fuzzy
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells..."
-msgstr "Dividir celdas"
-
-#. DqRgD
-#: WriterCommands.xcu
-#, fuzzy
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Unir celdas"
-
#. TTVL5
#: WriterCommands.xcu
#, fuzzy
diff --git a/source/an/reportdesign/messages.po b/source/an/reportdesign/messages.po
index 20681543696..8b9ef8252b9 100644
--- a/source/an/reportdesign/messages.po
+++ b/source/an/reportdesign/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:20+0100\n"
-"PO-Revision-Date: 2022-01-17 16:38+0000\n"
+"PO-Revision-Date: 2022-03-31 22:31+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/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.11.2\n"
"X-POOTLE-MTIME: 1516028895.000000\n"
#. FBVr9
@@ -1530,10 +1530,9 @@ msgstr ""
#. Aey2X
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:376
-#, fuzzy
msgctxt "floatingsort|label2"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. K86y3
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:410
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 89621515939..7d27ce70fbb 100644
--- a/source/an/sc/messages.po
+++ b/source/an/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: 2022-02-18 12:18+0100\n"
-"PO-Revision-Date: 2022-02-09 15:08+0000\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
+"PO-Revision-Date: 2022-03-31 22:31+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/an/>\n"
"Language: an\n"
@@ -3526,6 +3526,18 @@ msgctxt "STR_INDENTCELL"
msgid "Indent: "
msgstr ""
+#. HWAmv
+#: sc/inc/globstr.hrc:542
+msgctxt "STR_UNDO_INSERT_SPARKLINE"
+msgid "Insert Sparkline Group"
+msgstr ""
+
+#. LiBMo
+#: sc/inc/globstr.hrc:543
+msgctxt "STR_UNDO_DELETE_SPARKLINE"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dB8cp
#: sc/inc/pvfundlg.hrc:28
msgctxt "SCSTR_DPFUNCLISTBOX"
@@ -19885,7 +19897,7 @@ msgstr ""
#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
-msgstr ""
+msgstr "Residuo"
#. 4DANj
#: sc/inc/strings.hrc:322
@@ -29159,10 +29171,10 @@ msgctxt "pastespecial|PasteSpecial"
msgid "Paste Special"
msgstr "Ape~gau especial..."
-#. diPtG
+#. 9DVsp
#: sc/uiconfig/scalc/ui/pastespecial.ui:130
msgctxt "pastespecial|paste_values_only|label"
-msgid "_Values Only"
+msgid "Values Only"
msgstr ""
#. XyU8o
@@ -29177,10 +29189,10 @@ msgctxt "pastespecial|extended_tip|paste_values_only"
msgid "Pastes numbers, text, dates and the results of formulas."
msgstr ""
-#. CTEKF
+#. qDbrz
#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
-msgid "Values & _Formats"
+msgid "Values & Formats"
msgstr ""
#. 7GuDi
@@ -29195,10 +29207,10 @@ msgctxt "pastespecial|extended_tip|paste_values_formats"
msgid "Pastes cell values, formula results and formats applied to cells."
msgstr ""
-#. Rb8KR
+#. uCJBB
#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
-msgid "Formats Onl_y"
+msgid "Formats Only"
msgstr ""
#. Cvyjn
@@ -29213,10 +29225,10 @@ 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
+#. osqEX
#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
-msgid "_Transpose All"
+msgid "Transpose All"
msgstr ""
#. sbLGi
@@ -29231,10 +29243,10 @@ msgctxt "pastespecial|extended_tip|paste_transpose"
msgid "Pastes cell contents transposed, hence columns are converted to rows."
msgstr ""
-#. 4ETCT
+#. B28BC
#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
-msgid "_Run immediately"
+msgid "Run immediately"
msgstr ""
#. 7a9JE
@@ -29249,10 +29261,10 @@ msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
-#. g6DfA
+#. huhPQ
#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
-msgid "_All"
+msgid "All"
msgstr ""
#. Labin
@@ -29261,12 +29273,11 @@ msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
-#. qzFbg
+#. sg69o
#: sc/uiconfig/scalc/ui/pastespecial.ui:309
-#, fuzzy
msgctxt "pastespecial|numbers"
-msgid "_Numbers"
-msgstr "Numero"
+msgid "Numbers"
+msgstr "Numeros"
#. SCVEu
#: sc/uiconfig/scalc/ui/pastespecial.ui:317
@@ -29274,12 +29285,11 @@ msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
-#. BSEWE
+#. APG3W
#: sc/uiconfig/scalc/ui/pastespecial.ui:328
-#, fuzzy
msgctxt "pastespecial|text"
-msgid "Te_xt"
-msgstr "texto"
+msgid "Text"
+msgstr ""
#. JWDk5
#: sc/uiconfig/scalc/ui/pastespecial.ui:336
@@ -29287,10 +29297,10 @@ msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
-#. DBaJD
+#. HEwjB
#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
-msgid "_Date & time"
+msgid "Date & time"
msgstr ""
#. jq6Md
@@ -29299,12 +29309,11 @@ msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
-#. aHXF8
+#. HKgB9
#: sc/uiconfig/scalc/ui/pastespecial.ui:366
-#, fuzzy
msgctxt "pastespecial|formats"
-msgid "For_mats"
-msgstr "formato"
+msgid "Formats"
+msgstr ""
#. ehyEf
#: sc/uiconfig/scalc/ui/pastespecial.ui:374
@@ -29312,12 +29321,11 @@ msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
-#. NT4Am
+#. vAFRC
#: sc/uiconfig/scalc/ui/pastespecial.ui:385
-#, fuzzy
msgctxt "pastespecial|comments"
-msgid "_Comments"
-msgstr "Comentarios"
+msgid "Comments"
+msgstr ""
#. 3uP7i
#: sc/uiconfig/scalc/ui/pastespecial.ui:393
@@ -29325,11 +29333,11 @@ 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
+#. 5n5r7
#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
-msgid "Ob_jects"
-msgstr ""
+msgid "Objects"
+msgstr "Obchectos"
#. DZsnr
#: sc/uiconfig/scalc/ui/pastespecial.ui:412
@@ -29337,10 +29345,10 @@ 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
+#. 2wYuG
#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
-msgid "F_ormulas"
+msgid "Formulas"
msgstr ""
#. Na5Ba
@@ -29355,10 +29363,10 @@ msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
-#. fonBJ
+#. SKs5y
#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
-msgid "Don't sh_ift"
+msgid "Don't shift"
msgstr ""
#. q3Xv3
@@ -29367,10 +29375,10 @@ msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
-#. RuiU6
+#. 4hD8A
#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
-msgid "_Down"
+msgid "Down"
msgstr ""
#. BNALN
@@ -29379,12 +29387,11 @@ msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
-#. obSAt
+#. Psyof
#: sc/uiconfig/scalc/ui/pastespecial.ui:519
-#, fuzzy
msgctxt "pastespecial|move_right"
-msgid "_Right"
-msgstr "Enta la dreita"
+msgid "Right"
+msgstr ""
#. GEFe7
#: sc/uiconfig/scalc/ui/pastespecial.ui:528
@@ -29398,10 +29405,10 @@ msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
-#. nuJd9
+#. JXJTf
#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
-msgid "As _Link"
+msgid "As Link"
msgstr ""
#. Bg9dc
@@ -29410,10 +29417,10 @@ 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
+#. 7yzbi
#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
-msgid "Trans_pose"
+msgid "Transpose"
msgstr ""
#. P3eE4
@@ -29422,10 +29429,10 @@ 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
+#. 3VcAr
#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
-msgid "_Skip empty cells"
+msgid "Skip empty cells"
msgstr ""
#. BodqB
@@ -29446,12 +29453,11 @@ msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr ""
-#. nJiy4
+#. ekYg5
#: sc/uiconfig/scalc/ui/pastespecial.ui:681
-#, fuzzy
msgctxt "pastespecial|none"
-msgid "Non_e"
-msgstr "garra"
+msgid "None"
+msgstr ""
#. 7GKDG
#: sc/uiconfig/scalc/ui/pastespecial.ui:690
@@ -29459,12 +29465,11 @@ 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
+#. QhQnq
#: sc/uiconfig/scalc/ui/pastespecial.ui:702
-#, fuzzy
msgctxt "pastespecial|add"
-msgid "_Add"
-msgstr "Adhibir"
+msgid "Add"
+msgstr ""
#. bNyh2
#: sc/uiconfig/scalc/ui/pastespecial.ui:711
@@ -29472,10 +29477,10 @@ 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
+#. 4SmrC
#: sc/uiconfig/scalc/ui/pastespecial.ui:723
msgctxt "pastespecial|subtract"
-msgid "_Subtract"
+msgid "Subtract"
msgstr ""
#. 2SKbT
@@ -29484,10 +29489,10 @@ msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
-#. zdDUB
+#. 4HCRU
#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
-msgid "_Multiply"
+msgid "Multiply"
msgstr ""
#. jkRDm
@@ -29496,10 +29501,10 @@ msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
-#. 7Nd8u
+#. 55rBT
#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
-msgid "_Divide"
+msgid "Divide"
msgstr ""
#. 9VKdS
@@ -32287,318 +32292,318 @@ msgid "Optimize result to"
msgstr ""
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:155
+#: sc/uiconfig/scalc/ui/solverdlg.ui:162
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr ""
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:166
+#: sc/uiconfig/scalc/ui/solverdlg.ui:173
#, fuzzy
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Minimo"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:178
+#: sc/uiconfig/scalc/ui/solverdlg.ui:185
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:189
+#: sc/uiconfig/scalc/ui/solverdlg.ui:196
#, fuzzy
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "Maximo"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:201
+#: sc/uiconfig/scalc/ui/solverdlg.ui:208
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:226
+#: sc/uiconfig/scalc/ui/solverdlg.ui:233
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:269
+#: sc/uiconfig/scalc/ui/solverdlg.ui:276
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:312
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr ""
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:317
+#: sc/uiconfig/scalc/ui/solverdlg.ui:324
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:342
+#: sc/uiconfig/scalc/ui/solverdlg.ui:349
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:428
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr ""
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:442
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr ""
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:456
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
#, fuzzy
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "Valors"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:476
+#: sc/uiconfig/scalc/ui/solverdlg.ui:483
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr ""
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:495
+#: sc/uiconfig/scalc/ui/solverdlg.ui:502
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr ""
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:514
+#: sc/uiconfig/scalc/ui/solverdlg.ui:521
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr ""
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:533
+#: sc/uiconfig/scalc/ui/solverdlg.ui:540
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr ""
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:591
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "<="
msgstr ""
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:592
+#: sc/uiconfig/scalc/ui/solverdlg.ui:599
msgctxt "solverdlg|op1list"
msgid "="
msgstr ""
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:593
+#: sc/uiconfig/scalc/ui/solverdlg.ui:600
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr ""
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:594
+#: sc/uiconfig/scalc/ui/solverdlg.ui:601
#, fuzzy
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Numero "
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:595
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binario"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:599
+#: sc/uiconfig/scalc/ui/solverdlg.ui:606
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr ""
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:613
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "<="
msgstr ""
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:614
+#: sc/uiconfig/scalc/ui/solverdlg.ui:621
msgctxt "solverdlg|op2list"
msgid "="
msgstr ""
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:615
+#: sc/uiconfig/scalc/ui/solverdlg.ui:622
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr ""
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:616
+#: sc/uiconfig/scalc/ui/solverdlg.ui:623
#, fuzzy
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Numero "
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:617
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binario"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:621
+#: sc/uiconfig/scalc/ui/solverdlg.ui:628
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr ""
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:635
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "<="
msgstr ""
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:636
+#: sc/uiconfig/scalc/ui/solverdlg.ui:643
msgctxt "solverdlg|op3list"
msgid "="
msgstr ""
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:637
+#: sc/uiconfig/scalc/ui/solverdlg.ui:644
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr ""
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:638
+#: sc/uiconfig/scalc/ui/solverdlg.ui:645
#, fuzzy
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Numero "
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:639
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binario"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:643
+#: sc/uiconfig/scalc/ui/solverdlg.ui:650
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr ""
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:657
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "<="
msgstr ""
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:658
+#: sc/uiconfig/scalc/ui/solverdlg.ui:665
msgctxt "solverdlg|op4list"
msgid "="
msgstr ""
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:659
+#: sc/uiconfig/scalc/ui/solverdlg.ui:666
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr ""
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:660
+#: sc/uiconfig/scalc/ui/solverdlg.ui:667
#, fuzzy
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Numero "
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:661
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binario"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:665
+#: sc/uiconfig/scalc/ui/solverdlg.ui:672
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr ""
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:685
+#: sc/uiconfig/scalc/ui/solverdlg.ui:692
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valors"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:705
+#: sc/uiconfig/scalc/ui/solverdlg.ui:712
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valors"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:725
+#: sc/uiconfig/scalc/ui/solverdlg.ui:732
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valors"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:745
+#: sc/uiconfig/scalc/ui/solverdlg.ui:752
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valors"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:803
+#: sc/uiconfig/scalc/ui/solverdlg.ui:810
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Borrar"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:815
+#: sc/uiconfig/scalc/ui/solverdlg.ui:822
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Borrar"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:827
+#: sc/uiconfig/scalc/ui/solverdlg.ui:834
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Borrar"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:839
+#: sc/uiconfig/scalc/ui/solverdlg.ui:846
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Borrar"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:862
+#: sc/uiconfig/scalc/ui/solverdlg.ui:869
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr ""
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:895
+#: sc/uiconfig/scalc/ui/solverdlg.ui:899
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
@@ -32710,13 +32715,13 @@ msgid "Sort"
msgstr "Ordenar"
#. BMbZ7
-#: sc/uiconfig/scalc/ui/sortdialog.ui:139
+#: sc/uiconfig/scalc/ui/sortdialog.ui:112
msgctxt "sortdialog|criteria"
msgid "Sort Criteria"
msgstr ""
#. gMSdg
-#: sc/uiconfig/scalc/ui/sortdialog.ui:186
+#: sc/uiconfig/scalc/ui/sortdialog.ui:135
msgctxt "sortdialog|options"
msgid "Options"
msgstr "Opcions"
@@ -33009,6 +33014,102 @@ msgctxt "sortwarning|sorttip"
msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
msgstr ""
+#. 5YeNV
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:8
+msgctxt "SparklineDialog"
+msgid "Sparkline Dialog"
+msgstr ""
+
+#. Atj7n
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:161
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Input range:"
+msgstr ""
+
+#. gYQBd
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:178
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Output range:"
+msgstr ""
+
+#. faM2q
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:197
+msgctxt "SparklineDialog|label-data"
+msgid "Data"
+msgstr ""
+
+#. mcBDU
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:231
+msgctxt "SparklineDialog|label-series"
+msgid "Series:"
+msgstr ""
+
+#. N5L8b
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:246
+msgctxt "SparklineDialog|label-negative"
+msgid "Negative Points:"
+msgstr ""
+
+#. y5dsG
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:318
+msgctxt "SparklineDialog|label-low"
+msgid "Low Points:"
+msgstr ""
+
+#. LRGMH
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:390
+msgctxt "SparklineDialog|label-high"
+msgid "High Points:"
+msgstr ""
+
+#. WSgFy
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:426
+msgctxt "SparklineDialog|label-marker"
+msgid "Marker:"
+msgstr ""
+
+#. 6kVrt
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:556
+msgctxt "SparklineDialog|label-first"
+msgid "First Points:"
+msgstr ""
+
+#. tdvGa
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:572
+msgctxt "SparklineDialog|label-last"
+msgid "Last Points:"
+msgstr ""
+
+#. UAFwj
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:588
+msgctxt "SparklineDialog|label-type"
+msgid "Type:"
+msgstr ""
+
+#. gxMQL
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:608
+msgctxt "SparklineDialog|line-radiobutton"
+msgid "Line"
+msgstr ""
+
+#. VPdbn
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:627
+msgctxt "SparklineDialog|column-radiobutton"
+msgid "Column"
+msgstr ""
+
+#. oLsAN
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:646
+msgctxt "SparklineDialog|stacked-radiobutton"
+msgid "Stacked"
+msgstr ""
+
+#. 9uKMb
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:688
+msgctxt "SparklineDialog|label-properties"
+msgid "Properties"
+msgstr ""
+
#. p9BBw
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29
msgctxt "splitcolumnentry|name"
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index 8f6ac224e78..3521394a720 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-21 15:23+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2022-01-28 13:38+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"
@@ -9147,10 +9147,10 @@ msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
msgstr ""
-#. GuDqe
+#. CA9F9
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1195
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
-msgid "Select a full hd resolution for a very high quality slide display."
+msgid "Select a full HD resolution for a very high-quality slide display."
msgstr ""
#. zsvW6
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 0cb5ee71e94..f10eb3836c8 100644
--- a/source/an/sfx2/messages.po
+++ b/source/an/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-09 16:46+0100\n"
-"PO-Revision-Date: 2022-01-17 16:38+0000\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
+"PO-Revision-Date: 2022-03-31 22:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/an/>\n"
"Language: an\n"
@@ -1585,334 +1585,346 @@ msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr ""
+#. BSyb4
+#: include/sfx2/strings.hrc:293
+msgctxt "STR_REFRESH_MASTER_PASSWORD"
+msgid "The master password is stored in an outdated format, you should refresh it"
+msgstr ""
+
+#. ysChU
+#: include/sfx2/strings.hrc:294
+msgctxt "STR_REFRESH_PASSWORD"
+msgid "Refresh Password"
+msgstr ""
+
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:331
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Borrar"
#. JReRY
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:332
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:334
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:335
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:338
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:340
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:342
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:345
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:350
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:357
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
@@ -1983,291 +1995,291 @@ msgid "_Yes"
msgstr ""
#. F5rSU
-#: sfx2/inc/dinfdlg.hrc:27
+#: sfx2/inc/dinfdlg.hrc:29
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Checked by"
msgstr ""
#. BCYGG
-#: sfx2/inc/dinfdlg.hrc:28
+#: sfx2/inc/dinfdlg.hrc:30
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Client"
msgstr ""
#. nSrT3
-#: sfx2/inc/dinfdlg.hrc:29
+#: sfx2/inc/dinfdlg.hrc:31
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date completed"
msgstr ""
#. HEaEC
-#: sfx2/inc/dinfdlg.hrc:30
+#: sfx2/inc/dinfdlg.hrc:32
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Department"
msgstr "Departamento"
#. TxAux
-#: sfx2/inc/dinfdlg.hrc:31
+#: sfx2/inc/dinfdlg.hrc:33
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Destinations"
msgstr ""
#. f3nqh
-#: sfx2/inc/dinfdlg.hrc:32
+#: sfx2/inc/dinfdlg.hrc:34
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Disposition"
msgstr ""
#. uznMD
-#: sfx2/inc/dinfdlg.hrc:33
+#: sfx2/inc/dinfdlg.hrc:35
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Division"
msgstr ""
#. 6DuFF
-#: sfx2/inc/dinfdlg.hrc:34
+#: sfx2/inc/dinfdlg.hrc:36
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Document number"
msgstr ""
#. XXKuP
-#: sfx2/inc/dinfdlg.hrc:35
+#: sfx2/inc/dinfdlg.hrc:37
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Editor"
msgstr ""
#. hRRmF
-#: sfx2/inc/dinfdlg.hrc:36
+#: sfx2/inc/dinfdlg.hrc:38
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Email"
msgstr ""
#. xNvDx
-#: sfx2/inc/dinfdlg.hrc:37
+#: sfx2/inc/dinfdlg.hrc:39
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Forward to"
msgstr ""
#. xwv85
-#: sfx2/inc/dinfdlg.hrc:38
+#: sfx2/inc/dinfdlg.hrc:40
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Group"
msgstr ""
#. u59Qp
-#: sfx2/inc/dinfdlg.hrc:39
+#: sfx2/inc/dinfdlg.hrc:41
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Info"
msgstr ""
#. Ltq9H
-#: sfx2/inc/dinfdlg.hrc:40
+#: sfx2/inc/dinfdlg.hrc:42
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Language"
msgstr "Luenga"
#. bv3HC
-#: sfx2/inc/dinfdlg.hrc:41
+#: sfx2/inc/dinfdlg.hrc:43
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Mailstop"
msgstr ""
#. AFGi2
-#: sfx2/inc/dinfdlg.hrc:42
+#: sfx2/inc/dinfdlg.hrc:44
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Matter"
msgstr ""
#. wGAD6
-#: sfx2/inc/dinfdlg.hrc:43
+#: sfx2/inc/dinfdlg.hrc:45
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Office"
msgstr ""
#. ZqphY
-#: sfx2/inc/dinfdlg.hrc:44
+#: sfx2/inc/dinfdlg.hrc:46
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Owner"
msgstr ""
#. mK8Th
-#: sfx2/inc/dinfdlg.hrc:45
+#: sfx2/inc/dinfdlg.hrc:47
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Project"
msgstr ""
#. zFeHt
-#: sfx2/inc/dinfdlg.hrc:46
+#: sfx2/inc/dinfdlg.hrc:48
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Publisher"
msgstr ""
#. pF2eJ
-#: sfx2/inc/dinfdlg.hrc:47
+#: sfx2/inc/dinfdlg.hrc:49
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Purpose"
msgstr ""
#. GTPFZ
-#: sfx2/inc/dinfdlg.hrc:48
+#: sfx2/inc/dinfdlg.hrc:50
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Received from"
msgstr ""
#. dvGyQ
-#: sfx2/inc/dinfdlg.hrc:49
+#: sfx2/inc/dinfdlg.hrc:51
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded by"
msgstr ""
#. GjVXD
-#: sfx2/inc/dinfdlg.hrc:50
+#: sfx2/inc/dinfdlg.hrc:52
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded date"
msgstr ""
#. o5oXa
-#: sfx2/inc/dinfdlg.hrc:51
+#: sfx2/inc/dinfdlg.hrc:53
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Reference"
msgstr ""
#. ex26g
-#: sfx2/inc/dinfdlg.hrc:52
+#: sfx2/inc/dinfdlg.hrc:54
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Source"
msgstr "F~uent"
#. 4HSZB
-#: sfx2/inc/dinfdlg.hrc:53
+#: sfx2/inc/dinfdlg.hrc:55
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Status"
msgstr "Estau"
#. U3RdC
-#: sfx2/inc/dinfdlg.hrc:54
+#: sfx2/inc/dinfdlg.hrc:56
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Telephone number"
msgstr ""
#. Geeuu
-#: sfx2/inc/dinfdlg.hrc:55
+#: sfx2/inc/dinfdlg.hrc:57
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Typist"
msgstr ""
#. xxHtR
-#: sfx2/inc/dinfdlg.hrc:56
+#: sfx2/inc/dinfdlg.hrc:58
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "URL"
msgstr ""
#. CxTQY
-#: sfx2/inc/dinfdlg.hrc:71
+#: sfx2/inc/dinfdlg.hrc:73
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Text"
msgstr "Texto"
#. MMGFi
-#: sfx2/inc/dinfdlg.hrc:72
+#: sfx2/inc/dinfdlg.hrc:74
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "DateTime"
msgstr "Calendata y Hora"
#. GvJMH
-#: sfx2/inc/dinfdlg.hrc:73
+#: sfx2/inc/dinfdlg.hrc:75
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date"
msgstr "Calendata"
#. GyrbX
-#: sfx2/inc/dinfdlg.hrc:74
+#: sfx2/inc/dinfdlg.hrc:76
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Duration"
msgstr ""
#. CxZ4Z
-#: sfx2/inc/dinfdlg.hrc:75
+#: sfx2/inc/dinfdlg.hrc:77
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Number"
msgstr "Numero"
#. CDgvL
-#: sfx2/inc/dinfdlg.hrc:76
+#: sfx2/inc/dinfdlg.hrc:78
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Yes or no"
msgstr ""
#. AxhLy
-#: sfx2/inc/doctempl.hrc:27
+#: sfx2/inc/doctempl.hrc:29
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "My Templates"
msgstr ""
#. 5aNp8
-#: sfx2/inc/doctempl.hrc:28
+#: sfx2/inc/doctempl.hrc:30
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Styles"
msgstr ""
#. t5QK9
-#: sfx2/inc/doctempl.hrc:29
+#: sfx2/inc/doctempl.hrc:31
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Business Correspondence"
msgstr ""
#. Y79e8
-#: sfx2/inc/doctempl.hrc:30
+#: sfx2/inc/doctempl.hrc:32
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Other Business Documents"
msgstr ""
#. 2RCC9
-#: sfx2/inc/doctempl.hrc:31
+#: sfx2/inc/doctempl.hrc:33
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Personal Correspondence and Documents"
msgstr ""
#. 6Dgiz
-#: sfx2/inc/doctempl.hrc:32
+#: sfx2/inc/doctempl.hrc:34
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Forms and Contracts"
msgstr ""
#. VCKTG
-#: sfx2/inc/doctempl.hrc:33
+#: sfx2/inc/doctempl.hrc:35
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Finances"
msgstr "Finanzas"
#. HmqGP
-#: sfx2/inc/doctempl.hrc:34
+#: sfx2/inc/doctempl.hrc:36
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Education"
msgstr ""
#. xopM8
-#: sfx2/inc/doctempl.hrc:35
+#: sfx2/inc/doctempl.hrc:37
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentation Backgrounds"
msgstr ""
#. tSQLA
-#: sfx2/inc/doctempl.hrc:36
+#: sfx2/inc/doctempl.hrc:38
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentations"
msgstr "Presentacions"
#. KuNzz
-#: sfx2/inc/doctempl.hrc:37
+#: sfx2/inc/doctempl.hrc:39
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Miscellaneous"
msgstr ""
#. SC4E5
-#: sfx2/inc/doctempl.hrc:38
+#: sfx2/inc/doctempl.hrc:40
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "~Etiquetas"
@@ -3104,7 +3116,7 @@ msgstr ""
#: sfx2/uiconfig/ui/developmenttool.ui:539
msgctxt "developmenttool|properties"
msgid "Properties"
-msgstr ""
+msgstr "Propiedatz"
#. wGJtn
#: sfx2/uiconfig/ui/developmenttool.ui:569
diff --git a/source/an/starmath/messages.po b/source/an/starmath/messages.po
index a30cba3adf6..450f1d70600 100644
--- a/source/an/starmath/messages.po
+++ b/source/an/starmath/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: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2022-01-17 16:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/an/>\n"
@@ -13,413 +13,413 @@ 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: 1525785846.000000\n"
#. GrDhX
-#: starmath/inc/smmod.hrc:16
+#: starmath/inc/smmod.hrc:18
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Greek"
msgstr "Verde"
#. bApbv
-#: starmath/inc/smmod.hrc:17
+#: starmath/inc/smmod.hrc:19
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Special"
msgstr ""
#. aXhLc
-#: starmath/inc/smmod.hrc:22
+#: starmath/inc/smmod.hrc:24
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "alpha"
msgstr ""
#. rhVhw
-#: starmath/inc/smmod.hrc:23
+#: starmath/inc/smmod.hrc:25
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ALPHA"
msgstr ""
#. U3CqD
-#: starmath/inc/smmod.hrc:24
+#: starmath/inc/smmod.hrc:26
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "beta"
msgstr ""
#. pEoCL
-#: starmath/inc/smmod.hrc:25
+#: starmath/inc/smmod.hrc:27
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "BETA"
msgstr ""
#. D2jkQ
-#: starmath/inc/smmod.hrc:26
+#: starmath/inc/smmod.hrc:28
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "gamma"
msgstr ""
#. 4Cw8A
-#: starmath/inc/smmod.hrc:27
+#: starmath/inc/smmod.hrc:29
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "GAMMA"
msgstr ""
#. uMmke
-#: starmath/inc/smmod.hrc:28
+#: starmath/inc/smmod.hrc:30
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "delta"
msgstr ""
#. dBy8u
-#: starmath/inc/smmod.hrc:29
+#: starmath/inc/smmod.hrc:31
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "DELTA"
msgstr ""
#. CrJqB
-#: starmath/inc/smmod.hrc:30
+#: starmath/inc/smmod.hrc:32
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "epsilon"
msgstr ""
#. jSZ7F
-#: starmath/inc/smmod.hrc:31
+#: starmath/inc/smmod.hrc:33
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "EPSILON"
msgstr ""
#. kRvNs
-#: starmath/inc/smmod.hrc:32
+#: starmath/inc/smmod.hrc:34
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "zeta"
msgstr ""
#. YA3sh
-#: starmath/inc/smmod.hrc:33
+#: starmath/inc/smmod.hrc:35
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ZETA"
msgstr ""
#. kEWFU
-#: starmath/inc/smmod.hrc:34
+#: starmath/inc/smmod.hrc:36
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "eta"
msgstr ""
#. r8ivE
-#: starmath/inc/smmod.hrc:35
+#: starmath/inc/smmod.hrc:37
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ETA"
msgstr ""
#. CaW5B
-#: starmath/inc/smmod.hrc:36
+#: starmath/inc/smmod.hrc:38
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "theta"
msgstr ""
#. MUaj7
-#: starmath/inc/smmod.hrc:37
+#: starmath/inc/smmod.hrc:39
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "THETA"
msgstr ""
#. FAdCp
-#: starmath/inc/smmod.hrc:38
+#: starmath/inc/smmod.hrc:40
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "iota"
msgstr ""
#. 2RFqS
-#: starmath/inc/smmod.hrc:39
+#: starmath/inc/smmod.hrc:41
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "IOTA"
msgstr ""
#. E6LBi
-#: starmath/inc/smmod.hrc:40
+#: starmath/inc/smmod.hrc:42
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "kappa"
msgstr ""
#. PGGyZ
-#: starmath/inc/smmod.hrc:41
+#: starmath/inc/smmod.hrc:43
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "KAPPA"
msgstr ""
#. QhGid
-#: starmath/inc/smmod.hrc:42
+#: starmath/inc/smmod.hrc:44
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "lambda"
msgstr ""
#. JBLgu
-#: starmath/inc/smmod.hrc:43
+#: starmath/inc/smmod.hrc:45
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "LAMBDA"
msgstr ""
#. AkyEU
-#: starmath/inc/smmod.hrc:44
+#: starmath/inc/smmod.hrc:46
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "mu"
msgstr ""
#. t4RFD
-#: starmath/inc/smmod.hrc:45
+#: starmath/inc/smmod.hrc:47
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "MU"
msgstr ""
#. DwBRA
-#: starmath/inc/smmod.hrc:46
+#: starmath/inc/smmod.hrc:48
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "nu"
msgstr ""
#. sDc6Z
-#: starmath/inc/smmod.hrc:47
+#: starmath/inc/smmod.hrc:49
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "NU"
msgstr ""
#. dMns2
-#: starmath/inc/smmod.hrc:48
+#: starmath/inc/smmod.hrc:50
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "xi"
msgstr ""
#. 2cEVh
-#: starmath/inc/smmod.hrc:49
+#: starmath/inc/smmod.hrc:51
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "XI"
msgstr ""
#. PWUDK
-#: starmath/inc/smmod.hrc:50
+#: starmath/inc/smmod.hrc:52
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omicron"
msgstr ""
#. ZvPw7
-#: starmath/inc/smmod.hrc:51
+#: starmath/inc/smmod.hrc:53
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMICRON"
msgstr ""
#. VmDhA
-#: starmath/inc/smmod.hrc:52
+#: starmath/inc/smmod.hrc:54
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "pi"
msgstr ""
#. A3eoZ
-#: starmath/inc/smmod.hrc:53
+#: starmath/inc/smmod.hrc:55
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PI"
msgstr ""
#. Pu9vL
-#: starmath/inc/smmod.hrc:54
+#: starmath/inc/smmod.hrc:56
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "rho"
msgstr ""
#. HjNFe
-#: starmath/inc/smmod.hrc:55
+#: starmath/inc/smmod.hrc:57
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "RHO"
msgstr ""
#. 9Aa3V
-#: starmath/inc/smmod.hrc:56
+#: starmath/inc/smmod.hrc:58
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "sigma"
msgstr ""
#. JLWqn
-#: starmath/inc/smmod.hrc:57
+#: starmath/inc/smmod.hrc:59
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "SIGMA"
msgstr ""
#. NTuqk
-#: starmath/inc/smmod.hrc:58
+#: starmath/inc/smmod.hrc:60
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tau"
msgstr ""
#. GdhQ5
-#: starmath/inc/smmod.hrc:59
+#: starmath/inc/smmod.hrc:61
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "TAU"
msgstr ""
#. 6djSp
-#: starmath/inc/smmod.hrc:60
+#: starmath/inc/smmod.hrc:62
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "upsilon"
msgstr ""
#. ymFBb
-#: starmath/inc/smmod.hrc:61
+#: starmath/inc/smmod.hrc:63
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "UPSILON"
msgstr ""
#. YxRXi
-#: starmath/inc/smmod.hrc:62
+#: starmath/inc/smmod.hrc:64
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "phi"
msgstr ""
#. enCD7
-#: starmath/inc/smmod.hrc:63
+#: starmath/inc/smmod.hrc:65
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PHI"
msgstr ""
#. GcQPF
-#: starmath/inc/smmod.hrc:64
+#: starmath/inc/smmod.hrc:66
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "chi"
msgstr ""
#. 6SBnr
-#: starmath/inc/smmod.hrc:65
+#: starmath/inc/smmod.hrc:67
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "CHI"
msgstr ""
#. NAmaK
-#: starmath/inc/smmod.hrc:66
+#: starmath/inc/smmod.hrc:68
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "psi"
msgstr ""
#. GLZ2h
-#: starmath/inc/smmod.hrc:67
+#: starmath/inc/smmod.hrc:69
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PSI"
msgstr ""
#. JEF5A
-#: starmath/inc/smmod.hrc:68
+#: starmath/inc/smmod.hrc:70
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omega"
msgstr ""
#. 9QKj8
-#: starmath/inc/smmod.hrc:69
+#: starmath/inc/smmod.hrc:71
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMEGA"
msgstr ""
#. YQGDY
-#: starmath/inc/smmod.hrc:70
+#: starmath/inc/smmod.hrc:72
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varepsilon"
msgstr ""
#. VLAFM
-#: starmath/inc/smmod.hrc:71
+#: starmath/inc/smmod.hrc:73
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "vartheta"
msgstr ""
#. UJB26
-#: starmath/inc/smmod.hrc:72
+#: starmath/inc/smmod.hrc:74
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varpi"
msgstr ""
#. BCNqp
-#: starmath/inc/smmod.hrc:73
+#: starmath/inc/smmod.hrc:75
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varrho"
msgstr ""
#. SUNDb
-#: starmath/inc/smmod.hrc:74
+#: starmath/inc/smmod.hrc:76
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varsigma"
msgstr ""
#. cHCgN
-#: starmath/inc/smmod.hrc:75
+#: starmath/inc/smmod.hrc:77
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varphi"
msgstr ""
#. c9n9F
-#: starmath/inc/smmod.hrc:76
+#: starmath/inc/smmod.hrc:78
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "element"
msgstr ""
#. yXYWE
-#: starmath/inc/smmod.hrc:77
+#: starmath/inc/smmod.hrc:79
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "noelement"
msgstr ""
#. nDkSp
-#: starmath/inc/smmod.hrc:78
+#: starmath/inc/smmod.hrc:80
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlylessthan"
msgstr ""
#. 9AZxy
-#: starmath/inc/smmod.hrc:79
+#: starmath/inc/smmod.hrc:81
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlygreaterthan"
msgstr ""
#. 4F3qH
-#: starmath/inc/smmod.hrc:80
+#: starmath/inc/smmod.hrc:82
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "notequal"
msgstr "diferent"
#. 6UYC3
-#: starmath/inc/smmod.hrc:81
+#: starmath/inc/smmod.hrc:83
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "identical"
msgstr ""
#. 38B2B
-#: starmath/inc/smmod.hrc:82
+#: starmath/inc/smmod.hrc:84
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tendto"
msgstr ""
#. kDCC4
-#: starmath/inc/smmod.hrc:83
+#: starmath/inc/smmod.hrc:85
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "infinite"
msgstr ""
#. CnJUL
-#: starmath/inc/smmod.hrc:84
+#: starmath/inc/smmod.hrc:86
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "angle"
msgstr ""
#. MVfFZ
-#: starmath/inc/smmod.hrc:85
+#: starmath/inc/smmod.hrc:87
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "perthousand"
msgstr ""
#. tqFYX
-#: starmath/inc/smmod.hrc:86
+#: starmath/inc/smmod.hrc:88
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "and"
msgstr ""
#. jFASF
-#: starmath/inc/smmod.hrc:87
+#: starmath/inc/smmod.hrc:89
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "or"
msgstr ""
diff --git a/source/an/svtools/messages.po b/source/an/svtools/messages.po
index cca682cdfa8..cd0868fa8df 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2022-01-22 05:38+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"
@@ -1813,115 +1813,115 @@ msgid "_Yes"
msgstr ""
#. tBGDJ
-#: svtools/inc/borderline.hrc:17
+#: svtools/inc/borderline.hrc:18
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "None"
msgstr "Garra"
#. Xx4Fb
-#: svtools/inc/borderline.hrc:18
+#: svtools/inc/borderline.hrc:19
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Solid"
msgstr ""
#. Paqxg
-#: svtools/inc/borderline.hrc:19
+#: svtools/inc/borderline.hrc:20
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dotted"
msgstr ""
#. Bucas
-#: svtools/inc/borderline.hrc:20
+#: svtools/inc/borderline.hrc:21
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dashed"
msgstr ""
#. 6XEca
-#: svtools/inc/borderline.hrc:21
+#: svtools/inc/borderline.hrc:22
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double"
msgstr ""
#. fB75B
-#: svtools/inc/borderline.hrc:22
+#: svtools/inc/borderline.hrc:23
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Small Gap"
msgstr ""
#. MwnWC
-#: svtools/inc/borderline.hrc:23
+#: svtools/inc/borderline.hrc:24
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Medium Gap"
msgstr ""
#. V2QAy
-#: svtools/inc/borderline.hrc:24
+#: svtools/inc/borderline.hrc:25
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Large Gap"
msgstr ""
#. 4pwSe
-#: svtools/inc/borderline.hrc:25
+#: svtools/inc/borderline.hrc:26
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Small Gap"
msgstr ""
#. PYjTF
-#: svtools/inc/borderline.hrc:26
+#: svtools/inc/borderline.hrc:27
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Medium Gap"
msgstr ""
#. EYXfK
-#: svtools/inc/borderline.hrc:27
+#: svtools/inc/borderline.hrc:28
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Large Gap"
msgstr ""
#. 7gh6t
-#: svtools/inc/borderline.hrc:28
+#: svtools/inc/borderline.hrc:29
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Embossed"
msgstr ""
#. WK8Yy
-#: svtools/inc/borderline.hrc:29
+#: svtools/inc/borderline.hrc:30
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Engraved"
msgstr ""
#. NDS6G
-#: svtools/inc/borderline.hrc:30
+#: svtools/inc/borderline.hrc:31
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Outset"
msgstr ""
#. 7m7iw
-#: svtools/inc/borderline.hrc:31
+#: svtools/inc/borderline.hrc:32
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Inset"
msgstr ""
#. F9rwV
-#: svtools/inc/borderline.hrc:32
+#: svtools/inc/borderline.hrc:33
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Fine Dashed"
msgstr ""
#. GyT7A
-#: svtools/inc/borderline.hrc:33
+#: svtools/inc/borderline.hrc:34
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double Thin"
msgstr ""
#. FyVvE
-#: svtools/inc/borderline.hrc:34
+#: svtools/inc/borderline.hrc:35
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot"
msgstr ""
#. 7yoVE
-#: svtools/inc/borderline.hrc:35
+#: svtools/inc/borderline.hrc:36
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot Dot"
msgstr ""
@@ -2547,2474 +2547,2474 @@ msgid "$(ERR) activating object"
msgstr ""
#. jGYA8
-#: svtools/inc/langtab.hrc:28
+#: svtools/inc/langtab.hrc:29
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "[None]"
msgstr ""
#. aUWzb
-#: svtools/inc/langtab.hrc:29
+#: svtools/inc/langtab.hrc:30
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Unknown"
msgstr ""
#. AQgxZ
-#: svtools/inc/langtab.hrc:30 svtools/inc/langtab.hrc:31
+#: svtools/inc/langtab.hrc:31 svtools/inc/langtab.hrc:32
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Default"
msgstr "Por defecto"
#. hsqmD
-#: svtools/inc/langtab.hrc:32
+#: svtools/inc/langtab.hrc:33
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (South Africa)"
msgstr ""
#. TVGco
-#: svtools/inc/langtab.hrc:33
+#: svtools/inc/langtab.hrc:34
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Albanian"
msgstr ""
#. unNc6
-#: svtools/inc/langtab.hrc:34
+#: svtools/inc/langtab.hrc:35
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic"
msgstr ""
#. yStAU
-#: svtools/inc/langtab.hrc:35
+#: svtools/inc/langtab.hrc:36
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Algeria)"
msgstr ""
#. 6GPFd
-#: svtools/inc/langtab.hrc:36
+#: svtools/inc/langtab.hrc:37
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Bahrain)"
msgstr ""
#. tvtct
-#: svtools/inc/langtab.hrc:37
+#: svtools/inc/langtab.hrc:38
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Chad)"
msgstr ""
#. sAaq7
-#: svtools/inc/langtab.hrc:38
+#: svtools/inc/langtab.hrc:39
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Comoros)"
msgstr ""
#. CtwpU
-#: svtools/inc/langtab.hrc:39
+#: svtools/inc/langtab.hrc:40
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Djibouti)"
msgstr ""
#. XgGyg
-#: svtools/inc/langtab.hrc:40
+#: svtools/inc/langtab.hrc:41
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Egypt)"
msgstr ""
#. iwYQR
-#: svtools/inc/langtab.hrc:41
+#: svtools/inc/langtab.hrc:42
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Eritrea)"
msgstr ""
#. nKF3r
-#: svtools/inc/langtab.hrc:42
+#: svtools/inc/langtab.hrc:43
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Iraq)"
msgstr ""
#. JdGNA
-#: svtools/inc/langtab.hrc:43
+#: svtools/inc/langtab.hrc:44
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Israel)"
msgstr ""
#. bVjMH
-#: svtools/inc/langtab.hrc:44
+#: svtools/inc/langtab.hrc:45
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Jordan)"
msgstr ""
#. 2tQFC
-#: svtools/inc/langtab.hrc:45
+#: svtools/inc/langtab.hrc:46
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Kuwait)"
msgstr ""
#. EvECi
-#: svtools/inc/langtab.hrc:46
+#: svtools/inc/langtab.hrc:47
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Lebanon)"
msgstr ""
#. AWBGA
-#: svtools/inc/langtab.hrc:47
+#: svtools/inc/langtab.hrc:48
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Libya)"
msgstr ""
#. FBSpG
-#: svtools/inc/langtab.hrc:48
+#: svtools/inc/langtab.hrc:49
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Mauritania)"
msgstr ""
#. YmCZY
-#: svtools/inc/langtab.hrc:49
+#: svtools/inc/langtab.hrc:50
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Morocco)"
msgstr ""
#. VB6tk
-#: svtools/inc/langtab.hrc:50
+#: svtools/inc/langtab.hrc:51
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Oman)"
msgstr ""
#. ErqSh
-#: svtools/inc/langtab.hrc:51
+#: svtools/inc/langtab.hrc:52
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Palestine)"
msgstr ""
#. nURdz
-#: svtools/inc/langtab.hrc:52
+#: svtools/inc/langtab.hrc:53
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Qatar)"
msgstr ""
#. FdyFU
-#: svtools/inc/langtab.hrc:53
+#: svtools/inc/langtab.hrc:54
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Saudi Arabia)"
msgstr ""
#. x8UtA
-#: svtools/inc/langtab.hrc:54
+#: svtools/inc/langtab.hrc:55
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Somalia)"
msgstr ""
#. y9ptg
-#: svtools/inc/langtab.hrc:55
+#: svtools/inc/langtab.hrc:56
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Sudan)"
msgstr ""
#. caDrq
-#: svtools/inc/langtab.hrc:56
+#: svtools/inc/langtab.hrc:57
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Syria)"
msgstr ""
#. TqKZQ
-#: svtools/inc/langtab.hrc:57
+#: svtools/inc/langtab.hrc:58
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Tunisia)"
msgstr ""
#. VfYi2
-#: svtools/inc/langtab.hrc:58
+#: svtools/inc/langtab.hrc:59
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (UAE)"
msgstr ""
#. f7D5o
-#: svtools/inc/langtab.hrc:59
+#: svtools/inc/langtab.hrc:60
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Yemen)"
msgstr ""
#. vDhQJ
-#: svtools/inc/langtab.hrc:60
+#: svtools/inc/langtab.hrc:61
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aragonese"
msgstr ""
#. yE4TR
-#: svtools/inc/langtab.hrc:61
+#: svtools/inc/langtab.hrc:62
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Armenia)"
msgstr ""
#. bacGJ
-#: svtools/inc/langtab.hrc:62
+#: svtools/inc/langtab.hrc:63
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Assamese"
msgstr ""
#. xAg9Q
-#: svtools/inc/langtab.hrc:63
+#: svtools/inc/langtab.hrc:64
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Latin"
msgstr ""
#. juADB
-#: svtools/inc/langtab.hrc:64
+#: svtools/inc/langtab.hrc:65
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Cyrillic"
msgstr ""
#. C3C7G
-#: svtools/inc/langtab.hrc:65
+#: svtools/inc/langtab.hrc:66
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Basque"
msgstr "Basco"
#. dJPsj
-#: svtools/inc/langtab.hrc:66
+#: svtools/inc/langtab.hrc:67
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (India)"
msgstr ""
#. K6cbb
-#: svtools/inc/langtab.hrc:67
+#: svtools/inc/langtab.hrc:68
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bulgarian"
msgstr ""
#. sBBmA
-#: svtools/inc/langtab.hrc:68
+#: svtools/inc/langtab.hrc:69
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Belarusian"
msgstr ""
#. 3SEoJ
-#: svtools/inc/langtab.hrc:69
+#: svtools/inc/langtab.hrc:70
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan"
msgstr ""
#. PoUeZ
-#: svtools/inc/langtab.hrc:70
+#: svtools/inc/langtab.hrc:71
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan (Valencian)"
msgstr ""
#. ErGw2
-#: svtools/inc/langtab.hrc:71
+#: svtools/inc/langtab.hrc:72
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (traditional)"
msgstr ""
#. Gbige
-#: svtools/inc/langtab.hrc:72
+#: svtools/inc/langtab.hrc:73
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (simplified)"
msgstr ""
#. WzgGw
-#: svtools/inc/langtab.hrc:73
+#: svtools/inc/langtab.hrc:74
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Hong Kong)"
msgstr ""
#. Kfrv5
-#: svtools/inc/langtab.hrc:74
+#: svtools/inc/langtab.hrc:75
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Singapore)"
msgstr ""
#. BSHqu
-#: svtools/inc/langtab.hrc:75
+#: svtools/inc/langtab.hrc:76
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Macau)"
msgstr ""
#. FMwd9
-#: svtools/inc/langtab.hrc:76
+#: svtools/inc/langtab.hrc:77
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Church Slavic"
msgstr ""
#. cAkoV
-#: svtools/inc/langtab.hrc:77
+#: svtools/inc/langtab.hrc:78
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Croatian"
msgstr ""
#. DjdDj
-#: svtools/inc/langtab.hrc:78
+#: svtools/inc/langtab.hrc:79
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Czech"
msgstr ""
#. xnGM2
-#: svtools/inc/langtab.hrc:79
+#: svtools/inc/langtab.hrc:80
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Danish"
msgstr ""
#. yMGyj
-#: svtools/inc/langtab.hrc:80
+#: svtools/inc/langtab.hrc:81
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Netherlands)"
msgstr ""
#. qgJE9
-#: svtools/inc/langtab.hrc:81
+#: svtools/inc/langtab.hrc:82
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Belgium)"
msgstr ""
#. STsDT
-#: svtools/inc/langtab.hrc:82
+#: svtools/inc/langtab.hrc:83
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (USA)"
msgstr ""
#. aCBBC
-#: svtools/inc/langtab.hrc:83
+#: svtools/inc/langtab.hrc:84
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (UK)"
msgstr ""
#. 46Cte
-#: svtools/inc/langtab.hrc:84
+#: svtools/inc/langtab.hrc:85
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English, OED spelling (UK)"
msgstr ""
#. XCJAF
-#: svtools/inc/langtab.hrc:85
+#: svtools/inc/langtab.hrc:86
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Australia)"
msgstr ""
#. KPGdA
-#: svtools/inc/langtab.hrc:86
+#: svtools/inc/langtab.hrc:87
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Canada)"
msgstr ""
#. vGWET
-#: svtools/inc/langtab.hrc:87
+#: svtools/inc/langtab.hrc:88
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (New Zealand)"
msgstr ""
#. JpNB4
-#: svtools/inc/langtab.hrc:88
+#: svtools/inc/langtab.hrc:89
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ireland)"
msgstr ""
#. RYtwA
-#: svtools/inc/langtab.hrc:89
+#: svtools/inc/langtab.hrc:90
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (South Africa)"
msgstr ""
#. fEWbR
-#: svtools/inc/langtab.hrc:90
+#: svtools/inc/langtab.hrc:91
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Jamaica)"
msgstr ""
#. 4tDmL
-#: svtools/inc/langtab.hrc:91
+#: svtools/inc/langtab.hrc:92
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Caribbean)"
msgstr ""
#. craLz
-#: svtools/inc/langtab.hrc:92
+#: svtools/inc/langtab.hrc:93
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Belize)"
msgstr ""
#. oAnX9
-#: svtools/inc/langtab.hrc:93
+#: svtools/inc/langtab.hrc:94
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Trinidad)"
msgstr ""
#. DbBaG
-#: svtools/inc/langtab.hrc:94
+#: svtools/inc/langtab.hrc:95
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zimbabwe)"
msgstr ""
#. bGuDT
-#: svtools/inc/langtab.hrc:95
+#: svtools/inc/langtab.hrc:96
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Philippines)"
msgstr ""
#. sf7j9
-#: svtools/inc/langtab.hrc:96
+#: svtools/inc/langtab.hrc:97
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (India)"
msgstr ""
#. uqECc
-#: svtools/inc/langtab.hrc:97
+#: svtools/inc/langtab.hrc:98
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Estonian"
msgstr ""
#. AGGnV
-#: svtools/inc/langtab.hrc:98
+#: svtools/inc/langtab.hrc:99
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Finnish"
msgstr ""
#. UyH2X
-#: svtools/inc/langtab.hrc:99
+#: svtools/inc/langtab.hrc:100
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Faroese"
msgstr ""
#. riCt7
-#: svtools/inc/langtab.hrc:100
+#: svtools/inc/langtab.hrc:101
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Persian"
msgstr ""
#. FSxwV
-#: svtools/inc/langtab.hrc:101
+#: svtools/inc/langtab.hrc:102
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (France)"
msgstr ""
#. LGkgS
-#: svtools/inc/langtab.hrc:102
+#: svtools/inc/langtab.hrc:103
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Belgium)"
msgstr ""
#. TFQ8G
-#: svtools/inc/langtab.hrc:103
+#: svtools/inc/langtab.hrc:104
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Canada)"
msgstr ""
#. 8NnQa
-#: svtools/inc/langtab.hrc:104
+#: svtools/inc/langtab.hrc:105
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Switzerland)"
msgstr ""
#. DkXiH
-#: svtools/inc/langtab.hrc:105
+#: svtools/inc/langtab.hrc:106
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Luxembourg)"
msgstr ""
#. 8BeKQ
-#: svtools/inc/langtab.hrc:106
+#: svtools/inc/langtab.hrc:107
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Monaco)"
msgstr ""
#. DoQUZ
-#: svtools/inc/langtab.hrc:107
+#: svtools/inc/langtab.hrc:108
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gascon"
msgstr ""
#. 6m5ud
-#: svtools/inc/langtab.hrc:108
+#: svtools/inc/langtab.hrc:109
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Germany)"
msgstr ""
#. bTDdf
-#: svtools/inc/langtab.hrc:109
+#: svtools/inc/langtab.hrc:110
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Switzerland)"
msgstr ""
#. H6rUb
-#: svtools/inc/langtab.hrc:110
+#: svtools/inc/langtab.hrc:111
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Austria)"
msgstr ""
#. EXUrT
-#: svtools/inc/langtab.hrc:111
+#: svtools/inc/langtab.hrc:112
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Luxembourg)"
msgstr ""
#. wYXvd
-#: svtools/inc/langtab.hrc:112
+#: svtools/inc/langtab.hrc:113
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Liechtenstein)"
msgstr ""
#. yBvcg
-#: svtools/inc/langtab.hrc:113
+#: svtools/inc/langtab.hrc:114
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek"
msgstr "Verde"
#. QzGHA
-#: svtools/inc/langtab.hrc:114
+#: svtools/inc/langtab.hrc:115
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gujarati"
msgstr ""
#. gU5Y9
-#: svtools/inc/langtab.hrc:115
+#: svtools/inc/langtab.hrc:116
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hebrew"
msgstr ""
#. vkmai
-#: svtools/inc/langtab.hrc:116
+#: svtools/inc/langtab.hrc:117
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hindi"
msgstr ""
#. FdD6d
-#: svtools/inc/langtab.hrc:117
+#: svtools/inc/langtab.hrc:118
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian"
msgstr ""
#. sRD2B
-#: svtools/inc/langtab.hrc:118
+#: svtools/inc/langtab.hrc:119
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Icelandic"
msgstr ""
#. K95FW
-#: svtools/inc/langtab.hrc:119
+#: svtools/inc/langtab.hrc:120
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Indonesian"
msgstr ""
#. dshDi
-#: svtools/inc/langtab.hrc:120
+#: svtools/inc/langtab.hrc:121
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Italy)"
msgstr ""
#. DELVB
-#: svtools/inc/langtab.hrc:121
+#: svtools/inc/langtab.hrc:122
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Switzerland)"
msgstr ""
#. ruFE2
-#: svtools/inc/langtab.hrc:122
+#: svtools/inc/langtab.hrc:123
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Japanese"
msgstr ""
#. qFQYv
-#: svtools/inc/langtab.hrc:123
+#: svtools/inc/langtab.hrc:124
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kannada"
msgstr ""
#. HBG3C
-#: svtools/inc/langtab.hrc:124
+#: svtools/inc/langtab.hrc:125
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (Kashmir)"
msgstr ""
#. DwhmJ
-#: svtools/inc/langtab.hrc:125
+#: svtools/inc/langtab.hrc:126
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (India)"
msgstr ""
#. UMfCV
-#: svtools/inc/langtab.hrc:126
+#: svtools/inc/langtab.hrc:127
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kazakh"
msgstr ""
#. fABxX
-#: svtools/inc/langtab.hrc:127
+#: svtools/inc/langtab.hrc:128
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Konkani"
msgstr ""
#. 5XXpX
-#: svtools/inc/langtab.hrc:128
+#: svtools/inc/langtab.hrc:129
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Korean (RoK)"
msgstr ""
#. Ynb76
-#: svtools/inc/langtab.hrc:129
+#: svtools/inc/langtab.hrc:130
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latvian"
msgstr ""
#. C4VrT
-#: svtools/inc/langtab.hrc:130
+#: svtools/inc/langtab.hrc:131
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lithuanian"
msgstr ""
#. zPNto
-#: svtools/inc/langtab.hrc:131
+#: svtools/inc/langtab.hrc:132
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Macedonian"
msgstr ""
#. nVTHg
-#: svtools/inc/langtab.hrc:132
+#: svtools/inc/langtab.hrc:133
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Malaysia)"
msgstr ""
#. fwb55
-#: svtools/inc/langtab.hrc:133
+#: svtools/inc/langtab.hrc:134
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Brunei Darussalam)"
msgstr ""
#. 8niko
-#: svtools/inc/langtab.hrc:134
+#: svtools/inc/langtab.hrc:135
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malayalam"
msgstr ""
#. wX45Q
-#: svtools/inc/langtab.hrc:135
+#: svtools/inc/langtab.hrc:136
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manipuri"
msgstr ""
#. wdBgL
-#: svtools/inc/langtab.hrc:136
+#: svtools/inc/langtab.hrc:137
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Marathi"
msgstr ""
#. gkEEQ
-#: svtools/inc/langtab.hrc:137
+#: svtools/inc/langtab.hrc:138
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (Nepal)"
msgstr ""
#. LaDAA
-#: svtools/inc/langtab.hrc:138
+#: svtools/inc/langtab.hrc:139
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (India)"
msgstr ""
#. 7HpyY
-#: svtools/inc/langtab.hrc:139
+#: svtools/inc/langtab.hrc:140
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Bokmål"
msgstr ""
#. kCv9u
-#: svtools/inc/langtab.hrc:140
+#: svtools/inc/langtab.hrc:141
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Nynorsk"
msgstr ""
#. 3BNF8
-#: svtools/inc/langtab.hrc:141
+#: svtools/inc/langtab.hrc:142
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Odia"
msgstr ""
#. KEoWD
-#: svtools/inc/langtab.hrc:142
+#: svtools/inc/langtab.hrc:143
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Polish"
msgstr ""
#. yyj9v
-#: svtools/inc/langtab.hrc:143
+#: svtools/inc/langtab.hrc:144
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Angola)"
msgstr ""
#. hZAXE
-#: svtools/inc/langtab.hrc:144
+#: svtools/inc/langtab.hrc:145
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Portugal)"
msgstr ""
#. A5CG3
-#: svtools/inc/langtab.hrc:145
+#: svtools/inc/langtab.hrc:146
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Brazil)"
msgstr ""
#. EGfKG
-#: svtools/inc/langtab.hrc:146
+#: svtools/inc/langtab.hrc:147
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punjabi"
msgstr ""
#. 4ATDT
-#: svtools/inc/langtab.hrc:147
+#: svtools/inc/langtab.hrc:148
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rhaeto-Romance"
msgstr ""
#. TLUGG
-#: svtools/inc/langtab.hrc:148
+#: svtools/inc/langtab.hrc:149
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Romania)"
msgstr ""
#. uCPF7
-#: svtools/inc/langtab.hrc:149
+#: svtools/inc/langtab.hrc:150
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Moldova)"
msgstr ""
#. tJTih
-#: svtools/inc/langtab.hrc:150
+#: svtools/inc/langtab.hrc:151
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Russian"
msgstr ""
#. Rih6F
-#: svtools/inc/langtab.hrc:151
+#: svtools/inc/langtab.hrc:152
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sanskrit"
msgstr ""
#. CyZtm
-#: svtools/inc/langtab.hrc:152
+#: svtools/inc/langtab.hrc:153
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia and Montenegro)"
msgstr ""
#. sFnB8
-#: svtools/inc/langtab.hrc:153
+#: svtools/inc/langtab.hrc:154
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia and Montenegro)"
msgstr ""
#. WbsFA
-#: svtools/inc/langtab.hrc:154
+#: svtools/inc/langtab.hrc:155
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia)"
msgstr ""
#. WL3zM
-#: svtools/inc/langtab.hrc:155
+#: svtools/inc/langtab.hrc:156
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia)"
msgstr ""
#. JFnsJ
-#: svtools/inc/langtab.hrc:156
+#: svtools/inc/langtab.hrc:157
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Montenegro)"
msgstr ""
#. AHpmF
-#: svtools/inc/langtab.hrc:157
+#: svtools/inc/langtab.hrc:158
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Montenegro)"
msgstr ""
#. JcJT4
-#: svtools/inc/langtab.hrc:158
+#: svtools/inc/langtab.hrc:159
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin"
msgstr ""
#. ubCyV
-#: svtools/inc/langtab.hrc:159
+#: svtools/inc/langtab.hrc:160
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sidama"
msgstr ""
#. 66wdH
-#: svtools/inc/langtab.hrc:160
+#: svtools/inc/langtab.hrc:161
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Devanagari"
msgstr ""
#. RF77g
-#: svtools/inc/langtab.hrc:161
+#: svtools/inc/langtab.hrc:162
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Arabic"
msgstr ""
#. E8DXb
-#: svtools/inc/langtab.hrc:162
+#: svtools/inc/langtab.hrc:163
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovak"
msgstr ""
#. GS6BZ
-#: svtools/inc/langtab.hrc:163
+#: svtools/inc/langtab.hrc:164
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovenian"
msgstr ""
#. bCFN3
-#: svtools/inc/langtab.hrc:164
+#: svtools/inc/langtab.hrc:165
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Spain)"
msgstr ""
#. AXKJF
-#: svtools/inc/langtab.hrc:165
+#: svtools/inc/langtab.hrc:166
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Mexico)"
msgstr ""
#. 4ExjA
-#: svtools/inc/langtab.hrc:166
+#: svtools/inc/langtab.hrc:167
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Guatemala)"
msgstr ""
#. ndaNA
-#: svtools/inc/langtab.hrc:167
+#: svtools/inc/langtab.hrc:168
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Costa Rica)"
msgstr ""
#. rAYvf
-#: svtools/inc/langtab.hrc:168
+#: svtools/inc/langtab.hrc:169
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Panama)"
msgstr ""
#. rwjDV
-#: svtools/inc/langtab.hrc:169
+#: svtools/inc/langtab.hrc:170
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Dom. Rep.)"
msgstr ""
#. aeV5T
-#: svtools/inc/langtab.hrc:170
+#: svtools/inc/langtab.hrc:171
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Venezuela)"
msgstr ""
#. H4CHi
-#: svtools/inc/langtab.hrc:171
+#: svtools/inc/langtab.hrc:172
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Colombia)"
msgstr ""
#. NkaU2
-#: svtools/inc/langtab.hrc:172
+#: svtools/inc/langtab.hrc:173
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Peru)"
msgstr ""
#. 2yKQy
-#: svtools/inc/langtab.hrc:173
+#: svtools/inc/langtab.hrc:174
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Argentina)"
msgstr ""
#. cTFoB
-#: svtools/inc/langtab.hrc:174
+#: svtools/inc/langtab.hrc:175
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Ecuador)"
msgstr ""
#. Q7iGB
-#: svtools/inc/langtab.hrc:175
+#: svtools/inc/langtab.hrc:176
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Chile)"
msgstr ""
#. SQeC3
-#: svtools/inc/langtab.hrc:176
+#: svtools/inc/langtab.hrc:177
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Uruguay)"
msgstr ""
#. EmgTp
-#: svtools/inc/langtab.hrc:177
+#: svtools/inc/langtab.hrc:178
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Paraguay)"
msgstr ""
#. T7rLH
-#: svtools/inc/langtab.hrc:178
+#: svtools/inc/langtab.hrc:179
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Bolivia)"
msgstr ""
#. GNG7W
-#: svtools/inc/langtab.hrc:179
+#: svtools/inc/langtab.hrc:180
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (El Salvador)"
msgstr ""
#. HoGhs
-#: svtools/inc/langtab.hrc:180
+#: svtools/inc/langtab.hrc:181
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Honduras)"
msgstr ""
#. KgEGv
-#: svtools/inc/langtab.hrc:181
+#: svtools/inc/langtab.hrc:182
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Nicaragua)"
msgstr ""
#. uj9QF
-#: svtools/inc/langtab.hrc:182
+#: svtools/inc/langtab.hrc:183
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Puerto Rico)"
msgstr ""
#. 3bTTE
-#: svtools/inc/langtab.hrc:183
+#: svtools/inc/langtab.hrc:184
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Kenya)"
msgstr ""
#. AFhrJ
-#: svtools/inc/langtab.hrc:184
+#: svtools/inc/langtab.hrc:185
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Sweden)"
msgstr ""
#. BKF86
-#: svtools/inc/langtab.hrc:185
+#: svtools/inc/langtab.hrc:186
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Finland)"
msgstr ""
#. E6Ede
-#: svtools/inc/langtab.hrc:186
+#: svtools/inc/langtab.hrc:187
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tajik"
msgstr ""
#. dAFTH
-#: svtools/inc/langtab.hrc:187
+#: svtools/inc/langtab.hrc:188
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tamil"
msgstr ""
#. RHZbp
-#: svtools/inc/langtab.hrc:188
+#: svtools/inc/langtab.hrc:189
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tatar"
msgstr "Tartre"
#. pTFA6
-#: svtools/inc/langtab.hrc:189
+#: svtools/inc/langtab.hrc:190
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Telugu"
msgstr ""
#. 3xQFG
-#: svtools/inc/langtab.hrc:190
+#: svtools/inc/langtab.hrc:191
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Thai"
msgstr ""
#. 7SBCF
-#: svtools/inc/langtab.hrc:191
+#: svtools/inc/langtab.hrc:192
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkish"
msgstr ""
#. jg4Y4
-#: svtools/inc/langtab.hrc:192
+#: svtools/inc/langtab.hrc:193
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (Pakistan)"
msgstr ""
#. reDrZ
-#: svtools/inc/langtab.hrc:193
+#: svtools/inc/langtab.hrc:194
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (India)"
msgstr ""
#. AciD4
-#: svtools/inc/langtab.hrc:194
+#: svtools/inc/langtab.hrc:195
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ukrainian"
msgstr ""
#. 9s6wZ
-#: svtools/inc/langtab.hrc:195
+#: svtools/inc/langtab.hrc:196
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Latin"
msgstr ""
#. HrnFi
-#: svtools/inc/langtab.hrc:196
+#: svtools/inc/langtab.hrc:197
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Cyrillic"
msgstr ""
#. seQBA
-#: svtools/inc/langtab.hrc:197
+#: svtools/inc/langtab.hrc:198
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Welsh"
msgstr ""
#. MyZMt
-#: svtools/inc/langtab.hrc:198
+#: svtools/inc/langtab.hrc:199
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latin"
msgstr ""
#. UxE47
-#: svtools/inc/langtab.hrc:199
+#: svtools/inc/langtab.hrc:200
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Esperanto"
msgstr ""
#. QDEQB
-#: svtools/inc/langtab.hrc:200
+#: svtools/inc/langtab.hrc:201
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kinyarwanda (Rwanda)"
msgstr ""
#. VDEdz
-#: svtools/inc/langtab.hrc:201
+#: svtools/inc/langtab.hrc:202
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maori"
msgstr ""
#. BCRzB
-#: svtools/inc/langtab.hrc:202
+#: svtools/inc/langtab.hrc:203
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Galician"
msgstr ""
#. EJSEG
-#: svtools/inc/langtab.hrc:203
+#: svtools/inc/langtab.hrc:204
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dhivehi"
msgstr ""
#. HyrCw
-#: svtools/inc/langtab.hrc:204
+#: svtools/inc/langtab.hrc:205
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Northern Sotho"
msgstr ""
#. iZE5p
-#: svtools/inc/langtab.hrc:205
+#: svtools/inc/langtab.hrc:206
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gaelic (Scotland)"
msgstr ""
#. hUdfG
-#: svtools/inc/langtab.hrc:206
+#: svtools/inc/langtab.hrc:207
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Cyrillic"
msgstr ""
#. XSmCF
-#: svtools/inc/langtab.hrc:207
+#: svtools/inc/langtab.hrc:208
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Mongolian"
msgstr ""
#. SmxD2
-#: svtools/inc/langtab.hrc:208
+#: svtools/inc/langtab.hrc:209
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingua"
msgstr ""
#. dBUa9
-#: svtools/inc/langtab.hrc:209
+#: svtools/inc/langtab.hrc:210
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bosnian"
msgstr ""
#. c29GE
-#: svtools/inc/langtab.hrc:210
+#: svtools/inc/langtab.hrc:211
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (Bangladesh)"
msgstr ""
#. 9CTyH
-#: svtools/inc/langtab.hrc:211
+#: svtools/inc/langtab.hrc:212
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Occitan"
msgstr ""
#. wRpTQ
-#: svtools/inc/langtab.hrc:212
+#: svtools/inc/langtab.hrc:213
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khmer"
msgstr ""
#. 6C2PP
-#: svtools/inc/langtab.hrc:213
+#: svtools/inc/langtab.hrc:214
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Turkey)"
msgstr ""
#. JBSdg
-#: svtools/inc/langtab.hrc:214
+#: svtools/inc/langtab.hrc:215
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Syria)"
msgstr ""
#. 7LmT2
-#: svtools/inc/langtab.hrc:215
+#: svtools/inc/langtab.hrc:216
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iraq)"
msgstr ""
#. rzDHD
-#: svtools/inc/langtab.hrc:216
+#: svtools/inc/langtab.hrc:217
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iran)"
msgstr ""
#. CeAFw
-#: svtools/inc/langtab.hrc:217
+#: svtools/inc/langtab.hrc:218
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iran)"
msgstr ""
#. epbri
-#: svtools/inc/langtab.hrc:218
+#: svtools/inc/langtab.hrc:219
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iraq)"
msgstr ""
#. 2KhAB
-#: svtools/inc/langtab.hrc:219
+#: svtools/inc/langtab.hrc:220
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian"
msgstr ""
#. 3sZxr
-#: svtools/inc/langtab.hrc:220
+#: svtools/inc/langtab.hrc:221
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dzongkha"
msgstr ""
#. NdNMD
-#: svtools/inc/langtab.hrc:221
+#: svtools/inc/langtab.hrc:222
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Tanzania)"
msgstr ""
#. ywH3p
-#: svtools/inc/langtab.hrc:222
+#: svtools/inc/langtab.hrc:223
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lao"
msgstr ""
#. HNY5w
-#: svtools/inc/langtab.hrc:223
+#: svtools/inc/langtab.hrc:224
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Irish"
msgstr ""
#. oGuLJ
-#: svtools/inc/langtab.hrc:224
+#: svtools/inc/langtab.hrc:225
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (PR China)"
msgstr ""
#. DpbUS
-#: svtools/inc/langtab.hrc:225
+#: svtools/inc/langtab.hrc:226
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Georgian"
msgstr ""
#. vXTTC
-#: svtools/inc/langtab.hrc:226
+#: svtools/inc/langtab.hrc:227
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Frisian"
msgstr ""
#. hYSBQ
-#: svtools/inc/langtab.hrc:227
+#: svtools/inc/langtab.hrc:228
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (South Africa)"
msgstr ""
#. iBrft
-#: svtools/inc/langtab.hrc:228
+#: svtools/inc/langtab.hrc:229
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Zulu"
msgstr ""
#. efx7v
-#: svtools/inc/langtab.hrc:229
+#: svtools/inc/langtab.hrc:230
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vietnamese"
msgstr ""
#. uik8N
-#: svtools/inc/langtab.hrc:230
+#: svtools/inc/langtab.hrc:231
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Breton"
msgstr ""
#. UuDPF
-#: svtools/inc/langtab.hrc:231
+#: svtools/inc/langtab.hrc:232
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kalaallisut"
msgstr ""
#. h8yi2
-#: svtools/inc/langtab.hrc:232
+#: svtools/inc/langtab.hrc:233
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ndebele, South"
msgstr ""
#. GAkRJ
-#: svtools/inc/langtab.hrc:233
+#: svtools/inc/langtab.hrc:234
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Southern Sotho"
msgstr ""
#. 2beka
-#: svtools/inc/langtab.hrc:234
+#: svtools/inc/langtab.hrc:235
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swazi"
msgstr ""
#. GFCYC
-#: svtools/inc/langtab.hrc:235
+#: svtools/inc/langtab.hrc:236
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsonga"
msgstr ""
#. Fd3yC
-#: svtools/inc/langtab.hrc:236
+#: svtools/inc/langtab.hrc:237
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venda"
msgstr ""
#. BQkT8
-#: svtools/inc/langtab.hrc:237
+#: svtools/inc/langtab.hrc:238
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (Botswana)"
msgstr ""
#. aCLs3
-#: svtools/inc/langtab.hrc:238
+#: svtools/inc/langtab.hrc:239
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xhosa"
msgstr ""
#. 8tGkA
-#: svtools/inc/langtab.hrc:239
+#: svtools/inc/langtab.hrc:240
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sinhala"
msgstr ""
#. MyZBb
-#: svtools/inc/langtab.hrc:240
+#: svtools/inc/langtab.hrc:241
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moore"
msgstr ""
#. MuwMr
-#: svtools/inc/langtab.hrc:241
+#: svtools/inc/langtab.hrc:242
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bambara"
msgstr ""
#. ohYHE
-#: svtools/inc/langtab.hrc:242
+#: svtools/inc/langtab.hrc:243
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Akan"
msgstr ""
#. Rpc24
-#: svtools/inc/langtab.hrc:243
+#: svtools/inc/langtab.hrc:244
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Luxembourgish"
msgstr ""
#. TPr9P
-#: svtools/inc/langtab.hrc:244
+#: svtools/inc/langtab.hrc:245
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Friulian"
msgstr ""
#. XFeaU
-#: svtools/inc/langtab.hrc:245
+#: svtools/inc/langtab.hrc:246
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fijian"
msgstr ""
#. DmEsD
-#: svtools/inc/langtab.hrc:246
+#: svtools/inc/langtab.hrc:247
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (Namibia)"
msgstr ""
#. 2dS3j
-#: svtools/inc/langtab.hrc:247
+#: svtools/inc/langtab.hrc:248
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Namibia)"
msgstr ""
#. pxpQo
-#: svtools/inc/langtab.hrc:248
+#: svtools/inc/langtab.hrc:249
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Walloon"
msgstr ""
#. uSw8S
-#: svtools/inc/langtab.hrc:249
+#: svtools/inc/langtab.hrc:250
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Coptic"
msgstr ""
#. cXUkb
-#: svtools/inc/langtab.hrc:250
+#: svtools/inc/langtab.hrc:251
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Eritrea)"
msgstr ""
#. 4X4SP
-#: svtools/inc/langtab.hrc:251
+#: svtools/inc/langtab.hrc:252
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Ethiopia)"
msgstr ""
#. vebCw
-#: svtools/inc/langtab.hrc:252
+#: svtools/inc/langtab.hrc:253
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Amharic"
msgstr ""
#. wVfCr
-#: svtools/inc/langtab.hrc:253
+#: svtools/inc/langtab.hrc:254
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kirghiz"
msgstr ""
#. zCrUd
-#: svtools/inc/langtab.hrc:254
+#: svtools/inc/langtab.hrc:255
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Belgium)"
msgstr ""
#. bZjgG
-#: svtools/inc/langtab.hrc:255
+#: svtools/inc/langtab.hrc:256
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chuvash"
msgstr ""
#. Hhf2V
-#: svtools/inc/langtab.hrc:256
+#: svtools/inc/langtab.hrc:257
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Burmese"
msgstr ""
#. YCarY
-#: svtools/inc/langtab.hrc:257
+#: svtools/inc/langtab.hrc:258
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Nigeria)"
msgstr ""
#. JXCmu
-#: svtools/inc/langtab.hrc:258
+#: svtools/inc/langtab.hrc:259
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Ghana)"
msgstr ""
#. 7jrGb
-#: svtools/inc/langtab.hrc:259
+#: svtools/inc/langtab.hrc:260
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Éwé"
msgstr ""
#. QWBZG
-#: svtools/inc/langtab.hrc:260
+#: svtools/inc/langtab.hrc:261
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ghana)"
msgstr ""
#. pAEtz
-#: svtools/inc/langtab.hrc:261
+#: svtools/inc/langtab.hrc:262
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sango"
msgstr ""
#. L9sDt
-#: svtools/inc/langtab.hrc:262
+#: svtools/inc/langtab.hrc:263
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tagalog"
msgstr ""
#. iFSZs
-#: svtools/inc/langtab.hrc:263
+#: svtools/inc/langtab.hrc:264
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ganda"
msgstr ""
#. Gdbhz
-#: svtools/inc/langtab.hrc:264
+#: svtools/inc/langtab.hrc:265
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lingala"
msgstr ""
#. TnDKB
-#: svtools/inc/langtab.hrc:265
+#: svtools/inc/langtab.hrc:266
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Low German"
msgstr ""
#. Yr5hK
-#: svtools/inc/langtab.hrc:266
+#: svtools/inc/langtab.hrc:267
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hiligaynon"
msgstr ""
#. nF96G
-#: svtools/inc/langtab.hrc:267
+#: svtools/inc/langtab.hrc:268
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nyanja"
msgstr ""
#. v4jmr
-#: svtools/inc/langtab.hrc:268
+#: svtools/inc/langtab.hrc:269
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashubian"
msgstr ""
#. nbEp5
-#: svtools/inc/langtab.hrc:269
+#: svtools/inc/langtab.hrc:270
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Cuba)"
msgstr ""
#. CGkDF
-#: svtools/inc/langtab.hrc:270
+#: svtools/inc/langtab.hrc:271
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Indonesia)"
msgstr ""
#. yXqvC
-#: svtools/inc/langtab.hrc:271
+#: svtools/inc/langtab.hrc:272
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, North)"
msgstr ""
#. V3XMi
-#: svtools/inc/langtab.hrc:272
+#: svtools/inc/langtab.hrc:273
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, South)"
msgstr ""
#. 3WCP7
-#: svtools/inc/langtab.hrc:273
+#: svtools/inc/langtab.hrc:274
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Somali"
msgstr ""
#. zFoBp
-#: svtools/inc/langtab.hrc:274
+#: svtools/inc/langtab.hrc:275
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Inari (Finland)"
msgstr ""
#. FJAQR
-#: svtools/inc/langtab.hrc:275
+#: svtools/inc/langtab.hrc:276
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Norway)"
msgstr ""
#. yBxW5
-#: svtools/inc/langtab.hrc:276
+#: svtools/inc/langtab.hrc:277
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Sweden)"
msgstr ""
#. 8yPLy
-#: svtools/inc/langtab.hrc:277
+#: svtools/inc/langtab.hrc:278
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Finland)"
msgstr ""
#. SQTD9
-#: svtools/inc/langtab.hrc:278
+#: svtools/inc/langtab.hrc:279
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Norway)"
msgstr ""
#. BHGpD
-#: svtools/inc/langtab.hrc:279
+#: svtools/inc/langtab.hrc:280
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Sweden)"
msgstr ""
#. cdYkC
-#: svtools/inc/langtab.hrc:280
+#: svtools/inc/langtab.hrc:281
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Skolt (Finland)"
msgstr ""
#. od3Hp
-#: svtools/inc/langtab.hrc:281
+#: svtools/inc/langtab.hrc:282
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Norway)"
msgstr ""
#. 5Ueff
-#: svtools/inc/langtab.hrc:282
+#: svtools/inc/langtab.hrc:283
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Sweden)"
msgstr ""
#. 7x4mU
-#: svtools/inc/langtab.hrc:283
+#: svtools/inc/langtab.hrc:284
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Kildin (Russia)"
msgstr ""
#. A5Crw
-#: svtools/inc/langtab.hrc:284
+#: svtools/inc/langtab.hrc:285
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guarani (Paraguay)"
msgstr ""
#. ESc5d
-#: svtools/inc/langtab.hrc:285
+#: svtools/inc/langtab.hrc:286
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bodo"
msgstr ""
#. sSAvV
-#: svtools/inc/langtab.hrc:286
+#: svtools/inc/langtab.hrc:287
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dogri"
msgstr ""
#. f2nfh
-#: svtools/inc/langtab.hrc:287
+#: svtools/inc/langtab.hrc:288
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maithili"
msgstr ""
#. Rm94B
-#: svtools/inc/langtab.hrc:288
+#: svtools/inc/langtab.hrc:289
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Santali"
msgstr ""
#. C7EGu
-#: svtools/inc/langtab.hrc:289
+#: svtools/inc/langtab.hrc:290
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Timor-Leste)"
msgstr ""
#. JzTF8
-#: svtools/inc/langtab.hrc:290
+#: svtools/inc/langtab.hrc:291
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkmen"
msgstr ""
#. XbECR
-#: svtools/inc/langtab.hrc:291
+#: svtools/inc/langtab.hrc:292
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maltese"
msgstr ""
#. PJ6DF
-#: svtools/inc/langtab.hrc:292
+#: svtools/inc/langtab.hrc:293
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tok Pisin"
msgstr ""
#. kAWUo
-#: svtools/inc/langtab.hrc:293
+#: svtools/inc/langtab.hrc:294
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Shuswap"
msgstr ""
#. sBWQv
-#: svtools/inc/langtab.hrc:294
+#: svtools/inc/langtab.hrc:295
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Oromo"
msgstr ""
#. jYDYi
-#: svtools/inc/langtab.hrc:295
+#: svtools/inc/langtab.hrc:296
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek, Ancient"
msgstr ""
#. WY8GH
-#: svtools/inc/langtab.hrc:296
+#: svtools/inc/langtab.hrc:297
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (Israel)"
msgstr ""
#. VAWnd
-#: svtools/inc/langtab.hrc:297
+#: svtools/inc/langtab.hrc:298
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Ecuador)"
msgstr ""
#. UDB2F
-#: svtools/inc/langtab.hrc:298
+#: svtools/inc/langtab.hrc:299
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uyghur"
msgstr ""
#. XAu8x
-#: svtools/inc/langtab.hrc:299
+#: svtools/inc/langtab.hrc:300
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Asturian"
msgstr ""
#. hwM5p
-#: svtools/inc/langtab.hrc:300
+#: svtools/inc/langtab.hrc:301
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Upper"
msgstr ""
#. iGTFG
-#: svtools/inc/langtab.hrc:301
+#: svtools/inc/langtab.hrc:302
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Lower"
msgstr ""
#. RvdrP
-#: svtools/inc/langtab.hrc:302
+#: svtools/inc/langtab.hrc:303
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latgalian"
msgstr ""
#. 94i7A
-#: svtools/inc/langtab.hrc:303
+#: svtools/inc/langtab.hrc:304
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maore"
msgstr ""
#. FeuXJ
-#: svtools/inc/langtab.hrc:304
+#: svtools/inc/langtab.hrc:305
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bushi"
msgstr ""
#. CWFtg
-#: svtools/inc/langtab.hrc:305
+#: svtools/inc/langtab.hrc:306
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tahitian"
msgstr ""
#. TDoMB
-#: svtools/inc/langtab.hrc:306
+#: svtools/inc/langtab.hrc:307
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malagasy, Plateau"
msgstr ""
#. EVG88
-#: svtools/inc/langtab.hrc:307
+#: svtools/inc/langtab.hrc:308
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamentu (Netherlands Antilles)"
msgstr ""
#. fbGn8
-#: svtools/inc/langtab.hrc:308
+#: svtools/inc/langtab.hrc:309
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Aruba)"
msgstr ""
#. 9XBNE
-#: svtools/inc/langtab.hrc:309
+#: svtools/inc/langtab.hrc:310
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Campidanese"
msgstr ""
#. d2kAw
-#: svtools/inc/langtab.hrc:310
+#: svtools/inc/langtab.hrc:311
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Gallurese"
msgstr ""
#. cJATX
-#: svtools/inc/langtab.hrc:311
+#: svtools/inc/langtab.hrc:312
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Logudorese"
msgstr ""
#. PJFYt
-#: svtools/inc/langtab.hrc:312
+#: svtools/inc/langtab.hrc:313
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Sassarese"
msgstr ""
#. oDLAc
-#: svtools/inc/langtab.hrc:313
+#: svtools/inc/langtab.hrc:314
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bafia"
msgstr ""
#. 598zD
-#: svtools/inc/langtab.hrc:314
+#: svtools/inc/langtab.hrc:315
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gikuyu"
msgstr ""
#. PFxrW
-#: svtools/inc/langtab.hrc:315
+#: svtools/inc/langtab.hrc:316
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yoruba"
msgstr ""
#. jajFo
-#: svtools/inc/langtab.hrc:316
+#: svtools/inc/langtab.hrc:317
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Ukraine)"
msgstr ""
#. PpWdM
-#: svtools/inc/langtab.hrc:317
+#: svtools/inc/langtab.hrc:318
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Slovakia)"
msgstr ""
#. Wgo9k
-#: svtools/inc/langtab.hrc:318
+#: svtools/inc/langtab.hrc:319
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabyle Latin"
msgstr ""
#. MSnHB
-#: svtools/inc/langtab.hrc:319
+#: svtools/inc/langtab.hrc:320
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (USA)"
msgstr ""
#. uYMRX
-#: svtools/inc/langtab.hrc:320
+#: svtools/inc/langtab.hrc:321
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hawaiian"
msgstr ""
#. DyEGX
-#: svtools/inc/langtab.hrc:321
+#: svtools/inc/langtab.hrc:322
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Limbu"
msgstr ""
#. 3jGCz
-#: svtools/inc/langtab.hrc:322
+#: svtools/inc/langtab.hrc:323
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lojban"
msgstr ""
#. Ec3C4
-#: svtools/inc/langtab.hrc:323
+#: svtools/inc/langtab.hrc:324
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Haitian"
msgstr ""
#. D3Xoy
-#: svtools/inc/langtab.hrc:324
+#: svtools/inc/langtab.hrc:325
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Beembe"
msgstr ""
#. 6Pkbr
-#: svtools/inc/langtab.hrc:325
+#: svtools/inc/langtab.hrc:326
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bekwel"
msgstr ""
#. 8WjqB
-#: svtools/inc/langtab.hrc:326
+#: svtools/inc/langtab.hrc:327
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Congo)"
msgstr ""
#. hCFcE
-#: svtools/inc/langtab.hrc:327
+#: svtools/inc/langtab.hrc:328
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lari"
msgstr ""
#. KxXpB
-#: svtools/inc/langtab.hrc:328
+#: svtools/inc/langtab.hrc:329
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mbochi"
msgstr ""
#. 6FdTq
-#: svtools/inc/langtab.hrc:329
+#: svtools/inc/langtab.hrc:330
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Eboo"
msgstr ""
#. FeBzA
-#: svtools/inc/langtab.hrc:330
+#: svtools/inc/langtab.hrc:331
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Ibali"
msgstr ""
#. LKetF
-#: svtools/inc/langtab.hrc:331
+#: svtools/inc/langtab.hrc:332
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Tyee"
msgstr ""
#. DfVqj
-#: svtools/inc/langtab.hrc:332
+#: svtools/inc/langtab.hrc:333
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vili"
msgstr ""
#. uBEkT
-#: svtools/inc/langtab.hrc:333
+#: svtools/inc/langtab.hrc:334
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "KeyID"
msgstr ""
#. maAoG
-#: svtools/inc/langtab.hrc:334
+#: svtools/inc/langtab.hrc:335
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Latin"
msgstr ""
#. eDDSm
-#: svtools/inc/langtab.hrc:335
+#: svtools/inc/langtab.hrc:336
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kyrgyz (China)"
msgstr ""
#. RCmma
-#: svtools/inc/langtab.hrc:336
+#: svtools/inc/langtab.hrc:337
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Zyrian"
msgstr ""
#. DLxCK
-#: svtools/inc/langtab.hrc:337
+#: svtools/inc/langtab.hrc:338
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Permyak"
msgstr ""
#. zRJy3
-#: svtools/inc/langtab.hrc:338
+#: svtools/inc/langtab.hrc:339
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pitjantjatjara"
msgstr ""
#. X2WLD
-#: svtools/inc/langtab.hrc:339
+#: svtools/inc/langtab.hrc:340
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malawi)"
msgstr ""
#. BNve6
-#: svtools/inc/langtab.hrc:340
+#: svtools/inc/langtab.hrc:341
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Erzya"
msgstr ""
#. bS6vy
-#: svtools/inc/langtab.hrc:341
+#: svtools/inc/langtab.hrc:342
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Meadow"
msgstr ""
#. 2YjMT
-#: svtools/inc/langtab.hrc:342
+#: svtools/inc/langtab.hrc:343
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Curaçao)"
msgstr ""
#. QA2V4
-#: svtools/inc/langtab.hrc:343
+#: svtools/inc/langtab.hrc:344
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Bonaire)"
msgstr ""
#. vozw6
-#: svtools/inc/langtab.hrc:344
+#: svtools/inc/langtab.hrc:345
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khanty"
msgstr ""
#. MBtJM
-#: svtools/inc/langtab.hrc:345
+#: svtools/inc/langtab.hrc:346
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Livonian"
msgstr ""
#. wNkoh
-#: svtools/inc/langtab.hrc:346
+#: svtools/inc/langtab.hrc:347
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moksha"
msgstr ""
#. uCDU6
-#: svtools/inc/langtab.hrc:347
+#: svtools/inc/langtab.hrc:348
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Hill"
msgstr ""
#. JEhY4
-#: svtools/inc/langtab.hrc:348
+#: svtools/inc/langtab.hrc:349
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nganasan"
msgstr ""
#. hr4pq
-#: svtools/inc/langtab.hrc:349
+#: svtools/inc/langtab.hrc:350
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Olonets"
msgstr ""
#. Arpn4
-#: svtools/inc/langtab.hrc:350
+#: svtools/inc/langtab.hrc:351
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Veps"
msgstr ""
#. fJ3Ss
-#: svtools/inc/langtab.hrc:351
+#: svtools/inc/langtab.hrc:352
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Võro"
msgstr ""
#. HuWCs
-#: svtools/inc/langtab.hrc:352
+#: svtools/inc/langtab.hrc:353
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nenets"
msgstr ""
#. 5Zxgd
-#: svtools/inc/langtab.hrc:353
+#: svtools/inc/langtab.hrc:354
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Central African Republic)"
msgstr ""
#. oBDBe
-#: svtools/inc/langtab.hrc:354
+#: svtools/inc/langtab.hrc:355
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Congo)"
msgstr ""
#. GRKCD
-#: svtools/inc/langtab.hrc:355
+#: svtools/inc/langtab.hrc:356
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dibole"
msgstr ""
#. cgMCr
-#: svtools/inc/langtab.hrc:356
+#: svtools/inc/langtab.hrc:357
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Doondo"
msgstr ""
#. FmhF6
-#: svtools/inc/langtab.hrc:357
+#: svtools/inc/langtab.hrc:358
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kaamba"
msgstr ""
#. BBf4G
-#: svtools/inc/langtab.hrc:358
+#: svtools/inc/langtab.hrc:359
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Koongo (Congo)"
msgstr ""
#. HbeaC
-#: svtools/inc/langtab.hrc:359
+#: svtools/inc/langtab.hrc:360
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kunyi"
msgstr ""
#. wLxHD
-#: svtools/inc/langtab.hrc:360
+#: svtools/inc/langtab.hrc:361
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngungwel"
msgstr ""
#. 7cvAe
-#: svtools/inc/langtab.hrc:361
+#: svtools/inc/langtab.hrc:362
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
msgstr ""
#. G2SG8
-#: svtools/inc/langtab.hrc:362
+#: svtools/inc/langtab.hrc:363
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punu"
msgstr ""
#. WjBVL
-#: svtools/inc/langtab.hrc:363
+#: svtools/inc/langtab.hrc:364
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Suundi"
msgstr ""
#. 9nAA2
-#: svtools/inc/langtab.hrc:364
+#: svtools/inc/langtab.hrc:365
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Kukuya"
msgstr ""
#. dwdUH
-#: svtools/inc/langtab.hrc:365
+#: svtools/inc/langtab.hrc:366
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsaangi"
msgstr ""
#. otqzC
-#: svtools/inc/langtab.hrc:366
+#: svtools/inc/langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Congo)"
msgstr ""
#. JuMFF
-#: svtools/inc/langtab.hrc:367
+#: svtools/inc/langtab.hrc:368
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Democratic Republic of the Congo)"
msgstr ""
#. NDjGL
-#: svtools/inc/langtab.hrc:368
+#: svtools/inc/langtab.hrc:369
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yombe (Congo)"
msgstr ""
#. MvwFr
-#: svtools/inc/langtab.hrc:369
+#: svtools/inc/langtab.hrc:370
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "N'ko"
msgstr ""
#. WFc6C
-#: svtools/inc/langtab.hrc:370
+#: svtools/inc/langtab.hrc:371
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Udmurt"
msgstr ""
#. hEtfX
-#: svtools/inc/langtab.hrc:371
+#: svtools/inc/langtab.hrc:372
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (India)"
msgstr ""
#. Agf93
-#: svtools/inc/langtab.hrc:372
+#: svtools/inc/langtab.hrc:373
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cornish"
msgstr ""
#. EtH3H
-#: svtools/inc/langtab.hrc:373
+#: svtools/inc/langtab.hrc:374
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Pite (Sweden)"
msgstr ""
#. jp6C9
-#: svtools/inc/langtab.hrc:374
+#: svtools/inc/langtab.hrc:375
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngäbere"
msgstr ""
#. 3nTLx
-#: svtools/inc/langtab.hrc:375
+#: svtools/inc/langtab.hrc:376
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kumyk"
msgstr ""
#. c56C9
-#: svtools/inc/langtab.hrc:376
+#: svtools/inc/langtab.hrc:377
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nogai"
msgstr ""
#. CBiiA
-#: svtools/inc/langtab.hrc:377
+#: svtools/inc/langtab.hrc:378
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Karakalpak Latin"
msgstr ""
#. CkEC7
-#: svtools/inc/langtab.hrc:378
+#: svtools/inc/langtab.hrc:379
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ladin"
msgstr ""
#. XAiVE
-#: svtools/inc/langtab.hrc:379
+#: svtools/inc/langtab.hrc:380
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Burkina Faso)"
msgstr ""
#. EGzhe
-#: svtools/inc/langtab.hrc:380
+#: svtools/inc/langtab.hrc:381
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Puinave"
msgstr ""
#. HNcxe
-#: svtools/inc/langtab.hrc:381
+#: svtools/inc/langtab.hrc:382
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maninkakan, Eastern, Latin"
msgstr ""
#. Kxi9E
-#: svtools/inc/langtab.hrc:382
+#: svtools/inc/langtab.hrc:383
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Avar"
msgstr ""
#. zumBa
-#: svtools/inc/langtab.hrc:383
+#: svtools/inc/langtab.hrc:384
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Latin"
msgstr ""
#. PQqU7
-#: svtools/inc/langtab.hrc:384
+#: svtools/inc/langtab.hrc:385
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Syllabics"
msgstr ""
#. kewgf
-#: svtools/inc/langtab.hrc:385
+#: svtools/inc/langtab.hrc:386
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lengo"
msgstr ""
#. KtBfE
-#: svtools/inc/langtab.hrc:386
+#: svtools/inc/langtab.hrc:387
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Côte d'Ivoire)"
msgstr ""
#. DTuEL
-#: svtools/inc/langtab.hrc:387
+#: svtools/inc/langtab.hrc:388
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mali)"
msgstr ""
#. LFLk6
-#: svtools/inc/langtab.hrc:388
+#: svtools/inc/langtab.hrc:389
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Senegal)"
msgstr ""
#. mSK3x
-#: svtools/inc/langtab.hrc:389
+#: svtools/inc/langtab.hrc:390
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Benin)"
msgstr ""
#. tM6qQ
-#: svtools/inc/langtab.hrc:390
+#: svtools/inc/langtab.hrc:391
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Niger)"
msgstr ""
#. nCq6f
-#: svtools/inc/langtab.hrc:391
+#: svtools/inc/langtab.hrc:392
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Togo)"
msgstr ""
#. oCBvK
-#: svtools/inc/langtab.hrc:392
+#: svtools/inc/langtab.hrc:393
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kven Finnish"
msgstr ""
#. zjNcC
-#: svtools/inc/langtab.hrc:393
+#: svtools/inc/langtab.hrc:394
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venetian"
msgstr ""
#. 8EbCs
-#: svtools/inc/langtab.hrc:394
+#: svtools/inc/langtab.hrc:395
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Gambia)"
msgstr ""
#. gEd8L
-#: svtools/inc/langtab.hrc:395
+#: svtools/inc/langtab.hrc:396
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aranese"
msgstr ""
#. TaEzQ
-#: svtools/inc/langtab.hrc:396
+#: svtools/inc/langtab.hrc:397
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (France)"
msgstr ""
#. s4yFD
-#: svtools/inc/langtab.hrc:397
+#: svtools/inc/langtab.hrc:398
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Italy)"
msgstr ""
#. FvPLF
-#: svtools/inc/langtab.hrc:398
+#: svtools/inc/langtab.hrc:399
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Switzerland)"
msgstr ""
#. GgwXq
-#: svtools/inc/langtab.hrc:399
+#: svtools/inc/langtab.hrc:400
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Botswana)"
msgstr ""
#. GZfWN
-#: svtools/inc/langtab.hrc:400
+#: svtools/inc/langtab.hrc:401
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingue Occidental"
msgstr ""
#. FFkaK
-#: svtools/inc/langtab.hrc:401
+#: svtools/inc/langtab.hrc:402
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Apatani"
msgstr ""
#. EHHtS
-#: svtools/inc/langtab.hrc:402
+#: svtools/inc/langtab.hrc:403
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Mauritius)"
msgstr ""
#. atcMq
-#: svtools/inc/langtab.hrc:403
+#: svtools/inc/langtab.hrc:404
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mauritius)"
msgstr ""
#. UZ4Pn
-#: svtools/inc/langtab.hrc:404
+#: svtools/inc/langtab.hrc:405
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Silesian"
msgstr ""
#. RJDLA
-#: svtools/inc/langtab.hrc:405
+#: svtools/inc/langtab.hrc:406
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
#. v3WK8
-#: svtools/inc/langtab.hrc:406
+#: svtools/inc/langtab.hrc:407
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malaysia)"
msgstr ""
#. 4sBjT
-#: svtools/inc/langtab.hrc:407
+#: svtools/inc/langtab.hrc:408
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manchu"
msgstr ""
#. XH3fY
-#: svtools/inc/langtab.hrc:408
+#: svtools/inc/langtab.hrc:409
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xibe"
msgstr ""
#. oGNdE
-#: svtools/inc/langtab.hrc:409
+#: svtools/inc/langtab.hrc:410
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Democratic Republic of the Congo)"
msgstr ""
#. jQF7C
-#: svtools/inc/langtab.hrc:410
+#: svtools/inc/langtab.hrc:411
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr "Tipo de letra"
#. cAPXF
-#: svtools/inc/langtab.hrc:411
+#: svtools/inc/langtab.hrc:412
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Plautdietsch"
msgstr ""
#. 8LY2A
-#: svtools/inc/langtab.hrc:412
+#: svtools/inc/langtab.hrc:413
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Russia)"
msgstr ""
#. ieGNR
-#: svtools/inc/langtab.hrc:413
+#: svtools/inc/langtab.hrc:414
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Iran)"
msgstr ""
#. US8Ga
-#: svtools/inc/langtab.hrc:414
+#: svtools/inc/langtab.hrc:415
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Western (Armenia)"
msgstr ""
#. nzbrZ
-#: svtools/inc/langtab.hrc:415
+#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Classical (Armenia)"
msgstr ""
#. BDKAa
-#: svtools/inc/langtab.hrc:416
+#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Malaysia)"
msgstr ""
#. AnrGG
-#: svtools/inc/langtab.hrc:417
+#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Brunei Darussalam)"
msgstr ""
#. utBog
-#: svtools/inc/langtab.hrc:418
+#: svtools/inc/langtab.hrc:419
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
msgstr ""
#. jPaAH
-#: svtools/inc/langtab.hrc:419
+#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
msgstr ""
#. mMVAF
-#: svtools/inc/langtab.hrc:420
+#: svtools/inc/langtab.hrc:421
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
msgstr ""
#. AzGAy
-#: svtools/inc/langtab.hrc:421
+#: svtools/inc/langtab.hrc:422
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
msgstr ""
#. 7kkKy
-#: svtools/inc/langtab.hrc:422
+#: svtools/inc/langtab.hrc:423
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Sri Lanka)"
msgstr ""
#. xFPXp
-#: svtools/inc/langtab.hrc:423
+#: svtools/inc/langtab.hrc:424
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Nigeria)"
msgstr ""
#. Up6ab
-#: svtools/inc/langtab.hrc:424
+#: svtools/inc/langtab.hrc:425
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabardian"
msgstr ""
#. BiDsR
-#: svtools/inc/langtab.hrc:425
+#: svtools/inc/langtab.hrc:426
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guadeloupean Creole French"
msgstr ""
#. 2b2P4
-#: svtools/inc/langtab.hrc:426
+#: svtools/inc/langtab.hrc:427
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ligurian"
msgstr ""
#. 3LvEE
-#: svtools/inc/langtab.hrc:427
+#: svtools/inc/langtab.hrc:428
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Minangkabau"
msgstr ""
#. nDkKR
-#: svtools/inc/langtab.hrc:428
+#: svtools/inc/langtab.hrc:429
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sundanese"
msgstr ""
#. wGEAB
-#: svtools/inc/langtab.hrc:429
+#: svtools/inc/langtab.hrc:430
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Hong Kong)"
msgstr ""
#. qTMB2
-#: svtools/inc/langtab.hrc:430
+#: svtools/inc/langtab.hrc:431
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Kenya)"
msgstr ""
#. SgQ2p
-#: svtools/inc/langtab.hrc:431
+#: svtools/inc/langtab.hrc:432
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Thai"
msgstr ""
#. DGeeF
-#: svtools/inc/langtab.hrc:432
+#: svtools/inc/langtab.hrc:433
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cabécar"
msgstr ""
#. xHCtG
-#: svtools/inc/langtab.hrc:433
+#: svtools/inc/langtab.hrc:434
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bribri"
msgstr ""
#. 2GFgR
-#: svtools/inc/langtab.hrc:434
+#: svtools/inc/langtab.hrc:435
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Denmark)"
msgstr ""
#. gmE6U
-#: svtools/inc/langtab.hrc:435
+#: svtools/inc/langtab.hrc:436
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sesotho"
msgstr ""
#. BkKJX
-#: svtools/inc/langtab.hrc:436
+#: svtools/inc/langtab.hrc:437
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr ""
#. xFYhC
-#: svtools/inc/langtab.hrc:437
+#: svtools/inc/langtab.hrc:438
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Israel)"
msgstr ""
#. Bryjh
-#: svtools/inc/langtab.hrc:438
+#: svtools/inc/langtab.hrc:439
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Latin"
msgstr ""
#. DZBAE
-#: svtools/inc/langtab.hrc:439
+#: svtools/inc/langtab.hrc:440
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Cyrillic"
msgstr ""
#. 4eEDW
-#: svtools/inc/langtab.hrc:440
+#: svtools/inc/langtab.hrc:441
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pennsylvania Dutch"
msgstr ""
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 5557a5cd2c1..2aac3ebd972 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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-01-17 16:38+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-31 22:31+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.11.2\n"
"X-POOTLE-MTIME: 1542022409.000000\n"
#. 3GkZj
@@ -35,3321 +35,3327 @@ msgctxt "STR_ObjNameSingulGRUP"
msgid "Group object"
msgstr ""
-#. tC4qm
+#. nsYcw
#: include/svx/strings.hrc:28
+msgctxt "STR_ObjNameSingulDIAGRAM"
+msgid "Diagram"
+msgstr ""
+
+#. tC4qm
+#: include/svx/strings.hrc:29
msgctxt "STR_ObjNamePluralGRUP"
msgid "Group objects"
msgstr ""
#. piV8E
-#: include/svx/strings.hrc:29
+#: include/svx/strings.hrc:30
msgctxt "STR_ObjNameSingulGRUPEMPTY"
msgid "Blank group object"
msgstr ""
#. BBEPU
-#: include/svx/strings.hrc:30
+#: include/svx/strings.hrc:31
msgctxt "STR_ObjNamePluralGRUPEMPTY"
msgid "Blank group objects"
msgstr ""
#. NVHmC
-#: include/svx/strings.hrc:31
+#: include/svx/strings.hrc:32
#, fuzzy
msgctxt "STR_ObjNameSingulLINE"
msgid "Line"
msgstr "Hora"
#. SD2Wy
-#: include/svx/strings.hrc:32
+#: include/svx/strings.hrc:33
msgctxt "STR_ObjNameSingulLINE_Hori"
msgid "Horizontal line"
msgstr ""
#. 3dPEH
-#: include/svx/strings.hrc:33
+#: include/svx/strings.hrc:34
msgctxt "STR_ObjNameSingulLINE_Vert"
msgid "Vertical line"
msgstr ""
#. JzFtj
-#: include/svx/strings.hrc:34
+#: include/svx/strings.hrc:35
msgctxt "STR_ObjNameSingulLINE_Diag"
msgid "Diagonal line"
msgstr ""
#. YPAoe
-#: include/svx/strings.hrc:35
+#: include/svx/strings.hrc:36
msgctxt "STR_ObjNamePluralLINE"
msgid "Lines"
msgstr ""
#. yS2nC
-#: include/svx/strings.hrc:36
+#: include/svx/strings.hrc:37
msgctxt "STR_ObjNameSingulRECT"
msgid "Rectangle"
msgstr ""
#. TDTj8
-#: include/svx/strings.hrc:37
+#: include/svx/strings.hrc:38
msgctxt "STR_ObjNamePluralRECT"
msgid "Rectangles"
msgstr ""
#. fnV49
-#: include/svx/strings.hrc:38
+#: include/svx/strings.hrc:39
msgctxt "STR_ObjNameSingulQUAD"
msgid "Square"
msgstr ""
#. XkEHU
-#: include/svx/strings.hrc:39
+#: include/svx/strings.hrc:40
msgctxt "STR_ObjNamePluralQUAD"
msgid "Squares"
msgstr ""
#. vw4Ut
-#: include/svx/strings.hrc:40
+#: include/svx/strings.hrc:41
msgctxt "STR_ObjNameSingulPARAL"
msgid "Parallelogram"
msgstr ""
#. yCpvs
-#: include/svx/strings.hrc:41
+#: include/svx/strings.hrc:42
msgctxt "STR_ObjNamePluralPARAL"
msgid "Parallelograms"
msgstr ""
#. SfDZQ
-#: include/svx/strings.hrc:42
+#: include/svx/strings.hrc:43
msgctxt "STR_ObjNameSingulRECTRND"
msgid "Rounded rectangle"
msgstr ""
#. PYAii
-#: include/svx/strings.hrc:43
+#: include/svx/strings.hrc:44
msgctxt "STR_ObjNamePluralRECTRND"
msgid "Rounded Rectangles"
msgstr ""
#. xQAn8
-#: include/svx/strings.hrc:44
+#: include/svx/strings.hrc:45
msgctxt "STR_ObjNameSingulQUADRND"
msgid "rounded square"
msgstr ""
#. JHxon
-#: include/svx/strings.hrc:45
+#: include/svx/strings.hrc:46
msgctxt "STR_ObjNamePluralQUADRND"
msgid "Rounded Squares"
msgstr ""
#. 89eHB
-#: include/svx/strings.hrc:46
+#: include/svx/strings.hrc:47
msgctxt "STR_ObjNameSingulPARALRND"
msgid "Rounded Parallelogram"
msgstr ""
#. WvCRG
-#: include/svx/strings.hrc:47
+#: include/svx/strings.hrc:48
msgctxt "STR_ObjNamePluralPARALRND"
msgid "Rounded parallelograms"
msgstr ""
#. NDXG6
-#: include/svx/strings.hrc:48
+#: include/svx/strings.hrc:49
msgctxt "STR_ObjNameSingulCIRC"
msgid "Circle"
msgstr ""
#. Bzk99
-#: include/svx/strings.hrc:49
+#: include/svx/strings.hrc:50
msgctxt "STR_ObjNamePluralCIRC"
msgid "Circles"
msgstr ""
#. 2CxVR
-#: include/svx/strings.hrc:50
+#: include/svx/strings.hrc:51
msgctxt "STR_ObjNameSingulSECT"
msgid "Circle sector"
msgstr ""
#. djBb7
-#: include/svx/strings.hrc:51
+#: include/svx/strings.hrc:52
msgctxt "STR_ObjNamePluralSECT"
msgid "Circle sectors"
msgstr ""
#. KAhqG
-#: include/svx/strings.hrc:52
+#: include/svx/strings.hrc:53
msgctxt "STR_ObjNameSingulCARC"
msgid "Arc"
msgstr ""
#. ZtPEx
-#: include/svx/strings.hrc:53
+#: include/svx/strings.hrc:54
msgctxt "STR_ObjNamePluralCARC"
msgid "Arcs"
msgstr ""
#. 7mXtq
-#: include/svx/strings.hrc:54
+#: include/svx/strings.hrc:55
msgctxt "STR_ObjNameSingulCCUT"
msgid "Circle segment"
msgstr ""
#. YkhbA
-#: include/svx/strings.hrc:55
+#: include/svx/strings.hrc:56
msgctxt "STR_ObjNamePluralCCUT"
msgid "Circle segments"
msgstr ""
#. QsEuy
-#: include/svx/strings.hrc:56
+#: include/svx/strings.hrc:57
msgctxt "STR_ObjNameSingulCIRCE"
msgid "Ellipse"
msgstr ""
#. rUFxb
-#: include/svx/strings.hrc:57
+#: include/svx/strings.hrc:58
msgctxt "STR_ObjNamePluralCIRCE"
msgid "Ellipses"
msgstr ""
#. UADGo
-#: include/svx/strings.hrc:58
+#: include/svx/strings.hrc:59
msgctxt "STR_ObjNameSingulSECTE"
msgid "Ellipse Pie"
msgstr ""
#. afCit
-#: include/svx/strings.hrc:59
+#: include/svx/strings.hrc:60
msgctxt "STR_ObjNamePluralSECTE"
msgid "Ellipse Pies"
msgstr ""
#. 7FXAW
-#: include/svx/strings.hrc:60
+#: include/svx/strings.hrc:61
msgctxt "STR_ObjNameSingulCARCE"
msgid "Elliptical arc"
msgstr ""
#. KdtfM
-#: include/svx/strings.hrc:61
+#: include/svx/strings.hrc:62
msgctxt "STR_ObjNamePluralCARCE"
msgid "Elliptical arcs"
msgstr ""
#. C4jME
-#: include/svx/strings.hrc:62
+#: include/svx/strings.hrc:63
msgctxt "STR_ObjNameSingulCCUTE"
msgid "Ellipse Segment"
msgstr ""
#. wKC5F
-#: include/svx/strings.hrc:63
+#: include/svx/strings.hrc:64
msgctxt "STR_ObjNamePluralCCUTE"
msgid "Ellipse Segments"
msgstr ""
#. ibJ55
-#: include/svx/strings.hrc:64
+#: include/svx/strings.hrc:65
msgctxt "STR_ObjNameSingulPOLY"
msgid "Polygon"
msgstr ""
#. AZFuB
-#: include/svx/strings.hrc:65
+#: include/svx/strings.hrc:66
msgctxt "STR_ObjNameSingulPOLY_PointCount"
msgid "Polygon %2 corners"
msgstr ""
#. a6z8j
-#: include/svx/strings.hrc:66
+#: include/svx/strings.hrc:67
msgctxt "STR_ObjNamePluralPOLY"
msgid "Polygons"
msgstr ""
#. WSEL3
-#: include/svx/strings.hrc:67
+#: include/svx/strings.hrc:68
msgctxt "STR_ObjNameSingulPLIN"
msgid "Polyline"
msgstr ""
#. eBhxV
-#: include/svx/strings.hrc:68
+#: include/svx/strings.hrc:69
msgctxt "STR_ObjNameSingulPLIN_PointCount"
msgid "Polyline with %2 corners"
msgstr ""
#. NjP7U
-#: include/svx/strings.hrc:69
+#: include/svx/strings.hrc:70
msgctxt "STR_ObjNamePluralPLIN"
msgid "Polylines"
msgstr ""
#. KNPXt
-#: include/svx/strings.hrc:70
+#: include/svx/strings.hrc:71
msgctxt "STR_ObjNameSingulPATHLINE"
msgid "Bézier curve"
msgstr ""
#. BhTAu
-#: include/svx/strings.hrc:71
+#: include/svx/strings.hrc:72
msgctxt "STR_ObjNamePluralPATHLINE"
msgid "Bézier curves"
msgstr ""
#. LU3AK
-#: include/svx/strings.hrc:72
+#: include/svx/strings.hrc:73
msgctxt "STR_ObjNameSingulPATHFILL"
msgid "Bézier curve"
msgstr ""
#. vLAWh
-#: include/svx/strings.hrc:73
+#: include/svx/strings.hrc:74
msgctxt "STR_ObjNamePluralPATHFILL"
msgid "Bézier curves"
msgstr ""
#. FQeae
-#: include/svx/strings.hrc:74
+#: include/svx/strings.hrc:75
msgctxt "STR_ObjNameSingulFREELINE"
msgid "Freeform Line"
msgstr ""
#. c8gFR
-#: include/svx/strings.hrc:75
+#: include/svx/strings.hrc:76
msgctxt "STR_ObjNamePluralFREELINE"
msgid "Freeform Lines"
msgstr ""
#. GSmPG
-#: include/svx/strings.hrc:76
+#: include/svx/strings.hrc:77
msgctxt "STR_ObjNameSingulFREEFILL"
msgid "Freeform Line"
msgstr ""
#. 8k7tC
-#: include/svx/strings.hrc:77
+#: include/svx/strings.hrc:78
msgctxt "STR_ObjNamePluralFREEFILL"
msgid "Freeform Lines"
msgstr ""
#. iwxqj
-#: include/svx/strings.hrc:78
+#: include/svx/strings.hrc:79
msgctxt "STR_ObjNameSingulCOMBLINE"
msgid "Curve"
msgstr ""
#. CjzRc
-#: include/svx/strings.hrc:79
+#: include/svx/strings.hrc:80
msgctxt "STR_ObjNameSingulNATSPLN"
msgid "Natural Spline"
msgstr ""
#. CSFGL
-#: include/svx/strings.hrc:80
+#: include/svx/strings.hrc:81
msgctxt "STR_ObjNamePluralNATSPLN"
msgid "Natural Splines"
msgstr ""
#. jpijx
-#: include/svx/strings.hrc:81
+#: include/svx/strings.hrc:82
msgctxt "STR_ObjNameSingulPERSPLN"
msgid "Periodic Spline"
msgstr ""
#. A2GLR
-#: include/svx/strings.hrc:82
+#: include/svx/strings.hrc:83
msgctxt "STR_ObjNamePluralPERSPLN"
msgid "Periodic Splines"
msgstr ""
#. efEFM
-#: include/svx/strings.hrc:83
+#: include/svx/strings.hrc:84
msgctxt "STR_ObjNameSingulTEXT"
msgid "Text Frame"
msgstr ""
#. MdV7N
-#: include/svx/strings.hrc:84
+#: include/svx/strings.hrc:85
msgctxt "STR_ObjNamePluralTEXT"
msgid "Text Frame"
msgstr ""
#. 3Pvnw
-#: include/svx/strings.hrc:85
+#: include/svx/strings.hrc:86
msgctxt "STR_ObjNameSingulTEXTLNK"
msgid "Linked text frame"
msgstr ""
#. EtTZB
-#: include/svx/strings.hrc:86
+#: include/svx/strings.hrc:87
msgctxt "STR_ObjNamePluralTEXTLNK"
msgid "Linked text frames"
msgstr ""
#. mw75y
-#: include/svx/strings.hrc:87
+#: include/svx/strings.hrc:88
msgctxt "STR_ObjNameSingulTITLETEXT"
msgid "Title text"
msgstr ""
#. aAKEp
-#: include/svx/strings.hrc:88
+#: include/svx/strings.hrc:89
msgctxt "STR_ObjNamePluralTITLETEXT"
msgid "Title texts"
msgstr ""
#. 3DMmh
-#: include/svx/strings.hrc:89
+#: include/svx/strings.hrc:90
msgctxt "STR_ObjNameSingulOUTLINETEXT"
msgid "Outline Text"
msgstr ""
#. PDZGm
-#: include/svx/strings.hrc:90
+#: include/svx/strings.hrc:91
msgctxt "STR_ObjNamePluralOUTLINETEXT"
msgid "Outline Texts"
msgstr ""
#. HspAE
-#: include/svx/strings.hrc:91
+#: include/svx/strings.hrc:92
msgctxt "STR_ObjNameSingulGRAF"
msgid "Image"
msgstr "Imachen"
#. DzfeY
-#: include/svx/strings.hrc:92
+#: include/svx/strings.hrc:93
msgctxt "STR_ObjNamePluralGRAF"
msgid "Images"
msgstr "Imachens"
#. E9w8q
-#: include/svx/strings.hrc:93
+#: include/svx/strings.hrc:94
msgctxt "STR_ObjNameSingulGRAFLNK"
msgid "Linked image"
msgstr ""
#. YopD6
-#: include/svx/strings.hrc:94
+#: include/svx/strings.hrc:95
msgctxt "STR_ObjNamePluralGRAFLNK"
msgid "Linked images"
msgstr ""
#. wWACk
-#: include/svx/strings.hrc:95
+#: include/svx/strings.hrc:96
msgctxt "STR_ObjNameSingulGRAFNONE"
msgid "Blank image object"
msgstr ""
#. uzsE4
-#: include/svx/strings.hrc:96
+#: include/svx/strings.hrc:97
msgctxt "STR_ObjNamePluralGRAFNONE"
msgid "Blank image objects"
msgstr ""
#. 8Za3o
-#: include/svx/strings.hrc:97
+#: include/svx/strings.hrc:98
msgctxt "STR_ObjNameSingulGRAFNONELNK"
msgid "Blank linked image"
msgstr ""
#. 8W5JS
-#: include/svx/strings.hrc:98
+#: include/svx/strings.hrc:99
msgctxt "STR_ObjNamePluralGRAFNONELNK"
msgid "Blank linked images"
msgstr ""
#. kUuBg
-#: include/svx/strings.hrc:99
+#: include/svx/strings.hrc:100
msgctxt "STR_ObjNameSingulGRAFMTF"
msgid "Metafile"
msgstr ""
#. w5ykB
-#: include/svx/strings.hrc:100
+#: include/svx/strings.hrc:101
msgctxt "STR_ObjNamePluralGRAFMTF"
msgid "Metafiles"
msgstr ""
#. XBDAB
-#: include/svx/strings.hrc:101
+#: include/svx/strings.hrc:102
msgctxt "STR_ObjNameSingulGRAFMTFLNK"
msgid "Linked Metafile"
msgstr ""
#. ACpDE
-#: include/svx/strings.hrc:102
+#: include/svx/strings.hrc:103
msgctxt "STR_ObjNamePluralGRAFMTFLNK"
msgid "Linked Metafiles"
msgstr ""
#. Pbmqw
-#: include/svx/strings.hrc:103
+#: include/svx/strings.hrc:104
msgctxt "STR_ObjNameSingulGRAFBMP"
msgid "Image"
msgstr "Imachen"
#. WdAhn
-#: include/svx/strings.hrc:104
+#: include/svx/strings.hrc:105
msgctxt "STR_ObjNameSingulGRAFBMPTRANS"
msgid "Image with transparency"
msgstr ""
#. 3FkK6
-#: include/svx/strings.hrc:105
+#: include/svx/strings.hrc:106
msgctxt "STR_ObjNameSingulGRAFBMPLNK"
msgid "Linked Image"
msgstr ""
#. ydd77
-#: include/svx/strings.hrc:106
+#: include/svx/strings.hrc:107
msgctxt "STR_ObjNameSingulGRAFBMPTRANSLNK"
msgid "Linked image with transparency"
msgstr ""
#. FVJeA
-#: include/svx/strings.hrc:107
+#: include/svx/strings.hrc:108
msgctxt "STR_ObjNamePluralGRAFBMP"
msgid "Images"
msgstr "Imachens"
#. mjfjF
-#: include/svx/strings.hrc:108
+#: include/svx/strings.hrc:109
msgctxt "STR_ObjNamePluralGRAFBMPTRANS"
msgid "Images with transparency"
msgstr ""
#. 8kaaN
-#: include/svx/strings.hrc:109
+#: include/svx/strings.hrc:110
msgctxt "STR_ObjNamePluralGRAFBMPLNK"
msgid "Linked images"
msgstr ""
#. DKMiE
-#: include/svx/strings.hrc:110
+#: include/svx/strings.hrc:111
msgctxt "STR_ObjNamePluralGRAFBMPTRANSLNK"
msgid "Linked images with transparency"
msgstr ""
#. aeEoK
-#: include/svx/strings.hrc:111
+#: include/svx/strings.hrc:112
msgctxt "STR_ObjNameSingulCUSTOMSHAPE"
msgid "Shape"
msgstr ""
#. BZmgL
-#: include/svx/strings.hrc:112
+#: include/svx/strings.hrc:113
msgctxt "STR_ObjNamePluralCUSTOMSHAPE"
msgid "Shapes"
msgstr ""
#. HBYSq
-#: include/svx/strings.hrc:113
+#: include/svx/strings.hrc:114
msgctxt "STR_ObjNameSingulGRAFSVG"
msgid "SVG"
msgstr ""
#. pzxhb
-#: include/svx/strings.hrc:114
+#: include/svx/strings.hrc:115
msgctxt "STR_ObjNamePluralGRAFSVG"
msgid "SVGs"
msgstr ""
#. v2DTg
-#: include/svx/strings.hrc:115
+#: include/svx/strings.hrc:116
msgctxt "STR_ObjNameSingulGRAFWMF"
msgid "WMF"
msgstr ""
#. LR2x6
-#: include/svx/strings.hrc:116
+#: include/svx/strings.hrc:117
msgctxt "STR_ObjNamePluralGRAFWMF"
msgid "WMFs"
msgstr ""
#. XcDs2
-#: include/svx/strings.hrc:117
+#: include/svx/strings.hrc:118
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "EMF"
msgstr ""
#. JtdP2
-#: include/svx/strings.hrc:118
+#: include/svx/strings.hrc:119
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "EMFs"
msgstr ""
#. H2FkB
-#: include/svx/strings.hrc:119
+#: include/svx/strings.hrc:120
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
msgstr ""
#. tc3Jb
-#: include/svx/strings.hrc:120
+#: include/svx/strings.hrc:121
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
msgstr ""
#. b3os5
-#: include/svx/strings.hrc:121
+#: include/svx/strings.hrc:122
msgctxt "STR_ObjNameSingulOLE2"
msgid "embedded object (OLE)"
msgstr ""
#. QMF8w
-#: include/svx/strings.hrc:122
+#: include/svx/strings.hrc:123
msgctxt "STR_ObjNamePluralOLE2"
msgid "Embedded objects (OLE)"
msgstr ""
#. mAAWu
-#: include/svx/strings.hrc:123
+#: include/svx/strings.hrc:124
msgctxt "STR_ObjNameSingulUno"
msgid "Control"
msgstr ""
#. KrTeo
-#: include/svx/strings.hrc:124
+#: include/svx/strings.hrc:125
msgctxt "STR_ObjNamePluralUno"
msgid "Controls"
msgstr ""
#. wfVg2
-#: include/svx/strings.hrc:125
+#: include/svx/strings.hrc:126
msgctxt "STR_ObjNameSingulFrame"
msgid "Frame"
msgstr ""
#. q72EC
-#: include/svx/strings.hrc:126
+#: include/svx/strings.hrc:127
msgctxt "STR_ObjNamePluralFrame"
msgid "Frames"
msgstr ""
#. gYhqY
-#: include/svx/strings.hrc:127
+#: include/svx/strings.hrc:128
msgctxt "STR_ObjNameSingulEDGE"
msgid "Object Connectors"
msgstr ""
#. 9XiCG
-#: include/svx/strings.hrc:128
+#: include/svx/strings.hrc:129
msgctxt "STR_ObjNamePluralEDGE"
msgid "Object Connectors"
msgstr ""
#. HSDBo
-#: include/svx/strings.hrc:129
+#: include/svx/strings.hrc:130
msgctxt "STR_ObjNameSingulCAPTION"
msgid "Callout"
msgstr ""
#. BdAJu
-#: include/svx/strings.hrc:130
+#: include/svx/strings.hrc:131
msgctxt "STR_ObjNamePluralCAPTION"
msgid "Callouts"
msgstr ""
#. Ezpif
-#: include/svx/strings.hrc:131
+#: include/svx/strings.hrc:132
msgctxt "STR_ObjNameSingulPAGE"
msgid "Preview object"
msgstr ""
#. UCECt
-#: include/svx/strings.hrc:132
+#: include/svx/strings.hrc:133
msgctxt "STR_ObjNamePluralPAGE"
msgid "Preview objects"
msgstr ""
#. GCVKi
-#: include/svx/strings.hrc:133
+#: include/svx/strings.hrc:134
msgctxt "STR_ObjNameSingulMEASURE"
msgid "Dimension line"
msgstr ""
#. DokjU
-#: include/svx/strings.hrc:134
+#: include/svx/strings.hrc:135
msgctxt "STR_ObjNamePluralMEASURE"
msgid "Dimensioning objects"
msgstr ""
#. iBQEy
-#: include/svx/strings.hrc:135
+#: include/svx/strings.hrc:136
msgctxt "STR_ObjNamePlural"
msgid "Drawing objects"
msgstr "Obchectos de dibuixo"
#. xHrgo
-#: include/svx/strings.hrc:136
+#: include/svx/strings.hrc:137
msgctxt "STR_ObjNameNoObj"
msgid "No draw object"
msgstr ""
#. EEKnk
-#: include/svx/strings.hrc:137
+#: include/svx/strings.hrc:138
msgctxt "STR_ObjNameSingulPlural"
msgid "Draw object(s)"
msgstr ""
#. LYyRP
-#: include/svx/strings.hrc:138
+#: include/svx/strings.hrc:139
msgctxt "STR_ObjNameSingulCube3d"
msgid "3D cube"
msgstr ""
#. ZsF4T
-#: include/svx/strings.hrc:139
+#: include/svx/strings.hrc:140
msgctxt "STR_ObjNamePluralCube3d"
msgid "3D cubes"
msgstr ""
#. h9hf7
-#: include/svx/strings.hrc:140
+#: include/svx/strings.hrc:141
msgctxt "STR_ObjNameSingulExtrude3d"
msgid "Extrusion object"
msgstr ""
#. Ag6Pu
-#: include/svx/strings.hrc:141
+#: include/svx/strings.hrc:142
msgctxt "STR_ObjNamePluralExtrude3d"
msgid "Extrusion objects"
msgstr ""
#. L3B8v
-#: include/svx/strings.hrc:142
+#: include/svx/strings.hrc:143
msgctxt "STR_ObjNameSingulLathe3d"
msgid "Rotation object"
msgstr ""
#. e3vFm
-#: include/svx/strings.hrc:143
+#: include/svx/strings.hrc:144
msgctxt "STR_ObjNamePluralLathe3d"
msgid "Rotation objects"
msgstr ""
#. CE5Gk
-#: include/svx/strings.hrc:144
+#: include/svx/strings.hrc:145
msgctxt "STR_ObjNameSingulObj3d"
msgid "3D object"
msgstr ""
#. pECo3
-#: include/svx/strings.hrc:145
+#: include/svx/strings.hrc:146
msgctxt "STR_ObjNamePluralObj3d"
msgid "3D objects"
msgstr ""
#. Wuqvb
-#: include/svx/strings.hrc:146
+#: include/svx/strings.hrc:147
msgctxt "STR_ObjNameSingulScene3d"
msgid "3D scene"
msgstr ""
#. tH8BD
-#: include/svx/strings.hrc:147
+#: include/svx/strings.hrc:148
msgctxt "STR_ObjNamePluralScene3d"
msgid "3D scenes"
msgstr ""
#. WdWuw
-#: include/svx/strings.hrc:148
+#: include/svx/strings.hrc:149
msgctxt "STR_ObjNameSingulSphere3d"
msgid "Sphere"
msgstr ""
#. YNXv5
-#: include/svx/strings.hrc:149
+#: include/svx/strings.hrc:150
msgctxt "STR_ObjNamePluralSphere3d"
msgid "Spheres"
msgstr ""
#. h4GBf
-#: include/svx/strings.hrc:150
+#: include/svx/strings.hrc:151
msgctxt "STR_EditWithCopy"
msgid "with copy"
msgstr ""
#. NrVyW
-#: include/svx/strings.hrc:151
+#: include/svx/strings.hrc:152
msgctxt "STR_EditPosSize"
msgid "Set position and size for %1"
msgstr ""
#. ac4yY
-#: include/svx/strings.hrc:152
+#: include/svx/strings.hrc:153
#, fuzzy
msgctxt "STR_EditDelete"
msgid "Delete %1"
msgstr "Eliminar R²"
#. AweBA
-#: include/svx/strings.hrc:153
+#: include/svx/strings.hrc:154
msgctxt "STR_EditMovToTop"
msgid "Move %1 forward"
msgstr ""
#. G7EUR
-#: include/svx/strings.hrc:154
+#: include/svx/strings.hrc:155
msgctxt "STR_EditMovToBtm"
msgid "Move %1 further back"
msgstr ""
#. B83UQ
-#: include/svx/strings.hrc:155
+#: include/svx/strings.hrc:156
msgctxt "STR_EditPutToTop"
msgid "Move %1 to front"
msgstr ""
#. aHzgz
-#: include/svx/strings.hrc:156
+#: include/svx/strings.hrc:157
msgctxt "STR_EditPutToBtm"
msgid "Move %1 to back"
msgstr ""
#. Q6nSk
-#: include/svx/strings.hrc:157
+#: include/svx/strings.hrc:158
msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr ""
#. rpJs7
-#: include/svx/strings.hrc:158
+#: include/svx/strings.hrc:159
msgctxt "STR_SortShapes"
msgid "Sort shapes"
msgstr ""
#. cALbH
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr ""
#. dskGp
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr ""
#. 5QxCS
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr ""
#. BD8aF
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr ""
#. g7Qgy
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr ""
#. 8MR5T
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr ""
#. zDbgU
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr ""
#. AFUeA
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr ""
#. QRoy3
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. wvGVC
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. iUJAq
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr ""
#. GRiqx
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr ""
#. sE8PU
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr ""
#. CzVVY
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr ""
#. 5KcDa
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr ""
#. Gbbmq
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr ""
#. Auc4o
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr ""
#. M5Jac
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
#, fuzzy
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Agrupar por"
#. wEEok
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr ""
#. XochA
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr ""
#. kzth3
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr ""
#. PDT8V
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr ""
#. 5DwCY
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr ""
#. TPv7Q
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr ""
#. ompqC
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr ""
#. gax8J
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr ""
#. s96Mt
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr ""
#. LAyEj
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr ""
#. jzxvB
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr ""
#. jocJd
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr ""
#. WFGbz
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr ""
#. SyXzE
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr ""
#. TgGUN
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr ""
#. s3Erz
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr ""
#. apfuW
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr ""
#. ttEmT
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr ""
#. xkGug
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr ""
#. smiFA
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr ""
#. PypoU
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr ""
#. 2KfaD
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr ""
#. gKFow
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr ""
#. M8onz
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr ""
#. CnGYu
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr ""
#. zBTZe
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr ""
#. JWmM2
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr ""
#. k5kFN
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr ""
#. weAmr
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr ""
#. Yofeq
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr ""
#. hWuuR
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr ""
#. EaVu8
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr ""
#. G3DCW
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragInsertGluePoint"
msgid "Insert gluepoint to %1"
msgstr ""
#. 6JqED
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr ""
#. o8CAF
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr ""
#. ghkib
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr ""
#. BCrkD
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr ""
#. xonh6
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr ""
#. kBYzN
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr ""
#. CBBXE
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr ""
#. uHCGD
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr ""
#. vRwXA
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr ""
#. 9xhJw
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr ""
#. Fst87
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr ""
#. jgbKK
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr ""
#. Eo8H6
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr ""
#. stAcK
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr ""
#. VbA6t
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr ""
#. YjghP
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
#, fuzzy
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "Agrupar por"
#. ViifK
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr ""
#. usEq4
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr ""
#. X4GFU
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr ""
#. qF4Px
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr ""
#. fKuKa
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr ""
#. ewcHx
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr ""
#. L8rCz
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr ""
#. UxCCc
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr ""
#. 23tL7
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr ""
#. yQkFZ
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr ""
#. RGnTk
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr ""
#. YxpLB
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoint"
msgid "Gluepoint from %1"
msgstr ""
#. qCFmV
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 gluepoints from %1"
msgstr ""
#. CDqRQ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr ""
#. SLrPJ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr ""
#. hczKZ
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr ""
#. 778bF
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr ""
#. BLEE8
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark gluepoints"
msgstr ""
#. eH9Vs
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional gluepoints"
msgstr ""
#. D5ZZA
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr ""
#. 7FoxD
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
#, fuzzy
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Ficar R²"
#. 9hXBp
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr ""
#. arzhD
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr ""
#. QTZxE
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr ""
#. un957
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr ""
#. vBvUC
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr ""
#. rFgUQ
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr ""
#. EYfZc
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr ""
#. BQRVo
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr ""
#. 79Cxu
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr ""
#. 9P8JF
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr ""
#. w3W7h
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr ""
#. 7pifL
-#: include/svx/strings.hrc:258
+#: include/svx/strings.hrc:259
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr ""
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr ""
#. D4AsZ
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr ""
#. tqeMT
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr ""
#. XcY5w
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValON"
msgid "on"
msgstr "o"
#. e6RAB
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr ""
#. gaXKQ
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr ""
#. 65SoV
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValNO"
msgid "No"
msgstr ""
#. aeEuB
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr ""
#. BFaLY
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr ""
#. KFMjw
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr ""
#. 48UKA
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr ""
#. DVm64
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
#, fuzzy
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "~Horizontal"
#. ZYYeS
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
#, fuzzy
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "~Vertical"
#. HcoYN
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Automatica"
#. uZNFq
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr ""
#. 2ZQvA
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr ""
#. Ej4Ya
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr ""
#. Wr4kE
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr ""
#. 73uL2
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Cobalto"
#. 3Cde5
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
#, fuzzy
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "~Centrau"
#. AR3n7
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Cobaixo"
#. UmBBe
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr ""
#. dRtWD
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr ""
#. kGXVu
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Enta la cucha"
#. bDPBk
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
#, fuzzy
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "~Centrau"
#. tVhNN
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Enta la dreita"
#. K8NiD
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr ""
#. H7dgd
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr ""
#. q5eQw
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr ""
#. Roba3
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr ""
#. UDFFC
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr ""
#. A9BQL
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr ""
#. EkPkn
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr ""
#. x3Yd5
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
#, fuzzy
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "Enta la cucha"
#. w7PTQ
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr ""
#. oMaiF
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
#, fuzzy
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "Brilo"
#. tQTCd
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
#, fuzzy
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "Enta abaixo"
#. 6MMYx
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr ""
#. SLdM8
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr ""
#. ZAtDC
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr ""
#. 9qXds
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr ""
#. MGEse
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Estandar"
#. sNziy
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr ""
#. zGpyM
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
#, fuzzy
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "Automatica"
#. jA4pb
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr ""
#. iqYjg
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr ""
#. h8npu
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr ""
#. WL8XG
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
#, fuzzy
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "~Centrau"
#. hy9eX
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr ""
#. 6BdZt
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr ""
#. j6Bc3
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr ""
#. 7sN8d
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr ""
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr ""
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:315
+#: include/svx/strings.hrc:316
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr ""
#. BbP7X
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr ""
#. 4NCnS
-#: include/svx/strings.hrc:317
+#: include/svx/strings.hrc:318
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr ""
#. NuJkv
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr ""
#. NgaPV
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr ""
#. UYBDU
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr ""
#. DJkAF
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr ""
#. QqA6b
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr ""
#. FcHDB
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr ""
#. KnFtT
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr ""
#. 2UZUA
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr ""
#. 5MLYD
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr ""
#. ArqSC
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr ""
#. dufaT
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr ""
#. RDcH6
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr ""
#. DJM9B
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr ""
#. gbABb
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr ""
#. GE68t
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr ""
#. DV2Ss
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Transparencia"
#. eK8kh
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr ""
#. AVtYF
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr ""
#. D7T2o
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr ""
#. NVLGP
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr ""
#. PSCTE
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr ""
#. zW4zt
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr ""
#. DBBgQ
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr ""
#. PaSqp
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr ""
#. fwikV
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr ""
#. FQgvE
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr ""
#. NUEGF
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr ""
#. pc9yk
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr ""
#. DH43F
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr ""
#. 8GFpS
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr ""
#. 2SvhA
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr ""
#. TE8CS
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr ""
#. qMnRZ
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr ""
#. fpGEZ
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr ""
#. CUBXL
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr ""
#. JSVHo
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr ""
#. P5W29
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr ""
#. LKCDD
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr ""
#. oDiYn
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr ""
#. sFLRA
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr ""
#. daERW
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr ""
#. LdeJZ
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr ""
#. 3sPPg
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr ""
#. q6MHs
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr ""
#. dSwen
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr ""
#. HcLrC
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr ""
#. TMGmk
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr ""
#. u5baB
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr ""
#. AtDxf
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr ""
#. FGU8f
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr ""
#. MV529
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr ""
#. GAtWb
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr ""
#. SgHKq
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr ""
#. gwcQp
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr ""
#. 6uEae
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr ""
#. TXjGv
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr ""
#. Z5bQB
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr ""
#. 4TmFK
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr ""
#. V9TG8
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr ""
#. haQgi
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr ""
#. 8sDXi
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CORNER_RADIUS"
msgid "Corner radius"
msgstr ""
#. GEA3m
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr ""
#. 3jdRR
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr ""
#. NoJR4
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr ""
#. EexDC
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr ""
#. 3thvB
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr ""
#. 8x2Xa
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr ""
#. WyymX
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr ""
#. vdbvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr ""
#. QzTNc
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr ""
#. CcAnR
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr ""
#. i6nqD
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr ""
#. irtVb
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr ""
#. BGR8n
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr ""
#. ruk5J
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr ""
#. cvDiA
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr ""
#. GuCC5
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr ""
#. ipog5
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr ""
#. pWAHL
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr ""
#. vGEjP
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr ""
#. SdHEU
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr ""
#. LzoA5
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr ""
#. tNbcC
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXTCOLUMNS_NUMBER"
msgid "Columns number"
msgstr ""
#. DxZkZ
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXTCOLUMNS_SPACING"
msgid "Columns spacing"
msgstr ""
#. HDtDf
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr ""
#. F9FzF
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr ""
#. jTAhz
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr ""
#. QDaB6
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr ""
#. CoYH2
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr ""
#. xdvs2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr ""
#. FB4Cj
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr ""
#. uGKvj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr ""
#. FSkBP
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr ""
#. 845KH
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr ""
#. FEDAf
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr ""
#. EnGaG
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr ""
#. 5XFzK
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr ""
#. nBFrd
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr ""
#. x7oEC
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr ""
#. 2XCPo
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr ""
#. DxA8Z
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr ""
#. LQCsj
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr ""
#. jZBoK
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr ""
#. Bhboy
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr ""
#. jw9E7
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr ""
#. CYFg6
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr ""
#. ocvCK
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr ""
#. cFVVA
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr ""
#. VVAgC
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr ""
#. iFX7y
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr ""
#. DoBGo
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr ""
#. 2NBMp
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr ""
#. 4yTAW
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr ""
#. NFDC3
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr ""
#. UBjQk
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr ""
#. GDQC3
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr ""
#. DB243
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr ""
#. i3Bah
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr ""
#. qWKC7
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
#, fuzzy
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "Numero de ~decimals"
#. wkrNX
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr ""
#. FRFU8
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr ""
#. FmSKG
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr ""
#. ejn6F
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr ""
#. ZPEB9
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr ""
#. BN5CM
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr ""
#. 3Digj
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr ""
#. nZLtM
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr ""
#. f3ed2
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr ""
#. rb6GC
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr ""
#. 5zRFi
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr ""
#. 5enZ7
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr ""
#. 2V5Mn
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr ""
#. P6Y6W
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr ""
#. yFnnC
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr ""
#. jEGfd
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr ""
#. YJFnY
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr ""
#. bZFkM
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr ""
#. K5Xuq
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr ""
#. 9Niyk
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr ""
#. yFmvh
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr ""
#. zNyKY
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr ""
#. bJv8D
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr ""
#. z7EPp
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr ""
#. Qn4GS
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr ""
#. VCtZa
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr ""
#. NxatH
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr ""
#. gNVw9
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr ""
#. iCzED
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr ""
#. HQcJt
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr ""
#. VcK8z
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr ""
#. vgGU4
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr ""
#. 3faE4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr ""
#. RAEPz
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr ""
#. gtXM3
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr ""
#. YpQDc
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr ""
#. Hp5EK
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr ""
#. Rty4j
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr ""
#. JdeqL
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr ""
#. HMmA6
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr ""
#. 8Q88u
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr ""
#. inGxX
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr ""
#. 2CtLK
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr ""
#. hCE5d
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr ""
#. Y5YFm
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr ""
#. feirn
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Inter~liniau"
#. gjAVE
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr ""
#. offnT
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr ""
#. kpiTD
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr ""
#. X535C
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
#, fuzzy
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "~Chuego de caracters"
#. AEbEz
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr ""
#. UKHSM
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr ""
#. SQWpD
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr ""
#. AUR7N
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr ""
#. v2AEJ
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr ""
#. ARvwR
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr ""
#. gcVzb
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr ""
#. kJVaV
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr ""
#. CZR4e
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr ""
#. PFSUR
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr ""
#. DrBio
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr ""
#. tUVvP
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr ""
#. S9QCU
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr ""
#. GuTzF
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr ""
#. U4qgA
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr ""
#. jzBEA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr ""
#. tZd9C
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Campos"
#. GeKPD
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Royo"
#. EzAu7
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Verde"
#. TmBML
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "Azul"
#. 7Gqzs
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr ""
#. rziVW
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Contraste"
#. CHepz
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr ""
#. 2ESVA
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Transparencia"
#. uZYFG
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr ""
#. 6aFx2
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr ""
#. Ni9KZ
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr ""
#. kVnke
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr ""
#. nbHgw
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr ""
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:523
+#: include/svx/strings.hrc:524
#, fuzzy
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "~Ficar columnas"
#. SAmd8
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
#, fuzzy
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "F~icar ringleras"
#. yFDYp
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
#, fuzzy
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Eliminar columna~s"
#. 9SF9L
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
#, fuzzy
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Eliminar ringlera~s"
#. iBbtT
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr ""
#. vmzqf
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr ""
#. 3VVmF
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr ""
#. pSCJC
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr ""
#. GdLHf
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr ""
#. fGNto
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr ""
#. B33Cb
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr ""
#. ZHBAC
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr ""
#. eERmE
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Tabla"
#. XjgSV
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
#, fuzzy
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Tabla"
#. mLDqP
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
msgstr ""
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:539
+#: include/svx/strings.hrc:540
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr ""
#. uNL7M
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr ""
#. a8YoL
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr ""
#. FDmra
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr ""
#. HcGBQ
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr ""
#. GHj4Q
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr ""
#. fa7EG
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
#, fuzzy
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "~Garra"
#. mrTdk
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
#, fuzzy
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "~Color"
#. 5bjE5
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr ""
#. yGRGW
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr ""
#. snuCi
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr ""
#. 6EvQ7
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr ""
#. i6cva
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr ""
#. emz9g
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- garra -"
#. hGaEK
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Transparencia"
#. X4EFw
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
#, fuzzy
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "~Centrau"
#. FFe8m
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr ""
#. hFhmH
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Por defecto"
#. DdAzc
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr ""
#. RHEXM
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr ""
#. bcXbA
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr ""
#. ZWz8Y
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:562
+#: include/svx/strings.hrc:563
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr ""
#. 9AUDK
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:568
+#: include/svx/strings.hrc:569
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr ""
#. PwGvV
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Griso"
#. Dp9Az
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr ""
#. TGLmD
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr ""
#. YpDke
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr ""
#. 7aJCZ
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Narancha"
#. mZMFN
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Royo"
#. 7xMrN
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr ""
#. ELXiM
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr ""
#. UTexf
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr ""
#. qbcF9
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "Azul"
#. hQ44j
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr ""
#. JpxBr
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Verde"
#. A3aCJ
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
@@ -3357,3387 +3363,3387 @@ msgstr "Hora"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:584
+#: include/svx/strings.hrc:585
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Griso claro"
#. YF2ud
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr ""
#. BaXBj
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr ""
#. masPL
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr ""
#. k5GY4
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr ""
#. KGDDj
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr ""
#. nvB2W
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr ""
#. 8Bg8h
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr ""
#. suGUh
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Azul brillant"
#. 5VFSV
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr ""
#. 3Z7KA
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr ""
#. HVPnD
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr ""
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:598
+#: include/svx/strings.hrc:599
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr ""
#. EaFik
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr ""
#. AFByn
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr ""
#. qAGnF
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr ""
#. NC62Q
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr ""
#. st4Zy
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "Granate"
#. indkC
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr ""
#. VFKuJ
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr ""
#. U3qfW
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr ""
#. dYdEW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr ""
#. qFAAB
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr ""
#. C3U7v
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:612
+#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr ""
#. GgboW
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr ""
#. 583vY
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:628
+#: include/svx/strings.hrc:629
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:653
+#: include/svx/strings.hrc:654
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr ""
#. CWbzY
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr ""
#. DkKFF
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr ""
#. 5hZu8
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr ""
#. wSEGQ
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr ""
#. pUEkF
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr ""
#. qVhW9
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr ""
#. QV77P
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr ""
#. gYFV6
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "~Diagramas"
#. LXcFL
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr ""
#. QbGU3
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr ""
#. UDfTh
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr ""
#. FXDuA
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:667
+#: include/svx/strings.hrc:668
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr ""
#. GtMuR
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr ""
#. AhPLy
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr ""
#. jVxFC
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Azul"
#. FacjB
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr ""
#. uQSDF
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr ""
#. sQpNL
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr ""
#. ACACr
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr ""
#. yy7mJ
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr ""
#. 4THUt
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr ""
#. a8AGf
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Griso"
#. B4e9f
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Verde"
#. 3mz4G
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr ""
#. gdfFF
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Royo"
#. GsAVb
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr ""
#. sZbit
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr ""
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:684
+#: include/svx/strings.hrc:685
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr ""
#. Q9rDT
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
#, fuzzy
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Finanzas"
#. 3qSCd
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr ""
#. zbAG7
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr ""
#. EtQJT
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr ""
#. YUtBv
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr ""
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:699
+#: include/svx/strings.hrc:700
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr ""
#. zKt6C
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr ""
#. 5Lbx4
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr ""
#. YXbPg
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr ""
#. mZwMD
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr ""
#. WyGuh
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr ""
#. cLHvA
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr ""
#. Kfkbm
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr ""
#. uiTTS
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr ""
#. SsUvr
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr ""
#. CKwQP
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr ""
#. hi3tb
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr ""
#. b6AwV
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr ""
#. Adprm
#. l means left
-#: include/svx/strings.hrc:713
+#: include/svx/strings.hrc:714
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr ""
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:715
+#: include/svx/strings.hrc:716
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr ""
#. JB95r
#. l means left
-#: include/svx/strings.hrc:717
+#: include/svx/strings.hrc:718
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr ""
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:719
+#: include/svx/strings.hrc:720
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr ""
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:721
+#: include/svx/strings.hrc:722
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr ""
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:723
+#: include/svx/strings.hrc:724
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr ""
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:725
+#: include/svx/strings.hrc:726
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr ""
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:727
+#: include/svx/strings.hrc:728
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr ""
#. yqda8
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr ""
#. GCtJC
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr ""
#. LCQEB
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr ""
#. oD7FW
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr ""
#. vuyUG
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr ""
#. mGtyc
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr ""
#. cArVy
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr ""
#. gvXLL
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr ""
#. GaTPh
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr ""
#. GE5vm
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr ""
#. BFTnr
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr ""
#. AFKRL
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr ""
#. djBGe
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr ""
#. pwDuE
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr ""
#. y8qpL
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr ""
#. PGt5w
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr ""
#. CyLXB
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr ""
#. vkERJ
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr ""
#. Sq2SE
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr ""
#. DoSmH
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr ""
#. 9XHkg
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
#, fuzzy
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "~Horizontal"
#. FDG7B
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr ""
#. ZEfzF
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr ""
#. GFRCF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr ""
#. iouxG
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr ""
#. Gta9k
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr ""
#. Tdpw4
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr ""
#. DyVEP
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr ""
#. Uyhuj
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr ""
#. MA6Qs
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr ""
#. Pt24U
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr ""
#. 37T3A
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr ""
#. gLwZp
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr ""
#. gka9C
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr ""
#. BaGs9
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
#, fuzzy
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "~Vertical"
#. DqGbG
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr ""
#. FCa2X
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr ""
#. BNSiE
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr ""
#. DfiaF
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr ""
#. 4htXp
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr ""
#. FVCCq
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr ""
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:770
+#: include/svx/strings.hrc:771
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr ""
#. CDxDN
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr ""
#. amMze
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr ""
#. bodAW
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr ""
#. Zn2x3
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr ""
#. xXMfH
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr ""
#. RYfTi
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr ""
#. jAu7g
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr ""
#. idyKS
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr ""
#. fFZia
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
#, fuzzy
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Enta la dreita"
#. 4ECED
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr ""
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:782
+#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:798
+#: include/svx/strings.hrc:799
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr ""
#. Q4jUs
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr ""
#. Co6U3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr ""
#. KFEX5
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr ""
#. AAn36
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
#. NLTbt
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
#. vx2XC
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
#. weQqs
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
#. CAdAS
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
#. 5T5vP
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
#. aNdJE
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
#. 3vD8U
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
#. UJmCD
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
#. i9RCR
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
#. 2oEkC
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
#. a3yZ5
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr ""
#. daP9i
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
#. JD5FJ
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
#. eB4wk
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
#. MeoCx
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr ""
#. gAqnG
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
#. DGB5k
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
#. JC7je
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
#. iFiBq
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
#. gWDnG
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
#. vbh6h
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
#. XFemm
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr ""
#. icCPR
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
#. 8CqPG
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr ""
#. GFUZF
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr ""
#. bp9ZY
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr ""
#. ZrVMS
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
#. tFas9
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr ""
#. jD9er
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr ""
#. Ds8Ae
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
#. a33Ci
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
#. BCSZY
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
#. RNNkR
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
#, fuzzy
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "~Vertical"
#. ED3Ga
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
#, fuzzy
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "~Horizontal"
#. ENYtZ
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
#. mbjPX
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
#. TxAfM
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr ""
#. 4mGJX
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
#. J4CJa
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. tHgFv
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH2"
msgid "Dot (Rounded)"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. qqS4v
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH20"
msgid "Dash Dot"
msgstr ""
#. 5ZGZy
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH21"
msgid "Long Dot (Rounded)"
msgstr ""
#. Ac2F2
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH22"
msgid "Dash Dot Dot"
msgstr ""
#. mWMXG
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_DASH23"
msgid "Dash (Rounded)"
msgstr ""
#. B6fd2
-#: include/svx/strings.hrc:931
+#: include/svx/strings.hrc:932
msgctxt "RID_SVXSTR_DASH24"
msgid "Long Dash (Rounded)"
msgstr ""
#. ds2VE
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_DASH25"
msgid "Double Dash (Rounded)"
msgstr ""
#. qtCkm
-#: include/svx/strings.hrc:933
+#: include/svx/strings.hrc:934
msgctxt "RID_SVXSTR_DASH26"
msgid "Dash Dot (Rounded)"
msgstr ""
#. psNix
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_DASH27"
msgid "Long Dash Dot (Rounded)"
msgstr ""
#. FWkBJ
-#: include/svx/strings.hrc:935
+#: include/svx/strings.hrc:936
msgctxt "RID_SVXSTR_DASH28"
msgid "Double Dash Dot (Rounded)"
msgstr ""
#. eiCNz
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_DASH29"
msgid "Dash Dot Dot (Rounded)"
msgstr ""
#. BbE5B
-#: include/svx/strings.hrc:937
+#: include/svx/strings.hrc:938
msgctxt "RID_SVXSTR_DASH30"
msgid "Double Dash Dot Dot (Rounded)"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:939
+#: include/svx/strings.hrc:940
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr ""
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:941
+#: include/svx/strings.hrc:942
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:943
+#: include/svx/strings.hrc:944
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr ""
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:945
+#: include/svx/strings.hrc:946
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:947
+#: include/svx/strings.hrc:948
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:949
+#: include/svx/strings.hrc:950
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr ""
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:951
+#: include/svx/strings.hrc:952
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:953
+#: include/svx/strings.hrc:954
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:955
+#: include/svx/strings.hrc:956
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:957
+#: include/svx/strings.hrc:958
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:959
+#: include/svx/strings.hrc:960
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr ""
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:961
+#: include/svx/strings.hrc:962
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr ""
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:963
+#: include/svx/strings.hrc:964
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr ""
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:965
+#: include/svx/strings.hrc:966
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:967
+#: include/svx/strings.hrc:968
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr ""
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:969
+#: include/svx/strings.hrc:970
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr ""
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:971
+#: include/svx/strings.hrc:972
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr ""
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:973
+#: include/svx/strings.hrc:974
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr ""
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:975
+#: include/svx/strings.hrc:976
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr ""
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:977
+#: include/svx/strings.hrc:978
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr ""
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:979
+#: include/svx/strings.hrc:980
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:981
+#: include/svx/strings.hrc:982
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:983
+#: include/svx/strings.hrc:984
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:985
+#: include/svx/strings.hrc:986
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:987
+#: include/svx/strings.hrc:988
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:989
+#: include/svx/strings.hrc:990
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:991
+#: include/svx/strings.hrc:992
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:993
+#: include/svx/strings.hrc:994
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1003
+#: include/svx/strings.hrc:1004
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Transparencia"
#. hGytB
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr ""
#. opj2M
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr ""
#. tC5jE
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr ""
#. 3T9pJ
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr ""
#. N5FWG
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
#. Nhtbq
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. apBBr
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr ""
#. BseGn
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr ""
#. LfjDh
-#: include/svx/strings.hrc:1015
+#: include/svx/strings.hrc:1016
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr ""
#. BEAbm
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr ""
#. 5ye7z
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr ""
#. tEbUT
-#: include/svx/strings.hrc:1018
+#: include/svx/strings.hrc:1019
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr ""
#. EaAMF
-#: include/svx/strings.hrc:1019
+#: include/svx/strings.hrc:1020
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr ""
#. AicJe
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr ""
#. ZbeCG
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr ""
#. BBeKk
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr ""
#. mENBU
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr ""
#. fRyqX
-#: include/svx/strings.hrc:1025
+#: include/svx/strings.hrc:1026
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr ""
#. xXhtG
-#: include/svx/strings.hrc:1026
+#: include/svx/strings.hrc:1027
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr ""
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr ""
#. Heqmn
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr ""
#. AC56T
-#: include/svx/strings.hrc:1031
+#: include/svx/strings.hrc:1032
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr ""
#. 4DonY
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr ""
#. EL9V9
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr ""
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr ""
#. RZVDm
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
#, fuzzy
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Fichers graficos"
#. YNjeD
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr ""
#. 5uYha
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr ""
#. 78DGx
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr ""
#. zGEez
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr ""
#. MwX9z
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr ""
#. dAwiC
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr ""
#. Ccn8V
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr ""
#. 6ouMS
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr ""
#. 8GPFu
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Imachens"
#. sqh2w
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Fundo"
#. B3KuT
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr ""
#. WR8JQ
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr ""
#. EbEZ6
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr ""
#. GALA8
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "Chent"
#. ZMoiA
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr ""
#. hNaiH
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Ordinadors"
#. mrvvG
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr ""
#. HhrDx
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr ""
#. 2jVzE
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr ""
#. cmF3B
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr ""
#. as3XM
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr ""
#. gGyFP
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr ""
#. 5NrPj
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Simbolos"
#. AiXUK
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr ""
#. uRxP4
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr ""
#. c3WXh
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr ""
#. pmiE7
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr ""
#. LYdAf
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Hora"
#. 4UGrY
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Presentación"
#. a46Xm
-#: include/svx/strings.hrc:1069
+#: include/svx/strings.hrc:1070
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Calandario"
#. YpuGv
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Navegador"
#. gAJH4
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr ""
#. ETEJu
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Finanzas"
#. rNez6
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Ordinadors"
#. ioX7y
-#: include/svx/strings.hrc:1074
+#: include/svx/strings.hrc:1075
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr ""
#. MmYFp
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr ""
#. EKFgg
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr ""
#. GgrBp
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr ""
#. E6onK
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr ""
#. HzX9m
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr ""
#. 3UyC8
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
#, fuzzy
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "Totz"
#. UxfS3
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
#, fuzzy
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "Selección"
#. KTgDd
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr ""
#. N6KLd
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr ""
#. AB6Vj
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr ""
#. NBBEB
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr ""
#. d9n5U
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr ""
#. A2mcf
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr ""
#. onGib
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr ""
#. XLQFD
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr ""
#. v5wRm
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr ""
#. 4DGjm
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr ""
#. kRzVE
-#: include/svx/strings.hrc:1094
+#: include/svx/strings.hrc:1095
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr ""
#. CSmTh
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr ""
#. eYrvo
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr ""
#. G4Ckx
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr ""
#. LGHsL
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr ""
#. HPevm
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr ""
#. GvKjC
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr ""
#. gmzHb
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr ""
#. DE5kt
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr ""
#. K5dY9
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr ""
#. TFBK3
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr ""
#. c7adj
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Por defecto"
#. djHis
-#: include/svx/strings.hrc:1107
+#: include/svx/strings.hrc:1108
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Cantos"
#. PURr6
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr ""
#. 9Ckww
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr ""
#. cDG4s
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr ""
#. uDT6G
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr ""
#. q2Le9
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Pachinas"
#. jfL9n
-#: include/svx/strings.hrc:1113
+#: include/svx/strings.hrc:1114
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr ""
#. f6nP8
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr ""
#. DPbrc
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr ""
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr ""
#. SKCYy
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr ""
#. CVvXU
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr ""
#. xqzJj
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
#. aVTAG
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_THEME_COLORS"
msgid "Theme colors"
msgstr ""
#. 6BoWp
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
#. D6gmu
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_THEME_COLOR1"
msgid "Background - Dark 1"
msgstr ""
#. JBJhM
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_THEME_COLOR2"
msgid "Text - Light 1"
msgstr ""
#. C7MSY
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_THEME_COLOR3"
msgid "Background - Dark 2"
msgstr ""
#. YdMAB
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_THEME_COLOR4"
msgid "Text - Light 2"
msgstr ""
#. NAAZJ
-#: include/svx/strings.hrc:1127
+#: include/svx/strings.hrc:1128
msgctxt "RID_SVXSTR_THEME_COLOR5"
msgid "Accent 1"
msgstr ""
#. 6txaB
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXSTR_THEME_COLOR6"
msgid "Accent 2"
msgstr ""
#. fECsk
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXSTR_THEME_COLOR7"
msgid "Accent 3"
msgstr ""
#. 4DH3P
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXSTR_THEME_COLOR8"
msgid "Accent 4"
msgstr ""
#. dUUDX
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXSTR_THEME_COLOR9"
msgid "Accent 5"
msgstr ""
#. 73ZEk
-#: include/svx/strings.hrc:1132
+#: include/svx/strings.hrc:1133
msgctxt "RID_SVXSTR_THEME_COLOR10"
msgid "Accent 6"
msgstr ""
#. VKjfB
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVXSTR_THEME_COLOR11"
msgid "Hyperlink"
msgstr ""
#. DBfXC
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_THEME_COLOR12"
msgid "Followed Hyperlink"
msgstr ""
#. sNGoN
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_THEME_EFFECT1"
msgid "%1, 80% Lighter"
msgstr ""
#. uQBgP
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_THEME_EFFECT2"
msgid "%1, 60% Lighter"
msgstr ""
#. sEpvU
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_THEME_EFFECT3"
msgid "%1, 40% Lighter"
msgstr ""
#. XSfNG
-#: include/svx/strings.hrc:1138
+#: include/svx/strings.hrc:1139
msgctxt "RID_SVXSTR_THEME_EFFECT4"
msgid "%1, 25% Darker"
msgstr ""
#. 3xjEA
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_THEME_EFFECT5"
msgid "%1, 50% Darker"
msgstr ""
#. DJGyY
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr ""
#. TyWTi
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr ""
#. DKFYE
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr ""
#. 2Rrxc
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr ""
#. eDpJK
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr ""
#. CWDSN
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr ""
#. CxYgt
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr ""
#. c5JCp
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr ""
#. KDSyh
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr ""
#. JpzeS
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr ""
#. j4AR9
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr ""
#. yA2xm
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr ""
#. DFEZP
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr ""
#. uPyWe
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr ""
#. UMMJN
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr ""
#. ocdkG
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr ""
#. L962H
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr ""
#. 7RVov
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr ""
#. h3CLw
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr ""
#. 6h2dG
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr ""
#. eKHcV
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr ""
#. oo88Y
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr ""
#. 4sz83
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
#, fuzzy
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "E~stilo"
#. fEHXC
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr ""
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr ""
#. CUEEW
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr ""
#. cQmVp
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr ""
#. TtnJn
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr ""
#. UERVC
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr ""
#. CznfN
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr ""
#. jvzC7
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
#, fuzzy
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "~Centrau"
#. HPtYD
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr ""
#. v4SqB
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr ""
#. daA8a
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr ""
#. DGWf8
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr ""
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr ""
#. aMva8
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr ""
#. DXEuF
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr ""
#. JfRzP
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr ""
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr ""
#. HECeC
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr ""
#. w4wm8
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr ""
#. cz8aS
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr ""
#. JG7Es
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
#, fuzzy
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Propiedatz..."
#. YQvBF
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr ""
#. qS9Rn
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr ""
#. PzEVD
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr ""
#. FWPxF
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr ""
#. Ba4Gy
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr ""
#. wtZqP
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr ""
#. HvXRK
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr ""
#. HmTfB
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr ""
#. NZ68L
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr ""
#. vGXiw
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr ""
#. zzFRi
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr ""
#. fS8JJ
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr ""
#. Qb4Gk
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr ""
#. zSJQe
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6745,339 +6751,339 @@ msgid ""
msgstr ""
#. Kb7sF
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr ""
#. pKEQb
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr ""
#. FXRKA
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr ""
#. hXjTN
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr ""
#. BWpyC
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
#, fuzzy
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Eliminar R²"
#. ZeaDk
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr ""
#. VgGrE
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1214
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr ""
#. FoXgt
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr ""
#. ZGDAr
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr ""
#. CBmAL
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr ""
#. xwuJF
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr ""
#. WiNUf
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr ""
#. a7gAj
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Campo de calendata"
#. EaBTj
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Campo horario"
#. DWfsm
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
#, fuzzy
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Campo numerico"
#. TYjnr
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr ""
#. B6MEP
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr ""
#. DEn9D
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr ""
#. V4iMu
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr ""
#. TreFC
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr ""
#. NFysA
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr ""
#. E5mMK
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr ""
#. 5474w
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr ""
#. qT2Ed
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr ""
#. 6Qvho
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr ""
#. uEYBR
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr ""
#. 3SUEn
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr ""
#. VtEN6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr ""
#. eGgm4
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr ""
#. yME46
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr ""
#. s94UU
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr ""
#. PzA5d
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr ""
#. ZyBEz
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr ""
#. guA5u
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr ""
#. 2wgdY
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr ""
#. BUYuD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr ""
#. AcTBB
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr ""
#. 6RPtu
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr ""
#. iEoGb
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr ""
#. Da6gx
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr ""
#. ZoEuu
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr ""
#. 75ECE
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr ""
#. tzFv5
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr ""
#. y6Z26
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr ""
#. F8FgA
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr ""
#. EDcU7
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr ""
#. YBFF5
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr ""
#. cECTG
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr ""
#. VkeLY
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr ""
#. z9bf9
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr ""
#. CEg85
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr ""
#. ZGAAQ
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr ""
#. W4uM2
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr ""
#. DgfNh
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr ""
#. dSYCi
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr ""
#. JpaM6
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -7085,7 +7091,7 @@ msgid ""
msgstr ""
#. y5Dyt
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -7093,7 +7099,7 @@ msgid ""
msgstr ""
#. VEzGF
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -7101,13 +7107,13 @@ msgid ""
msgstr ""
#. 3hF6H
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr ""
#. AWEbJ
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -7116,7 +7122,7 @@ msgid ""
msgstr ""
#. SGiK5
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -7125,1019 +7131,1019 @@ msgid ""
msgstr ""
#. 2zzHP
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr ""
#. 4nAtc
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr ""
#. qrFQD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr ""
#. DKkaw
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr ""
#. xcAaD
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr ""
#. XGRQA
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr ""
#. tkRR3
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr ""
#. fsyAL
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
#, fuzzy
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "~Garra"
#. Bjxmg
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr ""
#. affmF
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Documento"
#. gJLHj
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr ""
#. AEHco
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr ""
#. iLaBC
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
#, fuzzy
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Acción"
#. HBV5Q
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr ""
#. dAN2F
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr ""
#. QMiqA
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr ""
#. C9YBB
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr ""
#. XAh7B
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr ""
#. CLHER
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr ""
#. 6Ycoo
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr ""
#. 6dSAd
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr ""
#. Ljhja
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr ""
#. CHTrw
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr ""
#. yYwEG
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr ""
#. yVch8
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr ""
#. AX58u
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr ""
#. DFxmD
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr ""
#. qvvD7
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr ""
#. U4Btb
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr ""
#. Prceg
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1303
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr ""
#. iFARB
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr ""
#. BTmNa
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr ""
#. 5WjQZ
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Enta la cucha"
#. JC7pc
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Enta la dreita"
#. MhfuC
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Centrau"
#. kX7GR
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Decimal"
#. 7vecp
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr ""
#. qqCSF
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. 2BBEb
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr ""
#. xZprv
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr ""
#. Yydkh
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr ""
#. BRmFY
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr ""
#. Swq5S
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr ""
#. tRWKa
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr ""
#. 7C8GH
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr ""
#. YbNsP
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "No s'han puesto cargar totz os obchectos SmartArt. Este problema s'evita si s'alza en o formato Microsoft Office 2010 u posterior."
#. Bc5Sg
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr ""
#. 2YBJE
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr ""
#. n9EyG
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
#. vNTaU
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr ""
#. 2Bufm
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
#, fuzzy
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "50%"
#. DjBVG
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr ""
#. 2UBAF
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr ""
#. YBg9X
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr ""
#. Wi5Fy
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr ""
#. BJSzf
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr ""
#. ARuQM
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
#, fuzzy
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Estilos de celda"
#. 7ChAu
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
#. CVSwo
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
#. Diftw
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr ""
#. xACuY
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr ""
#. CGo5w
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
#. nDCC4
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr ""
#. sDL47
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1362
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr ""
#. JGJ9F
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr ""
#. VHTRb
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr ""
#. AiNrB
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr ""
#. Vtk8J
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr ""
#. bQFBw
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr ""
#. 5eJDd
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr ""
#. D8zQC
-#: include/svx/strings.hrc:1369
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr ""
#. QCULV
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr ""
#. P2aKH
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr ""
#. W7chC
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr ""
#. k3LBG
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr ""
#. BPgDJ
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr ""
#. GooHz
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr ""
#. k6waJ
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1379
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr ""
#. ZiWKK
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1380
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr ""
#. oDTBg
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. m56fN
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. RyTLW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr ""
#. GAfTp
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr ""
#. gjEgN
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr ""
#. DZ2kE
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
#. TV9Mc
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr ""
#. tiXu5
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr ""
#. nEJiF
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1390
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr ""
#. CC6Sw
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr ""
#. c69eB
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. nsioo
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. DzJ9Y
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. HTTW5
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. H9jn7
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr ""
#. WbEFL
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr ""
#. 59ENV
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr ""
#. JEkzY
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1404
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr ""
#. n8VBe
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr ""
#. Xgeqc
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
#. G2q7M
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
#. oGKBg
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1409
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr ""
#. Fkrjs
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr ""
#. VWyEb
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr ""
#. pCpoE
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr ""
#. DELaB
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1413
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr ""
#. 3AZAG
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr ""
#. aCEJW
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr ""
#. NBoWH
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr ""
#. 8LBFX
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr ""
#. xLF42
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr ""
#. fw5hA
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Royo"
#. CiQvY
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Verde"
#. BhvBe
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Azul"
#. HSP36
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr ""
#. w5BYP
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Contraste"
#. EZUjS
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr ""
#. ernMB
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Transparencia"
#. LdkNB
-#: include/svx/strings.hrc:1428
+#: include/svx/strings.hrc:1429
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr ""
#. TJmBu
-#: include/svx/strings.hrc:1430
+#: include/svx/strings.hrc:1431
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr ""
#. WQqju
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr ""
#. ipfz6
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr ""
#. MLR44
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr ""
#. vUDeh
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr ""
#. EFBbE
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr ""
#. 7HeyP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr ""
#. HCuWQ
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr ""
#. zD9BB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr ""
#. a4eSJ
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr ""
#. DuQGP
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1441
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr ""
#. nWQ7R
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr ""
#. PxkPZ
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr ""
#. B7YEa
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr ""
#. vPbGB
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
#, fuzzy
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "~Garra"
#. akGGo
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr ""
#. bbcaZ
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr ""
#. BQtGg
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Enta la cucha"
#. JWFLj
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Enta la dreita"
#. bxvGx
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
#, fuzzy
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Totz"
#. S3nm4
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr ""
#. dcvEJ
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
#, fuzzy
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Autor"
#. 2siC9
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr ""
#. pWoLe
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr ""
#. pAABc
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr ""
#. Deknh
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr ""
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8145,2118 +8151,2118 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr ""
#. bcjRA
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr ""
#. h6THj
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr ""
#. o4EF9
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr ""
#. W3CGs
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr ""
#. yZjF6
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr ""
#. EASZR
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr ""
#. wBjC4
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr ""
#. Dh8Es
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr ""
#. jGT5E
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr ""
#. DQgLS
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr ""
#. kXEQY
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr ""
#. Cb8g4
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr ""
#. ZmDCd
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr ""
#. hZDFV
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr ""
#. c3CqD
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr ""
#. EfVnG
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr ""
#. iWzLc
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr ""
#. omacG
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr ""
#. Cdwzw
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
#. BhEGN
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr ""
#. 6YkEo
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr ""
#. J5qn4
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr ""
#. 4UEFU
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr ""
#. C5yzo
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr ""
#. EvjbD
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr ""
#. HqFTh
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr ""
#. npAc8
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr ""
#. AHAB4
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr ""
#. gMEFL
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr ""
#. uVYXp
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr ""
#. LEQg6
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr ""
#. D9KFj
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr ""
#. yaxYV
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr ""
#. jzA5i
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr ""
#. CHNBZ
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr ""
#. cDkEd
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr ""
#. j25Fp
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr ""
#. p5Tbx
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr ""
#. ckgof
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr ""
#. 8rXdw
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr ""
#. D4J8A
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr ""
#. hXwgf
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr ""
#. AD9HJ
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr ""
#. vViaR
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr ""
#. ok7ks
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr ""
#. sKty5
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr ""
#. yDpNT
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr ""
#. Cth4P
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr ""
#. Bo4iK
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr ""
#. i2Cdr
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr ""
#. 9YYLD
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr ""
#. F9UFG
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr ""
#. yeRDE
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr ""
#. kPFs9
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr ""
#. 6tAx6
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr ""
#. VakXP
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr ""
#. XzS6D
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr ""
#. JVCP5
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr ""
#. Y33VK
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr ""
#. 8yYiM
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr ""
#. BEfFQ
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr ""
#. NCsAG
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr ""
#. adi8G
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr ""
#. vLBhn
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr ""
#. i6R3B
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr ""
#. 7EDCh
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr ""
#. WWoWx
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr ""
#. dkDXh
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr ""
#. GQSEx
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr ""
#. BL66x
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr ""
#. cuQ2k
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr ""
#. wtKAB
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr ""
#. GPFqC
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr ""
#. 7AovD
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr ""
#. G3GQF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr ""
#. YzBDD
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr ""
#. 3XZRw
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr ""
#. nZnQc
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr ""
#. HBwZE
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr ""
#. TTFkh
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr ""
#. 2jALB
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr ""
#. 2iHJN
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr ""
#. ABgr9
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr ""
#. a4q6S
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr ""
#. k638K
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr ""
#. pKFTg
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr ""
#. TJHGp
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr ""
#. nujxa
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr ""
#. neD93
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr ""
#. C6LwC
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr ""
#. giR4r
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr ""
#. EqFxm
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr ""
#. VeZNe
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr ""
#. Tvkgh
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr ""
#. CuThH
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr ""
#. nBtk5
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr ""
#. vvMNk
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr ""
#. aiySp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr ""
#. PEGiu
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr ""
#. tRBTP
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr ""
#. 8sgGF
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr ""
#. CdXvH
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr ""
#. jFWRQ
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr ""
#. jhzoc
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr ""
#. B66QG
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr ""
#. j8cuG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr ""
#. AE5wq
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr ""
#. 9mgNF
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr ""
#. d5JWE
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr ""
#. XnzyB
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr ""
#. R5W9H
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr ""
#. QYf7A
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr ""
#. 63BBg
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr ""
#. ykowm
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr ""
#. GGdze
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr ""
#. WLLAP
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr ""
#. EyZR2
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr ""
#. o3AQ6
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr ""
#. BVieL
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr ""
#. DwAEz
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr ""
#. 3GDP5
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr ""
#. BfGBm
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr ""
#. cL7Vo
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr ""
#. MQoBs
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr ""
#. fCpRM
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr ""
#. zyW2q
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr ""
#. GWxb8
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr ""
#. 8ZJmr
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr ""
#. RR6Er
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr ""
#. K3GsF
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr ""
#. y4HCg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr ""
#. KUnXb
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Negocios"
#. zDaXa
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr ""
#. 9Z24A
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr ""
#. CANHf
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr ""
#. X8DEc
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr ""
#. fYpFz
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr ""
#. 3Gzxx
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr ""
#. zKCVG
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr ""
#. U8zrU
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr ""
#. B2yF8
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr ""
#. J4KdA
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr ""
#. eGPjC
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr ""
#. XboFE
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr ""
#. tBJi3
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr ""
#. Qrowh
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr ""
#. aZKS5
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr ""
#. ihUDF
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr ""
#. Z3AAi
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr ""
#. 428ER
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr ""
#. SqFfT
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr ""
#. yMmow
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr ""
#. V6CsB
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr ""
#. GNBwz
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr ""
#. VBPZE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr ""
#. 9msGJ
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr ""
#. i6Gx9
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr ""
#. WrXXX
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr ""
#. FhhAQ
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr ""
#. eHvUh
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr ""
#. ZkKwE
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr ""
#. pBASG
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr ""
#. GoQpd
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr ""
#. 6pufg
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr ""
#. bmFny
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr ""
#. EaXay
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr ""
#. qYaAV
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr ""
#. At8Tk
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr ""
#. ryGAF
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr ""
#. EYLa8
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr ""
#. TPN6m
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr ""
#. G5GLd
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr ""
#. EyMaF
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr ""
#. r2YQs
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr ""
#. feZ2Q
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr ""
#. H4FpF
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr ""
#. BgKLG
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr ""
#. bVNYf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lista"
#. riEM3
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr ""
#. CQMqK
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr ""
#. gDEUp
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr ""
#. UsAq2
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr ""
#. g5H7j
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr ""
#. upBjC
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr ""
#. GQ3XX
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr ""
#. HGVSu
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr ""
#. ryvor
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr ""
#. RTxUc
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr ""
#. 7E6G8
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr ""
#. Ab3wu
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr ""
#. 5gN8e
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr ""
#. D7rcV
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr ""
#. d44Dq
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr ""
#. CLuJC
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr ""
#. FpFeH
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr ""
#. Swfzy
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr ""
#. bMYVC
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr ""
#. Dqcpa
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr ""
#. 8eCZn
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr ""
#. 8LVFp
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr ""
#. 9SrgK
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr ""
#. cQEzt
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr ""
#. n4oND
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr ""
#. xibkG
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr ""
#. xyswt
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr ""
#. TqExt
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr ""
#. wtMts
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr ""
#. WgGuX
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr ""
#. fBitP
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr ""
#. CWvjP
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr ""
#. D7mEf
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr ""
#. 8ouWH
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr ""
#. z3gG4
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr ""
#. mFAeA
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr ""
#. b5m8K
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr ""
#. Xrkei
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr ""
#. hG9Na
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr ""
#. rTKpL
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr ""
#. CAKEC
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr ""
#. pTsMT
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr ""
#. HNCk9
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr ""
#. 8TGuM
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr ""
#. wNozk
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr ""
#. SjAev
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr ""
#. jC4Ue
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr ""
#. y7tCX
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr ""
#. EZADa
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr ""
#. iGUzh
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr ""
#. ho93C
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr ""
#. S69GG
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr ""
#. RTgGA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Nuevo"
#. JJrpR
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr ""
#. o3qMt
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr ""
#. DH39v
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr ""
#. jPSFu
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr ""
#. rbMNp
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. 9UAmW
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr ""
#. QFLaj
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr ""
#. CYEeS
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr ""
#. ABqB6
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr ""
#. DmagG
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr ""
#. tjuhJ
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr ""
#. naYAA
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr ""
#. JGVtT
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr ""
#. pkBYF
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr ""
#. SEVKT
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr ""
#. NpBis
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr ""
#. ssh5F
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
#. LzhYZ
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1806
+#: include/svx/strings.hrc:1807
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1812
+#: include/svx/strings.hrc:1813
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1814
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
#. o8fB8
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
#. 6NnM2
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
#. fRcEu
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr ""
#. uqzE7
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr ""
#. 6ecLB
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr ""
#. B6KZc
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
@@ -10265,19 +10271,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
#. Q2kMw
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
@@ -10691,440 +10697,440 @@ msgid "Vertical text alignment"
msgstr ""
#. DPZws
-#: svx/inc/fieldunit.hrc:30
+#: svx/inc/fieldunit.hrc:31
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Millimeter"
msgstr "Milimetros"
#. RWGZH
-#: svx/inc/fieldunit.hrc:31
+#: svx/inc/fieldunit.hrc:32
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Centimeter"
msgstr "Centimetros"
#. Uy6BJ
-#: svx/inc/fieldunit.hrc:32
+#: svx/inc/fieldunit.hrc:33
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Meter"
msgstr "Metros"
#. ej2m5
-#: svx/inc/fieldunit.hrc:33
+#: svx/inc/fieldunit.hrc:34
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Kilometer"
msgstr "Kilometros"
#. EFSC2
-#: svx/inc/fieldunit.hrc:34
+#: svx/inc/fieldunit.hrc:35
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Inch"
msgstr "Pulzadas"
#. pcGHS
-#: svx/inc/fieldunit.hrc:35
+#: svx/inc/fieldunit.hrc:36
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Foot"
msgstr "Pietz"
#. 5a3Dq
-#: svx/inc/fieldunit.hrc:36
+#: svx/inc/fieldunit.hrc:37
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Miles"
msgstr "Millas"
#. zpCki
-#: svx/inc/fieldunit.hrc:37
+#: svx/inc/fieldunit.hrc:38
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Pica"
msgstr "Picas"
#. aTBVj
-#: svx/inc/fieldunit.hrc:38
+#: svx/inc/fieldunit.hrc:39
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Point"
msgstr "Puntos"
#. tkSdX
-#: svx/inc/fieldunit.hrc:39
+#: svx/inc/fieldunit.hrc:40
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Char"
msgstr ""
#. DyFjJ
-#: svx/inc/fieldunit.hrc:40
+#: svx/inc/fieldunit.hrc:41
#, fuzzy
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Line"
msgstr "Hora"
#. QYjeZ
-#: svx/inc/fmstring.hrc:27
+#: svx/inc/fmstring.hrc:29
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "LIKE"
msgstr ""
#. iRDFU
-#: svx/inc/fmstring.hrc:28
+#: svx/inc/fmstring.hrc:30
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "NOT"
msgstr ""
#. JBngM
-#: svx/inc/fmstring.hrc:29
+#: svx/inc/fmstring.hrc:31
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "EMPTY"
msgstr ""
#. zpTCG
-#: svx/inc/fmstring.hrc:30
+#: svx/inc/fmstring.hrc:32
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "TRUE"
msgstr ""
#. DYBeJ
-#: svx/inc/fmstring.hrc:31
+#: svx/inc/fmstring.hrc:33
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "FALSE"
msgstr ""
#. mtAA5
-#: svx/inc/fmstring.hrc:32
+#: svx/inc/fmstring.hrc:34
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "IS"
msgstr ""
#. YWtNJ
-#: svx/inc/fmstring.hrc:33
+#: svx/inc/fmstring.hrc:35
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "BETWEEN"
msgstr ""
#. 47bZX
-#: svx/inc/fmstring.hrc:34
+#: svx/inc/fmstring.hrc:36
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "OR"
msgstr ""
#. 9ZBAf
-#: svx/inc/fmstring.hrc:35
+#: svx/inc/fmstring.hrc:37
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "AND"
msgstr ""
#. xZ65E
-#: svx/inc/fmstring.hrc:36
+#: svx/inc/fmstring.hrc:38
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Average"
msgstr "Promeyo"
#. cTfDS
-#: svx/inc/fmstring.hrc:37
+#: svx/inc/fmstring.hrc:39
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Count"
msgstr "Cuenta"
#. TFaGE
-#: svx/inc/fmstring.hrc:38
+#: svx/inc/fmstring.hrc:40
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Maximum"
msgstr "Maximo"
#. gGpDF
-#: svx/inc/fmstring.hrc:39
+#: svx/inc/fmstring.hrc:41
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Minimum"
msgstr "Minimo"
#. 3YcTD
-#: svx/inc/fmstring.hrc:40
+#: svx/inc/fmstring.hrc:42
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Sum"
msgstr "Suma"
#. GwMS7
-#: svx/inc/fmstring.hrc:41
+#: svx/inc/fmstring.hrc:43
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Every"
msgstr ""
#. M6DCS
-#: svx/inc/fmstring.hrc:42
+#: svx/inc/fmstring.hrc:44
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Any"
msgstr ""
#. AyNgd
-#: svx/inc/fmstring.hrc:43
+#: svx/inc/fmstring.hrc:45
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Some"
msgstr ""
#. QYQ2c
-#: svx/inc/fmstring.hrc:44
+#: svx/inc/fmstring.hrc:46
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_POP"
msgstr ""
#. DsDPW
-#: svx/inc/fmstring.hrc:45
+#: svx/inc/fmstring.hrc:47
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_SAMP"
msgstr ""
#. RqHwF
-#: svx/inc/fmstring.hrc:46
+#: svx/inc/fmstring.hrc:48
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_SAMP"
msgstr ""
#. id43S
-#: svx/inc/fmstring.hrc:47
+#: svx/inc/fmstring.hrc:49
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_POP"
msgstr ""
#. mjjoD
-#: svx/inc/fmstring.hrc:48
+#: svx/inc/fmstring.hrc:50
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Collect"
msgstr ""
#. GcZBA
-#: svx/inc/fmstring.hrc:49
+#: svx/inc/fmstring.hrc:51
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Fusion"
msgstr ""
#. gpKQz
-#: svx/inc/fmstring.hrc:50
+#: svx/inc/fmstring.hrc:52
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Intersection"
msgstr ""
#. 8DMsd
-#: svx/inc/formnavi.hrc:27
+#: svx/inc/formnavi.hrc:29
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit"
msgid "~Text Box"
msgstr ""
#. LaRik
-#: svx/inc/formnavi.hrc:28
+#: svx/inc/formnavi.hrc:30
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
msgid "~Button"
msgstr ""
#. qjKaG
-#: svx/inc/formnavi.hrc:29
+#: svx/inc/formnavi.hrc:31
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
msgid "La~bel field"
msgstr ""
#. sq3AT
-#: svx/inc/formnavi.hrc:30
+#: svx/inc/formnavi.hrc:32
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
msgid "L~ist Box"
msgstr ""
#. agpbk
-#: svx/inc/formnavi.hrc:31
+#: svx/inc/formnavi.hrc:33
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
msgid "~Check Box"
msgstr ""
#. 9WA4B
-#: svx/inc/formnavi.hrc:32
+#: svx/inc/formnavi.hrc:34
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
msgid "~Radio Button"
msgstr ""
#. PpgmW
-#: svx/inc/formnavi.hrc:33
+#: svx/inc/formnavi.hrc:35
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
msgid "G~roup Box"
msgstr ""
#. A8Dbz
-#: svx/inc/formnavi.hrc:34
+#: svx/inc/formnavi.hrc:36
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
msgstr ""
#. HRAoH
-#: svx/inc/formnavi.hrc:35
+#: svx/inc/formnavi.hrc:37
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
msgid "I~mage Button"
msgstr ""
#. gZZqq
-#: svx/inc/formnavi.hrc:36
+#: svx/inc/formnavi.hrc:38
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
msgid "~File Selection"
msgstr ""
#. EEADE
-#: svx/inc/formnavi.hrc:37
+#: svx/inc/formnavi.hrc:39
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
msgid "~Date Field"
msgstr ""
#. gDr8N
-#: svx/inc/formnavi.hrc:38
+#: svx/inc/formnavi.hrc:40
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
msgid "Tim~e Field"
msgstr ""
#. jAbfP
-#: svx/inc/formnavi.hrc:39
+#: svx/inc/formnavi.hrc:41
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
msgid "~Numerical Field"
msgstr ""
#. ryXjj
-#: svx/inc/formnavi.hrc:40
+#: svx/inc/formnavi.hrc:42
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
msgid "C~urrency Field"
msgstr ""
#. GXHFr
-#: svx/inc/formnavi.hrc:41
+#: svx/inc/formnavi.hrc:43
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
msgid "~Pattern Field"
msgstr ""
#. a7jCc
-#: svx/inc/formnavi.hrc:42
+#: svx/inc/formnavi.hrc:44
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
msgid "Ima~ge Control"
msgstr ""
#. WDsBh
-#: svx/inc/formnavi.hrc:43
+#: svx/inc/formnavi.hrc:45
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
msgid "Fo~rmatted Field"
msgstr ""
#. aEXn5
-#: svx/inc/formnavi.hrc:44
+#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
msgstr ""
#. cGxjA
-#: svx/inc/formnavi.hrc:45
+#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
msgstr ""
#. HYbc6
-#: svx/inc/formnavi.hrc:46
+#: svx/inc/formnavi.hrc:48
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
#. d7vkX
-#: svx/inc/frmsel.hrc:30
+#: svx/inc/frmsel.hrc:31
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Border setting"
msgstr ""
#. CBSYv
-#: svx/inc/frmsel.hrc:31
+#: svx/inc/frmsel.hrc:32
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Left border line"
msgstr ""
#. YAWUD
-#: svx/inc/frmsel.hrc:32
+#: svx/inc/frmsel.hrc:33
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Right border line"
msgstr ""
#. VH67W
-#: svx/inc/frmsel.hrc:33
+#: svx/inc/frmsel.hrc:34
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Top border line"
msgstr ""
#. MLMaA
-#: svx/inc/frmsel.hrc:34
+#: svx/inc/frmsel.hrc:35
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Bottom border line"
msgstr ""
#. ZqTGF
-#: svx/inc/frmsel.hrc:35
+#: svx/inc/frmsel.hrc:36
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Horizontal border line"
msgstr ""
#. jzGHA
-#: svx/inc/frmsel.hrc:36
+#: svx/inc/frmsel.hrc:37
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Vertical border line"
msgstr ""
#. DodCu
-#: svx/inc/frmsel.hrc:37
+#: svx/inc/frmsel.hrc:38
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from top left to bottom right"
msgstr ""
#. wfJ23
-#: svx/inc/frmsel.hrc:38
+#: svx/inc/frmsel.hrc:39
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from bottom left to top right"
msgstr ""
#. dTBRy
-#: svx/inc/frmsel.hrc:43
+#: svx/inc/frmsel.hrc:44
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Border setting"
msgstr ""
#. LhEua
-#: svx/inc/frmsel.hrc:44
+#: svx/inc/frmsel.hrc:45
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Left border line"
msgstr ""
#. DAuHi
-#: svx/inc/frmsel.hrc:45
+#: svx/inc/frmsel.hrc:46
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Right border line"
msgstr ""
#. BYUTR
-#: svx/inc/frmsel.hrc:46
+#: svx/inc/frmsel.hrc:47
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Top border line"
msgstr ""
#. QAnid
-#: svx/inc/frmsel.hrc:47
+#: svx/inc/frmsel.hrc:48
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Bottom border line"
msgstr ""
#. kDBDR
-#: svx/inc/frmsel.hrc:48
+#: svx/inc/frmsel.hrc:49
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Horizontal border line"
msgstr ""
#. Em9YX
-#: svx/inc/frmsel.hrc:49
+#: svx/inc/frmsel.hrc:50
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Vertical border line"
msgstr ""
#. oDFKb
-#: svx/inc/frmsel.hrc:50
+#: svx/inc/frmsel.hrc:51
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from top left to bottom right"
msgstr ""
#. 5EYDA
-#: svx/inc/frmsel.hrc:51
+#: svx/inc/frmsel.hrc:52
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr ""
@@ -11166,7 +11172,7 @@ msgstr ""
#. hPpj7
#. SVX_NUM_NUMBER_NONE
-#: svx/inc/numberingtype.hrc:29
+#: svx/inc/numberingtype.hrc:31
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "None"
@@ -11174,495 +11180,495 @@ msgstr "~Garra"
#. dQWBh
#. SVX_NUM_CHAR_SPECIAL
-#: svx/inc/numberingtype.hrc:30
+#: svx/inc/numberingtype.hrc:32
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Bullet"
msgstr ""
#. GfQQK
#. SVX_NUM_BITMAP
-#: svx/inc/numberingtype.hrc:31
+#: svx/inc/numberingtype.hrc:33
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Graphics"
msgstr "Graficos"
#. DfEKa
#. SVX_NUM_BITMAP|0x80
-#: svx/inc/numberingtype.hrc:32
+#: svx/inc/numberingtype.hrc:34
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Linked graphics"
msgstr ""
#. AF3ts
#. SVX_NUM_ARABIC
-#: svx/inc/numberingtype.hrc:33
+#: svx/inc/numberingtype.hrc:35
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1, 2, 3, ..."
msgstr ""
#. bBGa7
#. SVX_NUM_CHARS_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:34
+#: svx/inc/numberingtype.hrc:36
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, B, C, ..."
msgstr ""
#. 5MDDu
#. SVX_NUM_CHARS_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:35
+#: svx/inc/numberingtype.hrc:37
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, b, c, ..."
msgstr ""
#. qGL48
#. SVX_NUM_ROMAN_UPPER
-#: svx/inc/numberingtype.hrc:36
+#: svx/inc/numberingtype.hrc:38
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "I, II, III, ..."
msgstr ""
#. tZAzS
#. SVX_NUM_ROMAN_LOWER
-#: svx/inc/numberingtype.hrc:37
+#: svx/inc/numberingtype.hrc:39
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "i, ii, iii, ..."
msgstr ""
#. hbCEG
#. TEXT_NUMBER
-#: svx/inc/numberingtype.hrc:38
+#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
msgstr ""
#. ymefj
#. TEXT_CARDINAL
-#: svx/inc/numberingtype.hrc:39
+#: svx/inc/numberingtype.hrc:41
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
msgstr ""
#. uPBZs
#. TEXT_ORDINAL
-#: svx/inc/numberingtype.hrc:40
+#: svx/inc/numberingtype.hrc:42
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
msgstr ""
#. 2QoAG
#. SVX_NUM_CHARS_UPPER_LETTER_N
-#: svx/inc/numberingtype.hrc:41
+#: svx/inc/numberingtype.hrc:43
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, .., AA, .., AAA, ..."
msgstr ""
#. 7Snqt
#. SVX_NUM_CHARS_LOWER_LETTER_N
-#: svx/inc/numberingtype.hrc:42
+#: svx/inc/numberingtype.hrc:44
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, .., aa, .., aaa, ..."
msgstr ""
#. 2jYQi
#. SYMBOL_CHICAGO
-#: svx/inc/numberingtype.hrc:43
+#: svx/inc/numberingtype.hrc:45
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "*, †, ‡, §, **, ††, ..."
msgstr ""
#. GG8gr
#. NATIVE_NUMBERING
-#: svx/inc/numberingtype.hrc:44
+#: svx/inc/numberingtype.hrc:46
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Native Numbering"
msgstr ""
#. yLB7R
#. CHARS_CYRILLIC_UPPER_LETTER_BG
-#: svx/inc/numberingtype.hrc:45
+#: svx/inc/numberingtype.hrc:47
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr ""
#. JHskj
#. CHARS_CYRILLIC_LOWER_LETTER_BG
-#: svx/inc/numberingtype.hrc:46
+#: svx/inc/numberingtype.hrc:48
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr ""
#. sqKyt
#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:47
+#: svx/inc/numberingtype.hrc:49
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr ""
#. QtcCE
#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:48
+#: svx/inc/numberingtype.hrc:50
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr ""
#. DeUDb
#. CHARS_CYRILLIC_UPPER_LETTER_RU
-#: svx/inc/numberingtype.hrc:49
+#: svx/inc/numberingtype.hrc:51
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr ""
#. kAHJb
#. CHARS_CYRILLIC_LOWER_LETTER_RU
-#: svx/inc/numberingtype.hrc:50
+#: svx/inc/numberingtype.hrc:52
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr ""
#. kHAr7
#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:51
+#: svx/inc/numberingtype.hrc:53
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr ""
#. Dkve7
#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:52
+#: svx/inc/numberingtype.hrc:54
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr ""
#. EdfYn
#. CHARS_CYRILLIC_UPPER_LETTER_SR
-#: svx/inc/numberingtype.hrc:53
+#: svx/inc/numberingtype.hrc:55
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr ""
#. oFJkn
#. CHARS_CYRILLIC_LOWER_LETTER_SR
-#: svx/inc/numberingtype.hrc:54
+#: svx/inc/numberingtype.hrc:56
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr ""
#. oA7CM
#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:55
+#: svx/inc/numberingtype.hrc:57
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr ""
#. Eom7M
#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:56
+#: svx/inc/numberingtype.hrc:58
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr ""
#. SDSQ6
#. CHARS_GREEK_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:57
+#: svx/inc/numberingtype.hrc:59
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Α, Β, Γ, ... (Greek)"
msgstr ""
#. CMFjw
#. CHARS_GREEK_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:58
+#: svx/inc/numberingtype.hrc:60
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "α, β, γ, ... (Greek)"
msgstr ""
#. 8Cxkk
#. NUMBER_HEBREW
-#: svx/inc/numberingtype.hrc:59
+#: svx/inc/numberingtype.hrc:61
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...י, יא...כ, ..."
msgstr ""
#. n2sV8
#. CHARS_HEBREW
-#: svx/inc/numberingtype.hrc:60
+#: svx/inc/numberingtype.hrc:62
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...ת, אא...תת, ..."
msgstr ""
#. nR8RG
#. NUMBER_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:61
+#: svx/inc/numberingtype.hrc:63
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "١, ٢, ٣, ٤, ... (Arabic)"
msgstr ""
#. jEE4r
#. NUMBER_EAST_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:62
+#: svx/inc/numberingtype.hrc:64
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "۱, ۲, ۳, ۴, ... (Farsi)"
msgstr ""
#. YFYp2
#. NUMBER_INDIC_DEVANAGARI
-#: svx/inc/numberingtype.hrc:63
+#: svx/inc/numberingtype.hrc:65
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "१, २, ३, ..."
msgstr ""
#. Vd6uV
#. enum SvxRotateMode ----------------------------------------------------
-#: svx/inc/rotationstrings.hrc:18
+#: svx/inc/rotationstrings.hrc:20
msgctxt "RID_SVXITEMS_ROTATE_MODE_STANDARD"
msgid "Rotation only within cell"
msgstr ""
#. r8WzF
-#: svx/inc/rotationstrings.hrc:19
+#: svx/inc/rotationstrings.hrc:21
msgctxt "RID_SVXITEMS_ROTATE_MODE_TOP"
msgid "From upper cell edge"
msgstr ""
#. E7EVi
-#: svx/inc/rotationstrings.hrc:20
+#: svx/inc/rotationstrings.hrc:22
msgctxt "RID_SVXITEMS_ROTATE_MODE_CENTER"
msgid "From vertical middle cell"
msgstr ""
#. NEwyu
-#: svx/inc/rotationstrings.hrc:21
+#: svx/inc/rotationstrings.hrc:23
msgctxt "RID_SVXITEMS_ROTATE_MODE_BOTTOM"
msgid "From lower cell edge"
msgstr ""
#. Je56M
-#: svx/inc/samecontent.hrc:18
+#: svx/inc/samecontent.hrc:20
#, fuzzy
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
msgstr "Todas as pachinas"
#. kKCQR
-#: svx/inc/samecontent.hrc:19
+#: svx/inc/samecontent.hrc:21
#, fuzzy
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First Page"
msgstr "Nombres"
#. MHuCA
-#: svx/inc/samecontent.hrc:20
+#: svx/inc/samecontent.hrc:22
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "Left and Right Pages"
msgstr ""
#. XH8p4
-#: svx/inc/samecontent.hrc:21
+#: svx/inc/samecontent.hrc:23
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First, Left and Right Pages"
msgstr ""
#. F9hHK
-#: svx/inc/spacing.hrc:24
+#: svx/inc/spacing.hrc:26
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "None"
msgstr ""
#. GAuJk
-#: svx/inc/spacing.hrc:25
+#: svx/inc/spacing.hrc:27
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. DB9aM
-#: svx/inc/spacing.hrc:26
+#: svx/inc/spacing.hrc:28
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small (1/8″)"
msgstr ""
#. 5PhsT
-#: svx/inc/spacing.hrc:27
+#: svx/inc/spacing.hrc:29
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. 3LSyH
-#: svx/inc/spacing.hrc:28
+#: svx/inc/spacing.hrc:30
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. NzRZJ
-#: svx/inc/spacing.hrc:29
+#: svx/inc/spacing.hrc:31
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. JBwJZ
-#: svx/inc/spacing.hrc:30
+#: svx/inc/spacing.hrc:32
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Large (3/4″)"
msgstr ""
#. AwWUq
-#: svx/inc/spacing.hrc:31
+#: svx/inc/spacing.hrc:33
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. SGERK
-#: svx/inc/spacing.hrc:38
+#: svx/inc/spacing.hrc:40
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "None"
msgstr ""
#. ZAZbV
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:40
+#: svx/inc/spacing.hrc:42
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Small (%1)"
msgstr ""
#. DJAZx
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:42
+#: svx/inc/spacing.hrc:44
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small (%1)"
msgstr ""
#. scXTX
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:44
+#: svx/inc/spacing.hrc:46
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small Medium (%1)"
msgstr ""
#. zN8GJ
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:46
+#: svx/inc/spacing.hrc:48
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium (%1)"
msgstr ""
#. cbhBF
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:48
+#: svx/inc/spacing.hrc:50
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium Large (%1)"
msgstr ""
#. 8kTDK
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:50
+#: svx/inc/spacing.hrc:52
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Large (%1)"
msgstr ""
#. etG35
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:52
+#: svx/inc/spacing.hrc:54
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Large (%1)"
msgstr ""
#. F7GxF
-#: svx/inc/spacing.hrc:59
+#: svx/inc/spacing.hrc:61
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "None"
msgstr ""
#. ZNunF
-#: svx/inc/spacing.hrc:60
+#: svx/inc/spacing.hrc:62
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. BUnaC
-#: svx/inc/spacing.hrc:61
+#: svx/inc/spacing.hrc:63
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small (1/8″)"
msgstr ""
#. oBhFP
-#: svx/inc/spacing.hrc:62
+#: svx/inc/spacing.hrc:64
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. tDBA3
-#: svx/inc/spacing.hrc:63
+#: svx/inc/spacing.hrc:65
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. fDRCW
-#: svx/inc/spacing.hrc:64
+#: svx/inc/spacing.hrc:66
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. Ls2Jq
-#: svx/inc/spacing.hrc:65
+#: svx/inc/spacing.hrc:67
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4″)"
msgstr ""
#. DLXcU
-#: svx/inc/spacing.hrc:66
+#: svx/inc/spacing.hrc:68
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. phGfi
-#: svx/inc/spacing.hrc:73
+#: svx/inc/spacing.hrc:75
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "None"
msgstr ""
#. XVMbm
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:75
+#: svx/inc/spacing.hrc:77
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Small (%1)"
msgstr ""
#. L3BfG
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:77
+#: svx/inc/spacing.hrc:79
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small (%1)"
msgstr ""
#. 2VGHi
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:79
+#: svx/inc/spacing.hrc:81
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small Medium (%1)"
msgstr ""
#. Z7Wot
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:81
+#: svx/inc/spacing.hrc:83
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium (%1)"
msgstr ""
#. CS6Zz
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:83
+#: svx/inc/spacing.hrc:85
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium Large (%1)"
msgstr ""
#. BaS7j
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:85
+#: svx/inc/spacing.hrc:87
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Large (%1)"
msgstr ""
#. gAc3E
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:87
+#: svx/inc/spacing.hrc:89
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Large (%1)"
msgstr ""
@@ -11781,1132 +11787,1132 @@ msgid ""
msgstr ""
#. xnBAZ
-#: svx/inc/swframeposstrings.hrc:28
+#: svx/inc/swframeposstrings.hrc:30
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left"
msgstr "Enta la cucha"
#. GHBGu
-#: svx/inc/swframeposstrings.hrc:29
+#: svx/inc/swframeposstrings.hrc:31
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right"
msgstr "Enta la dreita"
#. aEeds
-#: svx/inc/swframeposstrings.hrc:30
+#: svx/inc/swframeposstrings.hrc:32
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From left"
msgstr ""
#. ivTxP
-#: svx/inc/swframeposstrings.hrc:31
+#: svx/inc/swframeposstrings.hrc:33
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inside"
msgstr ""
#. U5FyC
-#: svx/inc/swframeposstrings.hrc:32
+#: svx/inc/swframeposstrings.hrc:34
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outside"
msgstr ""
#. 67K4H
-#: svx/inc/swframeposstrings.hrc:33
+#: svx/inc/swframeposstrings.hrc:35
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From inside"
msgstr ""
#. W2X2D
-#: svx/inc/swframeposstrings.hrc:34
+#: svx/inc/swframeposstrings.hrc:36
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph area"
msgstr ""
#. CrRe5
-#: svx/inc/swframeposstrings.hrc:35 svx/inc/swframeposstrings.hrc:52
+#: svx/inc/swframeposstrings.hrc:37 svx/inc/swframeposstrings.hrc:54
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph text area"
msgstr ""
#. MT34e
-#: svx/inc/swframeposstrings.hrc:36
+#: svx/inc/swframeposstrings.hrc:38
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left page border"
msgstr ""
#. edC8Z
-#: svx/inc/swframeposstrings.hrc:37
+#: svx/inc/swframeposstrings.hrc:39
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right page border"
msgstr ""
#. dCGE9
-#: svx/inc/swframeposstrings.hrc:38
+#: svx/inc/swframeposstrings.hrc:40
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left paragraph border"
msgstr ""
#. 3pAVN
-#: svx/inc/swframeposstrings.hrc:39
+#: svx/inc/swframeposstrings.hrc:41
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right paragraph border"
msgstr ""
#. qvFns
-#: svx/inc/swframeposstrings.hrc:40
+#: svx/inc/swframeposstrings.hrc:42
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner page border"
msgstr ""
#. XwtPT
-#: svx/inc/swframeposstrings.hrc:41
+#: svx/inc/swframeposstrings.hrc:43
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer page border"
msgstr ""
#. oF2mP
-#: svx/inc/swframeposstrings.hrc:42
+#: svx/inc/swframeposstrings.hrc:44
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner paragraph border"
msgstr ""
#. Hffsf
-#: svx/inc/swframeposstrings.hrc:43
+#: svx/inc/swframeposstrings.hrc:45
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer paragraph border"
msgstr ""
#. ey4rc
-#: svx/inc/swframeposstrings.hrc:44
+#: svx/inc/swframeposstrings.hrc:46
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire page"
msgstr ""
#. WJocu
-#: svx/inc/swframeposstrings.hrc:45
+#: svx/inc/swframeposstrings.hrc:47
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area"
msgstr ""
#. jY8xQ
-#: svx/inc/swframeposstrings.hrc:46
+#: svx/inc/swframeposstrings.hrc:48
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area top"
msgstr ""
#. vWEe2
-#: svx/inc/swframeposstrings.hrc:47
+#: svx/inc/swframeposstrings.hrc:49
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area bottom"
msgstr ""
#. XG9Bj
-#: svx/inc/swframeposstrings.hrc:48
+#: svx/inc/swframeposstrings.hrc:50
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Base line"
msgstr ""
#. A3DbQ
-#: svx/inc/swframeposstrings.hrc:49
+#: svx/inc/swframeposstrings.hrc:51
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Character"
msgstr ""
#. Qyopb
-#: svx/inc/swframeposstrings.hrc:50
+#: svx/inc/swframeposstrings.hrc:52
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Row"
msgstr "Ringlera"
#. PPkKE
-#: svx/inc/swframeposstrings.hrc:51
+#: svx/inc/swframeposstrings.hrc:53
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Margin"
msgstr ""
#. FCKGJ
-#: svx/inc/swframeposstrings.hrc:53
+#: svx/inc/swframeposstrings.hrc:55
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left frame border"
msgstr ""
#. dvJgp
-#: svx/inc/swframeposstrings.hrc:54
+#: svx/inc/swframeposstrings.hrc:56
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right frame border"
msgstr ""
#. 8wUyB
-#: svx/inc/swframeposstrings.hrc:55
+#: svx/inc/swframeposstrings.hrc:57
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire frame"
msgstr ""
#. FRNBs
-#: svx/inc/swframeposstrings.hrc:56
+#: svx/inc/swframeposstrings.hrc:58
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Frame text area"
msgstr ""
#. CEgLN
-#: svx/inc/swframeposstrings.hrc:57
+#: svx/inc/swframeposstrings.hrc:59
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner frame border"
msgstr ""
#. UroG3
-#: svx/inc/swframeposstrings.hrc:58
+#: svx/inc/swframeposstrings.hrc:60
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer frame border"
msgstr ""
#. hMCeD
-#: svx/inc/swframeposstrings.hrc:59
+#: svx/inc/swframeposstrings.hrc:61
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top"
msgstr "Cobalto"
#. zvKGF
-#: svx/inc/swframeposstrings.hrc:60
+#: svx/inc/swframeposstrings.hrc:62
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom"
msgstr "Cobaixo"
#. zLzw8
-#: svx/inc/swframeposstrings.hrc:61 svx/inc/swframeposstrings.hrc:62
+#: svx/inc/swframeposstrings.hrc:63 svx/inc/swframeposstrings.hrc:64
#, fuzzy
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Center"
msgstr "~Centrau"
#. HKRAf
-#: svx/inc/swframeposstrings.hrc:63
+#: svx/inc/swframeposstrings.hrc:65
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From top"
msgstr ""
#. o7Td5
-#: svx/inc/swframeposstrings.hrc:64
+#: svx/inc/swframeposstrings.hrc:66
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From bottom"
msgstr ""
#. bF2Nd
-#: svx/inc/swframeposstrings.hrc:65
+#: svx/inc/swframeposstrings.hrc:67
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Below"
msgstr ""
#. Q9AZn
-#: svx/inc/swframeposstrings.hrc:66
+#: svx/inc/swframeposstrings.hrc:68
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From right"
msgstr ""
#. Y6y4s
-#: svx/inc/swframeposstrings.hrc:67
+#: svx/inc/swframeposstrings.hrc:69
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top page border"
msgstr ""
#. ZyAri
-#: svx/inc/swframeposstrings.hrc:68
+#: svx/inc/swframeposstrings.hrc:70
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom page border"
msgstr ""
#. 2vRtm
-#: svx/inc/swframeposstrings.hrc:69
+#: svx/inc/swframeposstrings.hrc:71
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top paragraph border"
msgstr ""
#. AAFLn
-#: svx/inc/swframeposstrings.hrc:70
+#: svx/inc/swframeposstrings.hrc:72
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom paragraph border"
msgstr ""
#. dmVNj
-#: svx/inc/swframeposstrings.hrc:71
+#: svx/inc/swframeposstrings.hrc:73
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Line of text"
msgstr ""
#. gKq8G
-#: svx/inc/tabwin.hrc:27
+#: svx/inc/tabwin.hrc:29
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Table"
msgstr "Tabla"
#. 4mnUW
-#: svx/inc/tabwin.hrc:28
+#: svx/inc/tabwin.hrc:30
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Query"
msgstr "Consulta"
#. rfs4A
-#: svx/inc/tabwin.hrc:29
+#: svx/inc/tabwin.hrc:31
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "SQL"
msgstr ""
#. QF2ZT
-#: svx/inc/txenctab.hrc:32
+#: svx/inc/txenctab.hrc:33
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Windows-1252/WinLatin 1)"
msgstr ""
#. VbWZR
-#: svx/inc/txenctab.hrc:33
+#: svx/inc/txenctab.hrc:34
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh)"
msgstr ""
#. 5yMG7
-#: svx/inc/txenctab.hrc:34
+#: svx/inc/txenctab.hrc:35
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-850/International)"
msgstr ""
#. KYDEk
-#: svx/inc/txenctab.hrc:35
+#: svx/inc/txenctab.hrc:36
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-437/US)"
msgstr ""
#. 3MbrA
-#: svx/inc/txenctab.hrc:36
+#: svx/inc/txenctab.hrc:37
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-860/Portuguese)"
msgstr ""
#. bdxAU
-#: svx/inc/txenctab.hrc:37
+#: svx/inc/txenctab.hrc:38
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-861/Icelandic)"
msgstr ""
#. kMQ9X
-#: svx/inc/txenctab.hrc:38
+#: svx/inc/txenctab.hrc:39
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-863/French (Can.))"
msgstr ""
#. YTGtN
-#: svx/inc/txenctab.hrc:39
+#: svx/inc/txenctab.hrc:40
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-865/Nordic)"
msgstr ""
#. 7f2UV
-#: svx/inc/txenctab.hrc:40
+#: svx/inc/txenctab.hrc:41
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ASCII/US)"
msgstr ""
#. Hksxs
-#: svx/inc/txenctab.hrc:41
+#: svx/inc/txenctab.hrc:42
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-1)"
msgstr ""
#. PBDdu
-#: svx/inc/txenctab.hrc:42
+#: svx/inc/txenctab.hrc:43
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-2)"
msgstr ""
#. MFqWF
-#: svx/inc/txenctab.hrc:43
+#: svx/inc/txenctab.hrc:44
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Latin 3 (ISO-8859-3)"
msgstr ""
#. WBkLV
-#: svx/inc/txenctab.hrc:44
+#: svx/inc/txenctab.hrc:45
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (ISO-8859-4)"
msgstr ""
#. b5SPH
-#: svx/inc/txenctab.hrc:45
+#: svx/inc/txenctab.hrc:46
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (ISO-8859-5)"
msgstr ""
#. wFCbj
-#: svx/inc/txenctab.hrc:46
+#: svx/inc/txenctab.hrc:47
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (ISO-8859-6)"
msgstr ""
#. qTzCE
-#: svx/inc/txenctab.hrc:47
+#: svx/inc/txenctab.hrc:48
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (ISO-8859-7)"
msgstr ""
#. MmChj
-#: svx/inc/txenctab.hrc:48
+#: svx/inc/txenctab.hrc:49
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (ISO-8859-8)"
msgstr ""
#. 3bHAV
-#: svx/inc/txenctab.hrc:49
+#: svx/inc/txenctab.hrc:50
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (ISO-8859-9)"
msgstr ""
#. phdte
-#: svx/inc/txenctab.hrc:50
+#: svx/inc/txenctab.hrc:51
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-14)"
msgstr ""
#. MpHUZ
-#: svx/inc/txenctab.hrc:51
+#: svx/inc/txenctab.hrc:52
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-15/EURO)"
msgstr ""
#. JgVnj
-#: svx/inc/txenctab.hrc:52
+#: svx/inc/txenctab.hrc:53
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-737)"
msgstr ""
#. EQi6s
-#: svx/inc/txenctab.hrc:53
+#: svx/inc/txenctab.hrc:54
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (DOS/OS2-775)"
msgstr ""
#. SDvMf
-#: svx/inc/txenctab.hrc:54
+#: svx/inc/txenctab.hrc:55
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (DOS/OS2-852)"
msgstr ""
#. 3FrUC
-#: svx/inc/txenctab.hrc:55
+#: svx/inc/txenctab.hrc:56
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-855)"
msgstr ""
#. G8q5c
-#: svx/inc/txenctab.hrc:56
+#: svx/inc/txenctab.hrc:57
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (DOS/OS2-857)"
msgstr ""
#. kBvdY
-#: svx/inc/txenctab.hrc:57
+#: svx/inc/txenctab.hrc:58
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (DOS/OS2-862)"
msgstr ""
#. to6H6
-#: svx/inc/txenctab.hrc:58
+#: svx/inc/txenctab.hrc:59
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (DOS/OS2-864)"
msgstr ""
#. BH6K4
-#: svx/inc/txenctab.hrc:59
+#: svx/inc/txenctab.hrc:60
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-866/Russian)"
msgstr ""
#. ms8Dk
-#: svx/inc/txenctab.hrc:60
+#: svx/inc/txenctab.hrc:61
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-869/Modern)"
msgstr ""
#. U9RbL
-#: svx/inc/txenctab.hrc:61
+#: svx/inc/txenctab.hrc:62
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Windows-1250/WinLatin 2)"
msgstr ""
#. fRRMB
-#: svx/inc/txenctab.hrc:62
+#: svx/inc/txenctab.hrc:63
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Windows-1251)"
msgstr ""
#. 7D9eT
-#: svx/inc/txenctab.hrc:63
+#: svx/inc/txenctab.hrc:64
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Windows-1253)"
msgstr ""
#. sa8W8
-#: svx/inc/txenctab.hrc:64
+#: svx/inc/txenctab.hrc:65
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Windows-1254)"
msgstr ""
#. ZxMJy
-#: svx/inc/txenctab.hrc:65
+#: svx/inc/txenctab.hrc:66
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (Windows-1255)"
msgstr ""
#. 4GLZX
-#: svx/inc/txenctab.hrc:66
+#: svx/inc/txenctab.hrc:67
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (Windows-1256)"
msgstr ""
#. errzy
-#: svx/inc/txenctab.hrc:67
+#: svx/inc/txenctab.hrc:68
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (Windows-1257)"
msgstr ""
#. SSo9X
-#: svx/inc/txenctab.hrc:68
+#: svx/inc/txenctab.hrc:69
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Vietnamese (Windows-1258)"
msgstr ""
#. udrZT
-#: svx/inc/txenctab.hrc:69
+#: svx/inc/txenctab.hrc:70
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh)"
msgstr ""
#. g2Z7z
-#: svx/inc/txenctab.hrc:70
+#: svx/inc/txenctab.hrc:71
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Croatian)"
msgstr ""
#. 9jpM6
-#: svx/inc/txenctab.hrc:71
+#: svx/inc/txenctab.hrc:72
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh)"
msgstr ""
#. YB8BU
-#: svx/inc/txenctab.hrc:72
+#: svx/inc/txenctab.hrc:73
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Apple Macintosh)"
msgstr ""
#. rEWLF
-#: svx/inc/txenctab.hrc:73
+#: svx/inc/txenctab.hrc:74
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh/Icelandic)"
msgstr ""
#. eCAET
-#: svx/inc/txenctab.hrc:74
+#: svx/inc/txenctab.hrc:75
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Romanian)"
msgstr ""
#. T4VVK
-#: svx/inc/txenctab.hrc:75
+#: svx/inc/txenctab.hrc:76
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Apple Macintosh)"
msgstr ""
#. a8GDk
-#: svx/inc/txenctab.hrc:76
+#: svx/inc/txenctab.hrc:77
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh/Ukrainian)"
msgstr ""
#. 4RBWC
-#: svx/inc/txenctab.hrc:77
+#: svx/inc/txenctab.hrc:78
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Apple Macintosh)"
msgstr ""
#. 6WCbw
-#: svx/inc/txenctab.hrc:78
+#: svx/inc/txenctab.hrc:79
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Apple Macintosh)"
msgstr ""
#. DyADW
-#: svx/inc/txenctab.hrc:79
+#: svx/inc/txenctab.hrc:80
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Apple Macintosh)"
msgstr ""
#. BXQq2
-#: svx/inc/txenctab.hrc:80
+#: svx/inc/txenctab.hrc:81
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Apple Macintosh)"
msgstr ""
#. 6eezP
-#: svx/inc/txenctab.hrc:81
+#: svx/inc/txenctab.hrc:82
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Windows-932)"
msgstr ""
#. FuA86
-#: svx/inc/txenctab.hrc:82
+#: svx/inc/txenctab.hrc:83
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Windows-936)"
msgstr ""
#. Rgvx2
-#: svx/inc/txenctab.hrc:83
+#: svx/inc/txenctab.hrc:84
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-949)"
msgstr ""
#. VrtX4
-#: svx/inc/txenctab.hrc:84
+#: svx/inc/txenctab.hrc:85
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Windows-950)"
msgstr ""
#. XYyEd
-#: svx/inc/txenctab.hrc:85
+#: svx/inc/txenctab.hrc:86
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Shift-JIS)"
msgstr ""
#. k5M56
-#: svx/inc/txenctab.hrc:86
+#: svx/inc/txenctab.hrc:87
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-2312)"
msgstr ""
#. PFzZY
-#: svx/inc/txenctab.hrc:87
+#: svx/inc/txenctab.hrc:88
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-18030)"
msgstr ""
#. gb9bm
-#: svx/inc/txenctab.hrc:88
+#: svx/inc/txenctab.hrc:89
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (GBT-12345)"
msgstr ""
#. C69XX
-#: svx/inc/txenctab.hrc:89
+#: svx/inc/txenctab.hrc:90
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GBK/GB-2312-80)"
msgstr ""
#. UP3uw
-#: svx/inc/txenctab.hrc:90
+#: svx/inc/txenctab.hrc:91
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Big5)"
msgstr ""
#. DaFZR
-#: svx/inc/txenctab.hrc:91
+#: svx/inc/txenctab.hrc:92
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (BIG5-HKSCS)"
msgstr ""
#. qEQVA
-#: svx/inc/txenctab.hrc:92
+#: svx/inc/txenctab.hrc:93
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (EUC-JP)"
msgstr ""
#. auzHg
-#: svx/inc/txenctab.hrc:93
+#: svx/inc/txenctab.hrc:94
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (EUC-CN)"
msgstr ""
#. ndTrZ
-#: svx/inc/txenctab.hrc:94
+#: svx/inc/txenctab.hrc:95
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (EUC-TW)"
msgstr ""
#. 6pPLL
-#: svx/inc/txenctab.hrc:95
+#: svx/inc/txenctab.hrc:96
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (ISO-2022-JP)"
msgstr ""
#. tWf3P
-#: svx/inc/txenctab.hrc:96
+#: svx/inc/txenctab.hrc:97
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (ISO-2022-CN)"
msgstr ""
#. XMFCL
-#: svx/inc/txenctab.hrc:97
+#: svx/inc/txenctab.hrc:98
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-R)"
msgstr ""
#. 2pFce
-#: svx/inc/txenctab.hrc:98
+#: svx/inc/txenctab.hrc:99
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-7)"
msgstr ""
#. FXEDd
-#: svx/inc/txenctab.hrc:99
+#: svx/inc/txenctab.hrc:100
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-8)"
msgstr ""
#. PKDvB
-#: svx/inc/txenctab.hrc:100
+#: svx/inc/txenctab.hrc:101
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-10)"
msgstr ""
#. QGYqt
-#: svx/inc/txenctab.hrc:101
+#: svx/inc/txenctab.hrc:102
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-13)"
msgstr ""
#. Vx6bY
-#: svx/inc/txenctab.hrc:102
+#: svx/inc/txenctab.hrc:103
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (EUC-KR)"
msgstr ""
#. 5CBHm
-#: svx/inc/txenctab.hrc:103
+#: svx/inc/txenctab.hrc:104
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (ISO-2022-KR)"
msgstr ""
#. nLGik
-#: svx/inc/txenctab.hrc:104
+#: svx/inc/txenctab.hrc:105
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-Johab-1361)"
msgstr ""
#. QBgZo
-#: svx/inc/txenctab.hrc:105
+#: svx/inc/txenctab.hrc:106
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-16)"
msgstr ""
#. JGdVV
-#: svx/inc/txenctab.hrc:106
+#: svx/inc/txenctab.hrc:107
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (ISO-8859-11/TIS-620)"
msgstr ""
#. monLB
-#: svx/inc/txenctab.hrc:107
+#: svx/inc/txenctab.hrc:108
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (Windows-874)"
msgstr ""
#. USeUF
-#: svx/inc/txenctab.hrc:108
+#: svx/inc/txenctab.hrc:109
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-U)"
msgstr ""
#. vrLQe
-#: svx/inc/txenctab.hrc:109
+#: svx/inc/txenctab.hrc:110
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (PT154)"
msgstr ""
#. rKPau
-#: svx/source/dialog/page.hrc:30
+#: svx/source/dialog/page.hrc:31
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A6"
msgstr ""
#. URac3
-#: svx/source/dialog/page.hrc:31
+#: svx/source/dialog/page.hrc:32
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A5"
msgstr ""
#. EPudF
-#: svx/source/dialog/page.hrc:32
+#: svx/source/dialog/page.hrc:33
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A4"
msgstr ""
#. qdkCd
-#: svx/source/dialog/page.hrc:33
+#: svx/source/dialog/page.hrc:34
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A3"
msgstr ""
#. HTZUv
-#: svx/source/dialog/page.hrc:34
+#: svx/source/dialog/page.hrc:35
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (ISO)"
msgstr ""
#. cCYrf
-#: svx/source/dialog/page.hrc:35
+#: svx/source/dialog/page.hrc:36
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (ISO)"
msgstr ""
#. xXp6C
-#: svx/source/dialog/page.hrc:36
+#: svx/source/dialog/page.hrc:37
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (ISO)"
msgstr ""
#. A5BnL
-#: svx/source/dialog/page.hrc:37
+#: svx/source/dialog/page.hrc:38
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Letter"
msgstr ""
#. sx5cV
-#: svx/source/dialog/page.hrc:38
+#: svx/source/dialog/page.hrc:39
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Legal"
msgstr ""
#. Pkxcm
-#: svx/source/dialog/page.hrc:39
+#: svx/source/dialog/page.hrc:40
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Long Bond"
msgstr ""
#. JMsqY
-#: svx/source/dialog/page.hrc:40
+#: svx/source/dialog/page.hrc:41
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Tabloid"
msgstr ""
#. UBtQK
-#: svx/source/dialog/page.hrc:41
+#: svx/source/dialog/page.hrc:42
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (JIS)"
msgstr ""
#. Ruu59
-#: svx/source/dialog/page.hrc:42
+#: svx/source/dialog/page.hrc:43
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (JIS)"
msgstr ""
#. CFdsg
-#: svx/source/dialog/page.hrc:43
+#: svx/source/dialog/page.hrc:44
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (JIS)"
msgstr ""
#. PCV4H
-#: svx/source/dialog/page.hrc:44
+#: svx/source/dialog/page.hrc:45
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "16 Kai"
msgstr ""
#. GfVjG
-#: svx/source/dialog/page.hrc:45
+#: svx/source/dialog/page.hrc:46
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "32 Kai"
msgstr ""
#. FJBrB
-#: svx/source/dialog/page.hrc:46
+#: svx/source/dialog/page.hrc:47
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Big 32 Kai"
msgstr ""
#. by7kM
-#: svx/source/dialog/page.hrc:47
+#: svx/source/dialog/page.hrc:48
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "User"
msgstr "U~suario"
#. EGzYq
-#: svx/source/dialog/page.hrc:48
+#: svx/source/dialog/page.hrc:49
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "DL Envelope"
msgstr ""
#. YFzCy
-#: svx/source/dialog/page.hrc:49
+#: svx/source/dialog/page.hrc:50
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6 Envelope"
msgstr ""
#. Vcc7P
-#: svx/source/dialog/page.hrc:50
+#: svx/source/dialog/page.hrc:51
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6/5 Envelope"
msgstr ""
#. XsMRE
-#: svx/source/dialog/page.hrc:51
+#: svx/source/dialog/page.hrc:52
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C5 Envelope"
msgstr ""
#. uFwGu
-#: svx/source/dialog/page.hrc:52
+#: svx/source/dialog/page.hrc:53
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C4 Envelope"
msgstr ""
#. dCpd2
-#: svx/source/dialog/page.hrc:53
+#: svx/source/dialog/page.hrc:54
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#6¾ Envelope"
msgstr ""
#. zy6rP
-#: svx/source/dialog/page.hrc:54
+#: svx/source/dialog/page.hrc:55
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#7¾ (Monarch) Envelope"
msgstr ""
#. m4N6Q
-#: svx/source/dialog/page.hrc:55
+#: svx/source/dialog/page.hrc:56
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#9 Envelope"
msgstr ""
#. JsBkZ
-#: svx/source/dialog/page.hrc:56
+#: svx/source/dialog/page.hrc:57
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#10 Envelope"
msgstr ""
#. 7FeU9
-#: svx/source/dialog/page.hrc:57
+#: svx/source/dialog/page.hrc:58
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#11 Envelope"
msgstr ""
#. 6sqhV
-#: svx/source/dialog/page.hrc:58
+#: svx/source/dialog/page.hrc:59
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#12 Envelope"
msgstr ""
#. 8uXDq
-#: svx/source/dialog/page.hrc:59
+#: svx/source/dialog/page.hrc:60
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Japanese Postcard"
msgstr ""
#. N2J2b
-#: svx/source/dialog/page.hrc:64
+#: svx/source/dialog/page.hrc:65
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A6"
msgstr ""
#. 78f4A
-#: svx/source/dialog/page.hrc:65
+#: svx/source/dialog/page.hrc:66
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A5"
msgstr ""
#. i6x38
-#: svx/source/dialog/page.hrc:66
+#: svx/source/dialog/page.hrc:67
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A4"
msgstr ""
#. Dmqus
-#: svx/source/dialog/page.hrc:67
+#: svx/source/dialog/page.hrc:68
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A3"
msgstr ""
#. XjWtg
-#: svx/source/dialog/page.hrc:68
+#: svx/source/dialog/page.hrc:69
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A2"
msgstr ""
#. yqBrH
-#: svx/source/dialog/page.hrc:69
+#: svx/source/dialog/page.hrc:70
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A1"
msgstr ""
#. Ao3sz
-#: svx/source/dialog/page.hrc:70
+#: svx/source/dialog/page.hrc:71
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A0"
msgstr ""
#. jvpHD
-#: svx/source/dialog/page.hrc:71
+#: svx/source/dialog/page.hrc:72
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (ISO)"
msgstr ""
#. DGqE3
-#: svx/source/dialog/page.hrc:72
+#: svx/source/dialog/page.hrc:73
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (ISO)"
msgstr ""
#. JrZiW
-#: svx/source/dialog/page.hrc:73
+#: svx/source/dialog/page.hrc:74
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (ISO)"
msgstr ""
#. 8zZQc
-#: svx/source/dialog/page.hrc:74
+#: svx/source/dialog/page.hrc:75
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Letter"
msgstr ""
#. NKMub
-#: svx/source/dialog/page.hrc:75
+#: svx/source/dialog/page.hrc:76
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Legal"
msgstr ""
#. GyH6H
-#: svx/source/dialog/page.hrc:76
+#: svx/source/dialog/page.hrc:77
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Long Bond"
msgstr ""
#. gWjE2
-#: svx/source/dialog/page.hrc:77
+#: svx/source/dialog/page.hrc:78
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Tabloid"
msgstr ""
#. 5Dddp
-#: svx/source/dialog/page.hrc:78
+#: svx/source/dialog/page.hrc:79
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (JIS)"
msgstr ""
#. sYcjZ
-#: svx/source/dialog/page.hrc:79
+#: svx/source/dialog/page.hrc:80
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (JIS)"
msgstr ""
#. f9tD2
-#: svx/source/dialog/page.hrc:80
+#: svx/source/dialog/page.hrc:81
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (JIS)"
msgstr ""
#. DGFbZ
-#: svx/source/dialog/page.hrc:81
+#: svx/source/dialog/page.hrc:82
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "16 Kai"
msgstr ""
#. JbFMy
-#: svx/source/dialog/page.hrc:82
+#: svx/source/dialog/page.hrc:83
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "32 Kai"
msgstr ""
#. E3CDE
-#: svx/source/dialog/page.hrc:83
+#: svx/source/dialog/page.hrc:84
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Big 32 Kai"
msgstr ""
#. rSAv7
-#: svx/source/dialog/page.hrc:84
+#: svx/source/dialog/page.hrc:85
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "User"
msgstr "U~suario"
#. z3HXV
-#: svx/source/dialog/page.hrc:85
+#: svx/source/dialog/page.hrc:86
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "DL Envelope"
msgstr ""
#. k2HBd
-#: svx/source/dialog/page.hrc:86
+#: svx/source/dialog/page.hrc:87
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6 Envelope"
msgstr ""
#. t43Ta
-#: svx/source/dialog/page.hrc:87
+#: svx/source/dialog/page.hrc:88
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6/5 Envelope"
msgstr ""
#. jfDNz
-#: svx/source/dialog/page.hrc:88
+#: svx/source/dialog/page.hrc:89
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C5 Envelope"
msgstr ""
#. h2cDh
-#: svx/source/dialog/page.hrc:89
+#: svx/source/dialog/page.hrc:90
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C4 Envelope"
msgstr ""
#. j4Hms
-#: svx/source/dialog/page.hrc:90
+#: svx/source/dialog/page.hrc:91
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Dia Slide"
msgstr ""
#. ePYVT
-#: svx/source/dialog/page.hrc:91
+#: svx/source/dialog/page.hrc:92
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 4:3"
msgstr ""
#. pWa4A
-#: svx/source/dialog/page.hrc:92
+#: svx/source/dialog/page.hrc:93
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:9"
msgstr ""
#. T62Dx
-#: svx/source/dialog/page.hrc:93
+#: svx/source/dialog/page.hrc:94
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:10"
msgstr ""
#. hwMzF
-#: svx/source/dialog/page.hrc:94
+#: svx/source/dialog/page.hrc:95
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Widescreen"
msgstr ""
#. HqpFJ
-#: svx/source/dialog/page.hrc:95
+#: svx/source/dialog/page.hrc:96
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (4:3)"
msgstr ""
#. PFU8U
-#: svx/source/dialog/page.hrc:96
+#: svx/source/dialog/page.hrc:97
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:9)"
msgstr ""
#. 48LFY
-#: svx/source/dialog/page.hrc:97
+#: svx/source/dialog/page.hrc:98
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:10)"
msgstr ""
#. ryFz3
-#: svx/source/dialog/page.hrc:98
+#: svx/source/dialog/page.hrc:99
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Japanese Postcard"
msgstr ""
@@ -16386,19 +16392,19 @@ msgid "Direction:"
msgstr ""
#. GPC8q
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1009
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1013
msgctxt "findreplacedialog-mobile|rows"
msgid "Ro_ws"
msgstr ""
#. xCeTz
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1028
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1032
msgctxt "findreplacedialog-mobile|cols"
msgid "Colum_ns"
msgstr ""
#. fPE4f
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1072
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1076
msgctxt "findreplacedialog-mobile|label3"
msgid "Other _options"
msgstr ""
@@ -16729,58 +16735,58 @@ msgid "Search i_n:"
msgstr ""
#. GGhEA
-#: svx/uiconfig/ui/findreplacedialog.ui:1069
+#: svx/uiconfig/ui/findreplacedialog.ui:1070
#, fuzzy
msgctxt "findreplacedialog|calcsearchin"
msgid "Formulas"
msgstr "~Formulas"
#. bpBeC
-#: svx/uiconfig/ui/findreplacedialog.ui:1070
+#: svx/uiconfig/ui/findreplacedialog.ui:1071
#, fuzzy
msgctxt "findreplacedialog|calcsearchin"
msgid "Values"
msgstr "Valura"
#. zSUYq
-#: svx/uiconfig/ui/findreplacedialog.ui:1071
+#: svx/uiconfig/ui/findreplacedialog.ui:1072
msgctxt "findreplacedialog|calcsearchin"
msgid "Comments"
msgstr ""
#. K4WuW
-#: svx/uiconfig/ui/findreplacedialog.ui:1096
+#: svx/uiconfig/ui/findreplacedialog.ui:1097
msgctxt "findreplacedialog|searchdir"
msgid "Direction:"
msgstr ""
#. p2HBA
-#: svx/uiconfig/ui/findreplacedialog.ui:1113
+#: svx/uiconfig/ui/findreplacedialog.ui:1119
msgctxt "findreplacedialog|rows"
msgid "Ro_ws"
msgstr ""
#. uib5F
-#: svx/uiconfig/ui/findreplacedialog.ui:1132
+#: svx/uiconfig/ui/findreplacedialog.ui:1138
#, fuzzy
msgctxt "findreplacedialog|cols"
msgid "Colum_ns"
msgstr "Columna"
#. Q6fG8
-#: svx/uiconfig/ui/findreplacedialog.ui:1176
+#: svx/uiconfig/ui/findreplacedialog.ui:1182
msgctxt "findreplacedialog|label3"
msgid "Other _options"
msgstr ""
#. CPpFA
-#: svx/uiconfig/ui/findreplacedialog.ui:1183
+#: svx/uiconfig/ui/findreplacedialog.ui:1189
msgctxt "findreplacedialog|extended_tip|label3"
msgid "Shows more or fewer search options. Click this label again to hide the extended search options."
msgstr ""
#. YpLau
-#: svx/uiconfig/ui/findreplacedialog.ui:1219
+#: svx/uiconfig/ui/findreplacedialog.ui:1222
msgctxt "findreplacedialog|extended_tip|FindReplaceDialog"
msgid "Finds or replaces text or formats in the current document."
msgstr ""
@@ -17435,7 +17441,7 @@ msgstr ""
#: svx/uiconfig/ui/genericcheckentry.ui:44
msgctxt "genericcheckentry|propertiesButton"
msgid "Properties"
-msgstr ""
+msgstr "Propiedatz"
#. YFG3B
#: svx/uiconfig/ui/headfootformatpage.ui:63
@@ -17837,7 +17843,7 @@ msgstr "Eliminar R²"
#: svx/uiconfig/ui/inspectortextpanel.ui:62
msgctxt "inspectortextpanel|property"
msgid "Properties"
-msgstr ""
+msgstr "Propiedatz"
#. RyWCg
#: svx/uiconfig/ui/inspectortextpanel.ui:78
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 1399c0f9aac..372f3e4f59f 100644
--- a/source/an/sw/messages.po
+++ b/source/an/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: 2022-02-09 16:46+0100\n"
-"PO-Revision-Date: 2022-01-28 13:38+0000\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
+"PO-Revision-Date: 2022-04-04 09:50+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"
"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.11.2\n"
"X-POOTLE-MTIME: 1542195186.000000\n"
#. v3oJv
@@ -190,205 +190,205 @@ msgid "_Yes"
msgstr ""
#. DdjvG
-#: sw/inc/app.hrc:29
+#: sw/inc/app.hrc:31
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "All Styles"
msgstr "Totz os estilos"
#. aF6kb
-#: sw/inc/app.hrc:30
+#: sw/inc/app.hrc:32
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Hidden Styles"
msgstr ""
#. Sn6Pr
-#: sw/inc/app.hrc:31
+#: sw/inc/app.hrc:33
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaus"
#. dPsnN
-#: sw/inc/app.hrc:32
+#: sw/inc/app.hrc:34
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaus"
#. LL8tn
-#: sw/inc/app.hrc:33
+#: sw/inc/app.hrc:35
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Automatic"
msgstr "Automatica"
#. W2ZFq
-#: sw/inc/app.hrc:34
+#: sw/inc/app.hrc:36
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Text Styles"
msgstr ""
#. j6CkD
-#: sw/inc/app.hrc:35
+#: sw/inc/app.hrc:37
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Chapter Styles"
msgstr ""
#. KgUsu
-#: sw/inc/app.hrc:36
+#: sw/inc/app.hrc:38
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "List Styles"
msgstr ""
#. ZYAsP
-#: sw/inc/app.hrc:37
+#: sw/inc/app.hrc:39
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Index Styles"
msgstr ""
#. CXarp
-#: sw/inc/app.hrc:38
+#: sw/inc/app.hrc:40
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Special Styles"
msgstr ""
#. M9it7
-#: sw/inc/app.hrc:39
+#: sw/inc/app.hrc:41
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "HTML Styles"
msgstr ""
#. TeuD3
-#: sw/inc/app.hrc:40
+#: sw/inc/app.hrc:42
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Conditional Styles"
msgstr ""
#. EBcnz
-#: sw/inc/app.hrc:46
+#: sw/inc/app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. vmFjs
-#: sw/inc/app.hrc:47
+#: sw/inc/app.hrc:49
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Hidden Styles"
msgstr ""
#. NG33n
-#: sw/inc/app.hrc:48
+#: sw/inc/app.hrc:50
#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaus"
#. yubqD
-#: sw/inc/app.hrc:49
+#: sw/inc/app.hrc:51
#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaus"
#. hPACX
-#: sw/inc/app.hrc:55
+#: sw/inc/app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. NPGpT
-#: sw/inc/app.hrc:56
+#: sw/inc/app.hrc:58
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Hidden Styles"
msgstr ""
#. R8bb3
-#: sw/inc/app.hrc:57
+#: sw/inc/app.hrc:59
#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaus"
#. RFmiE
-#: sw/inc/app.hrc:58
+#: sw/inc/app.hrc:60
#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaus"
#. ADhCx
-#: sw/inc/app.hrc:64
+#: sw/inc/app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. kGzjB
-#: sw/inc/app.hrc:65
+#: sw/inc/app.hrc:67
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Hidden Styles"
msgstr ""
#. CAEy6
-#: sw/inc/app.hrc:66
+#: sw/inc/app.hrc:68
#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaus"
#. jQvqy
-#: sw/inc/app.hrc:67
+#: sw/inc/app.hrc:69
#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaus"
#. xFSbd
-#: sw/inc/app.hrc:73
+#: sw/inc/app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. DCRLB
-#: sw/inc/app.hrc:74
+#: sw/inc/app.hrc:76
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Hidden Styles"
msgstr ""
#. 4BdCR
-#: sw/inc/app.hrc:75
+#: sw/inc/app.hrc:77
#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaus"
#. A4VNy
-#: sw/inc/app.hrc:76
+#: sw/inc/app.hrc:78
#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaus"
#. DwpVB
-#: sw/inc/app.hrc:82
+#: sw/inc/app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. TPRKY
-#: sw/inc/app.hrc:83
+#: sw/inc/app.hrc:85
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Hidden Styles"
msgstr ""
#. Y9EKT
-#: sw/inc/app.hrc:84
+#: sw/inc/app.hrc:86
#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaus"
#. UFVRD
-#: sw/inc/app.hrc:85
+#: sw/inc/app.hrc:87
#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Custom Styles"
@@ -631,55 +631,55 @@ msgid ""
msgstr ""
#. daCFp
-#: sw/inc/flddinf.hrc:27
+#: sw/inc/flddinf.hrc:29
msgctxt "flddocinfopage|liststore1"
msgid "Author"
msgstr "Autor"
#. syKG4
-#: sw/inc/flddinf.hrc:28
+#: sw/inc/flddinf.hrc:30
msgctxt "flddocinfopage|liststore1"
msgid "Time"
msgstr "Hora"
#. YVmE7
-#: sw/inc/flddinf.hrc:29
+#: sw/inc/flddinf.hrc:31
msgctxt "flddocinfopage|liststore1"
msgid "Date"
msgstr "Calendata"
#. 2J6uc
-#: sw/inc/flddinf.hrc:30
+#: sw/inc/flddinf.hrc:32
msgctxt "flddocinfopage|liststore1"
msgid "Date Time Author"
msgstr ""
#. FzXBo
-#: sw/inc/fldref.hrc:27
+#: sw/inc/fldref.hrc:29
msgctxt "fldrefpage|liststore1"
msgid "Bookmarks"
msgstr ""
#. aGQG8
-#: sw/inc/fldref.hrc:28
+#: sw/inc/fldref.hrc:30
msgctxt "fldrefpage|liststore1"
msgid "Footnotes"
msgstr ""
#. DyZeU
-#: sw/inc/fldref.hrc:29
+#: sw/inc/fldref.hrc:31
msgctxt "fldrefpage|liststore1"
msgid "Endnotes"
msgstr ""
#. Cit9Z
-#: sw/inc/fldref.hrc:30
+#: sw/inc/fldref.hrc:32
msgctxt "fldrefpage|liststore1"
msgid "Headings"
msgstr ""
#. 95WGQ
-#: sw/inc/fldref.hrc:31
+#: sw/inc/fldref.hrc:33
msgctxt "fldrefpage|liststore1"
msgid "Numbered Paragraphs"
msgstr ""
@@ -2047,182 +2047,182 @@ msgid "Writing Mode"
msgstr ""
#. QBR3s
-#: sw/inc/mmaddressblockpage.hrc:27
+#: sw/inc/mmaddressblockpage.hrc:29
#, fuzzy
msgctxt "RA_SALUTATION"
msgid "Dear"
msgstr "anyo"
#. xc8LH
-#: sw/inc/mmaddressblockpage.hrc:28
+#: sw/inc/mmaddressblockpage.hrc:30
msgctxt "RA_SALUTATION"
msgid "Hello"
msgstr ""
#. 3dVR9
-#: sw/inc/mmaddressblockpage.hrc:29
+#: sw/inc/mmaddressblockpage.hrc:31
msgctxt "RA_SALUTATION"
msgid "Hi"
msgstr ""
#. G4dAq
-#: sw/inc/mmaddressblockpage.hrc:34
+#: sw/inc/mmaddressblockpage.hrc:36
msgctxt "RA_PUNCTUATION"
msgid ","
msgstr ""
#. xpSNV
-#: sw/inc/mmaddressblockpage.hrc:35
+#: sw/inc/mmaddressblockpage.hrc:37
msgctxt "RA_PUNCTUATION"
msgid ":"
msgstr ""
#. CBNXb
-#: sw/inc/mmaddressblockpage.hrc:36
+#: sw/inc/mmaddressblockpage.hrc:38
msgctxt "RA_PUNCTUATION"
msgid "!"
msgstr ""
#. av4Wm
-#: sw/inc/mmaddressblockpage.hrc:37
+#: sw/inc/mmaddressblockpage.hrc:39
msgctxt "RA_PUNCTUATION"
msgid "(none)"
msgstr ""
#. ujBVU
-#: sw/inc/optload.hrc:30
+#: sw/inc/optload.hrc:31
msgctxt "STR_ARR_METRIC"
msgid "Millimeter"
msgstr "Milimetros"
#. a9SsD
-#: sw/inc/optload.hrc:31
+#: sw/inc/optload.hrc:32
msgctxt "STR_ARR_METRIC"
msgid "Centimeter"
msgstr "Centimetros"
#. 2RuJU
-#: sw/inc/optload.hrc:32
+#: sw/inc/optload.hrc:33
msgctxt "STR_ARR_METRIC"
msgid "Meter"
msgstr "Metros"
#. s4zrG
-#: sw/inc/optload.hrc:33
+#: sw/inc/optload.hrc:34
msgctxt "STR_ARR_METRIC"
msgid "Kilometer"
msgstr "Kilometros"
#. SGXPk
-#: sw/inc/optload.hrc:34
+#: sw/inc/optload.hrc:35
msgctxt "STR_ARR_METRIC"
msgid "Inch"
msgstr "Pulzadas"
#. 3kDJD
-#: sw/inc/optload.hrc:35
+#: sw/inc/optload.hrc:36
msgctxt "STR_ARR_METRIC"
msgid "Foot"
msgstr "Pietz"
#. Z9v2E
-#: sw/inc/optload.hrc:36
+#: sw/inc/optload.hrc:37
msgctxt "STR_ARR_METRIC"
msgid "Miles"
msgstr "Millas"
#. ngFw4
-#: sw/inc/optload.hrc:37
+#: sw/inc/optload.hrc:38
msgctxt "STR_ARR_METRIC"
msgid "Pica"
msgstr "Picas"
#. C2njC
-#: sw/inc/optload.hrc:38
+#: sw/inc/optload.hrc:39
msgctxt "STR_ARR_METRIC"
msgid "Point"
msgstr "Puntos"
#. FcXWG
-#: sw/inc/optload.hrc:39
+#: sw/inc/optload.hrc:40
msgctxt "STR_ARR_METRIC"
msgid "Char"
msgstr ""
#. ZZCxd
-#: sw/inc/optload.hrc:40
+#: sw/inc/optload.hrc:41
msgctxt "STR_ARR_METRIC"
msgid "Line"
msgstr ""
#. qQBCu
-#: sw/inc/outline.hrc:27
+#: sw/inc/outline.hrc:29
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 1"
msgstr ""
#. fJyA3
-#: sw/inc/outline.hrc:28
+#: sw/inc/outline.hrc:30
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 2"
msgstr ""
#. MLeBF
-#: sw/inc/outline.hrc:29
+#: sw/inc/outline.hrc:31
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 3"
msgstr ""
#. reXad
-#: sw/inc/outline.hrc:30
+#: sw/inc/outline.hrc:32
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 4"
msgstr ""
#. Fgpbv
-#: sw/inc/outline.hrc:31
+#: sw/inc/outline.hrc:33
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 5"
msgstr ""
#. Ea4d6
-#: sw/inc/outline.hrc:32
+#: sw/inc/outline.hrc:34
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 6"
msgstr ""
#. UcAcC
-#: sw/inc/outline.hrc:33
+#: sw/inc/outline.hrc:35
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 7"
msgstr ""
#. Dv26U
-#: sw/inc/outline.hrc:34
+#: sw/inc/outline.hrc:36
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 8"
msgstr ""
#. XxC5o
-#: sw/inc/outline.hrc:35
+#: sw/inc/outline.hrc:37
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 9"
msgstr ""
#. TTBSc
-#: sw/inc/pageformatpanel.hrc:23
+#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
msgstr "Garra"
#. eNMWm
-#: sw/inc/pageformatpanel.hrc:24
+#: sw/inc/pageformatpanel.hrc:26
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
msgstr ""
#. MHtci
-#: sw/inc/pageformatpanel.hrc:25
+#: sw/inc/pageformatpanel.hrc:27
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
msgstr ""
@@ -2231,38 +2231,38 @@ msgstr ""
#. Normal (0.75")
#. Normal (1")
#. Normal (1.25")
-#: sw/inc/pageformatpanel.hrc:27 sw/inc/pageformatpanel.hrc:29
-#: sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:29 sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (%1)"
msgstr ""
#. DjCNK
-#: sw/inc/pageformatpanel.hrc:32
+#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
msgstr ""
#. JDMQe
-#: sw/inc/pageformatpanel.hrc:33
+#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Mirrored"
msgstr ""
#. J9o3y
-#: sw/inc/pageformatpanel.hrc:39
+#: sw/inc/pageformatpanel.hrc:41
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
msgstr "Garra"
#. LxZSX
-#: sw/inc/pageformatpanel.hrc:40
+#: sw/inc/pageformatpanel.hrc:42
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
msgstr ""
#. EDy4U
-#: sw/inc/pageformatpanel.hrc:41
+#: sw/inc/pageformatpanel.hrc:43
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
msgstr ""
@@ -2271,20 +2271,20 @@ msgstr ""
#. Normal (1.9 cm)
#. Normal (2.54 cm)
#. Normal (3.18 cm)
-#: sw/inc/pageformatpanel.hrc:43 sw/inc/pageformatpanel.hrc:45
-#: sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:45 sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:49
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (%1)"
msgstr ""
#. oJfxD
-#: sw/inc/pageformatpanel.hrc:48
+#: sw/inc/pageformatpanel.hrc:50
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
msgstr ""
#. H9Qqx
-#: sw/inc/pageformatpanel.hrc:49
+#: sw/inc/pageformatpanel.hrc:51
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr ""
@@ -4065,10 +4065,9 @@ msgstr ""
#. SBmWN
#: sw/inc/strings.hrc:339
-#, fuzzy
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
-msgstr "Amplaria d'a col~umna..."
+msgstr "Amplaria d'a columna %1"
#. ZLVNB
#: sw/inc/strings.hrc:340
@@ -9338,282 +9337,294 @@ msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr ""
-#. sgEbW
+#. WghdP
#: sw/inc/strings.hrc:1283
+msgctxt "STR_REDLINE_COMMENT_ADDED"
+msgid "Comment added"
+msgstr ""
+
+#. 2KNu9
+#: sw/inc/strings.hrc:1284
+msgctxt "STR_REDLINE_COMMENT_DELETED"
+msgid "Comment deleted"
+msgstr ""
+
+#. sgEbW
+#: sw/inc/strings.hrc:1285
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Pachina "
#. 3DpEx
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1286
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr ""
#. HSbzS
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1287
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1288
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:1288
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragrafo"
#. aAtmp
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Imachen"
#. UBDMK
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Obchecto OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr ""
#. hfJns
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabla"
#. GRqNY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1295
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr ""
#. CDQY4
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1296
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr ""
#. 2Db9T
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1297
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Pachina"
#. 63FuG
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1298
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Capitero"
#. aDuAY
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1299
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Piet de pachina"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1302
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr ""
#. y2GBv
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titol"
#. AipGR
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1305
#, fuzzy
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Separadors"
#. CoSEf
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1306
msgctxt "STR_LEVEL"
msgid "Level "
msgstr ""
#. JdTF4
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1307
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr ""
#. zRWDZ
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1308
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr ""
#. t5uWs
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1309
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr ""
#. vSSnJ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1310
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr ""
#. NSx98
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1311
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr ""
#. teDm3
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr ""
#. FH365
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr ""
#. xZjtZ
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1322
#, fuzzy
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "~Tabulacions"
#. aXW8y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Texto"
#. MCUd2
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1324
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr ""
#. pXqw3
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr ""
#. DRBSD
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1326
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr ""
#. Ytn5g
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1327
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr ""
#. hRo3J
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1328
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr ""
#. ZKG5v
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1329
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr ""
#. d9BES
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1330
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1331
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1332
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1333
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:1332
+#: sw/inc/strings.hrc:1334
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9622,263 +9633,263 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr ""
#. 5GiEA
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr ""
#. sdyVF
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr ""
#. NAXyZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1342
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr ""
#. 5C6Rc
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1343
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr ""
#. 3QFYB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1344
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr ""
#. oUhnK
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1345
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Cantos"
#. T2SH2
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1346
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Fundo"
#. K6Yvs
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1348
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr ""
#. Fsanh
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1349
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:1349
+#: sw/inc/strings.hrc:1351
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr ""
#. kWe9j
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1353
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1354
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1355
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1357
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1358
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr ""
#. Z8EjG
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1359
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr ""
#. YEXdS
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1360
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr ""
#. QecQ3
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1361
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr ""
#. aaiBM
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1362
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1364
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1366
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:1365
+#: sw/inc/strings.hrc:1367
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1368
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1369
#, fuzzy
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "Documento HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1370
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Documento de texto"
#. qmmPU
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1372
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr ""
#. AcAD8
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1373
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr ""
#. DE9FZ
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1374
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr ""
#. EzBCZ
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1375
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr ""
#. fgywB
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1376
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ringlera"
#. GUc4a
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1377
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Columna"
#. yMyuo
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1379
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1381
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr ""
#. ZR9aw
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1382
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1383
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1384
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1386
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr ""
#. mWrXk
-#: sw/inc/strings.hrc:1386
+#: sw/inc/strings.hrc:1388
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1390
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9887,7 +9898,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1396
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9896,256 +9907,256 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1401
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1402
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1403
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1404
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr ""
#. BK7ub
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1405
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1407
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Tarchetas de pr~esentación"
#. ECFij
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1409
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1411
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr ""
#. NL48o
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1412
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Eliminar"
#. PW4Bz
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1413
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr ""
#. yfgiq
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr ""
#. BFszo
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr ""
#. EoAB8
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1419
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Conteniu"
#. Shstx
-#: sw/inc/strings.hrc:1418
+#: sw/inc/strings.hrc:1420
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr ""
#. 8Cjvb
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1421
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1420
+#: sw/inc/strings.hrc:1422
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr ""
#. 4tTop
-#: sw/inc/strings.hrc:1421
+#: sw/inc/strings.hrc:1423
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr ""
#. KhKwa
-#: sw/inc/strings.hrc:1423
+#: sw/inc/strings.hrc:1425
#, fuzzy
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Personalizau 1"
#. YiRsr
-#: sw/inc/utlui.hrc:27
+#: sw/inc/utlui.hrc:29
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Remove empty paragraphs"
msgstr ""
#. zWFE6
-#: sw/inc/utlui.hrc:28
+#: sw/inc/utlui.hrc:30
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Use replacement table"
msgstr ""
#. EQfLp
-#: sw/inc/utlui.hrc:29
+#: sw/inc/utlui.hrc:31
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Correct TWo INitial CApitals"
msgstr ""
#. JBCDA
-#: sw/inc/utlui.hrc:30
+#: sw/inc/utlui.hrc:32
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Capitalize first letter of sentences"
msgstr ""
#. eGLb9
-#: sw/inc/utlui.hrc:31
+#: sw/inc/utlui.hrc:33
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace \"standard\" quotes with %1custom%2 quotes"
msgstr ""
#. dgZCx
-#: sw/inc/utlui.hrc:32
+#: sw/inc/utlui.hrc:34
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace Custom Styles"
msgstr ""
#. zXHk9
-#: sw/inc/utlui.hrc:33
+#: sw/inc/utlui.hrc:35
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Bullets replaced"
msgstr ""
#. p7V6t
-#: sw/inc/utlui.hrc:34
+#: sw/inc/utlui.hrc:36
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic _underline_"
msgstr ""
#. Hzt7q
-#: sw/inc/utlui.hrc:35
+#: sw/inc/utlui.hrc:37
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic *bold*"
msgstr ""
#. oMfhs
-#: sw/inc/utlui.hrc:36
+#: sw/inc/utlui.hrc:38
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1/2 ... with ½ ..."
msgstr ""
#. UCK6y
-#: sw/inc/utlui.hrc:37
+#: sw/inc/utlui.hrc:39
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "URL recognition"
msgstr ""
#. MD9fC
-#: sw/inc/utlui.hrc:38
+#: sw/inc/utlui.hrc:40
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace dashes"
msgstr ""
#. YABTx
-#: sw/inc/utlui.hrc:39
+#: sw/inc/utlui.hrc:41
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1st... with 1^st..."
msgstr ""
#. ebBjY
-#: sw/inc/utlui.hrc:40
+#: sw/inc/utlui.hrc:42
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine single line paragraphs"
msgstr ""
#. Gtaxa
-#: sw/inc/utlui.hrc:41
+#: sw/inc/utlui.hrc:43
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body\" Style"
msgstr ""
#. P8xFp
-#: sw/inc/utlui.hrc:42 sw/inc/utlui.hrc:44
+#: sw/inc/utlui.hrc:44 sw/inc/utlui.hrc:46
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body indent\" Style"
msgstr ""
#. UUEwQ
-#: sw/inc/utlui.hrc:43
+#: sw/inc/utlui.hrc:45
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Hanging indent\" Style"
msgstr ""
#. qv2KD
-#: sw/inc/utlui.hrc:45
+#: sw/inc/utlui.hrc:47
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Heading $(ARG1)\" Style"
msgstr ""
#. orFXE
-#: sw/inc/utlui.hrc:46
+#: sw/inc/utlui.hrc:48
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Bullet\" or \"Numbering\" Style"
msgstr ""
#. yGoaB
-#: sw/inc/utlui.hrc:47
+#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine paragraphs"
msgstr ""
#. rpT9U
-#: sw/inc/utlui.hrc:48
+#: sw/inc/utlui.hrc:50
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr ""
#. FHPwi
-#: sw/inc/utlui.hrc:49
+#: sw/inc/utlui.hrc:51
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
msgstr ""
@@ -10188,10 +10199,9 @@ msgstr ""
#. G6YVz
#: sw/uiconfig/swriter/ui/abstractdialog.ui:198
-#, fuzzy
msgctxt "abstractdialog|label1"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. 3UKNA
#: sw/uiconfig/swriter/ui/abstractdialog.ui:223
@@ -10519,10 +10529,9 @@ msgstr ""
#. B2ofV
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:309
-#, fuzzy
msgctxt "asciifilterdialog|label1"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. S6E7s
#: sw/uiconfig/swriter/ui/asksearchdialog.ui:12
@@ -11207,7 +11216,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/bibliofragment.ui:68
msgctxt "bibliofragment|pagecb"
msgid "Page"
-msgstr ""
+msgstr "Pachina"
#. bBcSd
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
@@ -12209,170 +12218,170 @@ msgid "Width and Spacing"
msgstr ""
#. aBAZn
-#: sw/uiconfig/swriter/ui/columnpage.ui:442
+#: sw/uiconfig/swriter/ui/columnpage.ui:439
#, fuzzy
msgctxt "columnpage|linestyleft"
msgid "St_yle:"
msgstr "E~stilo"
#. iTh5i
-#: sw/uiconfig/swriter/ui/columnpage.ui:456
+#: sw/uiconfig/swriter/ui/columnpage.ui:453
msgctxt "columnpage|linewidthft"
msgid "_Width:"
msgstr ""
#. fEm38
-#: sw/uiconfig/swriter/ui/columnpage.ui:470
+#: sw/uiconfig/swriter/ui/columnpage.ui:467
msgctxt "columnpage|lineheightft"
msgid "H_eight:"
msgstr ""
#. vKEyi
-#: sw/uiconfig/swriter/ui/columnpage.ui:484
+#: sw/uiconfig/swriter/ui/columnpage.ui:481
#, fuzzy
msgctxt "columnpage|lineposft"
msgid "_Position:"
msgstr "Posición"
#. yhqBe
-#: sw/uiconfig/swriter/ui/columnpage.ui:507
+#: sw/uiconfig/swriter/ui/columnpage.ui:504
msgctxt "columnpage|extended_tip|linestylelb"
msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"."
msgstr ""
#. DcSGt
-#: sw/uiconfig/swriter/ui/columnpage.ui:521
+#: sw/uiconfig/swriter/ui/columnpage.ui:518
msgctxt "columnpage|lineposlb"
msgid "Top"
msgstr "Cobalto"
#. MKcWL
-#: sw/uiconfig/swriter/ui/columnpage.ui:522
+#: sw/uiconfig/swriter/ui/columnpage.ui:519
#, fuzzy
msgctxt "columnpage|lineposlb"
msgid "Centered"
msgstr "~Centrau"
#. CxCJF
-#: sw/uiconfig/swriter/ui/columnpage.ui:523
+#: sw/uiconfig/swriter/ui/columnpage.ui:520
msgctxt "columnpage|lineposlb"
msgid "Bottom"
msgstr "Cobaixo"
#. Akv5r
-#: sw/uiconfig/swriter/ui/columnpage.ui:527
+#: sw/uiconfig/swriter/ui/columnpage.ui:524
msgctxt "columnpage|extended_tip|lineposlb"
msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%."
msgstr ""
#. FMShH
-#: sw/uiconfig/swriter/ui/columnpage.ui:545
+#: sw/uiconfig/swriter/ui/columnpage.ui:542
msgctxt "columnpage|extended_tip|lineheightmf"
msgid "Enter the length of the separator line as a percentage of the height of the column area."
msgstr ""
#. kkGNR
-#: sw/uiconfig/swriter/ui/columnpage.ui:589
+#: sw/uiconfig/swriter/ui/columnpage.ui:586
#, fuzzy
msgctxt "columnpage|linecolorft"
msgid "_Color:"
msgstr "~Color"
#. 9o7DQ
-#: sw/uiconfig/swriter/ui/columnpage.ui:623
+#: sw/uiconfig/swriter/ui/columnpage.ui:620
msgctxt "columnpage|label11"
msgid "Separator Line"
msgstr ""
#. 7SaDT
-#: sw/uiconfig/swriter/ui/columnpage.ui:672
+#: sw/uiconfig/swriter/ui/columnpage.ui:669
#, fuzzy
msgctxt "columnpage|label3"
msgid "Columns:"
msgstr "Columna"
#. aF466
-#: sw/uiconfig/swriter/ui/columnpage.ui:691
+#: sw/uiconfig/swriter/ui/columnpage.ui:688
msgctxt "columnpage|extended_tip|colsnf"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr ""
#. X9vG6
-#: sw/uiconfig/swriter/ui/columnpage.ui:714
+#: sw/uiconfig/swriter/ui/columnpage.ui:711
msgctxt "columnpage|balance"
msgid "Evenly distribute contents _to all columns"
msgstr ""
#. BYYDE
-#: sw/uiconfig/swriter/ui/columnpage.ui:722
+#: sw/uiconfig/swriter/ui/columnpage.ui:719
msgctxt "columnpage|extended_tip|balance"
msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically."
msgstr ""
#. bV6Pg
-#: sw/uiconfig/swriter/ui/columnpage.ui:742
+#: sw/uiconfig/swriter/ui/columnpage.ui:739
msgctxt "columnpage|liststore2"
msgid "Selection"
msgstr "Selección"
#. qA5MH
-#: sw/uiconfig/swriter/ui/columnpage.ui:743
+#: sw/uiconfig/swriter/ui/columnpage.ui:740
msgctxt "columnpage|liststore2"
msgid "Current Section"
msgstr ""
#. VSvpa
-#: sw/uiconfig/swriter/ui/columnpage.ui:744
+#: sw/uiconfig/swriter/ui/columnpage.ui:741
msgctxt "columnpage|liststore2"
msgid "Selected section"
msgstr ""
#. Mo9GL
-#: sw/uiconfig/swriter/ui/columnpage.ui:745
+#: sw/uiconfig/swriter/ui/columnpage.ui:742
msgctxt "columnpage|liststore2"
msgid "Frame"
msgstr ""
#. mBmAm
-#: sw/uiconfig/swriter/ui/columnpage.ui:746
+#: sw/uiconfig/swriter/ui/columnpage.ui:743
#, fuzzy
msgctxt "columnpage|liststore2"
msgid "Page Style: "
msgstr "Estilo d'a fuella"
#. F7MQT
-#: sw/uiconfig/swriter/ui/columnpage.ui:750
+#: sw/uiconfig/swriter/ui/columnpage.ui:747
msgctxt "columnpage|extended_tip|applytolb"
msgid "Select the item that you want to apply the column layout to."
msgstr ""
#. AJFqx
-#: sw/uiconfig/swriter/ui/columnpage.ui:763
+#: sw/uiconfig/swriter/ui/columnpage.ui:760
msgctxt "columnpage|applytoft"
msgid "_Apply to:"
msgstr ""
#. rzBnm
-#: sw/uiconfig/swriter/ui/columnpage.ui:790
+#: sw/uiconfig/swriter/ui/columnpage.ui:787
msgctxt "columnpage|textdirectionft"
msgid "Text _direction:"
msgstr ""
#. dcDde
-#: sw/uiconfig/swriter/ui/columnpage.ui:834
+#: sw/uiconfig/swriter/ui/columnpage.ui:831
msgctxt "columnpage|extended_tip|valueset"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr ""
#. fEbMc
-#: sw/uiconfig/swriter/ui/columnpage.ui:849
+#: sw/uiconfig/swriter/ui/columnpage.ui:846
#, fuzzy
msgctxt "columnpage|label2"
msgid "Settings"
msgstr "Configuración"
#. 3dGYz
-#: sw/uiconfig/swriter/ui/columnpage.ui:904
+#: sw/uiconfig/swriter/ui/columnpage.ui:901
msgctxt "columnpage|extended_tip|ColumnPage"
msgid "Specifies the number of columns and the column layout for a page style, frame, or section."
msgstr ""
@@ -13545,10 +13554,9 @@ msgstr ""
#. ndfNc
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:707
-#, fuzzy
msgctxt "editsectiondialog|label9"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. BjqYr
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:746
@@ -15192,182 +15200,182 @@ msgid "Position"
msgstr "Posición"
#. okHEF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:86
+#: sw/uiconfig/swriter/ui/footnotepage.ui:92
msgctxt "footnotepage|offset"
msgid "Start at"
msgstr ""
#. T7pFk
-#: sw/uiconfig/swriter/ui/footnotepage.ui:98
+#: sw/uiconfig/swriter/ui/footnotepage.ui:104
msgctxt "footnotepage|label11"
msgid "After"
msgstr ""
#. iA9We
-#: sw/uiconfig/swriter/ui/footnotepage.ui:108
+#: sw/uiconfig/swriter/ui/footnotepage.ui:114
msgctxt "footnotepage|pospagecb"
msgid "End of page"
msgstr ""
#. zqfGN
-#: sw/uiconfig/swriter/ui/footnotepage.ui:120
+#: sw/uiconfig/swriter/ui/footnotepage.ui:126
msgctxt "footnotepage|extended_tip|pospagecb"
msgid "Displays footnotes at the bottom of the page."
msgstr ""
#. 8zwoB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:131
+#: sw/uiconfig/swriter/ui/footnotepage.ui:137
msgctxt "footnotepage|posdoccb"
msgid "End of document"
msgstr ""
#. xvD3V
-#: sw/uiconfig/swriter/ui/footnotepage.ui:143
+#: sw/uiconfig/swriter/ui/footnotepage.ui:149
msgctxt "footnotepage|extended_tip|posdoccb"
msgid "Displays footnotes at the end of the document as endnotes."
msgstr ""
#. BGVTw
-#: sw/uiconfig/swriter/ui/footnotepage.ui:161
+#: sw/uiconfig/swriter/ui/footnotepage.ui:167
msgctxt "footnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box."
msgstr ""
#. RWgzD
-#: sw/uiconfig/swriter/ui/footnotepage.ui:175
+#: sw/uiconfig/swriter/ui/footnotepage.ui:181
msgctxt "footnotepage|liststore1"
msgid "Per page"
msgstr ""
#. MELvZ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:176
+#: sw/uiconfig/swriter/ui/footnotepage.ui:182
msgctxt "footnotepage|liststore1"
msgid "Per chapter"
msgstr ""
#. oD7zV
-#: sw/uiconfig/swriter/ui/footnotepage.ui:177
+#: sw/uiconfig/swriter/ui/footnotepage.ui:183
msgctxt "footnotepage|liststore1"
msgid "Per document"
msgstr ""
#. BDrKx
-#: sw/uiconfig/swriter/ui/footnotepage.ui:181
+#: sw/uiconfig/swriter/ui/footnotepage.ui:187
msgctxt "footnotepage|extended_tip|countinglb"
msgid "Select the numbering option for the footnotes."
msgstr ""
#. 7GqFA
-#: sw/uiconfig/swriter/ui/footnotepage.ui:198
+#: sw/uiconfig/swriter/ui/footnotepage.ui:204
msgctxt "footnotepage|extended_tip|prefix"
msgid "Enter the text that you want to display in front of the footnote number in the note text."
msgstr ""
#. 7rE4w
-#: sw/uiconfig/swriter/ui/footnotepage.ui:215
+#: sw/uiconfig/swriter/ui/footnotepage.ui:221
msgctxt "footnotepage|extended_tip|suffix"
msgid "Enter the text that you want to display after the footnote number in the note text."
msgstr ""
#. YAUrj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:230
+#: sw/uiconfig/swriter/ui/footnotepage.ui:236
msgctxt "footnotepage|extended_tip|numberinglb"
msgid "Select the numbering scheme that you want to use."
msgstr ""
#. Gzv4E
-#: sw/uiconfig/swriter/ui/footnotepage.ui:248
+#: sw/uiconfig/swriter/ui/footnotepage.ui:254
msgctxt "footnotepage|label3"
msgid "Autonumbering"
msgstr ""
#. NRpEM
-#: sw/uiconfig/swriter/ui/footnotepage.ui:281
+#: sw/uiconfig/swriter/ui/footnotepage.ui:287
msgctxt "footnotepage|label17"
msgid "End of footnote"
msgstr ""
#. cQefG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:293
+#: sw/uiconfig/swriter/ui/footnotepage.ui:299
msgctxt "footnotepage|label18"
msgid "Start of next page"
msgstr ""
#. CUWNP
-#: sw/uiconfig/swriter/ui/footnotepage.ui:311
+#: sw/uiconfig/swriter/ui/footnotepage.ui:317
msgctxt "footnotepage|extended_tip|contfromed"
msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". Writer automatically inserts the number of the previous page."
msgstr ""
#. 2X7QW
-#: sw/uiconfig/swriter/ui/footnotepage.ui:330
+#: sw/uiconfig/swriter/ui/footnotepage.ui:336
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". Writer automatically inserts the number of the following page."
msgstr ""
#. ZEhG2
-#: sw/uiconfig/swriter/ui/footnotepage.ui:345
+#: sw/uiconfig/swriter/ui/footnotepage.ui:351
msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr ""
#. jHwyG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:376
+#: sw/uiconfig/swriter/ui/footnotepage.ui:382
msgctxt "footnotepage|label4"
msgid "Paragraph"
msgstr "Paragrafo"
#. 95fCg
-#: sw/uiconfig/swriter/ui/footnotepage.ui:388
+#: sw/uiconfig/swriter/ui/footnotepage.ui:394
msgctxt "footnotepage|pagestyleft"
msgid "Page"
msgstr "Pachina"
#. RFDnB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:403
+#: sw/uiconfig/swriter/ui/footnotepage.ui:409
msgctxt "footnotepage|extended_tip|parastylelb"
msgid "Select the paragraph style for the footnote text. Only special styles can be selected."
msgstr ""
#. bhosj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:419
+#: sw/uiconfig/swriter/ui/footnotepage.ui:425
msgctxt "footnotepage|extended_tip|pagestylelb"
msgid "Select the page style that you want to use for footnotes."
msgstr ""
#. ESqR9
-#: sw/uiconfig/swriter/ui/footnotepage.ui:435
+#: sw/uiconfig/swriter/ui/footnotepage.ui:441
msgctxt "footnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for footnote anchors in the text area of your document."
msgstr ""
#. EfWvJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:451
+#: sw/uiconfig/swriter/ui/footnotepage.ui:457
msgctxt "footnotepage|extended_tip|charstylelb"
msgid "Select the character style that you want to use for the footnote numbers in the footnote area."
msgstr ""
#. ZP5bQ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:464
+#: sw/uiconfig/swriter/ui/footnotepage.ui:470
msgctxt "footnotepage|label15"
msgid "Text area"
msgstr ""
#. aYFwJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:476
+#: sw/uiconfig/swriter/ui/footnotepage.ui:482
msgctxt "footnotepage|label16"
msgid "Footnote area"
msgstr ""
#. j8ZuF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:490
+#: sw/uiconfig/swriter/ui/footnotepage.ui:496
#, fuzzy
msgctxt "footnotepage|label12"
msgid "Styles"
msgstr "E~stilo"
#. soD9k
-#: sw/uiconfig/swriter/ui/footnotepage.ui:504
+#: sw/uiconfig/swriter/ui/footnotepage.ui:510
msgctxt "footnotepage|extended_tip|FootnotePage"
msgid "Specifies the formatting for footnotes."
msgstr ""
@@ -15610,10 +15618,9 @@ msgstr ""
#. FCGH6
#: sw/uiconfig/swriter/ui/formattablepage.ui:174
-#, fuzzy
msgctxt "formattablepage|label45"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. ZAykg
#: sw/uiconfig/swriter/ui/formattablepage.ui:205
@@ -16029,10 +16036,9 @@ msgstr ""
#. MvNvt
#: sw/uiconfig/swriter/ui/frmaddpage.ui:473
-#, fuzzy
msgctxt "frmaddpage|label3"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. 7Eswq
#: sw/uiconfig/swriter/ui/frmaddpage.ui:488
@@ -16540,127 +16546,127 @@ msgid "New User-defined Index"
msgstr ""
#. zTEFk
-#: sw/uiconfig/swriter/ui/indexentry.ui:213
+#: sw/uiconfig/swriter/ui/indexentry.ui:210
msgctxt "indexentry|label3"
msgid "Entry"
msgstr ""
#. jcbjL
-#: sw/uiconfig/swriter/ui/indexentry.ui:229
+#: sw/uiconfig/swriter/ui/indexentry.ui:226
msgctxt "indexentry|key1ft"
msgid "1st key"
msgstr ""
#. B47KE
-#: sw/uiconfig/swriter/ui/indexentry.ui:245
+#: sw/uiconfig/swriter/ui/indexentry.ui:242
msgctxt "indexentry|key2ft"
msgid "2nd key"
msgstr ""
#. ReqDn
-#: sw/uiconfig/swriter/ui/indexentry.ui:260
+#: sw/uiconfig/swriter/ui/indexentry.ui:257
msgctxt "indexentry|levelft"
msgid "Level"
msgstr "Libel"
#. QybEJ
-#: sw/uiconfig/swriter/ui/indexentry.ui:291
+#: sw/uiconfig/swriter/ui/indexentry.ui:288
msgctxt "indexentry|phonetic0ft"
msgid "Phonetic reading"
msgstr ""
#. JCtnw
-#: sw/uiconfig/swriter/ui/indexentry.ui:307
+#: sw/uiconfig/swriter/ui/indexentry.ui:304
msgctxt "indexentry|phonetic1ft"
msgid "Phonetic reading"
msgstr ""
#. C6FQC
-#: sw/uiconfig/swriter/ui/indexentry.ui:323
+#: sw/uiconfig/swriter/ui/indexentry.ui:320
msgctxt "indexentry|phonetic2ft"
msgid "Phonetic reading"
msgstr ""
#. JbXGT
-#: sw/uiconfig/swriter/ui/indexentry.ui:413
+#: sw/uiconfig/swriter/ui/indexentry.ui:410
msgctxt "indexentry|sync|tooltip_text"
msgid "Update entry from selection"
msgstr ""
#. B5PWe
-#: sw/uiconfig/swriter/ui/indexentry.ui:462
+#: sw/uiconfig/swriter/ui/indexentry.ui:459
msgctxt "indexentry|mainentrycb"
msgid "Main entry"
msgstr ""
#. 4QfoT
-#: sw/uiconfig/swriter/ui/indexentry.ui:476
+#: sw/uiconfig/swriter/ui/indexentry.ui:473
msgctxt "indexentry|applytoallcb"
msgid "Apply to all similar texts"
msgstr ""
#. ZdMSz
-#: sw/uiconfig/swriter/ui/indexentry.ui:490
+#: sw/uiconfig/swriter/ui/indexentry.ui:487
msgctxt "indexentry|searchcasesensitivecb"
msgid "Match case"
msgstr ""
#. 8Q9RW
-#: sw/uiconfig/swriter/ui/indexentry.ui:505
+#: sw/uiconfig/swriter/ui/indexentry.ui:502
msgctxt "indexentry|searchcasewordonlycb"
msgid "Whole words only"
msgstr ""
#. 62yyk
-#: sw/uiconfig/swriter/ui/indexentry.ui:539
+#: sw/uiconfig/swriter/ui/indexentry.ui:536
msgctxt "indexentry|previous|tooltip_text"
msgid "Previous entry"
msgstr ""
#. Vd86J
-#: sw/uiconfig/swriter/ui/indexentry.ui:542
+#: sw/uiconfig/swriter/ui/indexentry.ui:539
msgctxt "indexentry|extended_tip|previous"
msgid "Jumps to the previous index entry of the same type in the document."
msgstr ""
#. VsuQU
-#: sw/uiconfig/swriter/ui/indexentry.ui:560
+#: sw/uiconfig/swriter/ui/indexentry.ui:557
msgctxt "indexentry|next|tooltip_text"
msgid "Next entry"
msgstr ""
#. WsgJC
-#: sw/uiconfig/swriter/ui/indexentry.ui:563
+#: sw/uiconfig/swriter/ui/indexentry.ui:560
msgctxt "indexentry|extended_tip|next"
msgid "Jumps to the next index entry of the same type in the document."
msgstr ""
#. KnhCr
-#: sw/uiconfig/swriter/ui/indexentry.ui:581
+#: sw/uiconfig/swriter/ui/indexentry.ui:578
msgctxt "indexentry|first|tooltip_text"
msgid "Previous entry (same name)"
msgstr ""
#. 3dGEa
-#: sw/uiconfig/swriter/ui/indexentry.ui:584
+#: sw/uiconfig/swriter/ui/indexentry.ui:581
msgctxt "indexentry|extended_tip|first"
msgid "Jumps to the previous index entry of the same type and with the same name in the document."
msgstr ""
#. 2mkMr
-#: sw/uiconfig/swriter/ui/indexentry.ui:602
+#: sw/uiconfig/swriter/ui/indexentry.ui:599
msgctxt "indexentry|last|tooltip_text"
msgid "Next entry (same name)"
msgstr ""
#. gYHoh
-#: sw/uiconfig/swriter/ui/indexentry.ui:605
+#: sw/uiconfig/swriter/ui/indexentry.ui:602
msgctxt "indexentry|extended_tip|last"
msgid "Jumps to the next index entry of the same type and with the same name in the document."
msgstr ""
#. dLE2B
-#: sw/uiconfig/swriter/ui/indexentry.ui:633
+#: sw/uiconfig/swriter/ui/indexentry.ui:630
msgctxt "indexentry|label1"
msgid "Selection"
msgstr "Selección"
@@ -17231,75 +17237,105 @@ msgctxt "insertbreak|linerb-atkobject"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr ""
+#. 88jq6
+#: sw/uiconfig/swriter/ui/insertbreak.ui:122
+msgctxt "insertbreak|clearft"
+msgid "Restart Location:"
+msgstr ""
+
+#. fJEqu
+#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+msgctxt "insertbreak|clearlb0"
+msgid "[None]"
+msgstr "[Garra]"
+
+#. dGBC7
+#: sw/uiconfig/swriter/ui/insertbreak.ui:141
+msgctxt "insertbreak|clearlb1"
+msgid "Left"
+msgstr ""
+
+#. HbijZ
+#: sw/uiconfig/swriter/ui/insertbreak.ui:142
+msgctxt "insertbreak|clearlb2"
+msgid "Right"
+msgstr ""
+
+#. AAg7H
+#: sw/uiconfig/swriter/ui/insertbreak.ui:143
+msgctxt "insertbreak|clearlb3"
+msgid "Next Full Line"
+msgstr ""
+
#. gqCuB
-#: sw/uiconfig/swriter/ui/insertbreak.ui:119
+#: sw/uiconfig/swriter/ui/insertbreak.ui:154
msgctxt "insertbreak|columnrb"
msgid "Column break"
msgstr ""
#. poiJj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:128
+#: sw/uiconfig/swriter/ui/insertbreak.ui:163
msgctxt "insertbreak|columnrb-atkobject"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column."
msgstr ""
#. 9GAAp
-#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+#: sw/uiconfig/swriter/ui/insertbreak.ui:175
#, fuzzy
msgctxt "insertbreak|pagerb"
msgid "Page break"
msgstr "Brinco de ~pachina"
#. G7e9T
-#: sw/uiconfig/swriter/ui/insertbreak.ui:149
+#: sw/uiconfig/swriter/ui/insertbreak.ui:184
msgctxt "insertbreak|pagerb-atkobject"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
msgstr ""
#. qAj3x
-#: sw/uiconfig/swriter/ui/insertbreak.ui:164
+#: sw/uiconfig/swriter/ui/insertbreak.ui:199
msgctxt "insertbreak|styleft"
msgid "Page Style:"
msgstr ""
#. BWnND
-#: sw/uiconfig/swriter/ui/insertbreak.ui:181
+#: sw/uiconfig/swriter/ui/insertbreak.ui:216
msgctxt "insertbreak|liststore1"
msgid "[None]"
msgstr ""
#. 8WDUc
-#: sw/uiconfig/swriter/ui/insertbreak.ui:185
+#: sw/uiconfig/swriter/ui/insertbreak.ui:220
msgctxt "insertbreak|stylelb-atkobject"
msgid "Select the page style for the page that follows the manual page break."
msgstr ""
#. LbNq3
-#: sw/uiconfig/swriter/ui/insertbreak.ui:197
+#: sw/uiconfig/swriter/ui/insertbreak.ui:232
msgctxt "insertbreak|pagenumcb"
msgid "Change page number"
msgstr ""
#. cfsdj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:206
+#: sw/uiconfig/swriter/ui/insertbreak.ui:241
msgctxt "insertbreak|pagenumcb-atkobject"
msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break."
msgstr ""
#. iWGZG
-#: sw/uiconfig/swriter/ui/insertbreak.ui:229
+#: sw/uiconfig/swriter/ui/insertbreak.ui:264
msgctxt "insertbreak|pagenumsb-atkobject"
msgid "Enter the new page number for the page that follows the manual page break."
msgstr ""
#. uAMAX
-#: sw/uiconfig/swriter/ui/insertbreak.ui:245
+#: sw/uiconfig/swriter/ui/insertbreak.ui:280
msgctxt "insertbreak|label1"
msgid "Type"
msgstr "Tipo"
#. fYmmW
-#: sw/uiconfig/swriter/ui/insertbreak.ui:269
+#: sw/uiconfig/swriter/ui/insertbreak.ui:304
msgctxt "insertbreak|extended_tip|BreakDialog"
msgid "Inserts a manual line break, column break or a page break at the current cursor position."
msgstr ""
@@ -17413,10 +17449,9 @@ msgstr ""
#. rJDNR
#: sw/uiconfig/swriter/ui/insertcaption.ui:335
-#, fuzzy
msgctxt "insertcaption|label2"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. Pg34D
#: sw/uiconfig/swriter/ui/insertcaption.ui:382
@@ -20436,206 +20471,218 @@ msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
-#. dajzZ
+#. iH6Pr
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
+msgctxt "navigatorcontextmenu|STR_COPY_ENTRY"
+msgid "_Copy"
+msgstr ""
+
+#. dajzZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. axFMf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Move Chapter Up"
msgstr ""
#. Radwp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Move Chapter Down"
msgstr ""
#. FJZdw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Outline Level"
msgstr ""
#. GRZmf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:162
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:170
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:178
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:192
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
-msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
-msgid "Outline Level"
-msgstr ""
-
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:212
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:242
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:250
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:258
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:266
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:274
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:282
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:290
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:298
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:306
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:314
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:322
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
+#. vBGAw
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:330
+msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
+msgid "Sort Alphabetically"
+msgstr ""
+
+#. cECoG
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:344
+msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
+msgid "Outline Level"
+msgstr ""
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:358
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:372
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:392
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr ""
@@ -24309,19 +24356,19 @@ msgid "Default"
msgstr "Por defecto"
#. 8fEFG
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:469
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:466
msgctxt "outlinepositionpage|extended_tip|standard"
msgid "Resets the indent and the spacing values to the default values."
msgstr ""
#. bLuru
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:490
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:487
msgctxt "outlinepositionpage|label10"
msgid "Position and Spacing"
msgstr ""
#. ogECa
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:534
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:531
msgctxt "outlinepositionpage|label17"
msgid "Preview"
msgstr ""
@@ -26382,10 +26429,9 @@ msgstr ""
#. hoFVv
#: sw/uiconfig/swriter/ui/sectionpage.ui:572
-#, fuzzy
msgctxt "sectionpage|label5"
msgid "Properties"
-msgstr "Propiedatz..."
+msgstr "Propiedatz"
#. BLED9
#: sw/uiconfig/swriter/ui/sectionpage.ui:592
@@ -26659,7 +26705,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:136
msgctxt "selecttabledialog|column1"
msgid "Name"
-msgstr ""
+msgstr "Nombre"
#. GPMBL
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:149
@@ -26838,294 +26884,294 @@ msgid "Order"
msgstr ""
#. NioK5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:170
+#: sw/uiconfig/swriter/ui/sortdialog.ui:178
#, fuzzy
msgctxt "sortdialog|up1"
msgid "Ascending"
msgstr "~Ascendent"
#. ASaRk
-#: sw/uiconfig/swriter/ui/sortdialog.ui:182
+#: sw/uiconfig/swriter/ui/sortdialog.ui:191
msgctxt "sortdialog|extended_tip|up1"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr ""
#. yVqST
-#: sw/uiconfig/swriter/ui/sortdialog.ui:193
+#: sw/uiconfig/swriter/ui/sortdialog.ui:202
#, fuzzy
msgctxt "sortdialog|down1"
msgid "Descending"
msgstr "~Descendent"
#. YS8zz
-#: sw/uiconfig/swriter/ui/sortdialog.ui:205
+#: sw/uiconfig/swriter/ui/sortdialog.ui:215
msgctxt "sortdialog|extended_tip|down1"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr ""
#. P9D2w
-#: sw/uiconfig/swriter/ui/sortdialog.ui:228
+#: sw/uiconfig/swriter/ui/sortdialog.ui:238
#, fuzzy
msgctxt "sortdialog|up2"
msgid "Ascending"
msgstr "~Ascendent"
#. TMLam
-#: sw/uiconfig/swriter/ui/sortdialog.ui:240
+#: sw/uiconfig/swriter/ui/sortdialog.ui:251
msgctxt "sortdialog|extended_tip|up2"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr ""
#. haL8p
-#: sw/uiconfig/swriter/ui/sortdialog.ui:251
+#: sw/uiconfig/swriter/ui/sortdialog.ui:262
#, fuzzy
msgctxt "sortdialog|down2"
msgid "Descending"
msgstr "~Descendent"
#. HMoq2
-#: sw/uiconfig/swriter/ui/sortdialog.ui:263
+#: sw/uiconfig/swriter/ui/sortdialog.ui:275
msgctxt "sortdialog|extended_tip|down2"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr ""
#. PHxUv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:286
+#: sw/uiconfig/swriter/ui/sortdialog.ui:298
#, fuzzy
msgctxt "sortdialog|up3"
msgid "Ascending"
msgstr "~Ascendent"
#. jL5gX
-#: sw/uiconfig/swriter/ui/sortdialog.ui:298
+#: sw/uiconfig/swriter/ui/sortdialog.ui:311
msgctxt "sortdialog|extended_tip|up3"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr ""
#. zsggE
-#: sw/uiconfig/swriter/ui/sortdialog.ui:309
+#: sw/uiconfig/swriter/ui/sortdialog.ui:322
#, fuzzy
msgctxt "sortdialog|down3"
msgid "Descending"
msgstr "~Descendent"
#. 8LdjH
-#: sw/uiconfig/swriter/ui/sortdialog.ui:321
+#: sw/uiconfig/swriter/ui/sortdialog.ui:335
msgctxt "sortdialog|extended_tip|down3"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr ""
#. 3yLB6
-#: sw/uiconfig/swriter/ui/sortdialog.ui:338
+#: sw/uiconfig/swriter/ui/sortdialog.ui:352
msgctxt "sortdialog|key1"
msgid "Key 1"
msgstr ""
#. GXMCr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:348
+#: sw/uiconfig/swriter/ui/sortdialog.ui:368
msgctxt "sortdialog|extended_tip|key1"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. XDgAf
-#: sw/uiconfig/swriter/ui/sortdialog.ui:359
+#: sw/uiconfig/swriter/ui/sortdialog.ui:379
msgctxt "sortdialog|key2"
msgid "Key 2"
msgstr ""
#. CgEiB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:368
+#: sw/uiconfig/swriter/ui/sortdialog.ui:394
msgctxt "sortdialog|extended_tip|key2"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. 8yfoN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:379
+#: sw/uiconfig/swriter/ui/sortdialog.ui:405
msgctxt "sortdialog|key3"
msgid "Key 3"
msgstr ""
#. yS2ky
-#: sw/uiconfig/swriter/ui/sortdialog.ui:388
+#: sw/uiconfig/swriter/ui/sortdialog.ui:420
msgctxt "sortdialog|extended_tip|key3"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. pFZY3
-#: sw/uiconfig/swriter/ui/sortdialog.ui:411
+#: sw/uiconfig/swriter/ui/sortdialog.ui:443
msgctxt "sortdialog|extended_tip|colsb1"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr ""
#. n2S79
-#: sw/uiconfig/swriter/ui/sortdialog.ui:434
+#: sw/uiconfig/swriter/ui/sortdialog.ui:466
msgctxt "sortdialog|extended_tip|colsb2"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr ""
#. ckwsF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:457
+#: sw/uiconfig/swriter/ui/sortdialog.ui:489
msgctxt "sortdialog|extended_tip|colsb3"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr ""
#. 5bX9W
-#: sw/uiconfig/swriter/ui/sortdialog.ui:478
+#: sw/uiconfig/swriter/ui/sortdialog.ui:510
msgctxt "sortdialog|typelb1-atkobject"
msgid "Key type"
msgstr ""
#. rAGDj
-#: sw/uiconfig/swriter/ui/sortdialog.ui:479
+#: sw/uiconfig/swriter/ui/sortdialog.ui:511
msgctxt "sortdialog|extended_tip|typelb1"
msgid "Select the sorting option that you want to use."
msgstr ""
#. FxBUC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:501
+#: sw/uiconfig/swriter/ui/sortdialog.ui:533
msgctxt "sortdialog|typelb2-atkobject"
msgid "Key type"
msgstr ""
#. efrcu
-#: sw/uiconfig/swriter/ui/sortdialog.ui:502
+#: sw/uiconfig/swriter/ui/sortdialog.ui:534
msgctxt "sortdialog|extended_tip|typelb2"
msgid "Select the sorting option that you want to use."
msgstr ""
#. 9D3Mg
-#: sw/uiconfig/swriter/ui/sortdialog.ui:523
+#: sw/uiconfig/swriter/ui/sortdialog.ui:555
msgctxt "sortdialog|typelb3-atkobject"
msgid "Key type"
msgstr ""
#. RjtNn
-#: sw/uiconfig/swriter/ui/sortdialog.ui:524
+#: sw/uiconfig/swriter/ui/sortdialog.ui:556
msgctxt "sortdialog|extended_tip|typelb3"
msgid "Select the sorting option that you want to use."
msgstr ""
#. m3EJC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:542
+#: sw/uiconfig/swriter/ui/sortdialog.ui:574
msgctxt "sortdialog|1"
msgid "Sort Criteria"
msgstr ""
#. dY8Rr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:580
+#: sw/uiconfig/swriter/ui/sortdialog.ui:612
#, fuzzy
msgctxt "sortdialog|columns"
msgid "Columns"
msgstr "Columna"
#. PviSN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:589
+#: sw/uiconfig/swriter/ui/sortdialog.ui:621
msgctxt "sortdialog|extended_tip|columns"
msgid "Sorts the columns in the table according to the current sort options."
msgstr ""
#. d7odM
-#: sw/uiconfig/swriter/ui/sortdialog.ui:600
+#: sw/uiconfig/swriter/ui/sortdialog.ui:632
#, fuzzy
msgctxt "sortdialog|rows"
msgid "Rows"
msgstr "Ringlera"
#. vsSra
-#: sw/uiconfig/swriter/ui/sortdialog.ui:609
+#: sw/uiconfig/swriter/ui/sortdialog.ui:641
msgctxt "sortdialog|extended_tip|rows"
msgid "Sorts the rows in the table or the paragraphs in the selection according to the current sort options."
msgstr ""
#. C4Fuq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:624
+#: sw/uiconfig/swriter/ui/sortdialog.ui:656
msgctxt "sortdialog|label3"
msgid "Direction"
msgstr ""
#. JGBYA
-#: sw/uiconfig/swriter/ui/sortdialog.ui:654
+#: sw/uiconfig/swriter/ui/sortdialog.ui:686
msgctxt "sortdialog|tabs"
msgid "Tabs"
msgstr ""
#. dE3Av
-#: sw/uiconfig/swriter/ui/sortdialog.ui:663
+#: sw/uiconfig/swriter/ui/sortdialog.ui:695
msgctxt "sortdialog|extended_tip|tabs"
msgid "If the selected paragraphs correspond to a list separated by tabs, select this option."
msgstr ""
#. 7GWNt
-#: sw/uiconfig/swriter/ui/sortdialog.ui:675
+#: sw/uiconfig/swriter/ui/sortdialog.ui:707
#, fuzzy
msgctxt "sortdialog|character"
msgid "Character "
msgstr "Importar"
#. 9yFT9
-#: sw/uiconfig/swriter/ui/sortdialog.ui:688
+#: sw/uiconfig/swriter/ui/sortdialog.ui:722
msgctxt "sortdialog|extended_tip|character"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr ""
#. ECCA5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:718
+#: sw/uiconfig/swriter/ui/sortdialog.ui:753
msgctxt "sortdialog|extended_tip|separator"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr ""
#. XC5zv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:729
+#: sw/uiconfig/swriter/ui/sortdialog.ui:764
msgctxt "sortdialog|delimpb"
msgid "Select..."
msgstr ""
#. VhhBB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:739
+#: sw/uiconfig/swriter/ui/sortdialog.ui:774
msgctxt "sortdialog|extended_tip|delimpb"
msgid "Opens the Special Characters dialog, where you can select the character that you want to use as a separator."
msgstr ""
#. BX6Mq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:760
+#: sw/uiconfig/swriter/ui/sortdialog.ui:795
#, fuzzy
msgctxt "sortdialog|label4"
msgid "Separator"
msgstr "Separadors"
#. bBbUV
-#: sw/uiconfig/swriter/ui/sortdialog.ui:808
+#: sw/uiconfig/swriter/ui/sortdialog.ui:843
msgctxt "sortdialog|extended_tip|langlb"
msgid "Select the language that defines the sorting rules."
msgstr ""
#. gEcoc
-#: sw/uiconfig/swriter/ui/sortdialog.ui:817
+#: sw/uiconfig/swriter/ui/sortdialog.ui:852
msgctxt "sortdialog|label1"
msgid "Language"
msgstr "Luenga"
#. QnviQ
-#: sw/uiconfig/swriter/ui/sortdialog.ui:837
+#: sw/uiconfig/swriter/ui/sortdialog.ui:872
msgctxt "sortdialog|matchcase"
msgid "Match case"
msgstr ""
#. Nd8XG
-#: sw/uiconfig/swriter/ui/sortdialog.ui:847
+#: sw/uiconfig/swriter/ui/sortdialog.ui:882
msgctxt "sortdialog|extended_tip|matchcase"
msgid "Distinguishes between uppercase and lowercase letters when you sort a table. For Asian languages special handling applies."
msgstr ""
#. Adw2Y
-#: sw/uiconfig/swriter/ui/sortdialog.ui:856
+#: sw/uiconfig/swriter/ui/sortdialog.ui:891
#, fuzzy
msgctxt "sortdialog|label2"
msgid "Setting"
msgstr "Configuración"
#. pCcXF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:894
+#: sw/uiconfig/swriter/ui/sortdialog.ui:926
msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Sorts the selected paragraphs or table rows alphabetically or numerically."
msgstr ""
@@ -27561,246 +27607,246 @@ msgid "_Break"
msgstr ""
#. LEfit
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:59
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:65
msgctxt "tabletextflowpage|extended_tip|break"
msgid "Select this check box, and then select the type of break that you want to associate with the table."
msgstr ""
#. 85dHS
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:70
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:76
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Pachina"
#. LUPNA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:82
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:88
msgctxt "tabletextflowpage|extended_tip|page"
msgid "Inserts a page break before or after the table."
msgstr ""
#. ATESc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:93
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:99
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Columna"
#. bU9Sj
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:105
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:111
msgctxt "tabletextflowpage|extended_tip|column"
msgid "Inserts a column break before or after the table on a multi-column page."
msgstr ""
#. bFvFr
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:116
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:122
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr ""
#. wCFtD
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:128
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:134
msgctxt "tabletextflowpage|extended_tip|before"
msgid "Inserts a page or column break before the table."
msgstr ""
#. x9LiQ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:139
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:145
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr ""
#. y4ECA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:157
msgctxt "tabletextflowpage|extended_tip|after"
msgid "Inserts a page or column break after the table."
msgstr ""
#. ZKgd9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:183
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr ""
#. NMMdy
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:189
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:195
msgctxt "tabletextflowpage|extended_tip|pagestyle"
msgid "Applies the page style that you specify to the first page that follows the page break."
msgstr ""
#. 4ifHW
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:200
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:206
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr ""
#. b8xXZ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|extended_tip|pagenonf"
msgid "Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked."
msgstr ""
#. 5oC83
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:242
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:248
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr ""
#. NENyo
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:243
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:249
msgctxt "tabletextflowpage|extended_tip|pagestylelb"
msgid "Select the page style that you want to apply to the first page that follows the break."
msgstr ""
#. CZpDc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:260
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:266
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
#. QXXZK
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:268
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
msgctxt "tabletextflowpage|extended_tip|split"
msgid "Allows a page break or column break between the rows of a table."
msgstr ""
#. SKeze
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:279
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:285
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr ""
#. HYN9t
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:295
msgctxt "tabletextflowpage|extended_tip|splitrow"
msgid "Allows a page break or column break inside a row of the table."
msgstr ""
#. jGCyC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr ""
#. iFwuV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:308
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:314
msgctxt "tabletextflowpage|extended_tip|keep"
msgid "Keeps the table and the following paragraph together when you insert the break."
msgstr ""
#. QAY45
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:327
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:333
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
#. JsEEP
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:341
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:347
#, fuzzy
msgctxt "tabletextflowpage|liststore1"
msgid "Horizontal"
msgstr "~Horizontal"
#. RgbAV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:342
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
msgstr ""
#. 7yaYB
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:349
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
msgstr ""
#. 5CGH9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:344
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:350
msgctxt "tabletextflowpage|liststore1"
msgid "Use superordinate object settings"
msgstr ""
#. FJnts
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:354
msgctxt "tabletextflowpage|extended_tip|textorientation"
msgid "Select the orientation for the text in the cells."
msgstr ""
#. tWodL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:371
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:377
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr ""
#. EpMSY
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:379
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:385
msgctxt "tabletextflowpage|extended_tip|headline"
msgid "Repeats the table heading on a new page when the table spans more than one page."
msgstr ""
#. 7R7Gn
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:398
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:404
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
#. KEVNR
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:411
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:417
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "Ringlera"
#. hLzfu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:427
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:433
msgctxt "tabletextflowpage|extended_tip|repeatheadernf"
msgid "Enter the number of rows to include in the heading."
msgstr ""
#. yLhbA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:454
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
#. FRUDs
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:484
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:490
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
#. YLPEL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:498
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
msgctxt "tabletextflowpage|liststore2"
msgid "Top"
msgstr "Cobalto"
#. 5Pb5v
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:499
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:505
#, fuzzy
msgctxt "tabletextflowpage|liststore2"
msgid "Centered"
msgstr "~Centrau"
#. 4aZFz
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:500
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:506
msgctxt "tabletextflowpage|liststore2"
msgid "Bottom"
msgstr "Cobaixo"
#. SwHrE
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:510
msgctxt "tabletextflowpage|extended_tip|vertorient"
msgid "Specify the vertical text alignment for the cells in the table."
msgstr ""
#. ZtGTC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:519
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:525
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Aliniación"
#. GJKSu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:533
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:539
msgctxt "tabletextflowpage|extended_tip|TableTextFlowPage"
msgid "Set the text flow options for the text before and after the table."
msgstr ""
diff --git a/source/an/uui/messages.po b/source/an/uui/messages.po
index 47ec6ed974b..fd0811ac7cd 100644
--- a/source/an/uui/messages.po
+++ b/source/an/uui/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-11-19 15:45+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
"PO-Revision-Date: 2022-01-17 16:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/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: 1522251290.000000\n"
#. DLY8p
@@ -40,11 +40,11 @@ msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr ""
-#. KgnBz
+#. KneVX
#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
-"You are about to save/export a password protected basic library containing module(s) \n"
+"You are about to save/export a password protected BASIC library containing module(s) \n"
"$(ARG1)\n"
"which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?"
msgstr ""
diff --git a/source/an/vcl/messages.po b/source/an/vcl/messages.po
index 9a76b8f5b5c..6046c80fef2 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: 2022-02-09 16:47+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
"PO-Revision-Date: 2022-01-17 16:38+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"
@@ -851,352 +851,222 @@ msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr ""
-#. FD7Bf
-#: vcl/inc/strings.hrc:70
-msgctxt "STR_FPICKER_AUTO_EXTENSION"
-msgid "~Automatic file name extension"
-msgstr ""
-
-#. 9ECLu
-#: vcl/inc/strings.hrc:71
-msgctxt "STR_FPICKER_PASSWORD"
-msgid "Save with pass~word"
-msgstr ""
-
-#. nyers
-#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:73
-msgctxt "STR_FPICKER_GPGENCRYPT"
-msgid "Encrypt with ~GPG key"
-msgstr ""
-
-#. Z2MmL
-#: vcl/inc/strings.hrc:74
-msgctxt "STR_FPICKER_FILTER_OPTIONS"
-msgid "~Edit filter settings"
-msgstr ""
-
-#. ZDE7y
-#: vcl/inc/strings.hrc:75
-msgctxt "STR_FPICKER_READONLY"
-msgid "~Read-only"
-msgstr ""
-
-#. EYvCH
-#: vcl/inc/strings.hrc:76
-#, fuzzy
-msgctxt "STR_FPICKER_INSERT_AS_LINK"
-msgid "Insert as ~Link"
-msgstr "Ficar como enlaz"
-
-#. zpPD6
-#: vcl/inc/strings.hrc:77
-msgctxt "STR_FPICKER_SHOW_PREVIEW"
-msgid "Pr~eview"
-msgstr ""
-
-#. L7QTs
-#: vcl/inc/strings.hrc:78
-#, fuzzy
-msgctxt "STR_FPICKER_PLAY"
-msgid "~Play"
-msgstr "Reproducir"
-
-#. rPLAU
-#: vcl/inc/strings.hrc:79
-msgctxt "STR_FPICKER_VERSION"
-msgid "~Version:"
-msgstr ""
-
-#. dMPHM
-#: vcl/inc/strings.hrc:80
-msgctxt "STR_FPICKER_TEMPLATES"
-msgid "S~tyles:"
-msgstr ""
-
-#. TeuRr
-#: vcl/inc/strings.hrc:81
-msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
-msgid "Frame Style: "
-msgstr ""
-
-#. Cq63y
-#: vcl/inc/strings.hrc:82
-msgctxt "STR_FPICKER_IMAGE_ANCHOR"
-msgid "A~nchor: "
-msgstr ""
-
-#. 7yacA
-#: vcl/inc/strings.hrc:83
-#, fuzzy
-msgctxt "STR_FPICKER_SELECTION"
-msgid "~Selection"
-msgstr "Selección"
-
-#. QFCuE
-#: vcl/inc/strings.hrc:84
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
-msgid "Select Path"
-msgstr ""
-
-#. AoCzG
-#: vcl/inc/strings.hrc:85
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
-msgid "Please select a folder."
-msgstr ""
-
-#. vcC7G
-#: vcl/inc/strings.hrc:86
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
-msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
-msgstr ""
-
-#. MKKjJ
-#: vcl/inc/strings.hrc:87
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
-msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
-msgstr ""
-
-#. pF5CC
-#: vcl/inc/strings.hrc:88
-msgctxt "STR_FPICKER_ALLFORMATS"
-msgid "All Formats"
-msgstr ""
-
-#. xJLGT
-#: vcl/inc/strings.hrc:89
-msgctxt "STR_FPICKER_OPEN"
-msgid "Open"
-msgstr "Ubrir"
-
-#. W5xGp
-#: vcl/inc/strings.hrc:90
-msgctxt "STR_FPICKER_SAVE"
-msgid "Save"
-msgstr ""
-
-#. QxrYy
-#: vcl/inc/strings.hrc:91
-msgctxt "STR_FPICKER_TYPE"
-msgid "File ~type"
-msgstr ""
-
#. qfg3C
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:70
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr ""
#. rWAuM
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:72
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr ""
#. SFF7G
-#: vcl/inc/strings.hrc:96
+#: vcl/inc/strings.hrc:73
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr ""
#. xMtCc
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:74
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr ""
#. GBDRJ
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:75
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr ""
#. 8BSG2
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:76
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr ""
#. GtHUE
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:77
#, fuzzy
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "Personalizau 1"
#. yPJTL
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:79
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr ""
#. Dk4vc
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:81
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr ""
#. 5DyEd
-#: vcl/inc/strings.hrc:105
+#: vcl/inc/strings.hrc:82
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr ""
#. Yqrwo
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:83
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr ""
#. HnDDn
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:84
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr ""
#. f5k6D
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:85
msgctxt "SV_APP_SKIA_METAL"
msgid "Skia/Metal"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:86
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:87
#, fuzzy
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "Por defecto"
#. 4gWk5
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:89
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "Información"
#. 5gAyW
-#: vcl/inc/strings.hrc:113
+#: vcl/inc/strings.hrc:90
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "~Alvertencia"
#. buqyG
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:91
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr ""
#. 3CTTS
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:92
#, fuzzy
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "Información"
#. drUB5
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:94
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr ""
#. cxFKH
-#: vcl/inc/strings.hrc:118
+#: vcl/inc/strings.hrc:95
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr ""
#. 7KPRL
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:96
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr ""
#. R2cyr
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:97
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr ""
#. 66FYV
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:98
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr ""
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:124
+#: vcl/inc/strings.hrc:101
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
#. 5RjLF
-#: vcl/inc/strings.hrc:125
+#: vcl/inc/strings.hrc:102
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. TcNJT
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:104
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr ""
#. DhSTi
-#: vcl/inc/strings.hrc:128
+#: vcl/inc/strings.hrc:105
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr ""
#. 5Eyy3
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:106
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hue"
#. rSVhV
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:108
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
#. wEp9A
-#: vcl/inc/strings.hrc:132
+#: vcl/inc/strings.hrc:109
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
#. ygXBw
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:110
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
#. 5MSDe
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:111
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
#. urFMt
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:113
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. eCq2K
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:115
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
msgid "Default file formats not registered"
msgstr ""
#. TDctx
-#: vcl/inc/strings.hrc:139
+#: vcl/inc/strings.hrc:116
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
msgid ""
"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
@@ -1205,7 +1075,7 @@ msgid ""
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:141
+#: vcl/inc/strings.hrc:118
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
@@ -1213,31 +1083,31 @@ msgid ""
msgstr ""
#. 4jvA7
-#: vcl/inc/strings.hrc:143
+#: vcl/inc/strings.hrc:120
msgctxt "STR_GBU"
msgid "Graphics Backend used: %1"
msgstr ""
#. FBgmu
-#: vcl/inc/strings.hrc:144
+#: vcl/inc/strings.hrc:121
msgctxt "STR_PASSED"
msgid "Passed Tests: %1"
msgstr ""
#. 3nqZp
-#: vcl/inc/strings.hrc:145
+#: vcl/inc/strings.hrc:122
msgctxt "STR_QUIRKY"
msgid "Quirky Tests: %1"
msgstr ""
#. KhjFD
-#: vcl/inc/strings.hrc:146
+#: vcl/inc/strings.hrc:123
msgctxt "STR_FAILED"
msgid "Failed Tests: %1"
msgstr ""
#. uKGQi
-#: vcl/inc/strings.hrc:147
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SKIPPED"
msgid "Skipped Tests: %1"
msgstr ""
diff --git a/source/an/wizards/messages.po b/source/an/wizards/messages.po
index 0f2c13a6df6..b22a7551594 100644
--- a/source/an/wizards/messages.po
+++ b/source/an/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2022-01-17 16:38+0000\n"
+"PO-Revision-Date: 2022-03-02 17:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/an/>\n"
"Language: an\n"
@@ -1276,10 +1276,9 @@ msgstr ""
#. bCFEm
#: wizards/com/sun/star/wizards/common/strings.hrc:259
-#, fuzzy
msgctxt "RID_AGENDAWIZARDDIALOG_START_38"
msgid "Date:"
-msgstr "Calendata"
+msgstr "Calendata:"
#. ZzHUC
#: wizards/com/sun/star/wizards/common/strings.hrc:260
@@ -1476,10 +1475,9 @@ msgstr ""
#. wEi4D
#: wizards/com/sun/star/wizards/common/strings.hrc:292
-#, fuzzy
msgctxt "RID_AGENDAWIZARDDIALOG_START_72"
msgid "Date:"
-msgstr "Calendata"
+msgstr "Calendata:"
#. M5kGV
#: wizards/com/sun/star/wizards/common/strings.hrc:293
diff --git a/source/an/wizards/source/resources.po b/source/an/wizards/source/resources.po
index 4123ad3d250..106cc2fe0dc 100644
--- a/source/an/wizards/source/resources.po
+++ b/source/an/wizards/source/resources.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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2020-02-19 23:15+0000\n"
+"PO-Revision-Date: 2022-03-02 17:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/an/>\n"
+"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1516047263.000000\n"
#. 8UKfi
@@ -843,13 +843,12 @@ msgstr "Autor"
#. uESaE
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"RID_REPORT_88\n"
"property.text"
msgid "Date:"
-msgstr "Calendata"
+msgstr "Calendata:"
#. GzkD4
#: resources_en_US.properties
diff --git a/source/an/writerperfect/messages.po b/source/an/writerperfect/messages.po
index 44dd23ad124..acf4a2cdd7f 100644
--- a/source/an/writerperfect/messages.po
+++ b/source/an/writerperfect/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-23 11:46+0100\n"
-"PO-Revision-Date: 2022-01-17 16:39+0000\n"
+"PO-Revision-Date: 2022-03-02 17:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/an/>\n"
"Language: an\n"
@@ -145,13 +145,13 @@ msgstr ""
#: writerperfect/uiconfig/ui/exportepub.ui:129
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
-msgstr ""
+msgstr "EPUB 3.0"
#. EyGCH
#: writerperfect/uiconfig/ui/exportepub.ui:130
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
-msgstr ""
+msgstr "EPUB 2.0"
#. yVSHE
#: writerperfect/uiconfig/ui/exportepub.ui:146
@@ -217,7 +217,7 @@ msgstr ""
#: writerperfect/uiconfig/ui/exportepub.ui:286
msgctxt "exportepub|dateft"
msgid "Date:"
-msgstr ""
+msgstr "Calendata:"
#. B5NKD
#: writerperfect/uiconfig/ui/exportepub.ui:300
diff --git a/source/ar/avmedia/messages.po b/source/ar/avmedia/messages.po
index 851d1236879..36958c30c31 100644
--- a/source/ar/avmedia/messages.po
+++ b/source/ar/avmedia/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-02-18 12:16+0100\n"
-"PO-Revision-Date: 2022-02-05 19:38+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/avmediamessages/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: 1518295211.000000\n"
#. m6G23
@@ -104,7 +104,7 @@ msgstr "نسق الملفّ المحدّد غير مدعوم."
#: avmedia/inc/strings.hrc:38
msgctxt "AVMEDIA_STR_ZOOM_TOOLTIP"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. wH3TZ
msgctxt "stock"
diff --git a/source/ar/basctl/messages.po b/source/ar/basctl/messages.po
index de10aadc294..c96d37a9e4b 100644
--- a/source/ar/basctl/messages.po
+++ b/source/ar/basctl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:18+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"PO-Revision-Date: 2022-02-28 13:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/basctlmessages/ar/>\n"
"Language: ar\n"
@@ -256,7 +256,7 @@ msgstr "مكدّس الاستدعاءات"
#: basctl/inc/strings.hrc:65
msgctxt "RID_STR_STDDIALOGNAME"
msgid "Dialog"
-msgstr "حواريّ"
+msgstr "حوار"
#. hUHfi
#: basctl/inc/strings.hrc:66
@@ -274,7 +274,7 @@ msgstr "وحدة جديدة"
#: basctl/inc/strings.hrc:68
msgctxt "RID_STR_NEWDLG"
msgid "New Dialog"
-msgstr "حواريّ جديد"
+msgstr "حوار جديد"
#. jYa97
#: basctl/inc/strings.hrc:69
@@ -286,7 +286,7 @@ msgstr "الكلّ"
#: basctl/inc/strings.hrc:70
msgctxt "RID_STR_PAGE"
msgid "Page"
-msgstr "الصّفحة"
+msgstr "الصفحة"
#. DHuFN
#: basctl/inc/strings.hrc:71
@@ -326,37 +326,37 @@ msgstr "ماكروهاتي"
#: basctl/inc/strings.hrc:76
msgctxt "RID_STR_USERDIALOGS"
msgid "My Dialogs"
-msgstr "حواريّاتي"
+msgstr "حواراتي"
#. Mwj7u
#: basctl/inc/strings.hrc:77
msgctxt "RID_STR_USERMACROSDIALOGS"
msgid "My Macros & Dialogs"
-msgstr "ماكروهاتي وحواريّاتي"
+msgstr "ماكروهاتي وحواراتي"
#. ej2KL
#: basctl/inc/strings.hrc:78
msgctxt "RID_STR_SHAREMACROS"
msgid "Application Macros"
-msgstr ""
+msgstr "ماكروهات التطبيق"
#. YcXKS
#: basctl/inc/strings.hrc:79
msgctxt "RID_STR_SHAREDIALOGS"
msgid "Application Dialogs"
-msgstr ""
+msgstr "حوارات التطبيق"
#. GFbe5
#: basctl/inc/strings.hrc:80
msgctxt "RID_STR_SHAREMACROSDIALOGS"
msgid "Application Macros & Dialogs"
-msgstr ""
+msgstr "ماكروهات وحوارات التطبيق"
#. BAMA5
#: basctl/inc/strings.hrc:81
msgctxt "RID_STR_REMOVEWATCHTIP"
msgid "Remove Watch"
-msgstr "أزِل المراقب"
+msgstr "أزِل المراقبة"
#. oUqF6
#: basctl/inc/strings.hrc:82
@@ -416,7 +416,7 @@ msgstr "استبدل"
#: basctl/inc/strings.hrc:91
msgctxt "RID_STR_DLGIMP_CLASH_TITLE"
msgid "Dialog Import - Name already used"
-msgstr "استورد حواريًّا - الاسم مستخدم بالفعل"
+msgstr "حوار الاستيراد - الاسم مستخدم بالفعل"
#. yG2bx
#: basctl/inc/strings.hrc:92
@@ -429,18 +429,18 @@ msgid ""
"Rename dialog to keep current dialog or replace existing dialog.\n"
" "
msgstr ""
-"تحوي المكتبة بالفعل حواريًّا بالاسم:\n"
+"تحوي المكتبة بالفعل حواراً بالاسم:\n"
"\n"
"$(ARG1)\n"
"\n"
-"غيّر اسم الحواريّ لإبقاء الحواريّ الحاليّ أو استبدل الحواريّ الحاليّ.\n"
+"غيّر اسم الحوار لإبقاء الحوار الحالي أو استبدل الحوار الحالي.\n"
" "
#. FRQSJ
#: basctl/inc/strings.hrc:93
msgctxt "RID_STR_DLGIMP_MISMATCH_ADD"
msgid "Add"
-msgstr "أضف"
+msgstr "أضِف"
#. inETw
#: basctl/inc/strings.hrc:94
@@ -452,7 +452,7 @@ msgstr "احذف"
#: basctl/inc/strings.hrc:95
msgctxt "RID_STR_DLGIMP_MISMATCH_TITLE"
msgid "Dialog Import - Language Mismatch"
-msgstr "استورد حواريًّا - اللغة لا تتطابق"
+msgstr "حوار الاستيراد - اللغة لا تتطابق"
#. zcJw8
#: basctl/inc/strings.hrc:96
@@ -465,11 +465,11 @@ msgid ""
"Note: For languages not supported by the dialog the resources of the dialog's default language will be used.\n"
" "
msgstr ""
-"يدعم المربع الحواريّ الّذي سيُستورَد لغات أخرى تختلف عن الّتي في المكتبة الهدف.\n"
+"يدعم الحوار الّذي سيُستورَد لغات أخرى تختلف عن التي في المكتبة الهدف.\n"
"\n"
-"أضف هذه اللغات إلى المكتبة للاحتفاظ بموارد اللغات الإضافيّة التي يوفّرها المربع الحواريّ أو احذفها لإبقاء لغات المكتبة الحاليّة.\n"
+"أضف هذه اللغات إلى المكتبة للاحتفاظ بموارد اللغات الإضافية التي يوفرها الحوار أو احذفها لإبقاء لغات المكتبة الحالية.\n"
"\n"
-"ملاحظة: بالنّسبة إلى اللغات التي لا يدعمها المربع الحواريّ، ستُستخدَم موارد اللغة المبدئيّة للمربع الحواريّ.\n"
+"ملاحظة: بالنسبة إلى اللغات التي لا يدعمها الحوار، ستُستخدَم موارد اللغة المبدئيّة للحوار.\n"
" "
#. FcvDu
@@ -800,7 +800,7 @@ msgstr "_نشطة"
#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:32
msgctxt "breakpointmenus|extended_tip|active"
msgid "Activates or deactivates the current breakpoint."
-msgstr ""
+msgstr "ينشط أو يزيل تنشيط نقطة التوقف الحالية."
#. FhiYE
#: basctl/uiconfig/basicide/ui/breakpointmenus.ui:47
@@ -908,7 +908,7 @@ msgstr "_جديد..."
#: basctl/uiconfig/basicide/ui/dialogpage.ui:182
msgctxt "dialogpage|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. k64f4
#: basctl/uiconfig/basicide/ui/dialogpage.ui:195
@@ -1046,7 +1046,7 @@ msgstr "الم_كان:"
#: basctl/uiconfig/basicide/ui/libpage.ui:61
msgctxt "libpage|extended_tip|location"
msgid "Select the application or the document containing the macro libraries that you want to organize."
-msgstr ""
+msgstr "حدد التطبيق أو المستند الذي يحوي مكتبات الماكرو التي تريد تنظيمها."
#. C4mjh
#: basctl/uiconfig/basicide/ui/libpage.ui:89
@@ -1112,43 +1112,43 @@ msgstr "_صدّر..."
#: basctl/uiconfig/basicide/ui/libpage.ui:279
msgctxt "libpage|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. dfZKj
#: basctl/uiconfig/basicide/ui/libpage.ui:305
msgctxt "libpage|extended_tip|LibPage"
msgid "Select the application or the document containing the macro libraries that you want to organize."
-msgstr ""
+msgstr "حدد التطبيق أو المستند الذي يحوي مكتبات الماكرو التي تريد تنظيمها."
#. zrJTt
#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:16
msgctxt "managebreakpoints|ManageBreakpointsDialog"
msgid "Manage Breakpoints"
-msgstr "أدر نقاط التّوقّف"
+msgstr "أدِر نقاط التوقف"
#. TvBmF
#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:40
msgctxt "managebreakpoints|extended_tip|new"
msgid "Creates a breakpoint on the line number specified."
-msgstr ""
+msgstr "يُنشئ نقطة توقف في رقم السطر المحدد."
#. CCDEi
#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:60
msgctxt "managebreakpoints|extended_tip|delete"
msgid "Deletes the selected breakpoint."
-msgstr ""
+msgstr "يحذف نقطة التوقف المحددة."
#. PcuyN
#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:143
msgctxt "managebreakpoints|active"
msgid "Active"
-msgstr "نشطة"
+msgstr "نشط"
#. fqCCT
#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:151
msgctxt "managebreakpoints|extended_tip|active"
msgid "Activates or deactivates the current breakpoint."
-msgstr ""
+msgstr "ينشط أو يزيل تنشيط نقطة التوقف الحالية."
#. MUMSv
#: basctl/uiconfig/basicide/ui/managebreakpoints.ui:216
diff --git a/source/ar/chart2/messages.po b/source/ar/chart2/messages.po
index 32942e1bcef..c93e3dcc448 100644
--- a/source/ar/chart2/messages.po
+++ b/source/ar/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:18+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/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: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1540149325.000000\n"
#. NCRDD
@@ -217,7 +217,7 @@ msgstr "حجّم"
#: chart2/inc/strings.hrc:42
msgctxt "STR_PAGE_POSITIONING"
msgid "Positioning"
-msgstr "الموضعة"
+msgstr "التموضُع"
#. omcEo
#: chart2/inc/strings.hrc:43
@@ -325,43 +325,43 @@ msgstr "الشبكات"
#: chart2/inc/strings.hrc:60
msgctxt "STR_OBJECT_GRID"
msgid "Grid"
-msgstr "شبكة"
+msgstr "الشبكة"
#. pEwe5
#: chart2/inc/strings.hrc:61
msgctxt "STR_OBJECT_GRID_MAJOR_X"
msgid "X Axis Major Grid"
-msgstr "شبكة المحور س الرّئيسيّة"
+msgstr "شبكة المحور س الرئيسية"
#. ETsPn
#: chart2/inc/strings.hrc:62
msgctxt "STR_OBJECT_GRID_MAJOR_Y"
msgid "Y Axis Major Grid"
-msgstr "شبكة المحور ص الرّئيسيّة"
+msgstr "شبكة المحور ص الرئيسية"
#. SonFW
#: chart2/inc/strings.hrc:63
msgctxt "STR_OBJECT_GRID_MAJOR_Z"
msgid "Z Axis Major Grid"
-msgstr "شبكة المحور ع الرّئيسيّة"
+msgstr "شبكة المحور ع الرئيسية"
#. sBgvb
#: chart2/inc/strings.hrc:64
msgctxt "STR_OBJECT_GRID_MINOR_X"
msgid "X Axis Minor Grid"
-msgstr "شبكة المحور س الثّانويّة"
+msgstr "شبكة المحور س الثانوية"
#. 3YcEK
#: chart2/inc/strings.hrc:65
msgctxt "STR_OBJECT_GRID_MINOR_Y"
msgid "Y Axis Minor Grid"
-msgstr "شبكة المحور ص الثّانويّة"
+msgstr "شبكة المحور ص الثانوية"
#. hkZQA
#: chart2/inc/strings.hrc:66
msgctxt "STR_OBJECT_GRID_MINOR_Z"
msgid "Z Axis Minor Grid"
-msgstr "شبكة المحور ع الثّانويّة"
+msgstr "شبكة المحور ع الثانوية"
#. HRr84
#: chart2/inc/strings.hrc:67
@@ -1319,13 +1319,13 @@ msgstr "اظهار النسبة المئوية لنقاط البيانات في
#: chart2/uiconfig/ui/dlg_DataLabel.ui:145
msgctxt "dlg_DataLabel|CB_CATEGORY"
msgid "_Category"
-msgstr ""
+msgstr "الصن_ف"
#. oJGQF
#: chart2/uiconfig/ui/dlg_DataLabel.ui:153
msgctxt "dlg_DataLabel|extended_tip|CB_CATEGORY"
msgid "Shows the data point text labels."
-msgstr "اظهار صيغ نصية لنقاط البيانات"
+msgstr "يُظهِر لصائق النص لنقاط البيانات."
#. u5FBJ
#: chart2/uiconfig/ui/dlg_DataLabel.ui:164
@@ -1697,7 +1697,7 @@ msgstr "انقر على مجال الخلية ثم حدد مجال خلية ال
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:266
msgctxt "dlg_InsertErrorBars|label1"
msgid "Error Category"
-msgstr "فئة الخطأ"
+msgstr "صنف الخطأ"
#. oZaa3
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:296
@@ -1817,7 +1817,7 @@ msgstr "قم بالتفعيل لتستخدم قيم الخطأ الموجبة ك
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:622
msgctxt "dlg_InsertErrorBars|label3"
msgid "Parameters"
-msgstr "المعاملات"
+msgstr "المتغيرات الوسيطة"
#. MXxxE
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:639
@@ -2183,7 +2183,7 @@ msgstr "الفقرة"
#: chart2/uiconfig/ui/paradialog.ui:135
msgctxt "paradialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
-msgstr "الإزاحة والتّباعد"
+msgstr "الإزاحات والتباعد"
#. PRo68
#: chart2/uiconfig/ui/paradialog.ui:182
@@ -2435,7 +2435,7 @@ msgstr "العنوان الفرعي"
#: chart2/uiconfig/ui/sidebarerrorbar.ui:60
msgctxt "sidebarerrorbar|label2"
msgid "Category:"
-msgstr "الفئة:"
+msgstr "الصنف:"
#. 8Pb84
#: chart2/uiconfig/ui/sidebarerrorbar.ui:74
@@ -2699,7 +2699,7 @@ msgstr "متدرج"
#: chart2/uiconfig/ui/sidebartype.ui:290
msgctxt "sidebartype|properties"
msgid "Properties..."
-msgstr "خصائص..."
+msgstr "الخصائص..."
#. xW9CQ
#: chart2/uiconfig/ui/sidebartype.ui:308
@@ -3139,7 +3139,7 @@ msgstr "استخدم علبة الحوار لتحديد لون."
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:306
msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE"
msgid "_Light Source"
-msgstr ""
+msgstr "مصدر ال_ضوء"
#. WssJA
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:348
@@ -3163,13 +3163,13 @@ msgstr "استخدم علبة الحوار لتحديد لون."
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:383
msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT"
msgid "_Ambient Light"
-msgstr ""
+msgstr "الضوء المحي_ط"
#. snUGf
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:427
msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
msgid "Light Preview"
-msgstr "المشاهدة المسبقة للضوء"
+msgstr "معاينة الضوء"
#. tQBhd
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:485
@@ -3241,19 +3241,19 @@ msgstr "خطّ المحور"
#: chart2/uiconfig/ui/tp_AxisPositions.ui:177
msgctxt "tp_AxisPositions|RB_ON"
msgid "_On tick marks"
-msgstr ""
+msgstr "عل_ى علامات التأشير"
#. FaKJZ
#: chart2/uiconfig/ui/tp_AxisPositions.ui:186
msgctxt "tp_AxisPositions|extended_tip|RB_ON"
msgid "Specifies that the axis is positioned on the first/last tickmarks. This makes the data points visual representation begin/end at the value axis."
-msgstr "تُشير أن المحور متموضع على أول/آخر علامة. هذا يجعل العرض المرئي لنقاط البيانات يبدأ/ينتهي عند قيمة المحور."
+msgstr "تُشير إلى أن المحور متموضع على أول/آخر علامة. هذا يجعل العرض المرئي لنقاط البيانات يبدأ/ينتهي عند قيمة المحور."
#. gSFeZ
#: chart2/uiconfig/ui/tp_AxisPositions.ui:197
msgctxt "tp_AxisPositions|RB_BETWEEN"
msgid "_Between tick marks"
-msgstr "بين علامات 'صح'"
+msgstr "_بين علامات التأشير"
#. BSx2x
#: chart2/uiconfig/ui/tp_AxisPositions.ui:206
@@ -3571,7 +3571,7 @@ msgstr "اختر شكل خط لرسمه."
#: chart2/uiconfig/ui/tp_ChartType.ui:362
msgctxt "tp_ChartType|properties"
msgid "Properties..."
-msgstr "خصائص..."
+msgstr "الخصائص..."
#. EnymX
#: chart2/uiconfig/ui/tp_ChartType.ui:368
@@ -3637,13 +3637,13 @@ msgstr "اظهار النسبة المئوية لنقاط البيانات في
#: chart2/uiconfig/ui/tp_DataLabel.ui:77
msgctxt "tp_DataLabel|CB_CATEGORY"
msgid "_Category"
-msgstr ""
+msgstr "الصن_ف"
#. EZXZX
#: chart2/uiconfig/ui/tp_DataLabel.ui:85
msgctxt "tp_DataLabel|extended_tip|CB_CATEGORY"
msgid "Shows the data point text labels."
-msgstr "اظهار نصوص الضيغ لنقط البيانات."
+msgstr "يُظهِر لصائق النص لنقاط البيانات."
#. Y6NXz
#: chart2/uiconfig/ui/tp_DataLabel.ui:96
@@ -4051,13 +4051,13 @@ msgstr "ل_صائق البيانات"
#: chart2/uiconfig/ui/tp_DataSource.ui:426
msgctxt "tp_DataSource|extended_tip|EDT_CATEGORIES"
msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button."
-msgstr "اظهار مصدر عنوان المجال للفئات (النصوص التي يُمكنك رؤيتها على محور 'س' لفئة المخطط البياني): لأجل مخطط بياني 'س ع'، صندوق النص يحتوي على مصدر مجال صيغ البيانات التي تظهر لنقاط البيانات. لتصغير علبة الحوار الحالية أثناء تحديدك لمجال البيانات من الصفحة، انقر على زر اختيار مجال البيانات."
+msgstr "يُظهِر عنوان مجال المصدر للأصناف (النصوص التي يُمكنك رؤيتها على محور 'س' لصنف المخطط البياني): لمخطط بياني 'س ع'، صندوق النص يحتوي على مصدر مجال صيغ البيانات التي تظهر لنقاط البيانات. لتصغير علبة الحوار الحالية أثناء تحديدك لمجال البيانات من الصفحة، انقر على زر اختيار مجال البيانات."
#. EYFEo
#: chart2/uiconfig/ui/tp_DataSource.ui:444
msgctxt "tp_DataSource|extended_tip|IMB_RANGE_CAT"
msgid "Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the Select data range button."
-msgstr "اظهار مصدر عنوان المجال للفئات (النصوص التي يُمكنك رؤيتها على محور 'س' لفئة المخطط البياني): لأجل مخطط بياني 'س ع'، صندوق النص يحتوي على مصدر مجال صيغ البيانات التي تظهر لنقاط البيانات. لتصغير علبة الحوار الحالية أثناء تحديدك لمجال البيانات من الصفحة، انقر على زر اختيار مجال البيانات."
+msgstr "يُظهِر عنوان مجال المصدر للأصناف (النصوص التي يُمكنك رؤيتها على محور 'س' لصنف المخطط البياني): لمخطط بياني 'س ع'، صندوق النص يحتوي على مصدر مجال صيغ البيانات التي تظهر لنقاط البيانات. لتصغير علبة الحوار الحالية أثناء تحديدك لمجال البيانات من الصفحة، انقر على زر اختيار مجال البيانات."
#. YwALA
#: chart2/uiconfig/ui/tp_DataSource.ui:481
@@ -4153,7 +4153,7 @@ msgstr "انقر على مجال الخلية ثم حدد مجال خلية ال
#: chart2/uiconfig/ui/tp_ErrorBars.ui:205
msgctxt "tp_ErrorBars|label1"
msgid "Error Category"
-msgstr "فئة الخطأ"
+msgstr "صنف الخطأ"
#. q8qXd
#: chart2/uiconfig/ui/tp_ErrorBars.ui:236
@@ -4273,7 +4273,7 @@ msgstr "قم بالتفعيل لتستخدم قيم الخطأ الموجبة ك
#: chart2/uiconfig/ui/tp_ErrorBars.ui:567
msgctxt "tp_ErrorBars|label3"
msgid "Parameters"
-msgstr "المعاملات"
+msgstr "المتغيرات الوسيطة"
#. XxRKD
#: chart2/uiconfig/ui/tp_ErrorBars.ui:584
@@ -4579,7 +4579,7 @@ msgstr "تُحدّد بأنك تُريد تقسيم المحور لوغاريت
#: chart2/uiconfig/ui/tp_Scale.ui:102
msgctxt "tp_Scale|TXT_AXIS_TYPE"
msgid "T_ype"
-msgstr "ال_نّوع"
+msgstr "ال_نوع"
#. D6Bre
#: chart2/uiconfig/ui/tp_Scale.ui:118
@@ -4621,7 +4621,7 @@ msgstr "القيمة ال_عليا"
#: chart2/uiconfig/ui/tp_Scale.ui:185
msgctxt "tp_Scale|CBX_AUTO_MIN"
msgid "_Automatic"
-msgstr "تل_قائي"
+msgstr "_تلقائي"
#. Bx5Co
#: chart2/uiconfig/ui/tp_Scale.ui:199
@@ -5059,7 +5059,7 @@ msgstr ""
#: chart2/uiconfig/ui/tp_Trendline.ui:317
msgctxt "tp_Trendline|label10"
msgid "_Type"
-msgstr ""
+msgstr "ال_نوع"
#. P6TjC
#: chart2/uiconfig/ui/tp_Trendline.ui:322
diff --git a/source/ar/connectivity/messages.po b/source/ar/connectivity/messages.po
index da0739bb6db..d6cdbf37cda 100644
--- a/source/ar/connectivity/messages.po
+++ b/source/ar/connectivity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:10+0200\n"
-"PO-Revision-Date: 2022-02-04 11:39+0000\n"
+"PO-Revision-Date: 2022-03-03 18:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/connectivitymessages/ar/>\n"
"Language: ar\n"
@@ -317,7 +317,7 @@ msgstr "طول اسم العمود غير صالح للعمود '$columnname$'."
#: connectivity/inc/strings.hrc:75
msgctxt "STR_DUPLICATE_VALUE_IN_COLUMN"
msgid "Duplicate value found in column '$columnname$'."
-msgstr "تكرار القيمة الموجودة في العمود '$columnname$'."
+msgstr "عُثر على قيمة مكررة في العمود '$columnname$'."
#. sfaxE
#: connectivity/inc/strings.hrc:76
@@ -598,7 +598,7 @@ msgstr "لا اتصال بقاعدة البيانات."
#: connectivity/inc/strings.hrc:126
msgctxt "STR_AB_ADDRESSBOOK_NOT_FOUND"
msgid "No $1$ exists."
-msgstr "$1$ ليس موجودا."
+msgstr "لا يوجد $1$."
#. e7kHo
#: connectivity/inc/strings.hrc:127
diff --git a/source/ar/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po b/source/ar/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
index 1c9b01ff60e..5cf441b6b5d 100644
--- a/source/ar/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/ar/connectivity/registry/mysql_jdbc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2021-02-13 19:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistrymysql_jdbcorgopenofficeofficedataaccess/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: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149325.000000\n"
#. ny8vx
@@ -35,13 +35,3 @@ msgctxt ""
"value.text"
msgid "MySQL (ODBC)"
msgstr "بياناتMySQL (توصيلية مفتوحة ODBC)"
-
-#. rcnrk
-#: Drivers.xcu
-msgctxt ""
-"Drivers.xcu\n"
-".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
-"DriverTypeDisplayName\n"
-"value.text"
-msgid "MySQL (Native)"
-msgstr "بياناتMySQL (ذاتية)"
diff --git a/source/ar/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po b/source/ar/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
index 814ccc80957..416dc30d829 100644
--- a/source/ar/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
+++ b/source/ar/connectivity/registry/mysqlc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2021-02-13 19:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistrymysqlcorgopenofficeofficedataaccess/ar/>\n"
@@ -13,15 +13,15 @@ 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: Weblate 4.4\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496473.000000\n"
-#. NHVFU
+#. bTkZz
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "MySQL Connector"
-msgstr "موصل MySQL"
+msgid "MySQL/MariaDB Connector"
+msgstr ""
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 056259053f5..66a71cea6c5 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-18 12:16+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
+"PO-Revision-Date: 2022-03-20 12:44+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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563567066.000000\n"
#. GyY9M
@@ -74,7 +74,7 @@ msgstr "كسر"
#: cui/inc/numcategories.hrc:27
msgctxt "numberingformatpage|liststore1"
msgid "Boolean Value"
-msgstr "قيمة حقيقية"
+msgstr "قيمة منطقية"
#. 2esH2
#: cui/inc/numcategories.hrc:28
@@ -400,37 +400,37 @@ msgstr "غيّر اسم شريط الأدوات"
#: cui/inc/strings.hrc:69
msgctxt "RID_SVXSTR_ALL_COMMANDS"
msgid "All Commands"
-msgstr ""
+msgstr "كل الأوامر"
#. A7cUy
#: cui/inc/strings.hrc:70
msgctxt "RID_SVXSTR_TABBED"
msgid "Tabbed"
-msgstr ""
+msgstr "ألسنة"
#. xqrfE
#: cui/inc/strings.hrc:71
msgctxt "RID_SVXSTR_TABBED_COMPACT"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "ألسنة متضامّ"
#. fLLH2
#: cui/inc/strings.hrc:72
msgctxt "RID_SVXSTR_GROUPEDBAR"
msgid "Groupedbar"
-msgstr ""
+msgstr "شريط‌مجمّع"
#. AnFxX
#: cui/inc/strings.hrc:73
msgctxt "RID_SVXSTR_GROUPEDBAR_COMPACT"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "شريط‌مجمّع متراصّ"
#. GN45E
#: cui/inc/strings.hrc:75
msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
msgid "Close"
-msgstr "إغلاق"
+msgstr "أغلق"
#. dkH9d
#: cui/inc/strings.hrc:76
@@ -442,7 +442,7 @@ msgstr "الفأرة فوق الكائن"
#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
msgid "Trigger hyperlink"
-msgstr "شغّل الرابط"
+msgstr "إطلاق الارتباط التشعبي"
#. WMQPj
#: cui/inc/strings.hrc:78
@@ -454,7 +454,7 @@ msgstr "ابتعاد الفأرة عن الكائن"
#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
-msgstr "زر"
+msgstr "زِر"
#. MPHHF
#: cui/inc/strings.hrc:80
@@ -496,7 +496,7 @@ msgstr "وحدات الماكرو"
#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "Application Macros"
-msgstr ""
+msgstr "ماكروهات التطبيق"
#. RGCGW
#: cui/inc/strings.hrc:88
@@ -1177,7 +1177,7 @@ msgstr "المسار %1 موجود بالفعل."
#: cui/inc/strings.hrc:207
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
-msgstr "اختر الأرشيفات"
+msgstr "حدد الأرشيفات"
#. NDB5V
#: cui/inc/strings.hrc:208
@@ -1338,7 +1338,7 @@ msgstr "هل ترغب بحذف الكائن التالي؟"
#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
-msgstr "تأكيد الحذف"
+msgstr "أكّد الحذف"
#. kn5KE
#: cui/inc/strings.hrc:240
@@ -1452,7 +1452,7 @@ msgstr "WinWord إلى %PRODUCTNAME رايتر أو العكس"
#: cui/inc/strings.hrc:259
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
-msgstr "إكسل إلى %PRODUCTNAME كالك أو العكس"
+msgstr "أكسل إلى %PRODUCTNAME كالك أو العكس"
#. VmuND
#: cui/inc/strings.hrc:260
@@ -1562,7 +1562,7 @@ msgstr "الإملاء"
#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
-msgstr "فصل المقاطع"
+msgstr "وصل الكلمات"
#. XGkt6
#: cui/inc/strings.hrc:292
@@ -1628,7 +1628,7 @@ msgstr "أحرف بعد فاصل الأسطر: "
#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
-msgstr "فصل المقاطع بدون استفسار"
+msgstr "فصل المقاطع بِلا استعلام"
#. qCKn9
#: cui/inc/strings.hrc:303
@@ -1711,8 +1711,8 @@ msgid ""
"The line style was modified without saving. \n"
"Modify the selected line style or add a new line style."
msgstr ""
-"نمط الخط عدل بدون حفظ .\n"
-"عدل نمط الخط المحدد أو أضف نمط جديد."
+"نمط الخط عدل بِلا حفظ .\n"
+"عدل نمط الخط المحدد أو أضف نمطًا جديداً."
#. Z5Dkg
#: cui/inc/strings.hrc:317
@@ -1742,7 +1742,7 @@ msgstr "الرجاء إدخال اسم اللون الجديد هنا:"
#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. J6FBw
#: cui/inc/strings.hrc:322
@@ -1790,7 +1790,7 @@ msgstr "استخدم جدول الاستبدال"
#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
-msgstr "تصحيح الحرفين الاستهلاليين"
+msgstr "تصحيح الحرفين الاستهلاليين الكبيرين"
#. p5h3s
#: cui/inc/strings.hrc:330
@@ -1893,7 +1893,7 @@ msgstr "تطبيق حدود"
#: cui/inc/strings.hrc:347
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
-msgstr "إنشاء جدول"
+msgstr "أنشئ جدولاً"
#. RvEBo
#: cui/inc/strings.hrc:348
@@ -1941,7 +1941,7 @@ msgstr "نهاية الاقتباس"
#: cui/inc/strings.hrc:356
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
-msgstr "بدون ظل"
+msgstr "بلا ظل"
#. bzAHG
#: cui/inc/strings.hrc:357
@@ -2151,19 +2151,19 @@ msgstr "يُدرِج كائن OLE..."
#: cui/inc/strings.hrc:402
msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
-msgstr ""
+msgstr "(انقر على أي فحص لتشاهد صورته النقطية الناتجة)"
-#. YFfQV
+#. BT9KG
#: cui/inc/strings.hrc:403
msgctxt "RID_CUISTR_ZIPFAIL"
-msgid "Creation of Zip file failed!"
+msgid "Creation of ZIP file failed."
msgstr ""
#. 9QSQr
#: cui/inc/strings.hrc:404
msgctxt "RID_CUISTR_SAVED"
msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!"
-msgstr ""
+msgstr "حُفظت النتائج بنجاح في الملف’GraphicTestResults.zip‘!"
#. mpS3V
#: cui/inc/tipoftheday.hrc:50
@@ -2240,11 +2240,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"
msgstr "جد كل التعابير بحسب تحرير ▸ جد واستبدل ▸ جد ▸ \\([^)]+\\) (أشّر “تعابير نظامية”)"
-#. DUvk6
+#. jpiRT
#: cui/inc/tipoftheday.hrc:62
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon style."
-msgstr "حدد طقم أيقونات مختلف من أدوات◂خيارات◂%PRODUCTNAME◂عَرض◂واجهة المستخدم◂طراز الأيقونات."
+msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon Theme."
+msgstr ""
#. RejqP
#: cui/inc/tipoftheday.hrc:63
@@ -2299,13 +2299,13 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create different master pages in a presentation template: View ▸ Master Slide and Slide ▸ New Master (or per toolbar or right click in slide pane)."
-msgstr ""
+msgstr "يمكنك إنشاء صفحات رئيسة مختلفة في قالب عَرض تقديمي: معاينة ◂ الشريحة الرئيسة والشريحة ◂ رئيسة جديدة (أو بحسب شريط الأدوات أو انقر يمينًا في لوحة الشريحة)."
#. b3KPF
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a pivot table? Click on drop-list’s arrow in the row/col header and select sort method: ascending, descending, or custom."
-msgstr ""
+msgstr "تريد ترتيب جدول محوري؟ انقر على سهم انسدال القائمة في رأس الصف\\العمود وحدد طريقة الترتيب: تصاعدي أو تنازلي أو مخصص."
#. CvgZt
#: cui/inc/tipoftheday.hrc:73
@@ -2398,7 +2398,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:87
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To repeat a table heading when a table spans over a page, use Table ▸ Table Properties ▸ Text Flow ▸ Repeat heading."
-msgstr ""
+msgstr "لتكرر خط عنوان جدول عندما يعبر الجدول عن صفحة، استخدم جدول ◂ خصائص الجدول ◂ انسياب النص ◂ كرر خط العنوان."
#. wBMUD
#: cui/inc/tipoftheday.hrc:88
@@ -2532,7 +2532,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."
-msgstr "هل كنت تعلم أنك تستطيع إرفاق تعليقات على أجزاء من النص؟ ما عليك إلا استخدام الإختصار %MOD1+%MOD2+C."
+msgstr "هل كنت تعلم أنك تستطيع إرفاق تعليقات على أجزاء من النص؟ ما عليك إلا استخدام الاختصار %MOD1+%MOD2+C."
#. wZDsJ
#: cui/inc/tipoftheday.hrc:112
@@ -2563,7 +2563,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)."
-msgstr ""
+msgstr "بالكتابة بالثخين أو الموائل أو التسطير في رايتر يمكنك الاستمرار بالخصائص المبدئية مستخدمًا الاختصار ‎%‎MOD1+Shift+X فقط (أزِل تنسيقات المحارف المباشرة)."
#. iXjDF
#: cui/inc/tipoftheday.hrc:117
@@ -2677,7 +2677,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before."
-msgstr "تريد عناوين فصولك أن تبدأ دائماً بصفحة؟ حرّر العوان الرئيسي 1 (طراز الفقرة) ◂ انسياب النص ◂ الفواصل وأشِّر: أدرِج ◂ صفحة ◂ قبل."
+msgstr "تريد عناوين فصولك أن تبدأ صفحة دائماً؟ حرّر خط العنوان 1 (طراز الفقرة) ◂ انسياب النص ◂ الفواصل وأشِّر: أدرِج ◂ صفحة ◂ قبل."
#. UVRgV
#: cui/inc/tipoftheday.hrc:136
@@ -3049,7 +3049,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key."
-msgstr ""
+msgstr "تريد تحريك عمود في كالك بين اثنين آخرَين في خطوة واحدة؟ انقر الرأس ثم خلية في العمود وحافظ على ضغط زر الفأرة وحرّك إلى الهدف بمفتاح ‎%MOD2."
#. 3xJeA
#: cui/inc/tipoftheday.hrc:196
@@ -3057,11 +3057,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
-#. BnMpb
+#. DBfad
#. local help missing
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
+msgid "Use Format ▸ Align Objects in Impress or Shape ▸ Align Objects in Draw (or the context menu) for precise positioning of objects: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
@@ -3094,7 +3094,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row."
-msgstr ""
+msgstr "حافظ على رؤوس الأعمدة في الورقة مرئية عند لفّ السطور عبرَ معاينة ◂ تجميد الخلايا ◂ جمّد الصف الأول."
#. mCfdK
#: cui/inc/tipoftheday.hrc:203
@@ -3278,7 +3278,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:232
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties."
-msgstr ""
+msgstr "لا تُدرج فواصل يدوية لتفصل فقرتين. الأحرى أن تغير الإزاحات والتباعد ◂ التباعد ◂ أسفل الفقرة في خصائص الطراز/الفقرة."
#. rxTGc
#: cui/inc/tipoftheday.hrc:233
@@ -3382,7 +3382,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit ▸ Find and Replace ▸ Other options ▸ Attributes ▸ Font weight."
-msgstr "تريد إيجاد الكلمات ذات الخط الثخين في مستند رايتر؟ تحرير ▸ جد واستبدل ▸ خيارات أخرى ▸ سِمات ▸ وزن الخط."
+msgstr "تريد إيجاد الكلمات ذات الخط الثخين في مستند رايتر؟ تحرير◂ جد واستبدل ◂ خيارات أخرى ◂ سِمات ◂ وزن الخط."
#. ppAeT
#. local help missing
@@ -3594,7 +3594,7 @@ msgstr ""
#: cui/inc/toolbarmode.hrc:23
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface."
-msgstr ""
+msgstr "واجهة مستخدم قياسية ذات قائمة وشريط أدوات وشريط جانبي قابل للطيّ. يُراد للمستخدمين الذين ألِفوا الواجهة التقليدية."
#. BoVy3
#: cui/inc/toolbarmode.hrc:24
@@ -3606,13 +3606,13 @@ msgstr ""
#: cui/inc/toolbarmode.hrc:25
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface but with single-line toolbar. Intended for use on small screens."
-msgstr ""
+msgstr "واجهة مستخدم قياسية لكن ذات شريط أدوات بسطر واحد. يُراد للاستخدام على الشاشات الصغيرة."
#. wKg2Q
#: cui/inc/toolbarmode.hrc:26
msgctxt "RID_CUI_TOOLBARMODES"
msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI."
-msgstr ""
+msgstr "واجهة مستخدم قياسية ذات شريط جانبي متوسع. يُنصَح باستخدام واجهة المستخدم هذه للمستخدمين الخبراء الذين يريدون بسرعة تغيير الكثير من الخصائص المختلفة."
#. qXq4A
#: cui/inc/toolbarmode.hrc:27
@@ -3666,7 +3666,7 @@ msgstr "عامّ"
#: cui/inc/treeopt.hrc:37
msgctxt "SID_GENERAL_OPTIONS_RES"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. HCLxc
#: cui/inc/treeopt.hrc:38
@@ -3804,7 +3804,7 @@ msgstr "عامّ"
#: cui/inc/treeopt.hrc:72
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. MxbiL
#: cui/inc/treeopt.hrc:73
@@ -3846,7 +3846,7 @@ msgstr "طباعة"
#: cui/inc/treeopt.hrc:79
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Table"
-msgstr "الجداول"
+msgstr "جدول"
#. NVRAk
#: cui/inc/treeopt.hrc:80
@@ -3888,7 +3888,7 @@ msgstr "%PRODUCTNAME رايتر/الوب"
#: cui/inc/treeopt.hrc:90
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. 3q8qM
#: cui/inc/treeopt.hrc:91
@@ -3912,7 +3912,7 @@ msgstr "طباعة"
#: cui/inc/treeopt.hrc:94
msgctxt "SID_SW_ONLINEOPTIONS_RES"
msgid "Table"
-msgstr "الجداول"
+msgstr "جدول"
#. 9NS67
#: cui/inc/treeopt.hrc:95
@@ -3954,7 +3954,7 @@ msgstr "المبدئيات"
#: cui/inc/treeopt.hrc:109
msgctxt "SID_SC_EDITOPTIONS_RES"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. QMCfy
#: cui/inc/treeopt.hrc:110
@@ -4014,7 +4014,7 @@ msgstr "عامّ"
#: cui/inc/treeopt.hrc:123
msgctxt "SID_SD_EDITOPTIONS_RES"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. UxXLE
#: cui/inc/treeopt.hrc:124
@@ -4044,7 +4044,7 @@ msgstr "عامّ"
#: cui/inc/treeopt.hrc:132
msgctxt "SID_SD_GRAPHIC_OPTIONS_RES"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. et8PK
#: cui/inc/treeopt.hrc:133
@@ -4062,7 +4062,7 @@ msgstr "طباعة"
#: cui/inc/treeopt.hrc:139
msgctxt "SID_SCH_EDITOPTIONS_RES"
msgid "Charts"
-msgstr "الرسوم البيانية"
+msgstr "رسوم بيانية"
#. XAhzo
#: cui/inc/treeopt.hrc:140
@@ -4122,7 +4122,7 @@ msgstr "قواعد البيانات"
#: cui/inc/twolines.hrc:28
msgctxt "twolinespage|liststore1"
msgid "(None)"
-msgstr "(بدون)"
+msgstr "(بلا)"
#. oUwW4
#: cui/inc/twolines.hrc:29
@@ -4158,7 +4158,7 @@ msgstr "محارف أخرى..."
#: cui/inc/twolines.hrc:38
msgctxt "twolinespage|liststore2"
msgid "(None)"
-msgstr "(بدون)"
+msgstr "(بلا)"
#. ts6EG
#: cui/inc/twolines.hrc:39
@@ -4254,7 +4254,7 @@ msgstr "الخاصيّة"
#: cui/uiconfig/ui/aboutconfigdialog.ui:243
msgctxt "aboutconfigdialog|type"
msgid "Type"
-msgstr "النّوع"
+msgstr "النوع"
#. BYBgx
#: cui/uiconfig/ui/aboutconfigdialog.ui:257
@@ -4362,7 +4362,7 @@ msgstr "انسخ كل معلومات الإصدار بالإنكليزية"
#: cui/uiconfig/ui/accelconfigpage.ui:80
msgctxt "accelconfigpage|tooltip|shortcuts"
msgid "To quickly find a shortcut in this list, simply press the key combination."
-msgstr ""
+msgstr "لتجد مختصراً بسرعة في هذه القائمة، ببساطة اضغط تركيبة المفاتيح."
#. s4GiG
#: cui/uiconfig/ui/accelconfigpage.ui:117
@@ -4418,7 +4418,7 @@ msgstr ""
#: cui/uiconfig/ui/accelconfigpage.ui:238
msgctxt "accelconfigpage|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. 6MwWq
#: cui/uiconfig/ui/accelconfigpage.ui:250
@@ -4444,68 +4444,74 @@ msgctxt "accelconfigpage|extended_tip|save"
msgid "Saves the current shortcut key configuration, so that you can load it later."
msgstr ""
-#. mJmga
-#: cui/uiconfig/ui/accelconfigpage.ui:297
+#. oSRQ7
+#: cui/uiconfig/ui/accelconfigpage.ui:295
+msgctxt "accelconfigpage|tooltip|reset"
+msgid "Unsaved modifications to shortcut keys are reverted."
+msgstr ""
+
+#. stv4J
+#: cui/uiconfig/ui/accelconfigpage.ui:298
msgctxt "accelconfigpage|extended_tip|reset"
-msgid "Resets modified values back to the default values."
+msgid "Revert any changes made to keyboard shortcuts to the assignments that were present when this dialog was opened."
msgstr ""
#. BKAsD
-#: cui/uiconfig/ui/accelconfigpage.ui:348
+#: cui/uiconfig/ui/accelconfigpage.ui:349
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr "اكتب لتبحث"
#. nGtvW
-#: cui/uiconfig/ui/accelconfigpage.ui:352
+#: cui/uiconfig/ui/accelconfigpage.ui:353
msgctxt "accelconfigpage|extended_tip|searchEntry"
msgid "Type here to search in the list of functions."
msgstr ""
#. T5FGo
-#: cui/uiconfig/ui/accelconfigpage.ui:374
+#: cui/uiconfig/ui/accelconfigpage.ui:375
msgctxt "accelconfigpage|label23"
msgid "_Category"
-msgstr "ال_فئة"
+msgstr "الصن_ف"
#. xfWzA
-#: cui/uiconfig/ui/accelconfigpage.ui:388
+#: cui/uiconfig/ui/accelconfigpage.ui:389
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "ال_وظيفة"
#. 7PCeb
-#: cui/uiconfig/ui/accelconfigpage.ui:402
+#: cui/uiconfig/ui/accelconfigpage.ui:403
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr "الم_فاتيح"
#. 8DnFJ
-#: cui/uiconfig/ui/accelconfigpage.ui:446
+#: cui/uiconfig/ui/accelconfigpage.ui:447
msgctxt "accelconfigpage|extended_tip|category"
msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
-msgstr ""
+msgstr "يسرد أصناف الوظائف المتاحة. لإسناد اختصارات إلى طُرُز، افتح صنف \"الطُرُز\"."
#. wGm8q
-#: cui/uiconfig/ui/accelconfigpage.ui:493
+#: cui/uiconfig/ui/accelconfigpage.ui:494
msgctxt "accelconfigpage|extended_tip|function"
msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
msgstr ""
#. PzCaG
-#: cui/uiconfig/ui/accelconfigpage.ui:539
+#: cui/uiconfig/ui/accelconfigpage.ui:540
msgctxt "accelconfigpage|extended_tip|keys"
msgid "Displays the shortcut keys that are assigned to the selected function."
msgstr ""
#. CqdJF
-#: cui/uiconfig/ui/accelconfigpage.ui:563
+#: cui/uiconfig/ui/accelconfigpage.ui:564
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "ال_دوال"
#. kVeWd
-#: cui/uiconfig/ui/accelconfigpage.ui:576
+#: cui/uiconfig/ui/accelconfigpage.ui:577
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
msgstr ""
@@ -4652,7 +4658,7 @@ msgstr "يضيف أو يستبدل مُدخَلاً في جدول الاستبد
#: cui/uiconfig/ui/acorreplacepage.ui:79
msgctxt "acorreplacepage|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. YLcSj
#: cui/uiconfig/ui/acorreplacepage.ui:146
@@ -4730,7 +4736,7 @@ msgstr "التحميلات"
#: cui/uiconfig/ui/additionsdialog.ui:52
msgctxt "menuassignpage|gear_textOnly"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. ncCYE
#: cui/uiconfig/ui/additionsdialog.ui:71
@@ -4815,13 +4821,13 @@ msgstr "التصويت:"
#: cui/uiconfig/ui/additionsfragment.ui:88
msgctxt "additionsEntry|labelLicense"
msgid "License:"
-msgstr ""
+msgstr "الرخصة:"
#. buPFe
#: cui/uiconfig/ui/additionsfragment.ui:106
msgctxt "additionsEntry|labelVersion"
msgid "Required version:"
-msgstr ""
+msgstr "الإصدار المطلوب:"
#. cFsEL
#: cui/uiconfig/ui/additionsfragment.ui:124
@@ -4869,7 +4875,7 @@ msgstr "درجة التقادم:"
#: cui/uiconfig/ui/agingdialog.ui:179
msgctxt "agingdialog|label1"
msgid "Parameters"
-msgstr "المعاملات"
+msgstr "المتغيرات الوسيطة"
#. pciJf
#: cui/uiconfig/ui/agingdialog.ui:204
@@ -4995,7 +5001,7 @@ msgstr "علامات التنصيص المفردة المبدئيّة"
#: cui/uiconfig/ui/applylocalizedpage.ui:327
msgctxt "applylocalizedpage|extended_tip|defaultsingle"
msgid "Resets the quotation marks to the default symbols."
-msgstr ""
+msgstr "يصفّر علامات التنصيص إلى الرموز المبدئية."
#. GRDaT
#: cui/uiconfig/ui/applylocalizedpage.ui:341
@@ -5079,7 +5085,7 @@ msgstr "علامات التنصيص المزدوجة المبدئيّة"
#: cui/uiconfig/ui/applylocalizedpage.ui:516
msgctxt "applylocalizedpage|extended_tip|defaultdouble"
msgid "Resets the quotation marks to the default symbols."
-msgstr ""
+msgstr "يصفّر علامات التنصيص إلى الرموز المبدئية."
#. cDwwK
#: cui/uiconfig/ui/applylocalizedpage.ui:530
@@ -5175,7 +5181,7 @@ msgstr ""
#: cui/uiconfig/ui/areatabpage.ui:52
msgctxt "areatabpage|btnnone"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. kTpV7
#: cui/uiconfig/ui/areatabpage.ui:58
@@ -5421,7 +5427,7 @@ msgstr "العنصر"
#: cui/uiconfig/ui/baselinksdialog.ui:197
msgctxt "baselinksdialog|TYPE"
msgid "Type"
-msgstr "النّوع"
+msgstr "النوع"
#. rnFJV
#: cui/uiconfig/ui/baselinksdialog.ui:210
@@ -5451,7 +5457,7 @@ msgstr "العنصر:"
#: cui/uiconfig/ui/baselinksdialog.ui:278
msgctxt "baselinksdialog|TYPE2"
msgid "Type:"
-msgstr "النّوع:"
+msgstr "النوع:"
#. BPXPn
#: cui/uiconfig/ui/baselinksdialog.ui:290
@@ -5463,7 +5469,7 @@ msgstr "حدّث:"
#: cui/uiconfig/ui/baselinksdialog.ui:356
msgctxt "baselinksdialog|AUTOMATIC"
msgid "_Automatic"
-msgstr "ت_لقائيًا"
+msgstr "_تلقائي"
#. wkpVe
#: cui/uiconfig/ui/baselinksdialog.ui:365
@@ -5709,7 +5715,7 @@ msgstr "ا_دمج مع الفقرة التالية"
#: cui/uiconfig/ui/borderpage.ui:647
msgctxt "borderpage|mergewithnext"
msgid "Merge indent, border and shadow style of current paragraph with next paragraph, if they are the same."
-msgstr ""
+msgstr "ادمج الإزاحة والحد وطراز الظلّ للفقرة الحالية مع الفقرة التالية، إن كانا متماثلين."
#. xkm5N
#: cui/uiconfig/ui/borderpage.ui:658
@@ -5727,7 +5733,7 @@ msgstr "الخصائص"
#: cui/uiconfig/ui/breaknumberoption.ui:29
msgctxt "breaknumberoption|BreakNumberOption"
msgid "Hyphenation"
-msgstr "فصل المقاطع"
+msgstr "وصل الكلمات"
#. kmYk5
#: cui/uiconfig/ui/breaknumberoption.ui:106
@@ -5877,7 +5883,7 @@ msgstr ""
#: cui/uiconfig/ui/bulletandposition.ui:476
msgctxt "bulletandposition|suffixft"
msgid "After:"
-msgstr ""
+msgstr "بعد:"
#. da9tS
#: cui/uiconfig/ui/bulletandposition.ui:494
@@ -6363,13 +6369,13 @@ msgstr ""
#: cui/uiconfig/ui/cellalignment.ui:265
msgctxt "cellalignment|checkHyphActive"
msgid "Hyphenation _active"
-msgstr "فصل المقاطع ن_شط"
+msgstr "وصل الكلمات ن_شط"
#. XLgra
#: cui/uiconfig/ui/cellalignment.ui:276
msgctxt "cellalignment|extended_tip|checkHyphActive"
msgid "Enables word hyphenation for text wrapping to the next line."
-msgstr ""
+msgstr "يفعّل وصل الكلمات للفّ النص إلى السطر التالي."
#. pQLTe
#: cui/uiconfig/ui/cellalignment.ui:294
@@ -6387,7 +6393,7 @@ msgstr "الخصائص"
#: cui/uiconfig/ui/cellalignment.ui:364
msgctxt "cellalignment|extended_tip|spinIndentFrom"
msgid "Indents from the left edge of the cell by the amount that you enter."
-msgstr ""
+msgstr "يُزيح من الحافة اليسرى للخلية بالمقدار الذي تُدخله."
#. dzBtA
#: cui/uiconfig/ui/cellalignment.ui:377
@@ -6405,7 +6411,7 @@ msgstr ""
#: cui/uiconfig/ui/cellalignment.ui:405
msgctxt "cellalignment|labelIndent"
msgid "I_ndent:"
-msgstr ""
+msgstr "محا_ذاة:"
#. FUsYk
#: cui/uiconfig/ui/cellalignment.ui:420
@@ -6933,7 +6939,7 @@ msgstr ""
#: cui/uiconfig/ui/colorconfigwin.ui:682
msgctxt "colorconfigwin|hdft"
msgid "Headers and Footer delimiter"
-msgstr "حدّ الترويسة و التذييل"
+msgstr "محدد الرؤوس والتذييلات"
#. dCEBJ
#: cui/uiconfig/ui/colorconfigwin.ui:714
@@ -7083,7 +7089,7 @@ msgstr "سلسلة"
#: cui/uiconfig/ui/colorconfigwin.ui:1487
msgctxt "colorconfigwin|basicop"
msgid "Operator"
-msgstr "عامل التشغيل"
+msgstr "المُعامل"
#. EFQpW
#: cui/uiconfig/ui/colorconfigwin.ui:1519
@@ -7113,7 +7119,7 @@ msgstr "معرّف"
#: cui/uiconfig/ui/colorconfigwin.ui:1650
msgctxt "colorconfigwin|sqlnumber"
msgid "Number"
-msgstr "الرقم"
+msgstr "رقم"
#. B6Bku
#: cui/uiconfig/ui/colorconfigwin.ui:1682
@@ -7125,13 +7131,13 @@ msgstr "سلسلة"
#: cui/uiconfig/ui/colorconfigwin.ui:1714
msgctxt "colorconfigwin|sqlop"
msgid "Operator"
-msgstr "عامل التشغيل"
+msgstr "المُعامل"
#. 4t4Ww
#: cui/uiconfig/ui/colorconfigwin.ui:1746
msgctxt "colorconfigwin|sqlkeyword"
msgid "Keyword"
-msgstr "الكلمة الأساسية"
+msgstr "كلمة أساسية"
#. qbVhS
#: cui/uiconfig/ui/colorconfigwin.ui:1778
@@ -7221,7 +7227,7 @@ msgstr "احذف"
#: cui/uiconfig/ui/colorpage.ui:224
msgctxt "colorpage|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. m2Qm7
#: cui/uiconfig/ui/colorpage.ui:238
@@ -7542,24 +7548,28 @@ msgid "HSB"
msgstr "ص‌ت‌س (HSB)"
#. sesZZ
+#. This is the C of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:639
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr "_سمائي:"
#. Gw7rx
+#. This is the M of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:654
msgctxt "colorpickerdialog|label6"
msgid "_Magenta:"
msgstr "أرجوا_ني:"
#. Uv2KG
+#. This is the Y of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:669
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
msgstr "أ_صفر:"
#. aFvbe
+#. This is the K of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:684
msgctxt "colorpickerdialog|label8"
msgid "_Key:"
@@ -7596,7 +7606,7 @@ msgid "CMYK"
msgstr "زق‌ص‌س (CMYK)"
#. HuUmH
-#: cui/uiconfig/ui/colorpickerdialog.ui:815
+#: cui/uiconfig/ui/colorpickerdialog.ui:812
msgctxt "extended tip | ColorPicker"
msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
msgstr ""
@@ -7803,7 +7813,7 @@ msgstr "المشغّلات المعروفة في %PRODUCTNAME"
#: cui/uiconfig/ui/connpooloptions.ui:101
msgctxt "connpooloptions|driverlabel"
msgid "Current driver:"
-msgstr "التعريف الحالي:"
+msgstr "المشغّل الحالي:"
#. RGWQy
#: cui/uiconfig/ui/connpooloptions.ui:131
@@ -7821,7 +7831,7 @@ msgstr ""
#: cui/uiconfig/ui/connpooloptions.ui:158
msgctxt "connpooloptions|timeoutlabel"
msgid "_Timeout (seconds):"
-msgstr ""
+msgstr "انق_ضاء الوقت (ثانية):"
#. CUE56
#: cui/uiconfig/ui/connpooloptions.ui:180
@@ -7833,19 +7843,19 @@ msgstr ""
#: cui/uiconfig/ui/connpooloptions.ui:227
msgctxt "connpooloptions|drivername"
msgid "Driver name"
-msgstr ""
+msgstr "اسم المشغّل"
#. pQGCs
#: cui/uiconfig/ui/connpooloptions.ui:240
msgctxt "connpooloptions|pool"
msgid "Pool"
-msgstr ""
+msgstr "تجمُّع"
#. 7Svws
#: cui/uiconfig/ui/connpooloptions.ui:253
msgctxt "connpooloptions|timeout"
msgid "Timeout"
-msgstr ""
+msgstr "انقضاء الوقت"
#. 9ctBe
#: cui/uiconfig/ui/connpooloptions.ui:289
@@ -8103,13 +8113,13 @@ msgstr ""
#: cui/uiconfig/ui/dbregisterpage.ui:67
msgctxt "dbregisterpage|type"
msgid "Registered name"
-msgstr ""
+msgstr "الاسم المسجل"
#. fCFc2
#: cui/uiconfig/ui/dbregisterpage.ui:89
msgctxt "dbregisterpage|path"
msgid "Database file"
-msgstr ""
+msgstr "ملف قاعدة البيانات"
#. w8NyN
#: cui/uiconfig/ui/dbregisterpage.ui:117
@@ -8331,13 +8341,13 @@ msgstr "حرّر القاموس المخصّص"
#: cui/uiconfig/ui/editdictionarydialog.ui:95
msgctxt "book"
msgid "Specifies the book to be edited."
-msgstr ""
+msgstr "يحدد الكتاب الذي سيحرَّر."
#. trTxg
#: cui/uiconfig/ui/editdictionarydialog.ui:110
msgctxt "lang"
msgid "Assigns a new language to the current custom dictionary."
-msgstr ""
+msgstr "يسند لغة جديدة إلى القاموس المخصص الحالي."
#. PV8x9
#: cui/uiconfig/ui/editdictionarydialog.ui:123
@@ -8391,13 +8401,13 @@ msgstr ""
#: cui/uiconfig/ui/editdictionarydialog.ui:376
msgctxt "editdictionarydialog|delete"
msgid "_Delete"
-msgstr "ح_ذف"
+msgstr "اح_ذف"
#. VzuAW
#: cui/uiconfig/ui/editdictionarydialog.ui:383
msgctxt "delete"
msgid "Removes the marked word from the current custom dictionary."
-msgstr ""
+msgstr "يزيل الكلمة المؤشَّرة من القاموس المخصص الحالي."
#. 35DN3
#: cui/uiconfig/ui/editdictionarydialog.ui:415
@@ -8487,7 +8497,7 @@ msgstr "معاينة"
#: cui/uiconfig/ui/effectspage.ui:75
msgctxt "effectspage|effectsft"
msgid "_Case:"
-msgstr ""
+msgstr "_حالة الحروف:"
#. hhfhW
#: cui/uiconfig/ui/effectspage.ui:89
@@ -8499,19 +8509,19 @@ msgstr "الأخدو_د:"
#: cui/uiconfig/ui/effectspage.ui:104
msgctxt "effectspage|liststore1"
msgid "(Without)"
-msgstr "(بدون)"
+msgstr "(بِلا)"
#. xGDgW
#: cui/uiconfig/ui/effectspage.ui:105
msgctxt "effectspage|liststore1"
msgid "UPPERCASE"
-msgstr ""
+msgstr "حروف كبيرة"
#. kimAz
#: cui/uiconfig/ui/effectspage.ui:106
msgctxt "effectspage|liststore1"
msgid "lowercase"
-msgstr ""
+msgstr "حروف صغيرة"
#. CqAwB
#: cui/uiconfig/ui/effectspage.ui:107
@@ -8535,7 +8545,7 @@ msgstr "حدد مؤثرات الخط التي تريد تطبيقها."
#: cui/uiconfig/ui/effectspage.ui:126
msgctxt "effectspage|liststore2"
msgid "(Without)"
-msgstr "(بدون)"
+msgstr "(بِلا)"
#. 2zc6A
#: cui/uiconfig/ui/effectspage.ui:127
@@ -8559,7 +8569,7 @@ msgstr ""
#: cui/uiconfig/ui/effectspage.ui:146
msgctxt "effectspage|liststore3"
msgid "(Without)"
-msgstr "(بدون)"
+msgstr "(بِلا)"
#. V3aSU
#: cui/uiconfig/ui/effectspage.ui:147
@@ -8685,7 +8695,7 @@ msgstr "خط _سفلي:"
#: cui/uiconfig/ui/effectspage.ui:367 cui/uiconfig/ui/effectspage.ui:401
msgctxt "effectspage|liststore6"
msgid "(Without)"
-msgstr "(بدون)"
+msgstr "(بِلا)"
#. wvpKK
#: cui/uiconfig/ui/effectspage.ui:368 cui/uiconfig/ui/effectspage.ui:402
@@ -8703,7 +8713,7 @@ msgstr "مزدوج"
#: cui/uiconfig/ui/effectspage.ui:370 cui/uiconfig/ui/effectspage.ui:404
msgctxt "effectspage|liststore6"
msgid "Bold"
-msgstr "عريض"
+msgstr "ثخين"
#. m7Jwh
#: cui/uiconfig/ui/effectspage.ui:371 cui/uiconfig/ui/effectspage.ui:405
@@ -8715,7 +8725,7 @@ msgstr "منقّط"
#: cui/uiconfig/ui/effectspage.ui:372 cui/uiconfig/ui/effectspage.ui:406
msgctxt "effectspage|liststore6"
msgid "Dotted (Bold)"
-msgstr "منقّط (عريض)"
+msgstr "منقّط (ثخين)"
#. uGcdw
#: cui/uiconfig/ui/effectspage.ui:373 cui/uiconfig/ui/effectspage.ui:407
@@ -8727,7 +8737,7 @@ msgstr "شَرطة"
#: cui/uiconfig/ui/effectspage.ui:374 cui/uiconfig/ui/effectspage.ui:408
msgctxt "effectspage|liststore6"
msgid "Dash (Bold)"
-msgstr "شَرطة (عريضة)"
+msgstr "شرطة (ثخينة)"
#. FCcKo
#: cui/uiconfig/ui/effectspage.ui:375 cui/uiconfig/ui/effectspage.ui:409
@@ -8739,7 +8749,7 @@ msgstr "شَرطة طويلة"
#: cui/uiconfig/ui/effectspage.ui:376 cui/uiconfig/ui/effectspage.ui:410
msgctxt "effectspage|liststore6"
msgid "Long Dash (Bold)"
-msgstr "شَرطة طويلة (عريضة)"
+msgstr "شرطة طويلة (ثخينة)"
#. a58XD
#: cui/uiconfig/ui/effectspage.ui:377 cui/uiconfig/ui/effectspage.ui:411
@@ -8751,7 +8761,7 @@ msgstr "نقطة و شَرطة"
#: cui/uiconfig/ui/effectspage.ui:378 cui/uiconfig/ui/effectspage.ui:412
msgctxt "effectspage|liststore6"
msgid "Dot Dash (Bold)"
-msgstr "نقطة و شَرطة (عريضة)"
+msgstr "نقطة شرطة (ثخينة)"
#. AcyEi
#: cui/uiconfig/ui/effectspage.ui:379 cui/uiconfig/ui/effectspage.ui:413
@@ -8763,7 +8773,7 @@ msgstr "نقطة و نقطة و شرطة"
#: cui/uiconfig/ui/effectspage.ui:380 cui/uiconfig/ui/effectspage.ui:414
msgctxt "effectspage|liststore6"
msgid "Dot Dot Dash (Bold)"
-msgstr "نقطة و نقطة و شرطة (عريضة)"
+msgstr "نقطة نقطة شرطة (ثخينة)"
#. kEEBv
#: cui/uiconfig/ui/effectspage.ui:381 cui/uiconfig/ui/effectspage.ui:415
@@ -8775,7 +8785,7 @@ msgstr "مَوْجة"
#: cui/uiconfig/ui/effectspage.ui:382 cui/uiconfig/ui/effectspage.ui:416
msgctxt "effectspage|liststore6"
msgid "Wave (Bold)"
-msgstr "مَوْجة (عريضة)"
+msgstr "مَوْجة (ثخينة)"
#. ZxdxD
#: cui/uiconfig/ui/effectspage.ui:383 cui/uiconfig/ui/effectspage.ui:417
@@ -8799,7 +8809,7 @@ msgstr "حدد طراز الخط السفلي الذي تريد تطبيقه. ل
#: cui/uiconfig/ui/effectspage.ui:435
msgctxt "effectspage|liststore5"
msgid "(Without)"
-msgstr "(بدون)"
+msgstr "(بِلا)"
#. Q4YtH
#: cui/uiconfig/ui/effectspage.ui:436
@@ -8817,7 +8827,7 @@ msgstr "مزدوج"
#: cui/uiconfig/ui/effectspage.ui:438
msgctxt "effectspage|liststore5"
msgid "Bold"
-msgstr "عريض"
+msgstr "ثخين"
#. bcZBk
#: cui/uiconfig/ui/effectspage.ui:439
@@ -8919,7 +8929,7 @@ msgstr "مصدر ال_ضوء:"
#: cui/uiconfig/ui/embossdialog.ui:186
msgctxt "embossdialog|label1"
msgid "Parameters"
-msgstr "المعاملات"
+msgstr "المتغيرات الوسيطة"
#. AuuQ6
#: cui/uiconfig/ui/embossdialog.ui:211
@@ -9585,7 +9595,7 @@ msgstr "النوع:"
#: cui/uiconfig/ui/gallerygeneralpage.ui:82
msgctxt "gallerygeneralpage|label3"
msgid "Location:"
-msgstr "المكان:"
+msgstr "الموضع:"
#. BEhhQ
#: cui/uiconfig/ui/gallerygeneralpage.ui:94
@@ -9603,7 +9613,7 @@ msgstr "اسم السمة"
#: cui/uiconfig/ui/gallerysearchprogress.ui:8
msgctxt "gallerysearchprogress|GallerySearchProgress"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. wvuEx
#: cui/uiconfig/ui/gallerysearchprogress.ui:77
@@ -9832,7 +9842,7 @@ msgstr ""
#: cui/uiconfig/ui/gradientpage.ui:553
msgctxt "gradientpage|extended_tip|colorfrommtr"
msgid "Enter the intensity for the color in the From Color box, where 0% corresponds to black, and 100 % to the selected color."
-msgstr ""
+msgstr "أدخِل شدّة اللون في مربع ’من اللون‘، حيث 0% تعود إلى الأسود و 100% إلى اللون المحدد."
#. TQFE8
#: cui/uiconfig/ui/gradientpage.ui:566
@@ -9886,49 +9896,49 @@ msgstr "معاينة"
#: cui/uiconfig/ui/gradientpage.ui:750
msgctxt "gradientpage|extended_tip|GradientPage"
msgid "Select a gradient, modify the properties of a gradient, or save a new gradient."
-msgstr ""
+msgstr "حدد تدرّجًا أو عدّل خصائص تدرّج أو احفظ تدرّجًا جديداً."
#. zycno
#: cui/uiconfig/ui/graphictestdlg.ui:7
msgctxt "graphictestdlg|GraphicTestsDialog"
msgid "Run Graphics Tests"
-msgstr ""
+msgstr "شغّل فحوص الرسوميات"
#. YaE3d
#: cui/uiconfig/ui/graphictestdlg.ui:26
msgctxt "graphictestdlg|gptest_downld"
msgid "Download Results"
-msgstr ""
+msgstr "تحميل النتائج"
#. RpYik
#: cui/uiconfig/ui/graphictestdlg.ui:53
msgctxt "graphictestdlg|gptest_label"
msgid "Helps to determine the efficiency of %PRODUCTNAME’s graphics rendering by running some tests under the hood and providing their results in the log."
-msgstr ""
+msgstr "يساعد في تحديد كفاءة تصيير رسوميات %PRODUCTNAME بتشغيل بعض الفحوص الداخلية وتوفير نتائجها في السجلّ."
#. D68dV
#: cui/uiconfig/ui/graphictestdlg.ui:56
msgctxt "graphictestdlg|gptest_label"
msgid "What's this?"
-msgstr ""
+msgstr "ما هذا؟"
#. 7LB9A
#: cui/uiconfig/ui/graphictestdlg.ui:105
msgctxt "graphictestdlg|gptest_log"
msgid "Result Log:"
-msgstr ""
+msgstr "سجلّ النتيجة:"
#. jh4EZ
#: cui/uiconfig/ui/graphictestdlg.ui:122
msgctxt "graphictestdlg|gptest_detail"
msgid "Test Details"
-msgstr ""
+msgstr "تفاصيل الفحص"
#. fhaSG
#: cui/uiconfig/ui/graphictestentry.ui:31
msgctxt "graphictestentry|gptestbutton"
msgid "button"
-msgstr ""
+msgstr "زر"
#. 26WXC
#: cui/uiconfig/ui/hangulhanjaadddialog.ui:8
@@ -9946,7 +9956,7 @@ msgstr "الا_سم:"
#: cui/uiconfig/ui/hangulhanjaadddialog.ui:115
msgctxt "hangulhanjaadddialog|extended_tip|entry"
msgid "Enter a name for the dictionary."
-msgstr ""
+msgstr "أدخِل اسمًا للقاموس."
#. S2WpP
#: cui/uiconfig/ui/hangulhanjaadddialog.ui:131
@@ -9970,7 +9980,7 @@ msgstr "أصلي"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:120
msgctxt "hangulhanjaconversiondialog|extended_tip|originalword"
msgid "Displays the current selection."
-msgstr ""
+msgstr "يعرِض التحديد الحالي."
#. P2Lhg
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:133
@@ -9982,7 +9992,7 @@ msgstr "كلمة"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:156
msgctxt "hangulhanjaconversiondialog|extended_tip|wordinput"
msgid "Displays the first replacement suggestion from the dictionary."
-msgstr ""
+msgstr "يعرِض اول اقتراح استبدال من القاموس."
#. JQfs4
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:168
@@ -9994,7 +10004,7 @@ msgstr "_جِد"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:175
msgctxt "hangulhanjaconversiondialog|extended_tip|find"
msgid "Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja."
-msgstr ""
+msgstr "يجد مُدخَل هانغول خاصتك في القاموس ويستبدله بالهانغا الموافق له."
#. 3NS8C
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:195
@@ -10006,7 +10016,7 @@ msgstr "الاقتراحات"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:288
msgctxt "hangulhanjaconversiondialog|label5"
msgid "Format"
-msgstr "تنسيق"
+msgstr "التنسيق"
#. ZG2Bm
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:306
@@ -10606,7 +10616,7 @@ msgstr "الوج_هة:"
#: cui/uiconfig/ui/hyperlinkdocpage.ui:152
msgctxt "hyperlinkdocpage|url_label"
msgid "URL:"
-msgstr "العنوان:"
+msgstr "الرابط:"
#. zH7Fk
#: cui/uiconfig/ui/hyperlinkdocpage.ui:166
@@ -11158,7 +11168,7 @@ msgstr ""
#: cui/uiconfig/ui/hyphenate.ui:18
msgctxt "hyphenate|HyphenateDialog"
msgid "Hyphenation"
-msgstr "فصل المقاطع"
+msgstr "وصل الكلمات"
#. N4zDD
#: cui/uiconfig/ui/hyphenate.ui:50
@@ -11870,7 +11880,7 @@ msgstr ""
#: cui/uiconfig/ui/javastartparametersdialog.ui:228
msgctxt "javastartparametersdialog|editbtn"
msgid "_Edit"
-msgstr "_حرّر"
+msgstr "ح_رّر"
#. 5FP58
#: cui/uiconfig/ui/javastartparametersdialog.ui:236
@@ -12058,7 +12068,7 @@ msgstr "_دون رمز"
#: cui/uiconfig/ui/linetabpage.ui:86
msgctxt "linetabpage|menuitem2"
msgid "_Automatic"
-msgstr "تل_قائي"
+msgstr "_تلقائي"
#. WA9YD
#: cui/uiconfig/ui/linetabpage.ui:94
@@ -12232,7 +12242,7 @@ msgstr "ال_عرض:"
#: cui/uiconfig/ui/linetabpage.ui:809
msgctxt "linetabpage|CB_SYMBOL_RATIO"
msgid "_Keep ratio"
-msgstr "إب_قاء التناسب"
+msgstr "أب_قِ التناسب"
#. oV6GJ
#: cui/uiconfig/ui/linetabpage.ui:827
@@ -12388,7 +12398,7 @@ msgstr "اح_ذف"
#: cui/uiconfig/ui/menuassignpage.ui:120 cui/uiconfig/ui/menuassignpage.ui:192
msgctxt "menuassignpage|gear_rename"
msgid "_Rename..."
-msgstr "_غيّر الاسم…"
+msgstr "أع_دْ التسمية…"
#. rE3BD
#: cui/uiconfig/ui/menuassignpage.ui:128 cui/uiconfig/ui/menuassignpage.ui:200
@@ -12616,19 +12626,19 @@ msgstr ""
#: cui/uiconfig/ui/menuassignpage.ui:900
msgctxt "menuassignpage|scopelabel"
msgid "S_cope"
-msgstr ""
+msgstr "الن_طاق"
#. SLinm
#: cui/uiconfig/ui/menuassignpage.ui:913
msgctxt "menuassignpage|targetlabel"
msgid "_Target"
-msgstr ""
+msgstr "ال_هدف"
#. cZEBZ
#: cui/uiconfig/ui/menuassignpage.ui:926
msgctxt "menuassignpage|functionlabel"
msgid "Assi_gned Commands"
-msgstr ""
+msgstr "الأوامر الم_سنَدة"
#. AZQ8V
#: cui/uiconfig/ui/menuassignpage.ui:939
@@ -12694,7 +12704,7 @@ msgstr ""
#: cui/uiconfig/ui/mosaicdialog.ui:263
msgctxt "mosaicdialog|label1"
msgid "Parameters"
-msgstr "المعاملات"
+msgstr "المتغيرات الوسيطة"
#. LGB8f
#: cui/uiconfig/ui/mosaicdialog.ui:288
@@ -12778,19 +12788,19 @@ msgstr ""
#: cui/uiconfig/ui/multipathdialog.ui:151
msgctxt "multipathdialog|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. b9DFN
#: cui/uiconfig/ui/multipathdialog.ui:197
msgctxt "multipathdialog|pathlist"
msgid "Path list"
-msgstr ""
+msgstr "قائمة المسارات"
#. EPpjr
#: cui/uiconfig/ui/multipathdialog.ui:217
msgctxt "cui/ui/multipathdialog/paths"
msgid "Contains a list of the paths that have already been added. Mark the default path for new files."
-msgstr ""
+msgstr "يحوي قائمة بالمسارات التي أضيفت مسبقًا. أشّر المسار المبدئي للملفات الجديدة."
#. AsnM3
#: cui/uiconfig/ui/multipathdialog.ui:240
@@ -12808,7 +12818,7 @@ msgstr "الاسم"
#: cui/uiconfig/ui/newlibdialog.ui:8
msgctxt "newlibdialog|NewLibDialog"
msgid "Create Library"
-msgstr ""
+msgstr "أنشئ مكتبة"
#. Kza8K
#: cui/uiconfig/ui/newlibdialog.ui:75
@@ -12844,7 +12854,7 @@ msgstr "أعد التسمية"
#: cui/uiconfig/ui/newtabledialog.ui:22
msgctxt "newtabledialog|NewTableDialog"
msgid "Insert Table"
-msgstr "إدراج جدول"
+msgstr "أدرج جدولاً"
#. CJfAC
#: cui/uiconfig/ui/newtabledialog.ui:102
@@ -12886,7 +12896,7 @@ msgstr "يعرِض شفرة نسَق الرقم للنسّق المحدد. يم
#: cui/uiconfig/ui/numberingformatpage.ui:101
msgctxt "numberingformatpage|add|tooltip_text"
msgid "Add"
-msgstr "أضف"
+msgstr "أضِف"
#. 29z6z
#: cui/uiconfig/ui/numberingformatpage.ui:107
@@ -12922,7 +12932,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingformatpage.ui:172
msgctxt "numberingformatpage|commented|tooltip_text"
msgid "Comment"
-msgstr ""
+msgstr "تعليق"
#. EF7pt
#: cui/uiconfig/ui/numberingformatpage.ui:176
@@ -13024,7 +13034,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingformatpage.ui:493
msgctxt "numberingformatpage|categoryft"
msgid "C_ategory"
-msgstr "ال_فئة"
+msgstr "ال_صنف"
#. zCSmH
#: cui/uiconfig/ui/numberingformatpage.ui:532
@@ -13144,7 +13154,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingoptionspage.ui:262
msgctxt "numberingoptionspage|bitmapft"
msgid "Graphics:"
-msgstr "الرسومات:"
+msgstr "الرسوميات:"
#. Hooqo
#: cui/uiconfig/ui/numberingoptionspage.ui:276
@@ -13348,7 +13358,7 @@ msgstr "طراز المحارف:"
#: cui/uiconfig/ui/numberingoptionspage.ui:651
msgctxt "numberingoptionspage|label2"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. kcgWM
#: cui/uiconfig/ui/numberingoptionspage.ui:672
@@ -13402,7 +13412,7 @@ msgstr "م_حاذاة الترقيم:"
#: cui/uiconfig/ui/numberingpositionpage.ui:172
msgctxt "numberingpositionpage|alignedat"
msgid "Aligned at:"
-msgstr "حاذِ إلى:"
+msgstr "محاذاة عند:"
#. XGzNx
#: cui/uiconfig/ui/numberingpositionpage.ui:186
@@ -13420,7 +13430,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingpositionpage.ui:219
msgctxt "numberingpositionpage|at"
msgid "Tab stop at:"
-msgstr "تتوقّف الجدولة عند:"
+msgstr "يتوقّف مفتاح التبويب عند:"
#. DvSCa
#: cui/uiconfig/ui/numberingpositionpage.ui:239
@@ -13438,7 +13448,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingpositionpage.ui:272
msgctxt "numberingpositionpage|liststore2"
msgid "Tab stop"
-msgstr "جدولة"
+msgstr "توقُّف مفتاح التبويب"
#. 3EFaG
#: cui/uiconfig/ui/numberingpositionpage.ui:273
@@ -13868,7 +13878,7 @@ msgstr "الم_خطط:"
#: cui/uiconfig/ui/optappearancepage.ui:44
msgctxt "optappearancepage|save"
msgid "_Save"
-msgstr ""
+msgstr "ا_حفظ"
#. k8ACj
#: cui/uiconfig/ui/optappearancepage.ui:51
@@ -14355,40 +14365,40 @@ msgstr "أدخِل مسار واسم برنامج البريد الإلكترو
#: cui/uiconfig/ui/optfltrembedpage.ui:82
msgctxt "optfltrembedpage|column1"
msgid "[L]"
-msgstr ""
+msgstr "[م]"
#. 66D6D
#. A column title, short for Save. This string is repeated as a prefix to an explanatory note under the widget
#: cui/uiconfig/ui/optfltrembedpage.ui:104
msgctxt "optfltrembedpage|column2"
msgid "[S]"
-msgstr ""
+msgstr "[ح]"
#. 7h7h8
#: cui/uiconfig/ui/optfltrembedpage.ui:129
msgctxt "extended_tip|checklbcontainer"
msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loaded from a Microsoft format [L] and/or when saved to to a Microsoft format [S]. "
-msgstr ""
+msgstr "مربعات تأشير [م] و[ح] تَعرض المُدخَلات لأزواج كائنات OLE التي يمكن تحويلها عند تحميلها من نسَق ميكروسوفت [م] و\\أو عند حفظها إلى نسَق ميكروسوفت [ح]. "
#. x5kfq
#. The [L] here is repeated as the column title for the "Load" column of this options page
#: cui/uiconfig/ui/optfltrembedpage.ui:150
msgctxt "optfltrembedpage|label2"
msgid "[L]: Load and convert the object"
-msgstr "[L]: تحميل وتحويل الكائن"
+msgstr "[م]: تحميل وتحويل الكائن"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
#: cui/uiconfig/ui/optfltrembedpage.ui:163
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
-msgstr "[S]: تحويل وحفظ الكائن"
+msgstr "[ح]: تحويل وحفظ الكائن"
#. f2hGQ
#: cui/uiconfig/ui/optfltrembedpage.ui:185
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
-msgstr "الكائنات المضمّنة"
+msgstr "كائنات مضمَّنة"
#. nvE89
#: cui/uiconfig/ui/optfltrembedpage.ui:215
@@ -14424,13 +14434,13 @@ msgstr ""
#: cui/uiconfig/ui/optfltrembedpage.ui:283
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
-msgstr ""
+msgstr "تمييز المحارف"
#. tyACF
#: cui/uiconfig/ui/optfltrembedpage.ui:310
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
-msgstr ""
+msgstr "أنشيء ملف بقفل ميكروسوفت MSO"
#. qc4GD
#: cui/uiconfig/ui/optfltrembedpage.ui:319
@@ -14442,7 +14452,7 @@ msgstr ""
#: cui/uiconfig/ui/optfltrembedpage.ui:335
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
-msgstr ""
+msgstr "قفل الملفات"
#. EUBnP
#: cui/uiconfig/ui/optfltrembedpage.ui:349
@@ -14490,7 +14500,7 @@ msgstr ""
#: cui/uiconfig/ui/optfltrpage.ui:89
msgctxt "optfltrpage|label1"
msgid "Microsoft Word"
-msgstr ""
+msgstr "ميكروسوفت وورد"
#. Z88Ms
#: cui/uiconfig/ui/optfltrpage.ui:118
@@ -14532,7 +14542,7 @@ msgstr ""
#: cui/uiconfig/ui/optfltrpage.ui:180
msgctxt "optfltrpage|label2"
msgid "Microsoft Excel"
-msgstr ""
+msgstr "ميكروسوفت أكسل"
#. z9TKA
#: cui/uiconfig/ui/optfltrpage.ui:209
@@ -14562,7 +14572,7 @@ msgstr ""
#: cui/uiconfig/ui/optfltrpage.ui:251
msgctxt "optfltrpage|label3"
msgid "Microsoft PowerPoint"
-msgstr ""
+msgstr "ميكروسوفت باوربوينت"
#. yV3zh
#: cui/uiconfig/ui/optfltrpage.ui:266
@@ -14976,7 +14986,7 @@ msgstr ""
#: cui/uiconfig/ui/opthtmlpage.ui:407
msgctxt "opthtmlpage|label2"
msgid "Import"
-msgstr "استيراد"
+msgstr "استورد"
#. UajLE
#: cui/uiconfig/ui/opthtmlpage.ui:448
@@ -15060,7 +15070,7 @@ msgstr "خيارات"
#: cui/uiconfig/ui/optionsdialog.ui:54
msgctxt "optionsdialog|revert"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "يُتراجَع عن التعديلات غير المحفوظة في هذا اللسان."
#. 5UNGW
#: cui/uiconfig/ui/optionsdialog.ui:57
@@ -15072,13 +15082,13 @@ msgstr ""
#: cui/uiconfig/ui/optionsdialog.ui:74
msgctxt "optionsdialog|apply"
msgid "Save all modifications without closing dialog. Cannot be reverted with Reset."
-msgstr ""
+msgstr "احفظ كل التعديلات دون إغلاق الحوار. لا يمكن التراجع عنه بـ ’تصفير‘."
#. isfxZ
#: cui/uiconfig/ui/optionsdialog.ui:91
msgctxt "optionsdialog|ok"
msgid "Save all changes and close dialog."
-msgstr ""
+msgstr "احفظ كل التغييرات وأغلِق الحوار."
#. r2pWX
#: cui/uiconfig/ui/optionsdialog.ui:94
@@ -15090,13 +15100,13 @@ msgstr "يحفظ كل التغييرات ويغلق الحوار."
#: cui/uiconfig/ui/optionsdialog.ui:111
msgctxt "optionsdialog|cancel"
msgid "Discard all unsaved changes and close dialog."
-msgstr ""
+msgstr "يستبعد كل التغييرات غير المحفوظة ويغلق الحوار."
#. mVmUq
#: cui/uiconfig/ui/optionsdialog.ui:114
msgctxt "optionsdialog|extended_tip|cancel"
msgid "Closes dialog and discards all unsaved changes."
-msgstr ""
+msgstr "يغلق الحوار ويستبعد كل التغييرات غير المحفوظة."
#. CgiEq
#: cui/uiconfig/ui/optjsearchpage.ui:31
@@ -15498,7 +15508,7 @@ msgstr ""
#: cui/uiconfig/ui/optlanguagespage.ui:515
msgctxt "optlanguagespage|label7"
msgid "Formats"
-msgstr ""
+msgstr "الأنساق"
#. HASiD
#: cui/uiconfig/ui/optlanguagespage.ui:529
@@ -15510,7 +15520,7 @@ msgstr ""
#: cui/uiconfig/ui/optlingupage.ui:130
msgctxt "lingumodules"
msgid "Contains the installed language modules."
-msgstr ""
+msgstr "يحوي وحدات اللغة المثبّتة."
#. 8kxYC
#: cui/uiconfig/ui/optlingupage.ui:143
@@ -15522,19 +15532,19 @@ msgstr "_حرر..."
#: cui/uiconfig/ui/optlingupage.ui:151
msgctxt "optlingupage|lingumodulesedit-atkobject"
msgid "Edit Available language modules"
-msgstr "حرّر وحدات اللغات المتوفرة"
+msgstr "حرّر وحدات اللغة المتاحة"
#. peVgj
#: cui/uiconfig/ui/optlingupage.ui:152
msgctxt "lingumodulesedit"
msgid "To edit a language module, select it and click Edit."
-msgstr ""
+msgstr "لتحرير وحدة لغة، حددها وانقر ’حرّر‘."
#. SBvTc
#: cui/uiconfig/ui/optlingupage.ui:218
msgctxt "optlingupage|lingumodulesft"
msgid "_Available Language Modules"
-msgstr ""
+msgstr "وحدات اللغة الم_تاحة"
#. efvBg
#: cui/uiconfig/ui/optlingupage.ui:297
@@ -15984,7 +15994,7 @@ msgstr "اكتب المنفذ للخادوم الوسيط المعني."
#: cui/uiconfig/ui/optproxypage.ui:180
msgctxt "optproxypage|proxymode"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. 9BdbA
#: cui/uiconfig/ui/optproxypage.ui:181
@@ -16219,13 +16229,13 @@ msgstr "1.2"
#: cui/uiconfig/ui/optsavepage.ui:354
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended (compatibility mode)"
-msgstr "١٫٢ ممتدّ (وضع التوافق)"
+msgstr "١٫٢ موسَّعة (نمط التوافق)"
#. G826f
#: cui/uiconfig/ui/optsavepage.ui:355
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended"
-msgstr ""
+msgstr "1،2 موسَّعة"
#. vLmeZ
#: cui/uiconfig/ui/optsavepage.ui:356
@@ -16243,13 +16253,13 @@ msgstr ""
#: cui/uiconfig/ui/optsavepage.ui:361
msgctxt "odfversion"
msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible."
-msgstr ""
+msgstr "قد تتطلب بعض الشركات أو المنظمات أن تكون مستندات ODF بنسَق ODF 1,0\\1,1 أو ODF 1,2. يمكنك تحديد هذه الأنساق للحفظ في مربع القائمة. لا يمكن لهذه الأنساق القديمة حفظ كل الخواص الجديدة، لذا يُنصَح بالنسَق ODF 1,3 (الموسَّع) كلما أمكن."
#. cxPqV
#: cui/uiconfig/ui/optsavepage.ui:374
msgctxt "optsavepage|label5"
msgid "ODF format version:"
-msgstr "إصدارة هيئة ODF:"
+msgstr "إصدارةنسَق ODF:"
#. bF5dA
#: cui/uiconfig/ui/optsavepage.ui:388
@@ -16945,13 +16955,13 @@ msgstr ""
#: cui/uiconfig/ui/optviewpage.ui:48
msgctxt "optviewpage|label11"
msgid "_Positioning:"
-msgstr ""
+msgstr "التمو_ضُع:"
#. E6zhJ
#: cui/uiconfig/ui/optviewpage.ui:62
msgctxt "optviewpage|label12"
msgid "Middle _button:"
-msgstr ""
+msgstr "الز_ر الأوسط:"
#. 3rdJa
#: cui/uiconfig/ui/optviewpage.ui:78
@@ -16969,7 +16979,7 @@ msgstr "منتصف مربع الحوار"
#: cui/uiconfig/ui/optviewpage.ui:80
msgctxt "optviewpage|mousepos"
msgid "No automatic positioning"
-msgstr "بدون تعيين تلقائي للموضع"
+msgstr "دون تموضُع تلقائي"
#. pDN23
#: cui/uiconfig/ui/optviewpage.ui:84
@@ -17011,7 +17021,7 @@ msgstr "الفأرة"
#: cui/uiconfig/ui/optviewpage.ui:157
msgctxt "optviewpage|label13"
msgid "Menu icons:"
-msgstr ""
+msgstr "أيقونات القوائم:"
#. XKRM7
#: cui/uiconfig/ui/optviewpage.ui:173
@@ -17059,7 +17069,7 @@ msgstr "اعرض"
#: cui/uiconfig/ui/optviewpage.ui:221
msgctxt "optviewpage|label10"
msgid "Shortcuts:"
-msgstr ""
+msgstr "الاختصارات:"
#. EWdHF
#: cui/uiconfig/ui/optviewpage.ui:243
@@ -17175,185 +17185,161 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "تلقائي"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "جالاكسي"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "تباين عالٍ"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "أكسجين"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "كلاسيكي"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "صفر"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "نسيم"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "يحدد طراز الأيقونات في أشرطة الأدوات والحوارات."
#. SXzWW
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "_Theme:"
msgstr "ال_سمة:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "أضِف المزيد من سمات الأيقونات عبر ملحقة"
#. F7kTw
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Theme"
msgstr "سمة الأيقونات"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "يتطلب إعادة التشغيل"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "استخدم تسريع ال_عتاد"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "يدخل مباشرة إلى خصائص العتاد لمحوّل عَرض الرسوميات لتحسين عَرض الشاشة."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "استخدم ال_تنعيم"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
-msgstr ""
+msgstr "استخدم سكيا Skia لكل التصيير"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
-msgstr ""
+msgstr "افرض تصيير سكيا Skia البرمجي"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
-msgstr ""
+msgstr "يتطلب إعادة التشغيل. تنشيط هذا سيمنع استخدام مشغلات الرسوميات."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
-msgstr ""
+msgstr "سكيا Skia منشَّطة حاليًا."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
-msgstr ""
+msgstr "سكيا Skia معطلة حاليًا."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "مُخرجات الرسوميات"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "اعرض م_عاينة الخطوط"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "إزالة ت_عرج خط الشاشة"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "_من:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "أدخِل أصغر حجم خط تطبَّق عليه إزالة التعرج."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "قوائم الخطوط"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
-msgstr ""
+msgstr "شغّل فحوص الرسوميات"
#. 872fQ
#: cui/uiconfig/ui/pageformatpage.ui:41
msgctxt "pageformatpage|labelFormat"
msgid "_Format:"
-msgstr "الت_نسيق:"
+msgstr "النسَ_ق:"
#. WTZ5A
#: cui/uiconfig/ui/pageformatpage.ui:65
@@ -17365,7 +17351,7 @@ msgstr "ال_عرض:"
#: cui/uiconfig/ui/pageformatpage.ui:92
msgctxt "pageformatpage|labelHeight"
msgid "_Height:"
-msgstr "ال_طول:"
+msgstr "الارت_فاع:"
#. VjuAf
#: cui/uiconfig/ui/pageformatpage.ui:119
@@ -17374,219 +17360,219 @@ msgid "_Orientation:"
msgstr "الات_جاه:"
#. mtFWf
-#: cui/uiconfig/ui/pageformatpage.ui:131
+#: cui/uiconfig/ui/pageformatpage.ui:135
msgctxt "pageformatpage|radiobuttonPortrait"
msgid "_Portrait"
msgstr "طو_لي"
#. LGkU8
-#: cui/uiconfig/ui/pageformatpage.ui:150
+#: cui/uiconfig/ui/pageformatpage.ui:154
msgctxt "pageformatpage|radiobuttonLandscape"
msgid "L_andscape"
msgstr "_عرضي"
#. PTwDK
-#: cui/uiconfig/ui/pageformatpage.ui:172
+#: cui/uiconfig/ui/pageformatpage.ui:176
msgctxt "pageformatpage|labelTextFlow"
msgid "_Text direction:"
msgstr "اتجاه الن_ص:"
#. FmMdc
-#: cui/uiconfig/ui/pageformatpage.ui:228
+#: cui/uiconfig/ui/pageformatpage.ui:232
msgctxt "pageformatpage|labelPaperTray"
msgid "Paper _tray:"
msgstr "_صينية الورق:"
#. u8DFb
-#: cui/uiconfig/ui/pageformatpage.ui:260
+#: cui/uiconfig/ui/pageformatpage.ui:264
msgctxt "pageformatpage|labelPaperFormat"
msgid "Paper Format"
msgstr "تنسيق الورق"
#. 479hs
-#: cui/uiconfig/ui/pageformatpage.ui:305
+#: cui/uiconfig/ui/pageformatpage.ui:309
msgctxt "pageformatpage|labelLeftMargin"
msgid "Left:"
msgstr "يسار:"
#. EoGm2
-#: cui/uiconfig/ui/pageformatpage.ui:319
+#: cui/uiconfig/ui/pageformatpage.ui:323
msgctxt "pageformatpage|labelInner"
msgid "I_nner:"
msgstr "_داخلي:"
#. 7FFiR
-#: cui/uiconfig/ui/pageformatpage.ui:357
+#: cui/uiconfig/ui/pageformatpage.ui:361
msgctxt "pageformatpage|labelRightMargin"
msgid "Right:"
msgstr "اليمين:"
#. RfnGu
-#: cui/uiconfig/ui/pageformatpage.ui:371
+#: cui/uiconfig/ui/pageformatpage.ui:375
msgctxt "pageformatpage|labelOuter"
msgid "O_uter:"
msgstr "_خارجي:"
#. tGMLA
-#: cui/uiconfig/ui/pageformatpage.ui:404
+#: cui/uiconfig/ui/pageformatpage.ui:408
msgctxt "pageformatpage|labelTopMargin"
msgid "Top:"
msgstr "أعلى:"
#. eaqBS
-#: cui/uiconfig/ui/pageformatpage.ui:430
+#: cui/uiconfig/ui/pageformatpage.ui:434
msgctxt "pageformatpage|labelBottomMargin"
msgid "Bottom:"
msgstr "أسفل:"
#. TYx6B
-#: cui/uiconfig/ui/pageformatpage.ui:456
+#: cui/uiconfig/ui/pageformatpage.ui:460
msgctxt "pageformatpage|labelGutterMargin"
msgid "Gutter:"
msgstr "الأخدود:"
#. Tvwu6
-#: cui/uiconfig/ui/pageformatpage.ui:484
+#: cui/uiconfig/ui/pageformatpage.ui:488
msgctxt "pageformatpage|labelMargins"
msgid "Margins"
msgstr "الهوامش"
#. WcuCU
-#: cui/uiconfig/ui/pageformatpage.ui:517
+#: cui/uiconfig/ui/pageformatpage.ui:521
msgctxt "pageformatpage|labelPageLayout"
msgid "_Page layout:"
msgstr "تخطيط ال_صفحة:"
#. vnXWF
-#: cui/uiconfig/ui/pageformatpage.ui:531
+#: cui/uiconfig/ui/pageformatpage.ui:535
msgctxt "pageformatpage|labelPageNumbers"
msgid "Page numbers:"
-msgstr ""
+msgstr "أرقام الصفحات:"
#. tyvA3
-#: cui/uiconfig/ui/pageformatpage.ui:543
+#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
-msgstr ""
+msgstr "استخدِم تباعد أ_سطر الصفحة"
#. DtZQG
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:547
+#: cui/uiconfig/ui/pageformatpage.ui:551
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
msgstr ""
#. p2egb
-#: cui/uiconfig/ui/pageformatpage.ui:552
+#: cui/uiconfig/ui/pageformatpage.ui:556
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr ""
#. 46djR
-#: cui/uiconfig/ui/pageformatpage.ui:566
+#: cui/uiconfig/ui/pageformatpage.ui:570
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr "يمين و يسار"
#. xetCH
-#: cui/uiconfig/ui/pageformatpage.ui:567
+#: cui/uiconfig/ui/pageformatpage.ui:571
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr "منعكس"
#. 47EHF
-#: cui/uiconfig/ui/pageformatpage.ui:568
+#: cui/uiconfig/ui/pageformatpage.ui:572
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr "يمين فقط"
#. ALSy9
-#: cui/uiconfig/ui/pageformatpage.ui:569
+#: cui/uiconfig/ui/pageformatpage.ui:573
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr "يسار فقط"
#. Fhvzk
-#: cui/uiconfig/ui/pageformatpage.ui:591
+#: cui/uiconfig/ui/pageformatpage.ui:595
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "محاذاة الجدول:"
#. 79BH9
-#: cui/uiconfig/ui/pageformatpage.ui:603
+#: cui/uiconfig/ui/pageformatpage.ui:607
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "أ_فقي"
#. krxQZ
-#: cui/uiconfig/ui/pageformatpage.ui:617
+#: cui/uiconfig/ui/pageformatpage.ui:621
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "_رأسي"
#. FPLFK
-#: cui/uiconfig/ui/pageformatpage.ui:631
+#: cui/uiconfig/ui/pageformatpage.ui:635
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr "_لائم الكائن مع تنسيق الورقة"
#. bqcXW
-#: cui/uiconfig/ui/pageformatpage.ui:648
+#: cui/uiconfig/ui/pageformatpage.ui:651
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
-msgstr "ال_نمط المرجع:"
+msgstr "ال_طراز المرجع:"
#. FnoPF
-#: cui/uiconfig/ui/pageformatpage.ui:672
+#: cui/uiconfig/ui/pageformatpage.ui:675
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
msgstr "موضع الأخدود:"
#. LF4Ex
-#: cui/uiconfig/ui/pageformatpage.ui:687
+#: cui/uiconfig/ui/pageformatpage.ui:690
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Left"
msgstr "يسار"
#. DSBY5
-#: cui/uiconfig/ui/pageformatpage.ui:688
+#: cui/uiconfig/ui/pageformatpage.ui:691
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr "أعلى"
#. AosV5
-#: cui/uiconfig/ui/pageformatpage.ui:704
+#: cui/uiconfig/ui/pageformatpage.ui:701
msgctxt "pageformatpage|checkRtlGutter"
msgid "Gutter on right side of page"
msgstr "الأخدود إلى جانب الصفحة الأيمن"
#. cuazP
-#: cui/uiconfig/ui/pageformatpage.ui:718
+#: cui/uiconfig/ui/pageformatpage.ui:715
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
-msgstr ""
+msgstr "الخلفية تغطي الحواشي"
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:722
+#: cui/uiconfig/ui/pageformatpage.ui:719
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:727
+#: cui/uiconfig/ui/pageformatpage.ui:724
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:742
+#: cui/uiconfig/ui/pageformatpage.ui:754
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "إعدادات التخطيط"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:763
+#: cui/uiconfig/ui/pageformatpage.ui:775
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -17763,7 +17749,7 @@ msgstr "ال_سطر الأول:"
#: cui/uiconfig/ui/paraindentspacing.ui:153
msgctxt "paraindentspacing|checkCB_AUTO"
msgid "_Automatic"
-msgstr "_تلقائية"
+msgstr "_تلقائي"
#. NE9g8
#: cui/uiconfig/ui/paraindentspacing.ui:155
@@ -17781,7 +17767,7 @@ msgstr "ثابت"
#: cui/uiconfig/ui/paraindentspacing.ui:221
msgctxt "paraindentspacing|label1"
msgid "Indent"
-msgstr "الإزاحة"
+msgstr "إزاحة"
#. RMdgy
#: cui/uiconfig/ui/paraindentspacing.ui:258
@@ -17920,13 +17906,13 @@ msgstr "اليمي_ن/الأسفل"
#: cui/uiconfig/ui/paratabspage.ui:295
msgctxt "paratabspage|radiobuttonBTN_TABTYPE_CENTER"
msgid "C_entered"
-msgstr "توسي_ط"
+msgstr "موسَّ_ط"
#. SaPSF
#: cui/uiconfig/ui/paratabspage.ui:313
msgctxt "paratabspage|labelFT_TABTYPE_DECCHAR"
msgid "_Character"
-msgstr "الحر_ف"
+msgstr "المحر_ف"
#. ACYhN
#: cui/uiconfig/ui/paratabspage.ui:330
@@ -18214,13 +18200,13 @@ msgstr "المظهر المبدئي، لا تستخدم سمات"
#: cui/uiconfig/ui/personalization_tab.ui:45
msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
-msgstr ""
+msgstr "السِمة مسبقة التثبيت"
#. hWiJZ
#: cui/uiconfig/ui/personalization_tab.ui:181
msgctxt "personalization_tab|personas_label"
msgid "LibreOffice Themes"
-msgstr ""
+msgstr "سِمات ليبرأوفيس"
#. C5MHG
#: cui/uiconfig/ui/pickbulletpage.ui:37
@@ -18514,7 +18500,7 @@ msgstr ""
#: cui/uiconfig/ui/possizetabpage.ui:301
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
-msgstr "إب_قاء التناسب"
+msgstr "أب_قِ التناسب"
#. 9AxVT
#: cui/uiconfig/ui/possizetabpage.ui:309
@@ -18628,7 +18614,7 @@ msgstr ""
#: cui/uiconfig/ui/posterdialog.ui:178
msgctxt "posterdialog|label1"
msgid "Parameters"
-msgstr "المحددات"
+msgstr "المتغيرات الوسيطة"
#. DoLFC
#: cui/uiconfig/ui/posterdialog.ui:203
@@ -18644,29 +18630,30 @@ msgstr "شفرة QR والشفرة الشريطية"
#. CCQhf
#: cui/uiconfig/ui/qrcodegen.ui:115
+#, fuzzy
msgctxt "qrcodegen|edit_name"
msgid "www.libreoffice.org"
-msgstr ""
+msgstr "www.libreoffice.org"
#. DnXM6
#: cui/uiconfig/ui/qrcodegen.ui:118
msgctxt "qr text"
msgid "The text from which to generate the code."
-msgstr ""
+msgstr "النص الذي ستولَّد منه الشفرة."
#. 4FXDa
#. Text to be stored in the QR
#: cui/uiconfig/ui/qrcodegen.ui:132
msgctxt "qrcodegen|label_text"
msgid "URL/Text:"
-msgstr ""
+msgstr "الرابط/النص:"
#. FoKEY
#. Set Margin around QR
#: cui/uiconfig/ui/qrcodegen.ui:147
msgctxt "qrcodegen|label_margin"
msgid "Margin:"
-msgstr ""
+msgstr "الحافة:"
#. cBGCb
#. Select type
@@ -18679,80 +18666,80 @@ msgstr "النوع:"
#: cui/uiconfig/ui/qrcodegen.ui:179
msgctxt "qrcodegen|QrCode"
msgid "QR Code"
-msgstr ""
+msgstr "شفرة QR"
#. HGShQ
#: cui/uiconfig/ui/qrcodegen.ui:180
msgctxt "qrcodegen|BarCode"
msgid "Barcode"
-msgstr ""
+msgstr "شفرة شريطية"
#. C3VYY
#: cui/uiconfig/ui/qrcodegen.ui:184
msgctxt "type"
msgid "The type of code to generate."
-msgstr ""
+msgstr "نوع الشفرة التي تولَّد."
#. 8QtFq
#. Error Correction Level of QR code
#: cui/uiconfig/ui/qrcodegen.ui:205
msgctxt "qrcodegen|label_ecc"
msgid "Error correction:"
-msgstr ""
+msgstr "تصحيح الخطأ:"
#. SPWn3
#: cui/uiconfig/ui/qrcodegen.ui:237
msgctxt "edit margin"
msgid "The margin surrounding the code."
-msgstr ""
+msgstr "الحافة المحيطة بالشفرة."
#. vUJPT
#: cui/uiconfig/ui/qrcodegen.ui:254
msgctxt "qrcodegen|ErrorCorrection"
msgid "Low"
-msgstr ""
+msgstr "منخفض"
#. GeYR9
#: cui/uiconfig/ui/qrcodegen.ui:266
msgctxt "button_low"
msgid "7% of codewords can be restored."
-msgstr ""
+msgstr "يمكن استعادة 7% من كلمات الشفرة."
#. 2gaf5
#: cui/uiconfig/ui/qrcodegen.ui:277
msgctxt "qrcodegen|ErrorCorrection"
msgid "Medium"
-msgstr ""
+msgstr "متوسط"
#. 3A5XB
#: cui/uiconfig/ui/qrcodegen.ui:289
msgctxt "button_medium"
msgid "15% of codewords can be restored."
-msgstr ""
+msgstr "يمكن استعادة 15% من كلمات الشفرة."
#. GBf3R
#: cui/uiconfig/ui/qrcodegen.ui:300
msgctxt "qrcodegen|ErrorCorrection"
msgid "Quartile"
-msgstr ""
+msgstr "رُبعيّ"
#. x4g64
#: cui/uiconfig/ui/qrcodegen.ui:312
msgctxt "button_quartile"
msgid "25% of codewords can be restored."
-msgstr ""
+msgstr "يمكن استعادة 25% من كلمات الشفرة."
#. WS3ER
#: cui/uiconfig/ui/qrcodegen.ui:323
msgctxt "qrcodegen|ErrorCorrection"
msgid "High"
-msgstr ""
+msgstr "مرتفع"
#. A2TRN
#: cui/uiconfig/ui/qrcodegen.ui:335
msgctxt "button_high"
msgid "30% of codewords can be restored."
-msgstr ""
+msgstr "يمكن استعادة 30% من كلمات الشفرة."
#. VCCGD
#: cui/uiconfig/ui/qrcodegen.ui:356
@@ -18764,7 +18751,7 @@ msgstr "خيارات"
#: cui/uiconfig/ui/qrcodegen.ui:384
msgctxt "qr code dialog title"
msgid "Generate linear and matrix codes for any text or URL."
-msgstr ""
+msgstr "ولِّد شفرات خطية ومصفوفية لأي نص أو رابط."
#. 3HNDZ
#: cui/uiconfig/ui/querychangelineenddialog.ui:7
@@ -19160,7 +19147,7 @@ msgstr "وحدات الماكرو"
#: cui/uiconfig/ui/scriptorganizer.ui:266
msgctxt "scriptorganizer|extended_tip|ScriptOrganizerDialog"
msgid "Select a macro or script from My Macros, Application Macros, or an open document. To view the available macros or scripts, double-click an entry."
-msgstr ""
+msgstr "حدد ماكرو أو نصا برمجيا من ماكروهاتي أو ماكروهات التطبيق أو افتح مستنداً. لتشاهد الماكروهات أو النصوص البرمجية المتاحة، انقر المُدخَل نقراً مزدوجاً."
#. U3sDy
#: cui/uiconfig/ui/searchattrdialog.ui:22
@@ -19208,7 +19195,7 @@ msgstr "التخطيط الآسيوي"
#: cui/uiconfig/ui/searchformatdialog.ui:327
msgctxt "searchformatdialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
-msgstr "الإزاحة و التباعد"
+msgstr "الإزاحات والتباعد"
#. jSB7P
#: cui/uiconfig/ui/searchformatdialog.ui:375
@@ -19394,13 +19381,13 @@ msgstr ""
#: cui/uiconfig/ui/selectpathdialog.ui:148
msgctxt "selectpathdialog|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. UADPU
#: cui/uiconfig/ui/selectpathdialog.ui:196
msgctxt "cui/ui/selectpathdialog/paths"
msgid "Contains a list of the paths that have already been added. Mark the default path for new files."
-msgstr ""
+msgstr "يحوي قائمة بالمسارات التي أضيفت مسبقًا. أشّر المسار المبدئي للملفات الجديدة."
#. oADTt
#: cui/uiconfig/ui/selectpathdialog.ui:213
@@ -19904,7 +19891,7 @@ msgstr ""
#: cui/uiconfig/ui/smarttagoptionspage.ui:75
msgctxt "smarttagoptionspage|properties"
msgid "Properties..."
-msgstr "خصائص…"
+msgstr "الخصائص..."
#. fENAa
#: cui/uiconfig/ui/smarttagoptionspage.ui:83
@@ -19940,7 +19927,7 @@ msgstr ""
#: cui/uiconfig/ui/smoothdialog.ui:175
msgctxt "smoothdialog|label1"
msgid "Parameters"
-msgstr "المعاملات"
+msgstr "المتغيرات الوسيطة"
#. RHoUb
#: cui/uiconfig/ui/smoothdialog.ui:200
@@ -19982,7 +19969,7 @@ msgstr ""
#: cui/uiconfig/ui/solarizedialog.ui:196
msgctxt "solarizedialog|label1"
msgid "Parameters"
-msgstr "المعاملات"
+msgstr "المتغيرات الوسيطة"
#. Vec6B
#: cui/uiconfig/ui/solarizedialog.ui:221
@@ -20144,7 +20131,7 @@ msgstr ""
#: cui/uiconfig/ui/spellingdialog.ui:275
msgctxt "spellingdialog|notindictft"
msgid "_Not in Dictionary"
-msgstr ""
+msgstr "ليست في القاموس"
#. R7k8J
#: cui/uiconfig/ui/spellingdialog.ui:294
@@ -20414,7 +20401,7 @@ msgstr "الارت_فاع:"
#: cui/uiconfig/ui/swpossizepage.ui:154
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
-msgstr "_حافظ على التناسب"
+msgstr "أب_قِ التناسب"
#. vRbyX
#: cui/uiconfig/ui/swpossizepage.ui:162
@@ -20576,7 +20563,7 @@ msgstr ""
#: cui/uiconfig/ui/swpossizepage.ui:568
msgctxt "swpossizepage|followtextflow"
msgid "Keep inside te_xt boundaries"
-msgstr ""
+msgstr "حافظ على حدود ال_نص الداخلية"
#. zfpt5
#: cui/uiconfig/ui/swpossizepage.ui:577
@@ -20654,7 +20641,7 @@ msgstr ""
#: cui/uiconfig/ui/textanimtabpage.ui:95
msgctxt "textanimtabpage|FT_DIRECTION"
msgid "Direction:"
-msgstr "الات_جاه:"
+msgstr "الاتجاه:"
#. XD5iJ
#: cui/uiconfig/ui/textanimtabpage.ui:115
@@ -21014,13 +21001,13 @@ msgstr ""
#: cui/uiconfig/ui/textcolumnstabpage.ui:37
msgctxt "textcolumnstabpage|labelColNumber"
msgid "_Number of columns:"
-msgstr ""
+msgstr "_عدد الأعمدة:"
#. PpfsL
#: cui/uiconfig/ui/textcolumnstabpage.ui:51
msgctxt "textcolumnstabpage|labelColSpacing"
msgid "_Spacing:"
-msgstr ""
+msgstr "ال_تباعد:"
#. cpMdh
#: cui/uiconfig/ui/textcolumnstabpage.ui:71
@@ -21034,10 +21021,10 @@ msgctxt "textcolumnstabpage|extended_tip|MTR_FLD_COL_SPACING"
msgid "Enter the amount of space to leave between the columns."
msgstr "أدخل مقدار الفراغ لتركه بين الأعمدة."
-#. 4u4bL
+#. 7Fgep
#: cui/uiconfig/ui/textcolumnstabpage.ui:108
msgctxt "textcolumnstabpage|extended_tip|TextColumnsPage"
-msgid "Sets the columns layout properties for text in the selected drawing or text object."
+msgid "Sets the columns’ layout properties for text in the selected drawing or text object."
msgstr ""
#. 3Huae
@@ -21122,7 +21109,7 @@ msgstr "لا تفصل الكلمات ذات الحروف ال_كبيرة"
#: cui/uiconfig/ui/textflowpage.ui:211
msgctxt "textflowpage|LabelHyphenation"
msgid "Hyphenation"
-msgstr "فصل المقاطع"
+msgstr "وصل الكلمات"
#. ZLB8K
#: cui/uiconfig/ui/textflowpage.ui:240
@@ -21512,7 +21499,7 @@ msgstr "هل كنت تعلم؟"
#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
-msgstr ""
+msgstr "ارتباط"
#. WGqn5
#: cui/uiconfig/ui/toolbarmodedialog.ui:13
@@ -21524,7 +21511,7 @@ msgstr "حدد واجهة المستخدم التي تفضلها"
#: cui/uiconfig/ui/toolbarmodedialog.ui:33
msgctxt "ToolbarmodeDialog|applyall"
msgid "A_pply to All"
-msgstr ""
+msgstr "طبّق على ال_كل"
#. kPZub
#: cui/uiconfig/ui/toolbarmodedialog.ui:49
@@ -21536,55 +21523,55 @@ msgstr ""
#: cui/uiconfig/ui/toolbarmodedialog.ui:111
msgctxt "ToolbarmodeDialog|radiobutton1"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "شريط الأدوات القياسي"
#. Vsppg
#: cui/uiconfig/ui/toolbarmodedialog.ui:128
msgctxt "ToolbarmodeDialog|radiobutton2"
msgid "Tabbed"
-msgstr ""
+msgstr "ألسنة"
#. DZLbS
#: cui/uiconfig/ui/toolbarmodedialog.ui:156
msgctxt "ToolbarmodeDialog|radiobutton3"
msgid "Single Toolbar"
-msgstr ""
+msgstr "شريط أدوات مفرد"
#. KDJfx
#: cui/uiconfig/ui/toolbarmodedialog.ui:173
msgctxt "ToolbarmodeDialog|radiobutton4"
msgid "Sidebar"
-msgstr ""
+msgstr "الشريط الجانبي"
#. YvSd9
#: cui/uiconfig/ui/toolbarmodedialog.ui:190
msgctxt "ToolbarmodeDialog|radiobutton5"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "ألسنة متضامّ"
#. AipCL
#: cui/uiconfig/ui/toolbarmodedialog.ui:207
msgctxt "ToolbarmodeDialog|radiobutton6"
msgid "Groupedbar"
-msgstr ""
+msgstr "شريط‌مجمّع"
#. qwCAA
#: cui/uiconfig/ui/toolbarmodedialog.ui:224
msgctxt "ToolbarmodeDialog|radiobutton7"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "شريط‌مجمّع متراصّ"
#. iSVgL
#: cui/uiconfig/ui/toolbarmodedialog.ui:241
msgctxt "ToolbarmodeDialog|radiobutton8"
msgid "Contextual Single"
-msgstr ""
+msgstr "سياقيّ منفرد"
#. TrcWq
#: cui/uiconfig/ui/toolbarmodedialog.ui:258
msgctxt "ToolbarmodeDialog|radiobutton9"
msgid "Contextual Groups"
-msgstr ""
+msgstr "مجموعات سياقية"
#. kGdXR
#: cui/uiconfig/ui/toolbarmodedialog.ui:279
@@ -21602,13 +21589,13 @@ msgstr "معاينة"
#: cui/uiconfig/ui/transparencytabpage.ui:73
msgctxt "transparencytabpage|RBT_TRANS_OFF"
msgid "_No transparency"
-msgstr "_بدون شفافية"
+msgstr "_بِلا شفافية"
#. vysNZ
#: cui/uiconfig/ui/transparencytabpage.ui:82
msgctxt "transparencytabpage|extended_tip|RBT_TRANS_OFF"
msgid "Turns off color transparency."
-msgstr ""
+msgstr "يعطّل شفافية اللون."
#. DEU8f
#: cui/uiconfig/ui/transparencytabpage.ui:93
@@ -22103,37 +22090,37 @@ msgid "In columns view layout you see pages in a given number of columns side by
msgstr ""
#. opsyv
-#: cui/uiconfig/ui/zoomdialog.ui:367
+#: cui/uiconfig/ui/zoomdialog.ui:366
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr "الأعمدة"
#. psRyA
-#: cui/uiconfig/ui/zoomdialog.ui:368
+#: cui/uiconfig/ui/zoomdialog.ui:367
msgctxt "zoomdialog|extended_tip|columnssb"
msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
msgstr ""
#. rhLet
-#: cui/uiconfig/ui/zoomdialog.ui:387
+#: cui/uiconfig/ui/zoomdialog.ui:386
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr "وضع الكتاب"
#. egdNS
-#: cui/uiconfig/ui/zoomdialog.ui:400
+#: cui/uiconfig/ui/zoomdialog.ui:398
msgctxt "zoomdialog|extended_tip|bookmode"
msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number."
msgstr ""
#. pdZqi
-#: cui/uiconfig/ui/zoomdialog.ui:416
+#: cui/uiconfig/ui/zoomdialog.ui:414
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "شاهِد المخطط"
#. DWWgJ
-#: cui/uiconfig/ui/zoomdialog.ui:448
+#: cui/uiconfig/ui/zoomdialog.ui:446
msgctxt "zoomdialog|extended_tip|ZoomDialog"
msgid "Reduces or enlarges the screen display."
msgstr ""
diff --git a/source/ar/dbaccess/messages.po b/source/ar/dbaccess/messages.po
index f393efd5860..3ea548928ff 100644
--- a/source/ar/dbaccess/messages.po
+++ b/source/ar/dbaccess/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524566341.000000\n"
#. BiN6g
@@ -245,7 +245,7 @@ msgstr "نداء 'absolute(0)' غير مسموح."
#: dbaccess/inc/strings.hrc:49
msgctxt "RID_STR_NO_RELATIVE"
msgid "Relative positioning is not allowed in this state."
-msgstr "لا يُسمح بالتموضع النسبي في هذه الحالة."
+msgstr "التموضع النسبي غير متاح في هذه الحالة."
#. LgS5s
#: dbaccess/inc/strings.hrc:50
@@ -505,7 +505,7 @@ msgstr "لا يمكنك إعطاء نفس الاسم لجدول واستعلام
#: dbaccess/inc/strings.hrc:91
msgctxt "STR_BASENAME_TABLE"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. Qw69D
#: dbaccess/inc/strings.hrc:92
@@ -1142,7 +1142,7 @@ msgstr "اسم الاست~علام"
#: dbaccess/inc/strings.hrc:206
msgctxt "STR_TITLE_RENAME"
msgid "Rename to"
-msgstr "غيّر الاسم إلى"
+msgstr "غيّر إلى"
#. GQDBD
#: dbaccess/inc/strings.hrc:207
@@ -1903,11 +1903,11 @@ msgctxt "STR_WRITER_PATH_OR_FILE"
msgid "Path to the Writer document"
msgstr "مسار مستند «رايتر»"
-#. zQxCp
+#. JScWd
#: dbaccess/inc/strings.hrc:335
msgctxt "STR_MYSQL_DATABASE_NAME"
-msgid "Name of the MySQL database"
-msgstr "اسم قاعدة بيانات MySQL"
+msgid "Name of the MySQL/MariaDB database"
+msgstr ""
#. uhRMQ
#: dbaccess/inc/strings.hrc:336
@@ -2093,11 +2093,11 @@ msgctxt "STR_PAGETITLE_ORACLE"
msgid "Set up Oracle database connection"
msgstr "أعدّ اتّصال قاعدة بيانات Oracle"
-#. KbAqW
+#. rdZFv
#: dbaccess/inc/strings.hrc:368
msgctxt "STR_PAGETITLE_MYSQL"
-msgid "Set up MySQL connection"
-msgstr "أعدّ اتّصال MySQL"
+msgid "Set up MySQL/MariaDB connection"
+msgstr ""
#. uJuNs
#: dbaccess/inc/strings.hrc:369
@@ -2117,11 +2117,11 @@ msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
msgid "Set up user authentication"
msgstr "أعدّ استيثاق المستخدم"
-#. YgsyA
+#. twW6d
#: dbaccess/inc/strings.hrc:372
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
-msgid "Set up MySQL server data"
-msgstr "أعدّ بيانات خادوم MySQL"
+msgid "Set up MySQL/MariaDB server data"
+msgstr ""
#. 6Fy7C
#: dbaccess/inc/strings.hrc:373
@@ -2135,27 +2135,25 @@ msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
msgstr "قاعدة بيانات جديدة"
-#. DoGLb
+#. f5EbK
#: dbaccess/inc/strings.hrc:375
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "أعدّ اتّصالا بقاعدة بيانات MySQL باستخدام JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. B5kEC
+#. tqpeM
#: dbaccess/inc/strings.hrc:376
msgctxt "STR_MYSQLJDBC_HELPTEXT"
msgid ""
-"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-"فضلًا أدخل المعلومات المطلوبة للاتّصال بقاعدة بيانات MySQL باستخدام JDBC. لاحظ أنّ صنف مشغّل JDBC يجب أن يكون مثبّتًا على النّظام ومسجّلًا مع %PRODUCTNAME.\n"
-"فضلًا راسل مدير نظامك إن لم تكن متأكّدًا من الإعدادات الآتية."
-#. uGTyY
+#. Lrd3G
#: dbaccess/inc/strings.hrc:377
msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
-msgid "MySQL JDBC d~river class:"
-msgstr "صنف مش~غل MySQL JDBC:"
+msgid "MySQL/MariaDB JDBC d~river class:"
+msgstr ""
#. cBiSe
#: dbaccess/inc/strings.hrc:378
@@ -2298,7 +2296,7 @@ msgid ""
"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
"%PRODUCTNAME will open this file in read-only mode."
msgstr ""
-"انقر ”تصفّح...“ لاختيار جدول %PRODUCTNAME مُمتد أو كتاب عمل ميكروسوفت إكسل.\n"
+"انقر ”تصفّح...“ لاختيار جدول %PRODUCTNAME مُمتد أو كتاب عمل ميكروسوفت أكسل.\n"
"سيفتح %PRODUCTNAME هذا الملف في وضع القراءة فقط."
#. fxmJG
@@ -2425,7 +2423,7 @@ msgstr "تفاصيل"
#: dbaccess/inc/strings.hrc:423
msgctxt "STR_QUERY_USERADMIN_DELETE_USER"
msgid "Do you really want to delete the user?"
-msgstr "أمتأكّد من أن تريد حذف المستخدم؟"
+msgstr "أتريد حقًا حذف المستخدم؟"
#. yeKZF
#: dbaccess/inc/strings.hrc:424
@@ -2585,7 +2583,7 @@ msgstr ""
#: dbaccess/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
msgid "Title"
-msgstr ""
+msgstr "العنوان"
#. zo57j
#: dbaccess/inc/templwin.hrc:43
@@ -2789,7 +2787,7 @@ msgstr "ا_سم الملفّ:"
#: dbaccess/uiconfig/ui/colwidthdialog.ui:15
msgctxt "colwidthdialog|ColWidthDialog"
msgid "Column Width"
-msgstr "عرض العمود"
+msgstr "عُرض العمود"
#. AiEUA
#: dbaccess/uiconfig/ui/colwidthdialog.ui:97
@@ -2801,19 +2799,19 @@ msgstr "ال_عرض:"
#: dbaccess/uiconfig/ui/colwidthdialog.ui:118
msgctxt "colwidthdialog|extended_tip|value"
msgid "Enter the column width that you want to use."
-msgstr ""
+msgstr "أدخِل عُرض العمود الذي تريد استخدامه."
#. LtAmr
#: dbaccess/uiconfig/ui/colwidthdialog.ui:129
msgctxt "colwidthdialog|automatic"
msgid "_Automatic"
-msgstr "آ_ليّ"
+msgstr "_تلقائي"
#. HWoLr
#: dbaccess/uiconfig/ui/colwidthdialog.ui:137
msgctxt "colwidthdialog|extended_tip|automatic"
msgid "Automatically adjusts the column width based on the current font."
-msgstr ""
+msgstr "يضبّط تلقائيًا عُرض العمود استناداً إلى الخط الحالي."
#. enAfe
#: dbaccess/uiconfig/ui/colwidthdialog.ui:168
@@ -2873,7 +2871,7 @@ msgstr "صنف م_شغّل JDBC:"
#: dbaccess/uiconfig/ui/connectionpage.ui:252
msgctxt "connectionpage|driverButton"
msgid "Test Class"
-msgstr "اختبر الصّنف"
+msgstr "اختبر الصنف"
#. uzAzE
#: dbaccess/uiconfig/ui/connectionpage.ui:269
@@ -3060,11 +3058,11 @@ msgctxt "dbwizmysqlintropage|jdbc"
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr "اتصال باستخدام JDBC (اتصال قاعدة بيانات جافا)"
-#. AW2n6
+#. 3haAx
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:93
msgctxt "dbwizmysqlintropage|directly"
-msgid "Connect directly"
-msgstr "اتّصل مباشرة"
+msgid "Connect directly (using MariaDB C connector)"
+msgstr ""
#. C9PFE
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:112
@@ -3072,23 +3070,23 @@ msgctxt "dbwizmysqlintropage|label1"
msgid "How do you want to connect to your MySQL database?"
msgstr "كيف تريد الاتّصال بقاعدة بيانات MySQL؟"
-#. pdEL5
+#. C9PGh
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:128
msgctxt "dbwizmysqlintropage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "أعدّ اتّصالًا بقاعدة بيانات MySQL"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
-#. E8ACc
+#. 3cSEi
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:35
msgctxt "dbwizmysqlnativepage|helptext"
-msgid "Please enter the required information to connect to a MySQL database."
-msgstr "فضلًا أدخل المعلومات الضّروريّة للاتّصال بقاعدة بيانات MySQL."
+msgid "Please enter the required information to connect to a MySQL/MariaDB database."
+msgstr ""
-#. 2HCAG
+#. 4uetU
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:70
msgctxt "dbwizmysqlnativepage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "أعدّ قاعدة بيانات MySQL"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
#. AEty7
#: dbaccess/uiconfig/ui/dbwizspreadsheetpage.ui:55
@@ -3208,7 +3206,7 @@ msgstr ""
#: dbaccess/uiconfig/ui/fielddescpage.ui:115
msgctxt "fielddescpage|STR_DEFAULT_VALUE"
msgid "_Default value"
-msgstr ""
+msgstr "ال_قيمة المبدئيّة"
#. niTFN
#: dbaccess/uiconfig/ui/fielddescpage.ui:141
@@ -3251,13 +3249,13 @@ msgstr ""
#: dbaccess/uiconfig/ui/fielddescpage.ui:325
msgctxt "fielddescpage|STR_FIELD_REQUIRED"
msgid "_Default value"
-msgstr ""
+msgstr "ال_قيمة المبدئيّة"
#. XYtyx
#: dbaccess/uiconfig/ui/fielddescpage.ui:350
msgctxt "fielddescpage|STR_NUMERIC_TYPE"
msgid "_Type"
-msgstr ""
+msgstr "ال_نوع"
#. Uym6E
#: dbaccess/uiconfig/ui/fielddescpage.ui:375
@@ -3281,7 +3279,7 @@ msgstr "نسق الحقل"
#: dbaccess/uiconfig/ui/fielddialog.ui:145
msgctxt "fielddialog|format"
msgid "Format"
-msgstr "النّسق"
+msgstr "التنسيق"
#. MvFHK
#: dbaccess/uiconfig/ui/fielddialog.ui:192
@@ -3499,7 +3497,7 @@ msgstr "صنف مش_غّل MySQL JDBC:"
#: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:119
msgctxt "generalspecialjdbcdetailspage|testDriverClassButton"
msgid "Test Class"
-msgstr "اختبر الصّنف"
+msgstr "اختبر الصنف"
#. DNTGo
#: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:170
@@ -3965,7 +3963,7 @@ msgstr "_خيارات ODBC:"
#: dbaccess/uiconfig/ui/odbcpage.ui:132
msgctxt "odbcpage|useCatalogCheckbutton"
msgid "Use catalog for file-based databases"
-msgstr "استخدم كاتالوجًا لقواعد البيانات التي في ملفات."
+msgstr "استخدم مسرداً لقواعد البيانات التي في ملفات."
#. GMUZg
#: dbaccess/uiconfig/ui/odbcpage.ui:151
@@ -4049,7 +4047,7 @@ msgstr "المرشِّح القياسي"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:95
msgctxt "queryfilterdialog|label2"
msgid "Operator"
-msgstr "العامل"
+msgstr "المُعامل"
#. epkLc
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:107
@@ -4211,13 +4209,13 @@ msgstr "وَ"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:317
msgctxt "queryfilterdialog|op2"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. msKEj
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:321
msgctxt "queryfilterdialog|extended_tip|op2"
msgid "For the following arguments, you can choose between the logical operators AND / OR."
-msgstr ""
+msgstr "للمتغيرات الوسيطة التالية، يمكنك الاختيار بين المُعاملات المنطقية وَ \\ أو."
#. EaXyP
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:336
@@ -4229,25 +4227,25 @@ msgstr "وَ"
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:337
msgctxt "queryfilterdialog|op3"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. kdWnt
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:341
msgctxt "queryfilterdialog|extended_tip|op3"
msgid "For the following arguments, you can choose between the logical operators AND / OR."
-msgstr ""
+msgstr "للمتغيرات الوسيطة التالية، يمكنك الاختيار بين المُعاملات المنطقية وَ \\ أو."
#. SESZq
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:359
msgctxt "queryfilterdialog|label1"
msgid "Criteria"
-msgstr "المعيار"
+msgstr "المعايير"
#. S22Fy
#: dbaccess/uiconfig/ui/queryfilterdialog.ui:384
msgctxt "queryfilterdialog|extended_tip|QueryFilterDialog"
msgid "Allows you to set the filtering options."
-msgstr ""
+msgstr "يتيح لك إعداد خيارات الترشيح."
#. jFD4L
#: dbaccess/uiconfig/ui/queryfuncmenu.ui:12
@@ -4443,31 +4441,31 @@ msgstr ""
#: dbaccess/uiconfig/ui/rowheightdialog.ui:15
msgctxt "rowheightdialog|RowHeightDialog"
msgid "Row Height"
-msgstr "ارتفاع الصفّ"
+msgstr "ارتفاع الصف"
#. 8pFfi
#: dbaccess/uiconfig/ui/rowheightdialog.ui:97
msgctxt "rowheightdialog|label1"
msgid "_Height:"
-msgstr "الا_رتفاع:"
+msgstr "الارت_فاع:"
#. cZCeF
#: dbaccess/uiconfig/ui/rowheightdialog.ui:118
msgctxt "rowheightdialog|extended_tip|value"
msgid "Enter the row height that you want to use."
-msgstr ""
+msgstr "أدخِل ارتفاع الصف الذي تريد استخدامه."
#. 4QFsD
#: dbaccess/uiconfig/ui/rowheightdialog.ui:129
msgctxt "rowheightdialog|automatic"
msgid "_Automatic"
-msgstr "آ_ليّ"
+msgstr "_تلقائي"
#. HKRpK
#: dbaccess/uiconfig/ui/rowheightdialog.ui:137
msgctxt "rowheightdialog|extended_tip|automatic"
msgid "Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents."
-msgstr ""
+msgstr "يضبّط ارتفاع الصف إلى الحجم استناداً إلى القالب الافتراضي. قد يظهر المحتوى الحالي مقصوصًا عموديًا. لن يطول الارتفاع أكثر تلقائياً عندما تُدخِل محتويات أكبر."
#. qEa9T
#: dbaccess/uiconfig/ui/rowheightdialog.ui:168
@@ -4533,19 +4531,19 @@ msgstr "ترتيب الفرز"
#: dbaccess/uiconfig/ui/sortdialog.ui:96
msgctxt "sortdialog|label2"
msgid "Operator"
-msgstr "العامل"
+msgstr "المُعامل"
#. UcmpV
#: dbaccess/uiconfig/ui/sortdialog.ui:108
msgctxt "sortdialog|label3"
msgid "and then"
-msgstr ""
+msgstr "ومن ثمّ"
#. u8kT2
#: dbaccess/uiconfig/ui/sortdialog.ui:121
msgctxt "sortdialog|label4"
msgid "and then"
-msgstr ""
+msgstr "ومن ثمّ"
#. oK7UF
#: dbaccess/uiconfig/ui/sortdialog.ui:134
@@ -4605,19 +4603,19 @@ msgstr "ترتيب الفرز"
#: dbaccess/uiconfig/ui/sortdialog.ui:266
msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Specifies the sort criteria for the data display."
-msgstr ""
+msgstr "يحدد معايير الترتيب لعَرض البيانات."
-#. CsLXB
+#. nDP3A
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
msgctxt "specialjdbcconnectionpage|header"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "أعدّ اتّصالا بقاعدة بيانات MySQL باستخدام JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. oxw5Q
+#. EVDCG
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:39
msgctxt "specialjdbcconnectionpage|helpLabel"
-msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
-msgstr "فضلًا أدخل المعلومات المطلوبة للاتّصال بقاعدة بيانات MySQL باستخدام JDBC. لاحظ أنّ صنف مشغّل JDBC يجب أن يكون مثبّتًا على النّظام ومسجّلًا مع %PRODUCTNAME. فضلًا راسل مدير نظامك إن لم تكن متأكّدًا من الإعدادات الآتية. "
+msgid "Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
+msgstr ""
#. GchzZ
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:64
@@ -4643,11 +4641,11 @@ msgctxt "specialjdbcconnectionpage|portNumDefLabel"
msgid "Default: 3306"
msgstr "المبدئيّ: 3306"
-#. dhiYx
+#. o9YhU
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:188
msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
-msgid "MySQL JDBC d_river class:"
-msgstr "صنف مش_غّل MySQL JDBC:"
+msgid "MySQL/MariaDB JDBC d_river class:"
+msgstr ""
#. 8oG6P
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:212
@@ -4797,7 +4795,7 @@ msgstr "تجاهل معلومات حقل العملة"
#: 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 "فقط لاتصالات قواعد بيانات اوراكل JDBC. عندما يكون مفعَّلاً فإنّه يحدد أنْ لا عمود يُعامَل كحقل عُملة. يُستبعَد نوع الحقل الذي يُرجعه مشغّل قاعدة البيانات."
#. 2tRzG
#: dbaccess/uiconfig/ui/specialsettingspage.ui:252
@@ -5049,7 +5047,7 @@ msgstr "حدّد نوع الملفّات الّذي تريد النّفاذ إل
#: dbaccess/uiconfig/ui/textpage.ui:145
msgctxt "textpage|containsheaders"
msgid "_Text contains headers"
-msgstr "_نص يحتوي ترويسات"
+msgstr "_نص يحتوي رؤوس"
#. PGqYA
#: dbaccess/uiconfig/ui/textpage.ui:164
@@ -5241,4 +5239,4 @@ msgstr "طقم الم_حارف:"
#: dbaccess/uiconfig/ui/userdetailspage.ui:203
msgctxt "userdetailspage|charsetheader"
msgid "Data Conversion"
-msgstr ""
+msgstr "تحويل البيانات"
diff --git a/source/ar/desktop/messages.po b/source/ar/desktop/messages.po
index 7e6895a8011..d2941917dfd 100644
--- a/source/ar/desktop/messages.po
+++ b/source/ar/desktop/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-07 18:38+0000\n"
+"PO-Revision-Date: 2022-02-28 13:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/ar/>\n"
"Language: ar\n"
@@ -260,7 +260,7 @@ msgstr "خطأ: حالة هذا الامتداد غير معروفة"
#: desktop/inc/strings.hrc:72
msgctxt "RID_STR_CLOSE_BTN"
msgid "Close"
-msgstr "إغلاق"
+msgstr "أغلق"
#. T9Gqg
#: desktop/inc/strings.hrc:73
diff --git a/source/ar/dictionaries/ckb.po b/source/ar/dictionaries/ckb.po
index c147e6db20f..fdbee562a2a 100644
--- a/source/ar/dictionaries/ckb.po
+++ b/source/ar/dictionaries/ckb.po
@@ -4,14 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-02-18 12:38+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-03-03 21:42+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariesckb/ar/>\n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"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"
#. UGHNx
#: description.xml
@@ -20,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Central Kurdish (Sorani) spelling dictionary"
-msgstr ""
+msgstr "قاموس إملاء الكردية المركزية (سوراني)"
diff --git a/source/ar/dictionaries/en/dialog.po b/source/ar/dictionaries/en/dialog.po
index caf89f4fd7d..65e41c4fbf5 100644
--- a/source/ar/dictionaries/en/dialog.po
+++ b/source/ar/dictionaries/en/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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2021-01-28 07:37+0000\n"
+"PO-Revision-Date: 2022-03-03 21:42+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariesendialog/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: Weblate 4.4\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1484862067.000000\n"
#. fyB4s
@@ -131,7 +131,7 @@ msgctxt ""
"hlp_mdash\n"
"property.text"
msgid "Force unspaced em dash instead of spaced en dash."
-msgstr "إجبار شرطة كبيرة(—) بدون مسافة بدلًا من شرطة متوسطة (–) بمسافة."
+msgstr "إنفاذ شرطة كبيرة(—) بِلا مسافة بدلًا من شرطة متوسطة (–) بمسافة."
#. WCsJy
#: en_en_US.properties
@@ -149,7 +149,7 @@ msgctxt ""
"hlp_ndash\n"
"property.text"
msgid "Force spaced en dash instead of unspaced em dash."
-msgstr "إجبار شرطة متوسطة (–) بمسافة بدلًا من شرطة كبيرة (—) بدون مسافة."
+msgstr "إنفاذ شرطة متوسطة (–) بمسافة بدلًا من شرطة كبيرة (—) بِلا مسافة."
#. zGBHG
#: en_en_US.properties
@@ -257,7 +257,7 @@ msgctxt ""
"hlp_apostrophe\n"
"property.text"
msgid "Change typewriter apostrophe, single quotation marks and correct double primes."
-msgstr "تغيير علامات تنصيص الآلة الكاتبة المفردة (') و علامة الدقيقة (′) الصحيحة."
+msgstr "غيّر علامات الفاصلة العلوية في آلة الطباعة وعلامات التنصيص المنفردة وصحّح علامة التشديد المزدوجة."
#. 3rdex
#: en_en_US.properties
diff --git a/source/ar/dictionaries/pt_BR.po b/source/ar/dictionaries/pt_BR.po
index 7b8dd86d867..d3227fd2181 100644
--- a/source/ar/dictionaries/pt_BR.po
+++ b/source/ar/dictionaries/pt_BR.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-11-16 12:08+0100\n"
-"PO-Revision-Date: 2021-02-22 16:21+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariespt_br/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: 1369347355.000000\n"
#. svvMk
@@ -23,4 +23,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Spelling, thesaurus, hyphenation and grammar checking tools for Brazilian Portuguese"
-msgstr ""
+msgstr "أدوات التدقيق الإملائي والمترادفات والواصلة والنحو للبرتغالية البرازيلية"
diff --git a/source/ar/dictionaries/pt_BR/dialog.po b/source/ar/dictionaries/pt_BR/dialog.po
index 41e7f5f9c96..513c9a40952 100644
--- a/source/ar/dictionaries/pt_BR/dialog.po
+++ b/source/ar/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-10-31 20:36+0000\n"
+"PO-Revision-Date: 2022-03-03 21:42+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariespt_brdialog/ar/>\n"
"Language: ar\n"
@@ -106,7 +106,7 @@ msgctxt ""
"hlp_pair\n"
"property.text"
msgid "Check missing or extra parentheses and quotation marks."
-msgstr "تفحّص فقدان أو زيادة الأقواس وعلامات الإقتباس."
+msgstr "تأكد من فقدان أو زيادة الأقواس و علامات التنصيص."
#. DWaBt
#: pt_BR_en_US.properties
@@ -151,7 +151,7 @@ msgctxt ""
"hlp_mdash\n"
"property.text"
msgid "Force unspaced em dash instead of spaced en dash."
-msgstr "إنفاذ الخط الفاصل الطويل عديم الفراغ بدلا من الخط الفاصل القصير ذي الفراغ."
+msgstr "إنفاذ شرطة كبيرة(—) بِلا مسافة بدلًا من شرطة متوسطة (–) بمسافة."
#. QUZwx
#: pt_BR_en_US.properties
@@ -169,7 +169,7 @@ msgctxt ""
"hlp_ndash\n"
"property.text"
msgid "Force spaced en dash instead of unspaced em dash."
-msgstr "إنفاذ الخط الفاصل القصير ذي الفراغ بدلا من الخط الفاصل الطويل عديم الفراغ."
+msgstr "إنفاذ شرطة متوسطة (–) بمسافة بدلًا من شرطة كبيرة (—) بِلا مسافة."
#. tyEkH
#: pt_BR_en_US.properties
@@ -187,7 +187,7 @@ msgctxt ""
"hlp_quotation\n"
"property.text"
msgid "Check double quotation marks: \"x\" → “x”"
-msgstr "تفحّص علامات الإقتباس المزدوجة: \"س\" ← ”س“"
+msgstr "تفحّص علامات التنصيص المزدوجة: \"س\" ← ”س“"
#. bC8RD
#: pt_BR_en_US.properties
@@ -196,7 +196,7 @@ msgctxt ""
"quotation\n"
"property.text"
msgid "Quotation marks"
-msgstr "علامات الإقتباس"
+msgstr "علامات التنصيص"
#. CARTv
#: pt_BR_en_US.properties
@@ -277,7 +277,7 @@ msgctxt ""
"hlp_apostrophe\n"
"property.text"
msgid "Change typewriter apostrophe, single quotation marks and correct double primes."
-msgstr "غيّر علامات الفاصلة العلوية والإقتباس المنفرد في آلة الطباعة وصحّح علامة التشديد المزدوجة."
+msgstr "غيّر علامات الفاصلة العلوية في آلة الطباعة وعلامات التنصيص المنفردة وصحّح علامة التشديد المزدوجة."
#. Daynz
#: pt_BR_en_US.properties
diff --git a/source/ar/dictionaries/ru_RU/dialog.po b/source/ar/dictionaries/ru_RU/dialog.po
index f67a7ef64e3..eac8c68866f 100644
--- a/source/ar/dictionaries/ru_RU/dialog.po
+++ b/source/ar/dictionaries/ru_RU/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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2021-10-31 20:36+0000\n"
+"PO-Revision-Date: 2022-02-24 15:40+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariesru_rudialog/ar/>\n"
"Language: ar\n"
@@ -140,4 +140,4 @@ msgctxt ""
"quotation\n"
"property.text"
msgid "Quotation"
-msgstr "اقتباس"
+msgstr "تنصيص"
diff --git a/source/ar/editeng/messages.po b/source/ar/editeng/messages.po
index b31f678a458..2db7e9953a0 100644
--- a/source/ar/editeng/messages.po
+++ b/source/ar/editeng/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-16 08:40+0000\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/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: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1524288361.000000\n"
#. BHYB4
@@ -435,19 +435,19 @@ msgstr "متوسط"
#: include/editeng/editrids.hrc:72
msgctxt "RID_SVXITEMS_WEIGHT_SEMIBOLD"
msgid "semi bold"
-msgstr "شبه غامق"
+msgstr "شبه ثخين"
#. sCqZ8
#: include/editeng/editrids.hrc:73
msgctxt "RID_SVXITEMS_WEIGHT_BOLD"
msgid "bold"
-msgstr "غامق"
+msgstr "ثخين"
#. g2MrK
#: include/editeng/editrids.hrc:74
msgctxt "RID_SVXITEMS_WEIGHT_ULTRABOLD"
msgid "ultra bold"
-msgstr "غامق جدًا"
+msgstr "ثخين جدًا"
#. utjoZ
#: include/editeng/editrids.hrc:75
@@ -532,43 +532,43 @@ msgstr "تسطير (موجة مزدوجة)"
#: include/editeng/editrids.hrc:90
msgctxt "RID_SVXITEMS_UL_BOLD"
msgid "Underlined (Bold)"
-msgstr "تسطير (غامق)"
+msgstr "تسطير (ثخين)"
#. bqzzG
#: include/editeng/editrids.hrc:91
msgctxt "RID_SVXITEMS_UL_BOLDDOTTED"
msgid "Dotted underline (Bold)"
-msgstr "تسطير منقط (غامق)"
+msgstr "تسطير منقط (ثخين)"
#. HvRoA
#: include/editeng/editrids.hrc:92
msgctxt "RID_SVXITEMS_UL_BOLDDASH"
msgid "Underline (Dash bold)"
-msgstr "تسطير (شرطة غامقة)"
+msgstr "تسطير (شرطة ثخينة)"
#. 2Gomd
#: include/editeng/editrids.hrc:93
msgctxt "RID_SVXITEMS_UL_BOLDLONGDASH"
msgid "Underline (long dash, bold)"
-msgstr "تسطير (شرطة طويلة، غامقة)"
+msgstr "تسطير (شرطة طويلة، ثخينة)"
#. GSndt
#: include/editeng/editrids.hrc:94
msgctxt "RID_SVXITEMS_UL_BOLDDASHDOT"
msgid "Underline (dot dash, bold)"
-msgstr "تسطير (نقطة شرطة، غامقة)"
+msgstr "تسطير (نقطة شرطة، ثخينة)"
#. PEdVj
#: include/editeng/editrids.hrc:95
msgctxt "RID_SVXITEMS_UL_BOLDDASHDOTDOT"
msgid "Underline (dot dot dash, bold)"
-msgstr "تسطير (نقطة نقطة شرطة، غامقة)"
+msgstr "تسطير (نقطة نقطة شرطة، ثخينة)"
#. mroHD
#: include/editeng/editrids.hrc:96
msgctxt "RID_SVXITEMS_UL_BOLDWAVE"
msgid "Underline (wave, bold)"
-msgstr "تسطير (موجة، غامقة)"
+msgstr "تسطير (موجة، ثخينة)"
#. YDywJ
#. enum FontUnderline - used for overline -------------------------------
@@ -647,43 +647,43 @@ msgstr "خط علوي (موجة مزدوجة)"
#: include/editeng/editrids.hrc:111
msgctxt "RID_SVXITEMS_OL_BOLD"
msgid "Overlined (Bold)"
-msgstr "خط علوي (غامق)"
+msgstr "خط علوي (ثخين)"
#. oDrx7
#: include/editeng/editrids.hrc:112
msgctxt "RID_SVXITEMS_OL_BOLDDOTTED"
msgid "Dotted overline (Bold)"
-msgstr "خط علوي منقط (غامق)"
+msgstr "خط علوي منقط (ثخين)"
#. A4RGf
#: include/editeng/editrids.hrc:113
msgctxt "RID_SVXITEMS_OL_BOLDDASH"
msgid "Overline (Dash bold)"
-msgstr "خط علوي (شرطة غامقة)"
+msgstr "خط علوي (شرطة عريض ثخينة)"
#. jxvBT
#: include/editeng/editrids.hrc:114
msgctxt "RID_SVXITEMS_OL_BOLDLONGDASH"
msgid "Overline (long dash, bold)"
-msgstr "خط علوي (شرطة طويلة، غامقة)"
+msgstr "خط علوي (شرطة طويلة، عريض ثخينة)"
#. Z95bA
#: include/editeng/editrids.hrc:115
msgctxt "RID_SVXITEMS_OL_BOLDDASHDOT"
msgid "Overline (dot dash, bold)"
-msgstr "خط علوي (نقطة شرطة، غامقة)"
+msgstr "خط علوي (نقطة شرطة، عريض ثخينة)"
#. FUcjf
#: include/editeng/editrids.hrc:116
msgctxt "RID_SVXITEMS_OL_BOLDDASHDOTDOT"
msgid "Overline (dot dot dash, bold)"
-msgstr "خط علوي (نقطة نقطة شرطة، غامقة)"
+msgstr "خط علوي (نقطة نقطة شرطة، عريض ثخينة)"
#. DeEEC
#: include/editeng/editrids.hrc:117
msgctxt "RID_SVXITEMS_OL_BOLDWAVE"
msgid "Overline (wave, bold)"
-msgstr "خط علوي (موجة، غامقة)"
+msgstr "خط علوي (موجة، ثخينة)"
#. iER8c
#. enum FontStrikeout ----------------------------------------------------
@@ -714,7 +714,7 @@ msgstr "شطب"
#: include/editeng/editrids.hrc:124
msgctxt "RID_SVXITEMS_STRIKEOUT_BOLD"
msgid "Bold strikethrough"
-msgstr "شطب غامق"
+msgstr "شطب ثخين"
#. GWRPK
#: include/editeng/editrids.hrc:125
@@ -733,7 +733,7 @@ msgstr "يتوسطه خط بأحرف X"
#: include/editeng/editrids.hrc:129
msgctxt "RID_SVXITEMS_CASEMAP_NONE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. DxCYJ
#: include/editeng/editrids.hrc:130
@@ -879,25 +879,25 @@ msgstr "مزدوج، داخلي: سميك، خارجي: رفيع، التباع
#: include/editeng/editrids.hrc:157
msgctxt "RID_EMBOSSED"
msgid "3D embossed"
-msgstr "بارز"
+msgstr "بارز 3أبعاد"
#. BXK8h
#: include/editeng/editrids.hrc:158
msgctxt "RID_ENGRAVED"
msgid "3D engraved"
-msgstr "محفور"
+msgstr "محفور 3أبعاد"
#. xeaGY
#: include/editeng/editrids.hrc:159
msgctxt "RID_INSET"
msgid "Inset"
-msgstr "للداخل"
+msgstr "مدرّج للداخل"
#. oRgMw
#: include/editeng/editrids.hrc:160
msgctxt "RID_OUTSET"
msgid "Outset"
-msgstr "للخارج"
+msgstr "مدرّج للخارج"
#. uqbBB
#: include/editeng/editrids.hrc:161
@@ -1120,7 +1120,7 @@ msgstr "غير شفاف"
#: include/editeng/editrids.hrc:199
msgctxt "RID_SVXITEMS_HYPHEN_TRUE"
msgid "Hyphenation"
-msgstr "الواصلة"
+msgstr "وصل الكلمات"
#. CQt4q
#: include/editeng/editrids.hrc:200
@@ -1156,7 +1156,7 @@ msgstr "الارتفاع: "
#: include/editeng/editrids.hrc:205
msgctxt "RID_SVXITEMS_LRSPACE_LEFT"
msgid "Indent left "
-msgstr "مسافة بادئة لليسار "
+msgstr "أزِح لليسار "
#. 8pKEx
#: include/editeng/editrids.hrc:206
@@ -1168,7 +1168,7 @@ msgstr "السطر الأول "
#: include/editeng/editrids.hrc:207
msgctxt "RID_SVXITEMS_LRSPACE_RIGHT"
msgid "Indent right "
-msgstr "مسافة بادئة لليمين "
+msgstr "أزِح لليمين "
#. rHuC8
#: include/editeng/editrids.hrc:208
@@ -1343,7 +1343,7 @@ msgstr "مكثف "
#: include/editeng/editrids.hrc:237
msgctxt "RID_SVXITEMS_GRAPHIC"
msgid "Graphic"
-msgstr "الرسم"
+msgstr "رسم"
#. Mbwvx
#: include/editeng/editrids.hrc:238
@@ -1488,7 +1488,7 @@ msgstr "لا أخدود"
#: include/editeng/editrids.hrc:262
msgctxt "RID_SVXITEMS_RELIEF_EMBOSSED"
msgid "Relief"
-msgstr "الأخدود"
+msgstr "أخدود"
#. M7Huc
#: include/editeng/editrids.hrc:263
@@ -1638,7 +1638,7 @@ msgstr "أعِد تعيين الصفات"
#: include/editeng/editrids.hrc:289
msgctxt "RID_EDITUNDO_INDENT"
msgid "Indent"
-msgstr "أزِح"
+msgstr "إزاحة"
#. CGrBx
#: include/editeng/editrids.hrc:290
@@ -1726,7 +1726,7 @@ msgstr "القاموس للقراءة فقط."
#: include/editeng/editrids.hrc:306
msgctxt "RID_OUTLUNDO_DEPTH"
msgid "Indent"
-msgstr "أزِح"
+msgstr "إزاحة"
#. CjGGD
#: include/editeng/editrids.hrc:307
diff --git a/source/ar/extensions/messages.po b/source/ar/extensions/messages.po
index b0c04973d38..7bf409be6b9 100644
--- a/source/ar/extensions/messages.po
+++ b/source/ar/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/ar/>\n"
"Language: ar\n"
@@ -145,7 +145,7 @@ msgstr "كبير"
#: extensions/inc/stringarrays.hrc:42
msgctxt "RID_RSC_ENUM_BORDER_TYPE"
msgid "Without frame"
-msgstr "بدون إطار"
+msgstr "بِلا إطار"
#. ozfAi
#: extensions/inc/stringarrays.hrc:43
@@ -217,7 +217,7 @@ msgstr "يمين"
#: extensions/inc/stringarrays.hrc:66
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. FcKuk
#: extensions/inc/stringarrays.hrc:67
@@ -307,7 +307,7 @@ msgstr "إرسال"
#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
-msgstr "مسار"
+msgstr "رابط"
#. 3pmDf
#: extensions/inc/stringarrays.hrc:90
@@ -499,13 +499,13 @@ msgstr "_فوق"
#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. YnZQA
#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
-msgstr "وحيد"
+msgstr "مفرد"
#. EMYwE
#: extensions/inc/stringarrays.hrc:151
@@ -601,7 +601,7 @@ msgstr "‏‪CR+LF‬ (ويندوز)"
#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. ghkcH
#: extensions/inc/stringarrays.hrc:191
@@ -901,13 +901,13 @@ msgstr "قابل للطباعة"
#: extensions/inc/strings.hrc:39
msgctxt "RID_STR_TARGET_URL"
msgid "URL"
-msgstr "عنوان URL"
+msgstr "رابط"
#. Xq3GZ
#: extensions/inc/strings.hrc:40
msgctxt "RID_STR_TARGET_FRAME"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. NbCEN
#: extensions/inc/strings.hrc:41
@@ -955,7 +955,7 @@ msgstr "الدقة العشرية"
#: extensions/inc/strings.hrc:48
msgctxt "RID_STR_IMAGE_URL"
msgid "Graphics"
-msgstr "الرسومات"
+msgstr "رسوميات"
#. AJhGf
#: extensions/inc/strings.hrc:49
@@ -1027,7 +1027,7 @@ msgstr "حجم الأيقونة"
#: extensions/inc/strings.hrc:60
msgctxt "RID_STR_SHOW_POSITION"
msgid "Positioning"
-msgstr "الموضع"
+msgstr "التموضُع"
#. fGkps
#: extensions/inc/strings.hrc:61
@@ -1327,7 +1327,7 @@ msgstr "الارتفاع"
#: extensions/inc/strings.hrc:110
msgctxt "RID_STR_WIDTH"
msgid "Width"
-msgstr "العرض"
+msgstr "العُرض"
#. q3Gyo
#: extensions/inc/strings.hrc:111
@@ -1387,7 +1387,7 @@ msgstr "الإجراء"
#: extensions/inc/strings.hrc:120
msgctxt "RID_STR_SUBMIT_ACTION"
msgid "URL"
-msgstr "عنوان URL"
+msgstr "رابط"
#. SBDs3
#: extensions/inc/strings.hrc:121
@@ -1435,7 +1435,7 @@ msgstr "الوقت المبدئيّ"
#: extensions/inc/strings.hrc:128
msgctxt "RID_STR_SUBMIT_TARGET"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. PVVwo
#: extensions/inc/strings.hrc:129
@@ -1657,7 +1657,7 @@ msgstr "الموضع ص"
#: extensions/inc/strings.hrc:165
msgctxt "RID_STR_TITLE"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "العنوان"
#. LRwrC
#: extensions/inc/strings.hrc:166
@@ -2065,7 +2065,7 @@ msgstr "مع شريط العنوان"
#: extensions/inc/strings.hrc:233
msgctxt "RID_STR_NOLABEL"
msgid "No Label"
-msgstr "بدون تسمية"
+msgstr "بِلا لصيقة"
#. wwWir
#: extensions/inc/strings.hrc:234
@@ -2103,7 +2103,7 @@ msgstr "عادي"
#: extensions/inc/strings.hrc:241
msgctxt "RID_STR_FONTSTYLE_BOLD_ITALIC"
msgid "Bold Italic"
-msgstr "غامق مائل"
+msgstr "ثخين مائل"
#. 2PqQ2
#. To translators: That's the 'Italic' as used for a font style, so please use a consistent translation.
@@ -2117,7 +2117,7 @@ msgstr "مائل"
#: extensions/inc/strings.hrc:245
msgctxt "RID_STR_FONTSTYLE_BOLD"
msgid "Bold"
-msgstr "غامق"
+msgstr "ثخين"
#. gWAyM
#: extensions/inc/strings.hrc:246
@@ -2153,13 +2153,13 @@ msgstr "لون خط الشبكة"
#: extensions/inc/strings.hrc:251
msgctxt "RID_STR_SHOWCOLUMNHEADER"
msgid "Show column header"
-msgstr "أظهر ترويس العمود"
+msgstr "أظهر رأس العمود"
#. 3Hq4F
#: extensions/inc/strings.hrc:252
msgctxt "RID_STR_SHOWROWHEADER"
msgid "Show row header"
-msgstr "أظهر ترويس الصف"
+msgstr "أظهر رأس الصف"
#. todcc
#: extensions/inc/strings.hrc:253
@@ -2171,7 +2171,7 @@ msgstr "لون خلفية الترويس"
#: extensions/inc/strings.hrc:254
msgctxt "RID_STR_HEADERTEXTCOLOR"
msgid "Header text color"
-msgstr "لون نص الترويس"
+msgstr "لون نص الرأس"
#. oFyqF
#: extensions/inc/strings.hrc:255
@@ -2241,7 +2241,7 @@ msgstr ""
#: extensions/inc/strings.hrc:267
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Button"
-msgstr "زر"
+msgstr "زِر"
#. TreFC
#: extensions/inc/strings.hrc:268
@@ -2289,7 +2289,7 @@ msgstr "مربع قائمة"
#: extensions/inc/strings.hrc:275
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
-msgstr "مربع تحرير وسرد"
+msgstr "مربع مركّب"
#. 5474w
#: extensions/inc/strings.hrc:276
@@ -2325,7 +2325,7 @@ msgstr "تحديد الملف"
#: extensions/inc/strings.hrc:281
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
-msgstr "حقل التاريخ"
+msgstr "حقل تاريخ"
#. EaBTj
#: extensions/inc/strings.hrc:282
@@ -2542,7 +2542,7 @@ msgstr "الوصف"
#: extensions/inc/strings.hrc:317
msgctxt "RID_UPDATE_BTN_CLOSE"
msgid "Close"
-msgstr "إغلاق"
+msgstr "أغلق"
#. 8LjZV
#: extensions/inc/strings.hrc:318
@@ -2976,7 +2976,7 @@ msgstr "حقل قاعدة البيانات"
#: extensions/inc/strings.hrc:391
msgctxt "RID_STR_TYPE_TABLE"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. g8gXs
#: extensions/inc/strings.hrc:392
@@ -3006,7 +3006,7 @@ msgstr "مرشد عناصر الجداول"
#: extensions/inc/strings.hrc:397
msgctxt "RID_STR_LISTWIZARD_TITLE"
msgid "List Box Wizard"
-msgstr "مرشد مربعات السرد"
+msgstr "مرشد مربع القائمة"
#. DYg5X
#: extensions/inc/strings.hrc:398
@@ -3042,7 +3042,7 @@ msgstr "سيظهر محتوى الحقل المحدد في قائمة القائ
#: extensions/inc/strings.hrc:405
msgctxt "RID_STR_FIELDINFO_LISTBOX"
msgid "The contents of the selected field will be shown in the list box if the linked fields are identical."
-msgstr "ستظهر محتويات الحقل المحدد في مربع السرج في حالة تطابق الحقول المرتبطة."
+msgstr "ستظهر محتويات الحقل المحدد في مربع القائمة في حالة تطابق الحقول المرتبطة."
#. sy3UG
#: extensions/inc/strings.hrc:406
@@ -3631,7 +3631,6 @@ msgstr ""
#. f33Eh
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:56
-#, fuzzy
msgctxt "tableselectionpage|label3"
msgid ""
"Currently, the form the control belongs to is not (or not completely) bound to a data source.\n"
@@ -3641,33 +3640,30 @@ msgid ""
"\n"
"Please note that the settings made on this page will take effect immediately upon leaving the page."
msgstr ""
-"حاليًا، النموذج الذي ينتمي إليه عنصر التحكم ليس مرتبطًا، أو ليس مرتبطًا تمامًا، بمصدر بيانات.\n"
+"حاليًا، النموذج الذي ينتمي إليه التحكم ليس مرتبطًا (أو ليس مرتبطًا تمامًا) بمصدر بيانات.\n"
"\n"
"الرجاء اختيار مصدر بيانات وجدول.\n"
"\n"
"\n"
-"الرجاء ملاحظة أن الإعدادات التي تم تعيينها على هذه الصفحة تسري بمجرد مغادرة الصفحة."
+"الرجاء ملاحظة أن الإعدادات التي تُعمل على هذه الصفحة ستسري فوراً عند مغادرة الصفحة."
#. PLVnx
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:92
-#, fuzzy
msgctxt "tableselectionpage|datasourcelabel"
msgid "_Data source:"
-msgstr "مصدر البيانات"
+msgstr "مصدر ال_بيانات:"
#. DZ3pT
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:145
-#, fuzzy
msgctxt "tableselectionpage|search"
msgid "_..."
msgstr "_..."
#. 6jyEV
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:177
-#, fuzzy
msgctxt "tableselectionpage|tablelabel"
msgid "_Table / Query:"
-msgstr "الج~دول/الاستعلام:"
+msgstr "الج_دول\\الاستعلام:"
#. YvYuw
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:247
@@ -3845,10 +3841,9 @@ msgstr "ال~تعليق التوضيحي"
#. DZxid
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:348
-#, fuzzy
msgctxt "generalpage|number"
msgid "Numb_er"
-msgstr "الرقم"
+msgstr "ال_عدد"
#. Nspi2
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:362
@@ -3866,10 +3861,9 @@ msgstr "السل~سلة"
#. JfqNT
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:390
-#, fuzzy
msgctxt "generalpage|url"
msgid "URL"
-msgstr "مسار"
+msgstr "رابط"
#. hjJFW
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:404
@@ -3922,7 +3916,7 @@ msgstr "تصفّح..."
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:939
msgctxt "generalpage|localpagecb"
msgid "Page"
-msgstr "صفحة"
+msgstr "الصفحة"
#. x9s9K
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:1015
@@ -4077,10 +4071,9 @@ msgstr "دفتر اليومية"
#. 98xrV
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:623
-#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
-msgstr "الرقم"
+msgstr "ال_عدد"
#. ssYBx
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:637
@@ -4105,10 +4098,9 @@ msgstr "ملاحظة"
#. t7JGr
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
-#, fuzzy
msgctxt "mappingdialog|label27"
msgid "URL"
-msgstr "مسار"
+msgstr "رابط"
#. STBDL
#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:765
diff --git a/source/ar/extras/source/autocorr/emoji.po b/source/ar/extras/source/autocorr/emoji.po
index 0fac31b42af..bda38dc0f8f 100644
--- a/source/ar/extras/source/autocorr/emoji.po
+++ b/source/ar/extras/source/autocorr/emoji.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-01-27 03:38+0000\n"
+"PO-Revision-Date: 2022-02-27 12:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/extrassourceautocorremoji/ar/>\n"
"Language: ar\n"
@@ -654,7 +654,7 @@ msgctxt ""
"RIGHT_SINGLE_QUOTATION_MARK\n"
"LngText.text"
msgid "'"
-msgstr "'"
+msgstr "′"
#. † (U+02020), see http://wiki.documentfoundation.org/Emoji
#. 6juUB
@@ -11599,7 +11599,7 @@ msgctxt ""
"BALLOT_BOX_WITH_BOLD_SCRIPT_X\n"
"LngText.text"
msgid "checkbox4"
-msgstr ""
+msgstr "مربع‌تأشير4"
#. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji
#. htBDW
@@ -12899,7 +12899,7 @@ msgctxt ""
"BALLOT_BOX_WITH_BOLD_CHECK\n"
"LngText.text"
msgid "checkbox5"
-msgstr ""
+msgstr "مربع‌تأشير5"
#. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji
#. K9FkL
@@ -12929,7 +12929,7 @@ msgctxt ""
"BALLOT_BOLD_SCRIPT_X\n"
"LngText.text"
msgid "x4"
-msgstr ""
+msgstr "أكس4"
#. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji
#. HADvf
diff --git a/source/ar/filter/messages.po b/source/ar/filter/messages.po
index cebdd2131ec..5a135f06564 100644
--- a/source/ar/filter/messages.po
+++ b/source/ar/filter/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-10 13:16+0000\n"
+"PO-Revision-Date: 2022-03-03 21:42+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/ar/>\n"
"Language: ar\n"
@@ -20,25 +20,25 @@ msgstr ""
#: filter/inc/strings.hrc:24
msgctxt "STR_UNKNOWN_APPLICATION"
msgid "Unknown"
-msgstr "مجهول"
+msgstr "غير معروف"
#. AP7oB
#: filter/inc/strings.hrc:25
msgctxt "STR_IMPORT_ONLY"
msgid "import filter"
-msgstr "مرشّح استيراد"
+msgstr "استورد المرشح"
#. 7vg82
#: filter/inc/strings.hrc:26
msgctxt "STR_IMPORT_EXPORT"
msgid "import/export filter"
-msgstr "مرشّح استيراد/تصدير"
+msgstr "استورد/صدّر المرشح"
#. q6Bc5
#: filter/inc/strings.hrc:27
msgctxt "STR_EXPORT_ONLY"
msgid "export filter"
-msgstr "مرشّح تصدير"
+msgstr "صدّر المرشح"
#. AmATR
#: filter/inc/strings.hrc:28
@@ -520,7 +520,7 @@ msgstr "ال_جودة:"
#: filter/uiconfig/ui/pdfgeneralpage.ui:371
msgctxt "pdfgeneralpage|label2"
msgid "Images"
-msgstr "الصور"
+msgstr "صور"
#. NwjSn
#: filter/uiconfig/ui/pdfgeneralpage.ui:401
@@ -1231,7 +1231,7 @@ msgstr ""
#: filter/uiconfig/ui/pdfsignpage.ui:200
msgctxt "pdfsignpage|tsa"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. VMoF3
#: filter/uiconfig/ui/pdfsignpage.ui:212
@@ -1243,7 +1243,7 @@ msgstr "كلمة سر الشهادة:"
#: filter/uiconfig/ui/pdfsignpage.ui:226
msgctxt "pdfsignpage|label12"
msgid "Location:"
-msgstr "المكان:"
+msgstr "الموضع:"
#. AQkj6
#: filter/uiconfig/ui/pdfsignpage.ui:240
@@ -1749,7 +1749,7 @@ msgstr "يعيد فتح المستند الذي فُتح آخر مرة بهذا
#: filter/uiconfig/ui/testxmlfilter.ui:368
msgctxt "testxmlfilter|label2"
msgid "Import"
-msgstr "استيراد"
+msgstr "استورد"
#. NsJor
#: filter/uiconfig/ui/testxmlfilter.ui:399
diff --git a/source/ar/filter/source/config/fragments/filters.po b/source/ar/filter/source/config/fragments/filters.po
index 4a76cf49db9..aebd56e516b 100644
--- a/source/ar/filter/source/config/fragments/filters.po
+++ b/source/ar/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: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-04 11:39+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/ar/>\n"
"Language: ar\n"
@@ -164,7 +164,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Corel Presentation Exchange"
-msgstr ""
+msgstr "تبادل عَرض تقديمي كورل"
#. 7nYF8
#: DIF.xcu
@@ -174,7 +174,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Data Interchange Format"
-msgstr "نسق بيانات تبادليّة"
+msgstr "نسَق بيانات تبادليّة"
#. NEKcH
#: DXF___AutoCAD_Interchange.xcu
@@ -184,7 +184,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr "DXF - نسق أوتوكاد تبادليّ"
+msgstr "DXF - نسَق أوتوكاد تبادليّ"
#. ZyiCq
#: DocBook_File.xcu
@@ -265,7 +265,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "GIF - Graphics Interchange Format"
-msgstr "GIF - هيئة رسومات تبادليّ"
+msgstr "GIF - نسَق رسومات تبادليّ"
#. 6q4Pb
#: HTML.xcu
@@ -355,7 +355,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2003 XML"
-msgstr "ميكروسوفت إكسل ٢٠٠٣ بِمخطّط XML"
+msgstr "ميكروسوفت أكسل ٢٠٠٣ بِمخطّط XML"
#. AGkVq
#: MS_Excel_2003_XML_Orcus.xcu
@@ -375,7 +375,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 4.0"
-msgstr "ميكروسوفت إكسل ٤٫٠"
+msgstr "ميكروسوفت أكسل ٤٫٠"
#. e9XuE
#: MS_Excel_4_0_Vorlage_Template.xcu
@@ -385,7 +385,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 4.0 Template"
-msgstr "قالب ميكروسوفت إكسل ٤٫٠"
+msgstr "قالب ميكروسوفت أكسل ٤٫٠"
#. eHaUs
#: MS_Excel_5_0_95.xcu
@@ -395,7 +395,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 5.0"
-msgstr "ميكروسوفت إكسل ٥٫٠"
+msgstr "ميكروسوفت أكسل ٥٫٠"
#. jrJsh
#: MS_Excel_5_0_95_Vorlage_Template.xcu
@@ -405,7 +405,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 5.0 Template"
-msgstr "قالب ميكروسوفت إكسل ٥٫٠"
+msgstr "قالب ميكروسوفت أكسل ٥٫٠"
#. DuC6b
#: MS_Excel_95.xcu
@@ -415,7 +415,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 95"
-msgstr "ميكروسوفت إكسل ٩٥"
+msgstr "ميكروسوفت أكسل ٩٥"
#. kFEki
#: MS_Excel_95_Vorlage_Template.xcu
@@ -425,7 +425,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 95 Template"
-msgstr "قالب ميكروسوفت إكسل ٩٥"
+msgstr "قالب ميكروسوفت أكسل ٩٥"
#. 6Azy5
#: MS_Excel_97.xcu
@@ -796,7 +796,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Text (Transitional)"
-msgstr ""
+msgstr "نص أوفيس أوبن XML (انتقالي)"
#. Ymern
#: OOXML_Text_Template.xcu
@@ -806,7 +806,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Text Template (Transitional)"
-msgstr ""
+msgstr "قالب نص أوفيس أوبن XML (انتقالي)"
#. B4Xqe
#: PBM___Portable_Bitmap.xcu
@@ -856,7 +856,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphics"
-msgstr ""
+msgstr "PNG - رسوميات شبكية محمولة"
#. WKEx6
#: PPM___Portable_Pixelmap.xcu
@@ -1298,7 +1298,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WEBP - WebP Image"
-msgstr ""
+msgstr "WEBP - صورة WebP"
#. zUxn7
#: WMF___MS_Windows_Metafile.xcu
@@ -1441,7 +1441,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr "ميكروسوفت إكسل ٢٠٠٧ ثنائيّ"
+msgstr "ميكروسوفت أكسل ٢٠٠٧ ثنائيّ"
#. Vpueh
#: calc_MS_Excel_2007_VBA_XML.xcu
@@ -1552,7 +1552,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WEBP - WebP Image"
-msgstr ""
+msgstr "WEBP - صورة WebP"
#. ASgi2
#: chart8.xcu
@@ -1715,7 +1715,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphics"
-msgstr ""
+msgstr "PNG - رسوميات شبكية محمولة"
#. 89aEb
#: draw_svg_Export.xcu
@@ -1745,7 +1745,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WEBP - WebP Image"
-msgstr ""
+msgstr "WEBP - صورة WebP"
#. RgBSz
#: draw_wmf_Export.xcu
@@ -1835,18 +1835,17 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Presentation"
-msgstr "عرض أوفيس أوپن بِمخطّط XML تقديميّ"
+msgstr "عرض أوفيس أوپن XML تقديميّ"
#. zRPFk
#: impress_OOXML_AutoPlay.xcu
-#, fuzzy
msgctxt ""
"impress_OOXML_AutoPlay.xcu\n"
"Impress Office Open XML AutoPlay\n"
"UIName\n"
"value.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr "نموذج عروض Office Open XML"
+msgstr "عرض أوفيس أوپن XML تقديميّ تلقائي التشغيل"
#. vcvUA
#: impress_OOXML_Template.xcu
@@ -1956,7 +1955,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphics"
-msgstr ""
+msgstr "PNG - رسوميات شبكية محمولة"
#. cEbFG
#: impress_svg_Export.xcu
@@ -1986,7 +1985,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WEBP - WebP Image"
-msgstr ""
+msgstr "WEBP - صورة WebP"
#. 3yHCC
#: impress_wmf_Export.xcu
@@ -2217,7 +2216,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphics"
-msgstr ""
+msgstr "PNG - رسوميات شبكية محمولة"
#. SyN4Q
#: writer_web_webp_Export.xcu
@@ -2227,7 +2226,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WEBP - WebP Image"
-msgstr ""
+msgstr "WEBP - صورة WebP"
#. DxENG
#: writer_webp_Export.xcu
@@ -2237,7 +2236,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WEBP - WebP Image"
-msgstr ""
+msgstr "WEBP - صورة WebP"
#. iRPFB
#: writerglobal8.xcu
diff --git a/source/ar/filter/source/config/fragments/internalgraphicfilters.po b/source/ar/filter/source/config/fragments/internalgraphicfilters.po
index fe76b99573e..69b7915ff61 100644
--- a/source/ar/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/ar/filter/source/config/fragments/internalgraphicfilters.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2018-01-15 15:10+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsinternalgraphicfilters/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"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: 1516029056.000000\n"
#. s5fY3
@@ -44,7 +44,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr "DXF - هيئة أوتوكاد تبادلية"
+msgstr "DXF - نسَق أوتوكاد تبادلية"
#. qGZFH
#: emf_Export.xcu
@@ -94,7 +94,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "GIF - Graphics Interchange Format"
-msgstr "GIF - هيئة رسوم متبادلة"
+msgstr "GIF - نسَق رسوم متبادلة"
#. Nk7ag
#: gif_Import.xcu
@@ -104,7 +104,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "GIF - Graphics Interchange Format"
-msgstr "GIF - هيئة رسوم متبادلة"
+msgstr "GIF - نسَق رسوم متبادلة"
#. yxVdN
#: jpg_Export.xcu
@@ -246,7 +246,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphics"
-msgstr ""
+msgstr "PNG - رسوميات شبكية محمولة"
#. 9C3pW
#: png_Import.xcu
@@ -256,7 +256,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PNG - Portable Network Graphics"
-msgstr ""
+msgstr "PNG - رسوميات شبكية محمولة"
#. CCFfq
#: ppm_Import.xcu
@@ -366,7 +366,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WEBP - WebP Image"
-msgstr ""
+msgstr "WEBP - صورة WebP"
#. ZABzk
#: webp_Import.xcu
@@ -376,7 +376,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WEBP - WebP Image"
-msgstr ""
+msgstr "WEBP - صورة WebP"
#. fUdGf
#: wmf_Export.xcu
diff --git a/source/ar/filter/source/config/fragments/types.po b/source/ar/filter/source/config/fragments/types.po
index 1050299478e..708966505f2 100644
--- a/source/ar/filter/source/config/fragments/types.po
+++ b/source/ar/filter/source/config/fragments/types.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-01-23 17:38+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentstypes/ar/>\n"
"Language: ar\n"
@@ -24,7 +24,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr "ميكروسوفت إكسل ٢٠٠٧ ثنائي"
+msgstr "ميكروسوفت أكسل ٢٠٠٧ ثنائيّ"
#. ZSPrG
#: MS_Excel_2007_VBA_XML.xcu
@@ -174,7 +174,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2003 XML"
-msgstr "ميكروسوفت إكسل ٢٠٠٣ XML"
+msgstr "ميكروسوفت أكسل ٢٠٠٣ XML"
#. NWzCZ
#: calc_ODS_FlatXML.xcu
@@ -284,7 +284,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr "تشغيل تلقائي لعرض XML المفتوح من أوفيس"
+msgstr "عرض أوفيس أوپن XML تقديميّ تلقائي التشغيل"
#. mwgxJ
#: math8.xcu
diff --git a/source/ar/forms/messages.po b/source/ar/forms/messages.po
index 0791446460e..0f429ceb407 100644
--- a/source/ar/forms/messages.po
+++ b/source/ar/forms/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: 2022-02-05 15:39+0000\n"
+"PO-Revision-Date: 2022-02-24 15:40+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/formsmessages/ar/>\n"
"Language: ar\n"
@@ -26,7 +26,7 @@ msgstr "تعذر تحديد محتويات أحد المربعات المنسد
#: forms/inc/strings.hrc:27
msgctxt "RID_STR_IMPORT_GRAPHIC"
msgid "Insert Image"
-msgstr "أدرِج صورة"
+msgstr "أدرج صورة"
#. FfrQA
#: forms/inc/strings.hrc:28
diff --git a/source/ar/formula/messages.po b/source/ar/formula/messages.po
index 538d9030b7a..777fc2eda59 100644
--- a/source/ar/formula/messages.po
+++ b/source/ar/formula/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-16 08:40+0000\n"
+"PO-Revision-Date: 2022-03-09 14:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/ar/>\n"
"Language: ar\n"
@@ -53,7 +53,7 @@ msgstr "#الكل"
#: formula/inc/core_resource.hrc:2285
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#Headers"
-msgstr "#ترويسات"
+msgstr "#رؤوس"
#. amt53
#. L10n: preserve the leading '#' hash character in translations.
@@ -86,7 +86,7 @@ msgstr "وَ"
#: formula/inc/core_resource.hrc:2293
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. P5Wdb
#: formula/inc/core_resource.hrc:2294
@@ -2267,13 +2267,13 @@ msgstr "NETWORKDAYS"
#: formula/inc/core_resource.hrc:2650
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "NETWORKDAYS.INTL"
-msgstr ""
+msgstr "NETWORKDAYS.INTL"
#. QAzUk
#: formula/inc/core_resource.hrc:2651
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "WORKDAY.INTL"
-msgstr ""
+msgstr "WORKDAY.INTL"
#. CFhSp
#. L10n: preserve the leading '#' hash character in translations.
@@ -2744,7 +2744,7 @@ msgstr ""
#: formula/uiconfig/ui/functionpage.ui:60
msgctxt "functionpage|label1"
msgid "_Category"
-msgstr "ال_فئة"
+msgstr "الصن_ف"
#. WQC5A
#: formula/uiconfig/ui/functionpage.ui:75
diff --git a/source/ar/fpicker/messages.po b/source/ar/fpicker/messages.po
index 2f5bc5453dd..5d6ef67a34b 100644
--- a/source/ar/fpicker/messages.po
+++ b/source/ar/fpicker/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-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-02-07 18:38+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496475.000000\n"
#. SJGCw
@@ -32,7 +32,7 @@ msgstr "حفظ باسم"
#: fpicker/inc/strings.hrc:26
msgctxt "STR_EXPLORERFILE_BUTTONSAVE"
msgid "~Save"
-msgstr "ا~حفظ"
+msgstr "احف~ظ"
#. tpvKy
#: fpicker/inc/strings.hrc:27
@@ -492,8 +492,20 @@ msgstr ""
"\n"
"أتريد استبداله؟"
-#. z6Eo3
+#. t4wDh
#: include/fpicker/strings.hrc:32
+msgctxt "STR_SVT_ALREADYEXISTOVERWRITE_SECONDARY"
+msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
+msgstr ""
+
+#. cBvCB
+#: include/fpicker/strings.hrc:33
+msgctxt "STR_SVT_ALLFORMATS"
+msgid "All Formats"
+msgstr ""
+
+#. z6Eo3
+#: include/fpicker/strings.hrc:34
msgctxt "STR_SVT_DELETESERVICE"
msgid ""
"Are you sure you want to delete the service?\n"
@@ -503,31 +515,31 @@ msgstr ""
"\"$servicename$\""
#. KegFE
-#: include/fpicker/strings.hrc:33
+#: include/fpicker/strings.hrc:35
msgctxt "STR_SVT_ROOTLABEL"
msgid "Root"
msgstr "الجذر"
#. sWRTd
-#: include/fpicker/strings.hrc:34
+#: include/fpicker/strings.hrc:36
msgctxt "STR_FILTERNAME_ALL"
msgid "All files"
msgstr "كلّ الملفّات"
#. FBggE
-#: include/fpicker/strings.hrc:35
+#: include/fpicker/strings.hrc:37
msgctxt "STR_FILEDLG_OPEN"
msgid "Open"
msgstr "افتح"
#. wJYsA
-#: include/fpicker/strings.hrc:36
+#: include/fpicker/strings.hrc:38
msgctxt "STR_FILEDLG_TYPE"
msgid "File ~type"
msgstr "~نوع الملفات"
#. EEBg4
-#: include/fpicker/strings.hrc:37
+#: include/fpicker/strings.hrc:39
msgctxt "STR_FILEDLG_SAVE"
msgid "Save"
msgstr "احفظ"
diff --git a/source/ar/framework/messages.po b/source/ar/framework/messages.po
index 82ac681ec2e..fd2475a5ff9 100644
--- a/source/ar/framework/messages.po
+++ b/source/ar/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: 2022-02-05 15:39+0000\n"
+"PO-Revision-Date: 2022-02-26 03:13+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/frameworkmessages/ar/>\n"
"Language: ar\n"
@@ -245,25 +245,25 @@ msgstr ""
#: framework/inc/strings.hrc:58
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
-msgstr ""
+msgstr "خانة اختيار"
#. xwuJF
#: framework/inc/strings.hrc:59
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
-msgstr ""
+msgstr "مربع مركّب"
#. WiNUf
#: framework/inc/strings.hrc:60
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
-msgstr ""
+msgstr "مربع قائمة"
#. a7gAj
#: framework/inc/strings.hrc:61
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
-msgstr ""
+msgstr "حقل تاريخ"
#. EaBTj
#: framework/inc/strings.hrc:62
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared.po b/source/ar/helpcontent2/source/text/sbasic/shared.po
index cd273deb151..90b4f5cea51 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: 2022-02-21 15:22+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+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"
@@ -2923,13 +2923,13 @@ msgctxt ""
msgid "<bookmark_value>procedures</bookmark_value> <bookmark_value>functions;using</bookmark_value> <bookmark_value>variables;passing to procedures, functions, properties</bookmark_value> <bookmark_value>parameters;for procedures, functions or properties</bookmark_value> <bookmark_value>parameters;passing by reference or value</bookmark_value> <bookmark_value>variables;scope</bookmark_value> <bookmark_value>scope of variables</bookmark_value> <bookmark_value>GLOBAL variables</bookmark_value> <bookmark_value>PUBLIC variables</bookmark_value> <bookmark_value>PRIVATE variables</bookmark_value> <bookmark_value>functions;return value type</bookmark_value> <bookmark_value>return value type of functions</bookmark_value>"
msgstr ""
-#. AYcBA
+#. RY6Z4
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"hd_id3149456\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures, Functions and Properties</link>"
+msgid "<variable id=\"UsingSubs_h1\"><link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures, Functions and Properties</link></variable>"
msgstr ""
#. DSyYW
@@ -19114,13 +19114,13 @@ msgctxt ""
msgid "Performs the integer division on two numbers and returns the result."
msgstr ""
-#. iN7zc
+#. 7hxCB
#: 03070700.xhp
msgctxt ""
"03070700.xhp\n"
"bm_id3150669\n"
"help.text"
-msgid "<bookmark_value>Operators;Integer division (\\)</bookmark_value> <bookmark_value>\"\\\\\" operator (mathematical)</bookmark_value>"
+msgid "<bookmark_value>Operators;Integer division (\\\\)</bookmark_value> <bookmark_value>\"\\\\\" operator (mathematical)</bookmark_value>"
msgstr ""
#. KDgG2
@@ -23056,13 +23056,13 @@ msgctxt ""
msgid "<bookmark_value>Call statement</bookmark_value>"
msgstr ""
-#. LmAwf
+#. HW8av
#: 03090401.xhp
msgctxt ""
"03090401.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">Call Statement</link>"
+msgid "<variable id=\"Call_h1\"><link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">Call Statement</link></variable>"
msgstr ""
#. nPKzF
@@ -23074,15 +23074,6 @@ msgctxt ""
msgid "Transfers the control of the program to a subroutine, a function, or a procedure of a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">Dynamic Link Library (DLL)</link>. The keyword, type and number of parameters is dependent on the routine that is being called."
msgstr ""
-#. MdeJS
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
-"help.text"
-msgid "Syntax:"
-msgstr "الصياغة:"
-
#. CXLBw
#: 03090401.xhp
msgctxt ""
@@ -23101,15 +23092,6 @@ msgctxt ""
msgid "[Call] name [(] [param :=] value, ... [)]"
msgstr ""
-#. 5MBBJ
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
-"help.text"
-msgid "Parameters:"
-msgstr "المعاملات:"
-
#. C2MXB
#: 03090401.xhp
msgctxt ""
@@ -23155,15 +23137,6 @@ msgctxt ""
msgid "When a function is used as an expression, enclosing parameters with brackets becomes necessary. Using a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Declare statement</link> is compulsory prior to call a DLL."
msgstr ""
-#. QZZ8c
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"help.text"
-msgid "Example:"
-msgstr "مثال:"
-
#. eyeVE
#: 03090402.xhp
msgctxt ""
@@ -23731,31 +23704,40 @@ msgctxt ""
msgid "<bookmark_value>Function statement</bookmark_value>"
msgstr ""
-#. 4m9Rw
+#. 4AZJf
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"hd_id3153346\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">Function Statement</link>"
+msgid "<variable id=\"Function_h1\"><link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">Function Statement</link></variable>"
msgstr ""
-#. mLEJz
+#. i3BLj
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Defines a subroutine that can be used as an expression to determine a return type."
+msgid "A function is a block of code which runs when it is called. A function is usually called in an expression."
+msgstr ""
+
+#. fLBaF
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id451647246564161\n"
+"help.text"
+msgid "You can pass data, known as parameters or arguments, into a function. You may pass a parameter by value or by reference. When by reference, modifications applied to the parameter in the function will be sent back to the calling code."
msgstr ""
-#. qCx4G
+#. 9wMCM
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
-"par_id661588586825434\n"
+"par_id101647247154065\n"
"help.text"
-msgid "<literal>Sub</literal>, <literal>Function</literal> or <literal>Property</literal> statements are similar methods, without distinction. They receive parameters by reference allowing them to be modified in return. %PRODUCTNAME Basic compiler accepts their respective argument syntax to be used interchangeably."
+msgid "A function usually returns data as a result."
msgstr ""
#. zFnQ7
@@ -23857,6 +23839,15 @@ msgctxt ""
msgid "Exit For ' sItem found"
msgstr ""
+#. FTf7A
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id181647247913872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgstr ""
+
#. yZEAJ
#: 03090407.xhp
msgctxt ""
@@ -24055,6 +24046,15 @@ msgctxt ""
msgid "<emph>arguments:</emph> Optional parameters that you want to pass to the subroutine."
msgstr ""
+#. gPQ9W
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id181647247913872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgstr ""
+
#. CCDzt
#: 03090410.xhp
msgctxt ""
@@ -34369,13 +34369,13 @@ msgctxt ""
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence."
msgstr ""
-#. rSTG8
+#. pEjGF
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
"par_id3150541\n"
"help.text"
-msgid "If <literal>CreateUnoValue</literal> cannot be converted to the specified Uno type, and error occurs. For the conversion, the <literal>TypeConverter</literal> service is used."
+msgid "If <literal>CreateUnoValue</literal> cannot be converted to the specified Uno type, and error occurs. For the conversion, the <literal>com.sun.star.script.Converter</literal> service is used."
msgstr ""
#. bT3DS
@@ -37249,13 +37249,13 @@ msgctxt ""
msgid "CallByName Function"
msgstr ""
-#. tbCrP
+#. 3957Y
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/CallByName.xhp\">CallByName Function</link>"
+msgid "<variable id=\"CallByName_h1\"><link href=\"text/sbasic/shared/CallByName.xhp\">CallByName Function</link></variable>"
msgstr ""
#. 7EWyG
@@ -37267,13 +37267,13 @@ msgctxt ""
msgid "Invokes a subroutine by its string name."
msgstr ""
-#. GSJB7
+#. V4GLV
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"bm_id3150669\n"
"help.text"
-msgid "<bookmark_value>CallByName function</bookmark_value>"
+msgid "<bookmark_value>CallByName function</bookmark_value> <bookmark_value>API;OfficeFilePicker</bookmark_value>"
msgstr ""
#. kJE7K
@@ -37411,13 +37411,13 @@ msgctxt ""
msgid "<literal>ScriptForge.Platform.Architecture</literal> information is retrieved."
msgstr ""
-#. WR7MJ
+#. rvtXD
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"par_id651644588404943\n"
"help.text"
-msgid "<literal>DisplayDirectory</literal> property of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker-members.html\" name=\"FilePicker\">com.sun.star.ui.dialogs.FilePicker</link> UNO service is assigned a value, its content is read twice."
+msgid "<literal>DisplayDirectory</literal> property of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker-members.html\" name=\"FilePicker\">com.sun.star.ui.dialogs.FilePicker</link> UNO service is set to the user home folder, its content is read twice."
msgstr ""
#. 3DsDt
@@ -39967,13 +39967,13 @@ msgctxt ""
msgid "<variable id=\"compatibilitymodeh1\"><link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
msgstr ""
-#. ipFPG
+#. 4EEry
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"N0120\n"
"help.text"
-msgid "<literal>CompatibilityMode()</literal> function controls runtime mode and affects all code executed after setting or resetting the mode."
+msgid "<literal>CompatibilityMode()</literal> function controls or queries runtime mode. It affects all code executed after setting or resetting the runtime mode."
msgstr ""
#. YSokk
@@ -39985,13 +39985,40 @@ msgctxt ""
msgid "Use this feature with caution, limit it to document conversion for example."
msgstr ""
-#. GJLGQ
+#. VDnNU
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"bas_id751645014686110\n"
+"help.text"
+msgid "CompatibilityMode(Optional Enable As Boolean) As Boolean"
+msgstr ""
+
+#. 34s7C
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
-"par_id271561645872679\n"
+"par_id551648117368688\n"
"help.text"
-msgid "<literal>Option Compatible</literal> turns on VBA compatibility at module level for the %PRODUCTNAME Basic interpreter."
+msgid "<literal>CompatibilityMode</literal> function always returns the mode that is active after its execution. That is if called with argument, it returns the new mode, if called without argument, it returns active mode without modifying it."
+msgstr ""
+
+#. buGpD
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id971648117815981\n"
+"help.text"
+msgid "<emph>Enable</emph>: Sets or unsets new compatibility mode when the argument is present."
+msgstr ""
+
+#. ouFEB
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id371648123169691\n"
+"help.text"
+msgid "<literal>CompatibilityMode</literal> function relates to <link href=\"text/sbasic/shared/03103350.xhp#vbasupportstatement\" name=\"VBASupport compiler option\">Option VBASupport 1</link>, in which case it always returns <literal>True</literal>. It is unrelated to <link href=\"text/sbasic/shared/compatible.xhp#compatiblestatement\" name=\"Option Compatible compiler directive\">Option Compatible</link> compiler directive."
msgstr ""
#. NM3yP
@@ -40003,13 +40030,13 @@ msgctxt ""
msgid "This function may affect or help in the following situations:"
msgstr ""
-#. 9jVgZ
+#. RSBt2
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
-"N0122\n"
+"par_id301645018760314\n"
"help.text"
-msgid "Creating enumerations with <link href=\"text/sbasic/shared/enum.xhp\" name=\"enum statement\">Enum statement</link>"
+msgid "Scoping of variables."
msgstr ""
#. f6LjG
@@ -40039,15 +40066,6 @@ msgctxt ""
msgid "Color components calculation with the <link href=\"text/sbasic/shared/03010303.xhp\" name=\"linkred\"><literal>Red</literal></link> and <link href=\"text/sbasic/shared/03010301.xhp\" name=\"linkblue\"><literal>Blue</literal></link> functions which <emph>are interchanged</emph> (The <link href=\"text/sbasic/shared/03010302.xhp\" name=\"linkgreen\"><literal>Green</literal></link> function is not affected)."
msgstr ""
-#. piCTC
-#: compatibilitymode.xhp
-msgctxt ""
-"compatibilitymode.xhp\n"
-"N0126\n"
-"help.text"
-msgid "<literal>CompatibilityMode()</literal> function may be necessary when resorting to <literal>Option Compatible</literal> or <literal>Option VBASupport</literal> compiler modes."
-msgstr ""
-
#. cFz7C
#: compatibilitymode.xhp
msgctxt ""
@@ -40057,13 +40075,13 @@ msgctxt ""
msgid "Given a NOT empty directory at <emph>file:///home/me/Test</emph>"
msgstr ""
-#. 7mLBk
+#. yntDo
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"par_id461561646613414\n"
"help.text"
-msgid "With <literal>CompatibilityMode( true )</literal> the program results in an error, otherwise the Test directory and all its content is deleted."
+msgid "With <literal>CompatibilityMode( True )</literal> the program raises an error, otherwise the <literal>Test</literal> directory and all its content is deleted."
msgstr ""
#. TcWG2
@@ -40075,22 +40093,22 @@ msgctxt ""
msgid "Modifying <literal>Dir</literal> behavior"
msgstr ""
-#. S3VK4
+#. RcnAo
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"par_id831561647900147\n"
"help.text"
-msgid "CompatibilityMode( true ) ' Shows also normal files"
+msgid "CompatibilityMode( Enable := True ) ' Shows also normal files"
msgstr ""
-#. YJM4j
+#. oBqaD
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
-"N0129\n"
+"bas_id641645017016611\n"
"help.text"
-msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for <literal>Option Compatible</literal> simple examples, or <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link> for other class examples making use of <literal>Option Compatible</literal> compiler mode."
+msgid "CompatibilityMode Enable := False ' Shows only directories"
msgstr ""
#. P7qDB
@@ -40102,15 +40120,6 @@ msgctxt ""
msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
msgstr ""
-#. YwBF4
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"N0103\n"
-"help.text"
-msgid "<bookmark_value>VBA compatibility option</bookmark_value>"
-msgstr ""
-
#. imVdb
#: compatible.xhp
msgctxt ""
@@ -40129,15 +40138,6 @@ msgctxt ""
msgid "<literal>Option Compatible</literal> extends %PRODUCTNAME Basic compiler and runtime, allowing supplemental language constructs to Basic."
msgstr ""
-#. SNhhH
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"par_id931561646897105\n"
-"help.text"
-msgid "The function <link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"copatibilitymode\"><literal>CompatibilityMode()</literal></link> controls runtime mode and affects all code executed after setting or resetting the mode."
-msgstr ""
-
#. w5NPC
#: compatible.xhp
msgctxt ""
@@ -40165,24 +40165,6 @@ msgctxt ""
msgid "Create <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"addvbaconstants\">VBA constants including non-printable characters</link>."
msgstr ""
-#. jGHBX
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"N0110\n"
-"help.text"
-msgid "Support <literal>Private</literal>/<literal>Public</literal> keywords for procedures."
-msgstr ""
-
-#. VGYZH
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"N0111\n"
-"help.text"
-msgid "Compulsory <literal>Set</literal> statement for objects."
-msgstr ""
-
#. xwLEC
#: compatible.xhp
msgctxt ""
@@ -40237,13 +40219,13 @@ msgctxt ""
msgid "' With this option the code works, otherwise it causes a compiling error"
msgstr ""
-#. E6GpA
+#. rWE5B
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"par_id381561650119146\n"
"help.text"
-msgid "Statement <literal>Option VBAsupport 1</literal> sets <literal>Option Compatible</literal> statement automatically."
+msgid "Statement <literal>Option VBAsupport 1</literal> implies <literal>Option Compatible</literal> statement automatically."
msgstr ""
#. j8iHM
@@ -41416,13 +41398,13 @@ msgctxt ""
msgid "<bookmark_value>Property statement</bookmark_value>"
msgstr ""
-#. 6Gjab
+#. a5AX6
#: property.xhp
msgctxt ""
"property.xhp\n"
"N0182\n"
"help.text"
-msgid "Property Statement"
+msgid "<variable id=\"Property_h1\"><link href=\"text/sbasic/shared/Property.xhp\" name=\"Property statement\">Property Statement</link></variable>"
msgstr ""
#. CxW74
@@ -41569,22 +41551,22 @@ msgctxt ""
msgid "Use <emph>Let</emph> or <emph>Set</emph> when handling UNO services or class objects:"
msgstr ""
-#. KbzAx
+#. mbhy9
#: property.xhp
msgctxt ""
"property.xhp\n"
-"N0237\n"
+"par_id181647247913872\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> statements"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
msgstr ""
-#. Dh5aG
+#. KbzAx
#: property.xhp
msgctxt ""
"property.xhp\n"
-"N0238\n"
+"N0237\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\" name=\"Using Procedures and Fonctions\">Using Procedures and Functions</link>"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> statements"
msgstr ""
#. uM2zs
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared/03.po b/source/ar/helpcontent2/source/text/sbasic/shared/03.po
index 3a4d7c64905..d2dcf51aba3 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-04-04 11:40+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"
@@ -196,22 +196,22 @@ msgctxt ""
msgid "Invoking ScriptForge services"
msgstr ""
-#. wKZM6
+#. SaBEy
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id781606153472028\n"
"help.text"
-msgid "The described modules and classes are invoked from user scripts as \"Services\". A generic constructor of those services has been designed for that purpose for each language:"
+msgid "The described modules and classes are invoked from user scripts as \"Services\". A generic constructor of those services has been designed for that purpose for each language."
msgstr ""
-#. VQNBs
+#. xhj84
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id871637256506167\n"
"help.text"
-msgid "The <literal>Dispose</literal> method is available in all services and should be called to free up resources after usage."
+msgid "The <literal>Dispose</literal> method is available in all services and should be called to free up resources after usage:"
msgstr ""
#. Depaw
@@ -2527,6 +2527,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. AvW3k
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Base</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. vi6hS
#: sf_base.xhp
msgctxt ""
@@ -3868,6 +3877,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. RAtZX
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. z3JcW
#: sf_calc.xhp
msgctxt ""
@@ -4597,6 +4615,33 @@ msgctxt ""
msgid "A sheet reference that can be used as argument of methods like <literal>CopySheet</literal>."
msgstr ""
+#. WanFm
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id541591025591322\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wRCYZ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id661591025591188\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. w7Gft
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731591025591006\n"
+"help.text"
+msgid "Returns the sheet name of a given range address."
+msgstr ""
+
#. HLpEQ
#: sf_calc.xhp
msgctxt ""
@@ -7090,6 +7135,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. jkE4f
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Chart</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. LvW6m
#: sf_chart.xhp
msgctxt ""
@@ -7783,6 +7837,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. 8ASCW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Database</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. Cr4oo
#: sf_database.xhp
msgctxt ""
@@ -11770,6 +11833,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. XVADJ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Document</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. X6BV3
#: sf_document.xhp
msgctxt ""
@@ -12553,13 +12625,13 @@ msgctxt ""
msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
msgstr ""
-#. DEEhz
+#. m9AyA
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id191611153511038\n"
"help.text"
-msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools > Customize > Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools - Customize - Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
msgstr ""
#. enSv9
@@ -15334,6 +15406,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. WyEtQ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Form</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. KfjEA
#: sf_form.xhp
msgctxt ""
@@ -16549,6 +16630,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. pzkhK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>FormControl</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. BeDqF
#: sf_formcontrol.xhp
msgctxt ""
@@ -18727,13 +18817,13 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
-#. nkcFt
+#. 9xE8t
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id421614353247163\n"
"help.text"
-msgid "To invoke the <literal>L10N</literal> service, two optional arguments can be specified to determine the folder where PO files are located and the locale to be used, as described below."
+msgid "There are several ways to invoke the <literal>L10N</literal> service using up to five optional arguments that specify the folder where PO files are stored, the locale and encoding to be used, as well as a fallback PO file and its encoding."
msgstr ""
#. cCwBS
@@ -18754,49 +18844,85 @@ msgctxt ""
msgid "<emph>locale</emph>: A string in the form \"la-CO\" (language-COUNTRY) or in the form \"la\" (language) only."
msgstr ""
-#. Z5Pb3
+#. gswGR
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
-"par_id301614358956087\n"
+"par_id591646219881864\n"
"help.text"
-msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgid "<emph>encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
msgstr ""
-#. 3YPqe
+#. CXd3e
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281646219882464\n"
+"help.text"
+msgid "<emph>locale2</emph>: A string specifying the fallback locale to be used in case the PO file corresponding to the locale defined the <literal>locale</literal> parameter does not exist. This parameter is expressed in the form \"la-CO\" (language-COUNTRY) or \"la\" (language) only."
+msgstr ""
+
+#. TaFFX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id881646219882951\n"
+"help.text"
+msgid "<emph>encoding2</emph>: The character set of the fallback PO file corresponding to the <literal>locale2</literal> argument. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. wbSFz
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Beware that %PRODUCTNAME does not implement all existing character sets."
+msgstr ""
+
+#. 3ApdD
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id891614358528334\n"
"help.text"
-msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods."
+msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods, which is useful for creating POT files."
msgstr ""
-#. XUTWZ
+#. rFfgF
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id611614358672609\n"
"help.text"
-msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the current %PRODUCTNAME locale settings."
+msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the locale defined for the %PRODUCTNAME user interface, which is the same locale defined in the <literal>OfficeLocale</literal> property of the <link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"OfficeLocale_link\">Platform</link> service."
msgstr ""
-#. F998n
+#. FewYJ
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id391625855630975\n"
"help.text"
-msgid "The example above will result in an runtime error if the PO file for the current locale does not exist in the specified folder."
+msgid "The example above will result in an runtime error if the PO file corresponding to the <literal>OfficeLocale</literal> locale does not exist in the specified folder."
msgstr ""
-#. Ab7iH
+#. gSzLN
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id321614358809763\n"
"help.text"
-msgid "In the example below, both the folder name and locale settings are explicitly defined to be Belgian French."
+msgid "In the example below, the locale is explicitly defined to be Belgian French (\"fr-BE\"), hence the service will load the file \"fr-BE.po\" from the folder \"C:\\myPOFiles\". If the file does not exist, an error will occur."
+msgstr ""
+
+#. WpYLF
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id271646220649616\n"
+"help.text"
+msgid "To avoid errors, it is possible to specify a preferred and a fallback locale and encoding. The following example will first try to load the file \"fr-BE.po\" from the specified folder and if it does not exist, the file \"en-US.po\" will be loaded."
msgstr ""
#. UGFWB
@@ -18826,6 +18952,15 @@ msgctxt ""
msgid "The examples above can be translated to Python as follows:"
msgstr ""
+#. Z5Pb3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301614358956087\n"
+"help.text"
+msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgstr ""
+
#. 6mcLb
#: sf_l10n.xhp
msgctxt ""
@@ -19492,22 +19627,22 @@ msgctxt ""
msgid "The examples above can be written in Python as follows:"
msgstr ""
-#. ENT7Q
+#. 6LQF4
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"pyc_id981636717957632\n"
"help.text"
-msgid "msg = f\"Menu item: {s_args[0]}\\n\""
+msgid "msg = f\"Menu name: {s_args[0]}\\n\""
msgstr ""
-#. 8MYNj
+#. GPKGe
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"pyc_id851636718008427\n"
"help.text"
-msgid "msg += f\"Menu name: {s_args[1]}\\n\""
+msgid "msg += f\"Menu item: {s_args[1]}\\n\""
msgstr ""
#. EfEaE
@@ -25963,13 +26098,13 @@ msgctxt ""
msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
-#. TxY93
+#. shCRf
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id201588520551463\n"
"help.text"
-msgid "Returns a document object referring to either the active window, a given window or the active document."
+msgid "Returns an open document object referring to either the active window, a given window or the active document."
msgstr ""
#. xgMAv
@@ -26278,13 +26413,13 @@ msgctxt ""
msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
msgstr ""
-#. khKSW
+#. Em5in
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191611153511038\n"
"help.text"
-msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools > Customize > Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools - Customize - Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
msgstr ""
#. NnBWM
@@ -26440,6 +26575,15 @@ msgctxt ""
msgid "Service invocation"
msgstr ""
+#. YFLf6
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Writer</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. 3LPrN
#: sf_writer.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/scalc/00.po b/source/ar/helpcontent2/source/text/scalc/00.po
index acf6ad1efc9..c611697e9ca 100644
--- a/source/ar/helpcontent2/source/text/scalc/00.po
+++ b/source/ar/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1105,6 +1105,24 @@ msgctxt ""
msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph>.</variable>"
msgstr ""
+#. YELPK
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id971647297529392\n"
+"help.text"
+msgid "<variable id=\"tools_forms\">Choose <emph>Tools - Forms</emph>.</variable>"
+msgstr ""
+
+#. QLPxD
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id371647273694433\n"
+"help.text"
+msgid "<variable id=\"share_spreadsheet\">Choose <menuitem>Tools - Share Spreadsheet</menuitem></variable>"
+msgstr ""
+
#. uHRwy
#: 00000406.xhp
msgctxt ""
@@ -1132,14 +1150,14 @@ msgctxt ""
msgid "Choose <emph>Data - Calculate - Recalculate</emph>."
msgstr ""
-#. egZqC
+#. CwoaA
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3149257\n"
"help.text"
-msgid "F9"
-msgstr "F9"
+msgid "Press <keycode>F9</keycode>"
+msgstr ""
#. EA2vV
#: 00000406.xhp
@@ -1150,6 +1168,33 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph>."
msgstr ""
+#. CAGQA
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id891645217179561\n"
+"help.text"
+msgid "Choose <menuitem>Data - Calculate - Recalculate hard</menuitem>."
+msgstr ""
+
+#. e6kAE
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id21645217233263\n"
+"help.text"
+msgid "Press <keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>"
+msgstr ""
+
+#. soEE4
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id31645223233125\n"
+"help.text"
+msgid "Select a formula cell or a formula cell range and choose <menuitem>Data - Calculate - Formula to values</menuitem>"
+msgstr ""
+
#. YmRzU
#: 00000406.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index f5cbc1989a7..1d854ca58a4 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+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"
@@ -15235,13 +15235,13 @@ msgctxt ""
msgid "RANDBETWEEN.NV(Bottom; Top)"
msgstr ""
-#. q82vw
+#. Cwb6C
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id91590242400917\n"
"help.text"
-msgid "Returns an non-volatile integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive). A non-volatile function is not recalculated at new input events or pressing <keycode>F9</keycode>. However, the function is recalculated when pressing <keycode>F9</keycode> with the cursor on the cell containing the function, when opening the file, and when <emph>Top</emph> or <emph>Bottom</emph> are recalculated."
+msgid "Returns an non-volatile integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive). A non-volatile function is not recalculated at new input events or pressing <keycode>F9</keycode>. However, the function is recalculated when pressing <keycode>F9</keycode> with the cursor on the cell containing the function, when opening the file, when using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>) and when <emph>Top</emph> or <emph>Bottom</emph> are recalculated."
msgstr ""
#. AngvN
@@ -15388,13 +15388,13 @@ msgctxt ""
msgid "RAND.NV()"
msgstr ""
-#. QARNV
+#. G5FWM
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id271590239748534\n"
"help.text"
-msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing <keycode>F9</keycode>, except when the cursor is on the cell containing the function. The function is recalculated when opening the file."
+msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing <keycode>F9</keycode>, except when the cursor is on the cell containing the function or using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>). The function is recalculated when opening the file."
msgstr ""
#. sCwno
@@ -46852,49 +46852,31 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Calculate\">In either mode, with formula cell(s) selected pressing F9 recalculates the currently selected cells and formula cells that depend on them. This can be useful after reading documents with recalculation disabled and individual cells need recalculation.</ahelp>"
msgstr ""
-#. jVUni
+#. g7GEo
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"par_id315475899\n"
"help.text"
-msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
+msgid "Press <keycode>F9</keycode> to recalculate. Press <keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode> to recalculate all formulas in the document, including Add-In functions and non-volatile functions."
msgstr ""
-#. wosFk
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id3150793\n"
-"help.text"
-msgid "Recalculation options are, Recalculation on File Load, with values:"
-msgstr ""
-
-#. Cr8g8
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id3150795\n"
-"help.text"
-msgid "Always recalculate, Never recalculate (default option), Prompt user."
-msgstr ""
-
-#. TCBFm
+#. qyZ6P
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
-"par_id315475855\n"
+"par_id3150799\n"
"help.text"
-msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document, including Add-In functions. The hard recalculation correctly recalculates all formula cells."
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
msgstr ""
-#. qyZ6P
+#. a9keX
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
-"par_id3150799\n"
+"par_id641645233417894\n"
"help.text"
-msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgid "<link href=\"text/shared/optionen/01060900.xhp\" name=\"recalculationoptions\">Recalculation options</link>"
msgstr ""
#. CWRgk
@@ -52666,13 +52648,22 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/calculate.xhp\" name=\"Calculate\">Calculate</link>"
msgstr ""
-#. CFB7A
+#. 8YGcD
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
"par_id241584668179318\n"
"help.text"
-msgid "<ahelp hid=\".\">Commands to calculate formula cells.</ahelp>"
+msgid "Commands to calculate formula cells."
+msgstr ""
+
+#. f2aRJ
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id251645222672072\n"
+"help.text"
+msgid "Choose <menuitem>Data - Calculate</menuitem>"
msgstr ""
#. 9AbDs
@@ -54430,6 +54421,51 @@ msgctxt ""
msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
msgstr ""
+#. 363bk
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formula to values"
+msgstr ""
+
+#. tthof
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"bm_id321645231251889\n"
+"help.text"
+msgid "<bookmark_value>convert;formula to values</bookmark_value><bookmark_value>replace formula with values</bookmark_value><bookmark_value>recalculate;formula to values</bookmark_value><bookmark_value>formula to values;convert</bookmark_value><bookmark_value>formula to values;recalculate</bookmark_value>"
+msgstr ""
+
+#. u3A5z
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"hd_id701645222861113\n"
+"help.text"
+msgid "<variable id=\"formula2valueh1\"><link href=\"text/scalc/01/formula2value.xhp\" name=\"formula to values\">Formula to value</link></variable>"
+msgstr ""
+
+#. CATpt
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"par_id501645222861116\n"
+"help.text"
+msgid "Replaces the formula cell with value calculated by the formula. The formula is lost."
+msgstr ""
+
+#. AKrcm
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"par_id51645230882532\n"
+"help.text"
+msgid "Use this command to convert formula cells into data cells. The converted cells contents becomes static and will not be recalculated."
+msgstr ""
+
#. ebLBc
#: ful_func.xhp
msgctxt ""
@@ -67444,6 +67480,123 @@ msgctxt ""
msgid "Limit the maximum numbers of rows to a specified value or leave undefined, but limited to the %PRODUCTNAME Calc row limit."
msgstr ""
+#. AWPkL
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"tit\n"
+"help.text"
+msgid "Recalculate hard"
+msgstr ""
+
+#. EB6vW
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"bm_id351645231629404\n"
+"help.text"
+msgid "<bookmark_value>calculate;recalculate hard</bookmark_value> <bookmark_value>formulas;recalculate hard</bookmark_value> <bookmark_value>calculate;force recalculation</bookmark_value> <bookmark_value>formulas;force recalculation</bookmark_value> <bookmark_value>non volatile functions;force recalculation</bookmark_value> <bookmark_value>cell contents;force recalculation</bookmark_value>"
+msgstr ""
+
+#. WXR6C
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"hd_id611645217532285\n"
+"help.text"
+msgid "<variable id=\"recalculatehardh1\"><link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\">Recalculate Hard</link></variable>"
+msgstr ""
+
+#. gCAFM
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"par_id631645217532291\n"
+"help.text"
+msgid "Recalculates all formulas in the document, including Add-In functions and non-volatile functions."
+msgstr ""
+
+#. uDfgm
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"par_id361645227084327\n"
+"help.text"
+msgid "The <menuitem>Recalculate Hard</menuitem> command forces recalculation of all formula cells of the spreadsheet document, including explicit non-volatile functions, even if no new input event exist. Examples of explicit non-volatile functions are <link href=\"text/scalc/01/04060106.xhp#rand_nv\" name=\"RAND.NV\">RAND.NV</link> and <link href=\"text/scalc/01/04060106.xhp#randbetween_nv\" name=\"RANDBETWEEN.NV\">RANDBETWEEN.NV</link>."
+msgstr ""
+
+#. t5LiZ
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sharing Spreadsheets"
+msgstr ""
+
+#. nGSyy
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"bm_id671647274159909\n"
+"help.text"
+msgid "<bookmark_value>share spreadsheet</bookmark_value> <bookmark_value>spreadsheet;collaboration</bookmark_value> <bookmark_value>spreadsheet;share</bookmark_value>"
+msgstr ""
+
+#. 3vzpA
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"hd_id461647272004705\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/shared_spreadsheet.xhp\" name=\"Share spreadsheet\">Share Spreadsheet</link></variable>"
+msgstr ""
+
+#. KZGLG
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id551647272004709\n"
+"help.text"
+msgid "Sharing a spreadsheet allows several users to open the same file for editing at the same time."
+msgstr ""
+
+#. 9BuYS
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id211647275285230\n"
+"help.text"
+msgid "The spreadsheet needs to be on a shared drive, server, website, or similar. Some conditions must be met on operating systems with user permission management:"
+msgstr ""
+
+#. 7Cbn3
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id621647275321672\n"
+"help.text"
+msgid "The shared file needs to reside in a location which is accessible by all collaborators."
+msgstr ""
+
+#. 6hGDF
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id731647275360618\n"
+"help.text"
+msgid "The file permissions for both the document and the corresponding lock file need to be set so that all collaborators can create, delete, and change the files."
+msgstr ""
+
+#. UhRSD
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id631647275500217\n"
+"help.text"
+msgid "In order to correctly identify the changes, each collaborator should enter their name in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - User Data</menuitem> on the Menu bar."
+msgstr ""
+
#. k7H5Y
#: solver.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared.po b/source/ar/helpcontent2/source/text/shared.po
index 6643996dca2..ff3612b7c55 100644
--- a/source/ar/helpcontent2/source/text/shared.po
+++ b/source/ar/helpcontent2/source/text/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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -277,13 +277,22 @@ msgctxt ""
msgid "Fontwork Gallery"
msgstr ""
-#. Zcwt5
+#. A6ecD
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id81646926301557\n"
+"help.text"
+msgid "<image src=\"cmd/lc_fontworkgalleryfloater.svg\" id=\"img_id311646926301559\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id331646926301560\">Icon Fontwork Gallery</alt></image>"
+msgstr ""
+
+#. zBxMN
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
"par_idN10571\n"
"help.text"
-msgid "Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object."
+msgid "Opens the Fontwork Gallery where you can select another preview. Click <emph>OK</emph> to apply the new set of properties to your Fontwork object."
msgstr ""
#. nG6ME
@@ -295,6 +304,15 @@ msgctxt ""
msgid "Fontwork Shape"
msgstr ""
+#. PgQM4
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id51646926964588\n"
+"help.text"
+msgid "<image src=\"cmd/lc_fontwork.svg\" id=\"img_id801646926964589\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761646926964590\">Icon Fontwork Shape</alt></image>"
+msgstr ""
+
#. CTe3i
#: fontwork_toolbar.xhp
msgctxt ""
@@ -313,6 +331,15 @@ msgctxt ""
msgid "Fontwork Same Letter Heights"
msgstr ""
+#. gBD67
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id501646927155677\n"
+"help.text"
+msgid "<image src=\"cmd/lc_fontworksameletterheights.svg\" id=\"img_id41646927155678\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id141646927155679\">Icon Fontwork Same Letter Height</alt></image>"
+msgstr ""
+
#. dyVEY
#: fontwork_toolbar.xhp
msgctxt ""
@@ -331,6 +358,15 @@ msgctxt ""
msgid "Fontwork Alignment"
msgstr ""
+#. dPegd
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id211646927242197\n"
+"help.text"
+msgid "<image src=\"cmd/lc_alignhorizontalcenter.svg\" id=\"img_id281646927242198\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id731646927242199\">Icon Fontwork Alignment</alt></image>"
+msgstr ""
+
#. FvBdo
#: fontwork_toolbar.xhp
msgctxt ""
@@ -358,76 +394,67 @@ msgctxt ""
msgid "Fontwork Character Spacing"
msgstr ""
-#. WnmJf
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105F7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
-msgstr ""
-
-#. DBE3J
+#. uMC4D
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1060E\n"
+"par_id251646927506111\n"
"help.text"
-msgid "Click to apply the character spacing to the selected Fontwork objects."
+msgid "<image src=\"cmd/lc_spacing.svg\" id=\"img_id441646927506112\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821646927506113\">Icon Fontwork Character Spacing</alt></image>"
msgstr ""
-#. sNDsK
+#. WLvKk
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1061D\n"
+"par_id791646928579114\n"
"help.text"
-msgid "Custom"
+msgid "Select the character spacing values to apply to the Fontwork object."
msgstr ""
-#. MJAQ5
+#. xERFF
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
"par_idN10621\n"
"help.text"
-msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
+msgid "<emph>Custom:</emph> Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
msgstr ""
-#. HhFZK
+#. sgFfF
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN10638\n"
+"par_idN1063C\n"
"help.text"
-msgid "Value"
-msgstr "قيمة"
+msgid "<ahelp hid=\".\"><emph>Value:</emph> enter the Fontwork character spacing value.</ahelp>"
+msgstr ""
-#. W2WE8
+#. 2aGeB
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1063C\n"
+"hd_id981646929182163\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
+msgid "Toggle Extrusion"
msgstr ""
-#. Si9bP
+#. FcnBM
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1064B\n"
+"par_id611646929193237\n"
"help.text"
-msgid "Kern Character Pairs"
+msgid "<image src=\"cmd/lc_extrusiontoggle.png\" id=\"img_id951646929193238\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id211646929193239\">Icon Toggle Extrusion</alt></image>"
msgstr ""
-#. MpdDc
+#. Dems2
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1064F\n"
+"par_id191646929193241\n"
"help.text"
-msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
+msgid "Switches the 3D effects on and off for the Fontwork objects."
msgstr ""
#. yEKhT
@@ -1213,6 +1240,15 @@ msgctxt ""
msgid "If an SQL statement is the basis for a form (see <emph>Form Properties</emph> - tab <emph>Data</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph>Data Source</emph></link>), then the filter and sort functions are only available when the SQL statement refers to only one table and is not written in the native SQL mode."
msgstr ""
+#. Ck3Di
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"hd_id3156448\n"
+"help.text"
+msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
+msgstr ""
+
#. daKA6
#: main0213.xhp
msgctxt ""
@@ -1240,13 +1276,13 @@ msgctxt ""
msgid "First Record"
msgstr ""
-#. nDepA
+#. 4VXqZ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3154013\n"
"help.text"
-msgid "<image id=\"img_id3150010\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150010\">Icon</alt></image>"
+msgid "<image id=\"img_id3150010\" src=\"cmd/lc_firstrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150010\">Icon First Record</alt></image>"
msgstr ""
#. VCqM6
@@ -1267,13 +1303,13 @@ msgctxt ""
msgid "Previous Record"
msgstr ""
-#. pAiKq
+#. AgQb3
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3145647\n"
"help.text"
-msgid "<image id=\"img_id3147394\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147394\">Icon</alt></image>"
+msgid "<image id=\"img_id3147394\" src=\"cmd/lc_prevrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147394\">Icon Previous Record</alt> </image>"
msgstr ""
#. gitqo
@@ -1294,13 +1330,13 @@ msgctxt ""
msgid "Next Record"
msgstr ""
-#. zrwqF
+#. ShvmR
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3146913\n"
"help.text"
-msgid "<image id=\"img_id3150753\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150753\">Icon</alt></image>"
+msgid "<image id=\"img_id3150753\" src=\"cmd/lc_nextrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150753\">Icon Next Record</alt></image>"
msgstr ""
#. BJBj8
@@ -1321,13 +1357,13 @@ msgctxt ""
msgid "Last Record"
msgstr ""
-#. 7Rc9Q
+#. up7uJ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3155337\n"
"help.text"
-msgid "<image id=\"img_id3163808\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
+msgid "<image id=\"img_id3163808\" src=\"cmd/lc_lastrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3163808\">Icon Last Record</alt></image>"
msgstr ""
#. 65BvC
@@ -1339,6 +1375,33 @@ msgctxt ""
msgid "<ahelp hid=\".uno:LastRecord\">Takes you to the last record.</ahelp>"
msgstr ""
+#. aKiBF
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"hd_id3149967\n"
+"help.text"
+msgid "New Record"
+msgstr ""
+
+#. D8UvX
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"par_id3149735\n"
+"help.text"
+msgid "<image id=\"img_id3155578\" src=\"cmd/lc_newrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155578\">Icon New Record</alt></image>"
+msgstr ""
+
+#. e4GJo
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"par_id3148460\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewRecord\">Creates a new record.</ahelp>"
+msgstr ""
+
#. xhXB3
#: main0213.xhp
msgctxt ""
@@ -1348,13 +1411,13 @@ msgctxt ""
msgid "Save Record"
msgstr ""
-#. 8jt28
+#. aLCSc
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3150647\n"
"help.text"
-msgid "<image id=\"img_id3150941\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150941\">Icon</alt></image>"
+msgid "<image id=\"img_id3150941\" src=\"cmd/lc_recsave.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150941\">Icon</alt></image>"
msgstr ""
#. Dbdf5
@@ -1375,13 +1438,13 @@ msgctxt ""
msgid "Undo: Data entry"
msgstr ""
-#. PUZuM
+#. AbFTp
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3166423\n"
"help.text"
-msgid "<image id=\"img_id3156138\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156138\">Icon</alt></image>"
+msgid "<image id=\"img_id3156138\" src=\"cmd/lc_recundo.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156138\">Icon Undo Data Entry</alt></image>"
msgstr ""
#. GAZ7t
@@ -1393,67 +1456,58 @@ msgctxt ""
msgid "<ahelp hid=\".uno:RecUndo\">Allows you to undo a data entry.</ahelp>"
msgstr ""
-#. aKiBF
-#: main0213.xhp
-msgctxt ""
-"main0213.xhp\n"
-"hd_id3149967\n"
-"help.text"
-msgid "New Record"
-msgstr ""
-
-#. 6m8Ym
+#. BEGSZ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3149735\n"
+"hd_id3153659\n"
"help.text"
-msgid "<image id=\"img_id3155578\" src=\"cmd/sc_newrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155578\">Icon</alt></image>"
+msgid "Delete Record"
msgstr ""
-#. e4GJo
+#. QiWg2
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3148460\n"
+"par_id3145584\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewRecord\">Creates a new record.</ahelp>"
+msgid "<image id=\"img_id3166434\" src=\"cmd/lc_deleterecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166434\">Icon Delete Record</alt></image>"
msgstr ""
-#. BEGSZ
+#. noMmE
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"hd_id3153659\n"
+"par_id3148817\n"
"help.text"
-msgid "Delete Record"
+msgid "<ahelp hid=\".uno:DeleteRecord\">Deletes a record. A query needs to be confirmed before deleting.</ahelp>"
msgstr ""
-#. GBGFJ
+#. oon6s
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3145584\n"
+"hd_id161647003427601\n"
"help.text"
-msgid "<image id=\"img_id3166434\" src=\"cmd/sc_deleterecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3166434\">Icon</alt></image>"
+msgid "Refresh Control"
msgstr ""
-#. noMmE
+#. zuPjH
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3148817\n"
+"par_id861647005853278\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteRecord\">Deletes a record. A query needs to be confirmed before deleting.</ahelp>"
+msgid "<image src=\"cmd/lc_refreshformcontrol.svg\" id=\"img_id901647005853278\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id581647005853278\">Icon Refresh Control</alt></image>"
msgstr ""
-#. Ck3Di
+#. 8RmLu
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"hd_id3156448\n"
+"par_id811647005853278\n"
"help.text"
-msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
+msgid "Refresh current control"
msgstr ""
#. BUNUA
@@ -1555,40 +1609,31 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
msgstr ""
-#. wRQBB
-#: main0226.xhp
-msgctxt ""
-"main0226.xhp\n"
-"hd_id3150669\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
-msgstr ""
-
-#. wGJxh
+#. ibj9F
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
-"hd_id3147335\n"
+"hd_id3146815\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgid "Automatic Control Focus"
msgstr ""
-#. xGUB3
+#. gg2Ag
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
-"hd_id3156024\n"
+"par_id3150261\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
+msgid "<image id=\"img_id3149351\" src=\"cmd/sc_autocontrolfocus.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149351\">Icon</alt></image>"
msgstr ""
-#. 2C7BG
+#. ZbBmL
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
-"hd_id3149295\n"
+"par_id3109848\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
+msgid "<ahelp hid=\".uno:AutoControlFocus\">If <emph>Automatic Control Focus</emph> is activated, the first form control will be selected when you open the document. If the button is not activated, the text will be selected after opening. The <link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Tab Order</link> that you have specified determines which is the first form control.</ahelp>"
msgstr ""
#. pE5xB
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index 28d59870195..cd83d76fff8 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: 2022-02-04 12:33+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ar/>\n"
@@ -9907,13 +9907,13 @@ msgctxt ""
msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar."
msgstr ""
-#. vXBgY
+#. sDtNU
#: 00000450.xhp
msgctxt ""
"00000450.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145606\">Sort Order Icon</alt></image>"
+msgid "<image id=\"img_id3145606\" src=\"cmd/lc_datasort.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145606\">Sort Order Icon</alt></image>"
msgstr ""
#. gPJGC
@@ -14722,6 +14722,15 @@ msgctxt ""
msgid "<variable id=\"dvergl\">Choose <menuitem>Edit - Track Changes - Compare Document</menuitem>.</variable>"
msgstr ""
+#. 6BEEG
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id561647263926698\n"
+"help.text"
+msgid "<variable id=\"protect\">Choose <menuitem>Edit - Track Changes - Protect</menuitem></variable>"
+msgstr ""
+
#. DrLSp
#: edit_menu.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 6166eb153bc..c8edf258a66 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: 2022-02-18 12:38+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\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"
@@ -12364,6 +12364,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Tracks each change that is made in the current document by author and date.</ahelp>"
msgstr ""
+#. FCvXm
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. FJDpx
#: 02230100.xhp
msgctxt ""
@@ -12553,6 +12562,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Prevents a user from deactivating the record changes feature, or from accepting or rejecting changes unless the user enters a password.</ahelp>"
msgstr ""
+#. T47Qe
+#: 02230150.xhp
+msgctxt ""
+"02230150.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. SuBoG
#: 02230200.xhp
msgctxt ""
@@ -12589,6 +12607,15 @@ msgctxt ""
msgid "<variable id=\"text\"><ahelp hid=\".\">Shows or hides recorded changes.</ahelp></variable>"
msgstr ""
+#. BkpRH
+#: 02230200.xhp
+msgctxt ""
+"02230200.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. yi8Qe
#: 02230200.xhp
msgctxt ""
@@ -12670,22 +12697,22 @@ msgctxt ""
msgid "Comment"
msgstr "تعليق"
-#. kACnW
+#. gYF3A
#: 02230300.xhp
msgctxt ""
"02230300.xhp\n"
"hd_id3083278\n"
"help.text"
-msgid "Comment"
-msgstr "تعليق"
+msgid "Insert Track Change Comment"
+msgstr ""
-#. PGH6N
+#. 56iv7
#: 02230300.xhp
msgctxt ""
"02230300.xhp\n"
"par_id3148983\n"
"help.text"
-msgid "<variable id=\"kommentartext\"><ahelp hid=\".\">Enter a comment for the recorded change.</ahelp></variable>"
+msgid "<variable id=\"kommentartext\"><ahelp hid=\".\">Enter a comment for the recorded change.</ahelp> </variable>"
msgstr ""
#. C9xGD
@@ -12715,13 +12742,13 @@ msgctxt ""
msgid "Manage changes"
msgstr ""
-#. boG5C
+#. PLMdJ
#: 02230400.xhp
msgctxt ""
"02230400.xhp\n"
"hd_id3145138\n"
"help.text"
-msgid "Manage changes"
+msgid "<variable id=\"Manage changesh1\"><link href=\"text/shared/01/02230400.xhp\" name=\"Manage changes\">Manage changes</link></variable>"
msgstr ""
#. frkxa
@@ -12733,6 +12760,15 @@ msgctxt ""
msgid "<variable id=\"redlining\"><ahelp hid=\".\">Accept or reject recorded changes.</ahelp></variable>"
msgstr ""
+#. Em4CR
+#: 02230400.xhp
+msgctxt ""
+"02230400.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. y9E7m
#: 02230401.xhp
msgctxt ""
@@ -13453,6 +13489,15 @@ msgctxt ""
msgid "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">Imports changes made to copies of the same document into the original document. Changes made to footnotes, headers, frames and fields are ignored.</ahelp></variable> Identical changes are merged automatically."
msgstr ""
+#. TDL3V
+#: 02230500.xhp
+msgctxt ""
+"02230500.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. fogGd
#: 02240000.xhp
msgctxt ""
@@ -13462,13 +13507,13 @@ msgctxt ""
msgid "Compare Document"
msgstr ""
-#. GWDPD
+#. gRCCF
#: 02240000.xhp
msgctxt ""
"02240000.xhp\n"
"hd_id3149877\n"
"help.text"
-msgid "Compare Document"
+msgid "<variable id=\"Compare Documenth1\"><link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link></variable>"
msgstr ""
#. hoReE
@@ -13480,6 +13525,15 @@ msgctxt ""
msgid "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Compares the current document with a document that you select.</ahelp></variable> The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking <emph>Reject</emph>, and then clicking <emph>Insert</emph>."
msgstr ""
+#. JUG2v
+#: 02240000.xhp
+msgctxt ""
+"02240000.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. RncNB
#: 02240000.xhp
msgctxt ""
@@ -42712,24 +42766,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/accelconfigpage/save\">Saves the current shortcut key configuration, so that you can load it later.</ahelp>"
msgstr ""
-#. 8FyVA
-#: 06140200.xhp
-msgctxt ""
-"06140200.xhp\n"
-"hd_id3150824\n"
-"help.text"
-msgid "Reset"
-msgstr ""
-
-#. TnfSW
-#: 06140200.xhp
-msgctxt ""
-"06140200.xhp\n"
-"par_id756248\n"
-"help.text"
-msgid "<ahelp hid=\".\">Resets modified values back to the default values.</ahelp>"
-msgstr ""
-
#. D33Wg
#: 06140200.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/02.po b/source/ar/helpcontent2/source/text/shared/02.po
index 49a79266553..cac2556df33 100644
--- a/source/ar/helpcontent2/source/text/shared/02.po
+++ b/source/ar/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-09-10 23:11+0200\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2022-01-12 14:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/ar/>\n"
@@ -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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028544.000000\n"
#. Edm6o
@@ -682,13 +682,13 @@ msgctxt ""
msgid "Icon on the <emph>Insert</emph> toolbar (you may need to enable this initially invisible icon):"
msgstr ""
-#. h7uSA
+#. D33rn
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3155341\n"
"help.text"
-msgid "<image id=\"img_id3150943\" src=\"cmd/sc_config.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150943\">Icon</alt></image>"
+msgid "<image id=\"img_id3150943\" src=\"cmd/lc_choosecontrols.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150943\">Icon Select</alt></image>"
msgstr ""
#. Dbydo
@@ -817,13 +817,13 @@ msgctxt ""
msgid "Select"
msgstr ""
-#. RGwii
+#. fgdPL
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3156106\n"
"help.text"
-msgid "<image id=\"img_id3153516\" src=\"cmd/sc_drawselect.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153516\">Icon</alt></image>"
+msgid "<image id=\"img_id3153516\" src=\"cmd/lc_selectobject.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153516\">Icon Select</alt></image>"
msgstr ""
#. G4itx
@@ -835,130 +835,148 @@ msgctxt ""
msgid "This icon switches the mouse pointer to the select mode, or deactivates this mode. The select mode is used to select the controls of the current form."
msgstr ""
-#. bHC3y
+#. PaHBt
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3146914\n"
+"par_idN11B57\n"
"help.text"
-msgid "Check Box"
+msgid "Wizards On/Off"
msgstr ""
-#. xGAoN
+#. fhDwK
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148483\n"
+"par_idN11B65\n"
"help.text"
-msgid "<image id=\"img_id3156380\" src=\"cmd/sc_checkbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156380\">Icon Check Box</alt></image>"
+msgid "<image id=\"img_id6128727\" src=\"cmd/lc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6128727\">Icon Toggle Form Control Wizards</alt></image>"
msgstr ""
-#. fbJjh
+#. ySzEv
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3153927\n"
+"par_idN11B76\n"
"help.text"
-msgid "<ahelp hid=\".uno:CheckBox\">Creates a check box.</ahelp> Check boxes allow you to activate or deactivate a function in a form."
+msgid "Turns on and turns off the automatic form controls wizards."
msgstr ""
-#. gpFGz
+#. DAjtU
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3153794\n"
+"par_id6403088\n"
"help.text"
-msgid "Text Box"
+msgid "These wizards help you to enter the properties of list boxes, table controls, and other controls."
msgstr ""
-#. jxTx3
+#. aoQcs
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3163665\n"
+"par_idN10CF7\n"
"help.text"
-msgid "<image id=\"img_id3153266\" src=\"cmd/sc_edit.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153266\">Icon Text Box</alt></image>"
+msgid "Form Design"
msgstr ""
-#. p3BAw
+#. JCSYg
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3158444\n"
+"par_id671646965582973\n"
"help.text"
-msgid "<ahelp hid=\".uno:Edit\">Creates a text box.</ahelp> Text boxes are fields in which the user can enter text. In a form, text boxes display data or allow for new data input."
+msgid "<image src=\"cmd/lc_formdesigntools.svg\" id=\"img_id1001646965582975\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641646965582976\">Icon Form Design Tools</alt></image>"
msgstr ""
-#. cEtdx
+#. vxxz2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3151218\n"
+"par_idN10D0D\n"
"help.text"
-msgid "Formatted Field"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/main0226.xhp\"><emph>Form Design</emph></link> toolbar.</ahelp>"
msgstr ""
-#. ehyrQ
+#. yDFji
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154836\n"
+"hd_id3145618\n"
"help.text"
-msgid "<image id=\"img_id3143277\" src=\"cmd/sc_formattedfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143277\">Icon Formatted Field</alt></image>"
+msgid "Label Field"
msgstr ""
-#. W4Jis
+#. z6KGA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3147547\n"
+"par_id3145295\n"
"help.text"
-msgid "<ahelp hid=\".uno:FormattedField\">Creates a formatted field.</ahelp> A formatted field is a text box in which you can define how the inputs and outputs are formatted, and which limiting values apply."
+msgid "<image id=\"img_id3151017\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151017\">Icon Label Field</alt></image>"
msgstr ""
-#. aVSCN
+#. xAedG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3155346\n"
+"par_id3148534\n"
"help.text"
-msgid "A formatted field has <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">special control properties</link> (choose <emph>Format - Control</emph>)."
+msgid "<ahelp hid=\".uno:Label\">Creates a field for displaying text.</ahelp> These labels are only for displaying predefined text. Entries cannot be made in these fields."
msgstr ""
-#. gcjjG
+#. gpFGz
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3148774\n"
+"hd_id3153794\n"
"help.text"
-msgid "Push Button"
+msgid "Text Box"
msgstr ""
-#. GsVDb
+#. 4jdgA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145801\n"
+"par_id3163665\n"
"help.text"
-msgid "<image id=\"img_id3151073\" src=\"cmd/sc_insertpushbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151073\">Icon Push Button</alt></image>"
+msgid "<image id=\"img_id3153266\" src=\"cmd/lc_edit.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153266\">Icon Text Box</alt></image>"
msgstr ""
-#. KTA7G
+#. p3BAw
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3147046\n"
+"par_id3158444\n"
"help.text"
-msgid "<ahelp hid=\".uno:Pushbutton\">Creates a push button.</ahelp> This function can be used to execute a command for a defined event, such as a mouse click."
+msgid "<ahelp hid=\".uno:Edit\">Creates a text box.</ahelp> Text boxes are fields in which the user can enter text. In a form, text boxes display data or allow for new data input."
msgstr ""
-#. WB9wA
+#. bHC3y
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154731\n"
+"hd_id3146914\n"
"help.text"
-msgid "You can apply text and graphics to these buttons."
+msgid "Check Box"
+msgstr ""
+
+#. GypEC
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_id3148483\n"
+"help.text"
+msgid "<image id=\"img_id3156380\" src=\"cmd/lc_checkbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156380\">Icon Check Box</alt></image>"
+msgstr ""
+
+#. fbJjh
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_id3153927\n"
+"help.text"
+msgid "<ahelp hid=\".uno:CheckBox\">Creates a check box.</ahelp> Check boxes allow you to activate or deactivate a function in a form."
msgstr ""
#. J2PmD
@@ -970,13 +988,13 @@ msgctxt ""
msgid "Option Button"
msgstr ""
-#. qpeu3
+#. DQofS
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3152971\n"
"help.text"
-msgid "<image id=\"img_id3152999\" src=\"cmd/sc_radiobutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Icon Option Button</alt></image>"
+msgid "<image id=\"img_id3152999\" src=\"cmd/lc_radiobutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Icon Option Button</alt></image>"
msgstr ""
#. DJdqY
@@ -997,13 +1015,13 @@ msgctxt ""
msgid "List Box"
msgstr ""
-#. NBqDr
+#. xeMzN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3154326\n"
"help.text"
-msgid "<image id=\"img_id3154135\" src=\"cmd/sc_listbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154135\">Icon List Box</alt></image>"
+msgid "<image id=\"img_id3154135\" src=\"cmd/lc_listbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154135\">Icon List Box</alt></image>"
msgstr ""
#. Dbwav
@@ -1024,13 +1042,13 @@ msgctxt ""
msgid "Combo Box"
msgstr ""
-#. 8M2uc
+#. pdZ4w
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3149981\n"
"help.text"
-msgid "<image id=\"img_id3148817\" src=\"cmd/sc_combobox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148817\">Icon Combo Box</alt></image>"
+msgid "<image id=\"img_id3148817\" src=\"cmd/lc_combobox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148817\">Icon Combo Box</alt></image>"
msgstr ""
#. bUeTF
@@ -1042,787 +1060,751 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ComboBox\">Creates a combo box.</ahelp> A combo box is a single-line list box with a drop-down list from which users choose an option. You can assign the \"read-only\" property to the combo box so that users cannot enter other entries than those found in the list. If the form is bound to a database and the database connection is active, the <link href=\"text/shared/02/01170900.xhp\" name=\"Combo Box Wizard\"><emph>Combo Box Wizard</emph></link> will automatically appear after you insert the combo box in the document."
msgstr ""
-#. yDFji
+#. gcjjG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3145618\n"
+"hd_id3148774\n"
"help.text"
-msgid "Label Field"
+msgid "Push Button"
msgstr ""
-#. z6KGA
+#. EYKJx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145295\n"
+"par_id3145801\n"
"help.text"
-msgid "<image id=\"img_id3151017\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151017\">Icon Label Field</alt></image>"
+msgid "<image id=\"img_id3151073\" src=\"cmd/sc_pushbutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151073\">Icon Push Button</alt></image>"
msgstr ""
-#. xAedG
+#. KTA7G
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148534\n"
+"par_id3147046\n"
"help.text"
-msgid "<ahelp hid=\".uno:Label\">Creates a field for displaying text.</ahelp> These labels are only for displaying predefined text. Entries cannot be made in these fields."
+msgid "<ahelp hid=\".uno:Pushbutton\">Creates a push button.</ahelp> This function can be used to execute a command for a defined event, such as a mouse click."
msgstr ""
-#. aoQcs
+#. WB9wA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN10CF7\n"
+"par_id3154731\n"
"help.text"
-msgid "Form Design"
+msgid "You can apply text and graphics to these buttons."
msgstr ""
-#. vxxz2
+#. YzDya
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN10D0D\n"
+"hd_id3153316\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/main0226.xhp\"><emph>Form Design</emph></link> toolbar.</ahelp>"
+msgid "Image Button"
msgstr ""
-#. PaHBt
+#. SpSoG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B57\n"
+"par_id3159622\n"
"help.text"
-msgid "Wizards On/Off"
+msgid "<image id=\"img_id3154378\" src=\"cmd/lc_imagebutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154378\">Icon image button</alt></image>"
msgstr ""
-#. GY3P2
+#. B9Era
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B65\n"
+"par_id3148601\n"
"help.text"
-msgid "<image id=\"img_id6128727\" src=\"cmd/sc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6128727\">Icon</alt></image>"
+msgid "<ahelp hid=\".uno:Imagebutton\">Creates a button displayed as an image.</ahelp> Aside from the graphic representation, an image button has the same properties as a \"normal\" button."
msgstr ""
-#. ySzEv
+#. cEtdx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B76\n"
+"hd_id3151218\n"
"help.text"
-msgid "Turns on and turns off the automatic form controls wizards."
+msgid "Formatted Field"
msgstr ""
-#. DAjtU
+#. eFvnd
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id6403088\n"
+"par_id3154836\n"
"help.text"
-msgid "These wizards help you to enter the properties of list boxes, table controls, and other controls."
+msgid "<image id=\"img_id3143277\" src=\"cmd/lc_formattedfield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143277\">Icon Formatted Field</alt></image>"
msgstr ""
-#. DKSBw
+#. W4Jis
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3149436\n"
+"par_id3147547\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">Context Menu Commands</link>"
+msgid "<ahelp hid=\".uno:FormattedField\">Creates a formatted field.</ahelp> A formatted field is a text box in which you can define how the inputs and outputs are formatted, and which limiting values apply."
msgstr ""
-#. MoAVD
+#. aVSCN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11A56\n"
+"par_id3155346\n"
"help.text"
-msgid "Spin Button"
+msgid "A formatted field has <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">special control properties</link> (choose <emph>Format - Control</emph>)."
msgstr ""
-#. 2dBYJ
+#. FDhXd
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11A64\n"
+"hd_id3156040\n"
"help.text"
-msgid "<image id=\"img_id7816400\" src=\"cmd/sc_spinbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id7816400\">Icon</alt></image>"
+msgid "Date Field"
msgstr ""
-#. rY5Pe
+#. g7AvH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11A75\n"
+"par_id3149423\n"
"help.text"
-msgid "<ahelp hid=\".uno:SpinButton\">Creates a spin button.</ahelp>"
+msgid "<image id=\"img_id3150096\" src=\"cmd/lc_datefield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150096\">Icon Date Field</alt></image>"
msgstr ""
-#. L6D5h
+#. sSv2y
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id710776\n"
+"par_id3151312\n"
"help.text"
-msgid "If you add a spin button to a Calc spreadsheet, you can use the Data tab page to create a two-way link between the spin button and a cell. As a result, when you change the contents of a cell, the contents of the spin button are updated. Conversely, if you change the value of the spin button, the contents of the cell are updated."
+msgid "<ahelp hid=\".uno:DateField\">Creates a date field.</ahelp> If the form is linked to a database, the date values can be adopted from the database."
msgstr ""
-#. dHgny
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_idN11ABC\n"
-"help.text"
-msgid "Scrollbar"
-msgstr "شريط التمرير"
-
-#. Mhj4A
+#. rAgZA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11ACA\n"
+"par_id3151302\n"
"help.text"
-msgid "<image id=\"img_id8203985\" src=\"cmd/sc_scrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8203985\">Icon</alt></image>"
+msgid "If you assign the \"Dropdown\" property to the date field, the user can open a calendar to select a date under the date field. This also applies to a date field within a <emph>Table Control</emph> field."
msgstr ""
-#. RNigC
+#. kx8f2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11ADB\n"
+"par_id3154395\n"
"help.text"
-msgid "<ahelp hid=\".uno:ScrollBar\">Creates a scrollbar.</ahelp>"
+msgid "Date fields can be easily edited by the user with the up arrow and down arrow keys. Depending on the cursor position, the day, month, or the year is can be increased or decreased using the arrow keys."
msgstr ""
-#. C8usb
+#. zBejA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CA3\n"
+"par_id3153112\n"
"help.text"
-msgid "You can specify the following properties for a scrollbar:"
+msgid "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">Specific Remarks on Date Fields</link>."
msgstr ""
-#. 5NXLp
+#. Qw4Qa
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CDA\n"
+"hd_id3154652\n"
"help.text"
-msgid "UI name"
+msgid "Numerical Field"
msgstr ""
-#. KiE2x
+#. KFezM
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CE0\n"
+"par_id3149396\n"
"help.text"
-msgid "Semantics"
+msgid "<image id=\"img_id3153012\" src=\"cmd/lc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153012\">Icon Numerical Field</alt></image>"
msgstr ""
-#. PNDZB
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_idN11CE7\n"
-"help.text"
-msgid "Scroll value min"
-msgstr "أقل قيمة للتمرير"
-
-#. h7UcE
+#. 3jPvp
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CED\n"
+"par_id3145601\n"
"help.text"
-msgid "Specifies the minimum height or the minimum width of a scrollbar."
+msgid "<ahelp hid=\".uno:NumericField\">Creates a numerical field.</ahelp> If the form is linked to a database, the numerical values in the form can be adopted from the database."
msgstr ""
-#. 8R3PE
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_idN11CF4\n"
-"help.text"
-msgid "Scroll value max"
-msgstr "أكبر قيمة للتمرير"
-
-#. BGGh8
+#. 7u2GY
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CFA\n"
+"hd_id3145147\n"
"help.text"
-msgid "Specifies the maximum height or the maximum width of a scrollbar."
+msgid "Group Box"
msgstr ""
-#. 44sBA
+#. G7yzH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D01\n"
+"par_id3159334\n"
"help.text"
-msgid "Default scroll value"
+msgid "<image id=\"img_id3153790\" src=\"cmd/lc_groupbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153790\">Icon Group Box</alt></image>"
msgstr ""
-#. TFnZ8
+#. 3Suwy
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D07\n"
+"par_id3154572\n"
"help.text"
-msgid "Specifies the default value of a scrollbar, used when the form is reset."
+msgid "<ahelp hid=\".uno:GroupBox\">Creates a frame to visually group several controls.</ahelp> <emph>Group boxes</emph> allow you to group option buttons in a frame."
msgstr ""
-#. bK7Vi
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_idN11D0E\n"
-"help.text"
-msgid "Orientation"
-msgstr "اتجاه"
-
-#. xUPB2
+#. GXbwz
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D14\n"
+"par_id3148394\n"
"help.text"
-msgid "Specifies the orientation of a scrollbar, that is, horizontal or vertical."
+msgid "If you insert a group frame into the document, the <link href=\"text/shared/autopi/01120000.xhp\" name=\"Group Element Wizard\"><emph>Group Element Wizard</emph></link> starts, which allows you to easily create an option group."
msgstr ""
-#. fmsPT
+#. YPpYV
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D1B\n"
+"par_id3150567\n"
"help.text"
-msgid "Small change"
-msgstr "تغيير صغير"
+msgid "<emph>Note:</emph> When you drag a group box over already existing controls and then want to select a control, you have to first open the context menu of the group box and choose <emph>Arrange - Send to Back</emph>. Then select the control while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>."
+msgstr ""
-#. ZXezA
+#. 6DEDD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D21\n"
+"par_id3145615\n"
"help.text"
-msgid "Specifies the minimum amount by which you can scroll a scrollbar, for example, by clicking an arrow."
+msgid "<emph>Group boxes</emph> are used only for a visual effect. A functional grouping of option fields can be made through the name definition: under the <link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph>Name</emph></link> properties of all option fields, enter the same name in order to group them."
msgstr ""
-#. CySRJ
+#. Aj5PP
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D28\n"
+"hd_id3152369\n"
"help.text"
-msgid "Large change"
-msgstr "تغيير كبير"
+msgid "Time Field"
+msgstr ""
-#. h3r9X
+#. ebcMe
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D2E\n"
+"par_id3153687\n"
"help.text"
-msgid "Specifies the amount that a large step scrolls a scrollbar, for example, when you click between the scrollbar thumb and a scrollbar arrow."
+msgid "<image id=\"img_id3155949\" src=\"cmd/lc_timefield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155949\">Icon Time Field</alt></image>"
msgstr ""
-#. 34PS4
+#. 7apBh
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D35\n"
+"par_id3155399\n"
"help.text"
-msgid "Delay"
-msgstr "تأخير"
+msgid "<ahelp hid=\".uno:TimeField\">Creates a time field.</ahelp> If the form is linked to a database, the time values for the form can be adopted from the database."
+msgstr ""
-#. RAwEx
+#. keYu2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D3B\n"
+"par_id3154764\n"
"help.text"
-msgid "Specifies the delay in milliseconds between scrollbar trigger events. For example, the delay that occurs when you click an arrow button on the scrollbar and hold down the mouse button."
+msgid "Time fields can be easily edited by the user with the up and down arrow keys. Depending on the cursor position, the hours, minutes, or the seconds are increased or decreased using the arrow keys."
msgstr ""
-#. 4cEzG
+#. EGmCN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D42\n"
+"hd_id3153612\n"
"help.text"
-msgid "Symbol color"
+msgid "Currency Field"
msgstr ""
-#. wrXfx
+#. Znjzh
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D48\n"
+"par_id3145324\n"
"help.text"
-msgid "Specifies the color of the arrows on the scrollbar."
+msgid "<image id=\"img_id3152866\" src=\"cmd/lc_currencyfield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152866\">Icon Currency Field</alt></image>"
msgstr ""
-#. nqHkR
+#. dc7AD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D4F\n"
+"par_id3145115\n"
"help.text"
-msgid "Visible Size"
-msgstr "الحجم المرئي"
+msgid "<ahelp hid=\".uno:CurrencyField\">Creates a currency field.</ahelp> If the form is linked to a database, the currency field contents for in the form can be adopted from the database."
+msgstr ""
-#. bGBpN
+#. 2KYgF
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D55\n"
+"hd_id3148825\n"
"help.text"
-msgid "Specifies the size of the scrollbar thumb in \"value units\". For example, a value of <emph>(\"Scroll value max.\" minus \"Scroll value min.\") / 2</emph> results in a scrollbar thumb that occupies half of the scrollbar."
+msgid "Pattern Field"
msgstr ""
-#. kPyUP
+#. 3CqxF
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D58\n"
+"par_id3149742\n"
"help.text"
-msgid "To make the width of the scrollbar equal to the height of the scrollbar, set the <emph>Visible Size</emph> to zero."
+msgid "<image id=\"img_id3148924\" src=\"cmd/lc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148924\">Icon Pattern Field</alt></image>"
msgstr ""
-#. E82RH
+#. 4SYQW
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D63\n"
+"par_id3150122\n"
"help.text"
-msgid "In a Calc spreadsheet, you can use the <emph>Data</emph> tab page to create a two-way link between a scrollbar and a cell."
+msgid "<ahelp hid=\".uno:PatternField\">Creates a pattern field.</ahelp> Pattern fields consist of an edit mask and a literal mask. The edit mask determines which data can be entered. The literal mask determines the contents of the pattern field when loading the form."
msgstr ""
-#. YzDya
+#. NiY7c
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3153316\n"
+"par_id3152947\n"
"help.text"
-msgid "Image Button"
+msgid "Please note that pattern fields are not exported into HTML format."
msgstr ""
-#. Dc2HC
+#. JBDBc
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3159622\n"
+"hd_id3157996\n"
"help.text"
-msgid "<image id=\"img_id3154378\" src=\"cmd/sc_imagebutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154378\">Icon image button</alt></image>"
+msgid "Table Control"
msgstr ""
-#. B9Era
+#. bxMfG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148601\n"
+"par_id3156402\n"
"help.text"
-msgid "<ahelp hid=\".uno:Imagebutton\">Creates a button displayed as an image.</ahelp> Aside from the graphic representation, an image button has the same properties as a \"normal\" button."
+msgid "<image id=\"img_id3146324\" src=\"cmd/lc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146324\">Icon Table Control</alt></image>"
msgstr ""
-#. uB2m7
+#. YNpAD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3159171\n"
+"par_id3154579\n"
"help.text"
-msgid "Image Control"
+msgid "<ahelp hid=\".\">Creates a <emph>table control</emph> to display a database table.</ahelp> If you create a new table control, the <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph>Table Element Wizard</emph></link> appears."
msgstr ""
-#. ymnGP
+#. n4JKM
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3155869\n"
+"par_id3154697\n"
"help.text"
-msgid "<image id=\"img_id3152381\" src=\"cmd/sc_objectcatalog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152381\">Icon Image Control</alt></image>"
+msgid "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Special information about Table Controls</link>."
msgstr ""
-#. ZJDNH
+#. yJm6y
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3149596\n"
+"par_idN11B1E\n"
"help.text"
-msgid "<ahelp hid=\".uno:ImageControl\">Creates an image control. It can only be used to add images from a database.</ahelp> In the form document, double-click one of these controls to open the <emph>Insert Graphic</emph> dialog to insert the image. There is also a context menu (not in design mode) with commands for inserting and deleting the image."
+msgid "Navigation bar"
msgstr ""
-#. FGrrA
+#. vGBDH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150318\n"
+"par_idN11B2C\n"
"help.text"
-msgid "Images from a database can be displayed in a form, and new images can be inserted in the database as long as the image control is not write-protected. The control must refer to a database field of the image type. Therefore, enter the data field into the properties window on the <emph>Data</emph> tab page."
+msgid "<image id=\"img_id5074922\" src=\"cmd/lc_navigationbar.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5074922\">Icon Navigation bar</alt></image>"
msgstr ""
-#. FDhXd
+#. dmjpG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3156040\n"
+"par_idN11B3D\n"
"help.text"
-msgid "Date Field"
+msgid "<ahelp hid=\".\">Creates a <emph>Navigation</emph> bar.</ahelp>"
msgstr ""
-#. faE9Y
+#. VUmFZ
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3149423\n"
+"par_idN11DB1\n"
"help.text"
-msgid "<image id=\"img_id3150096\" src=\"cmd/sc_adddatefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150096\">Icon</alt></image>"
+msgid "The <emph>Navigation</emph> bar allows you to move through the records of a database or a database form. The controls on this <emph>Navigation</emph> bar work the same way as the controls on the default <link href=\"text/shared/main0213.xhp\"><emph>Navigation</emph> bar</link> in $[officename]."
msgstr ""
-#. sSv2y
+#. uB2m7
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3151312\n"
+"hd_id3159171\n"
"help.text"
-msgid "<ahelp hid=\".uno:DateField\">Creates a date field.</ahelp> If the form is linked to a database, the date values can be adopted from the database."
+msgid "Image Control"
msgstr ""
-#. rAgZA
+#. TFQ2v
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3151302\n"
+"par_id3155869\n"
"help.text"
-msgid "If you assign the \"Dropdown\" property to the date field, the user can open a calendar to select a date under the date field. This also applies to a date field within a <emph>Table Control</emph> field."
+msgid "<image id=\"img_id3152381\" src=\"cmd/lc_objectcatalog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152381\">Icon Image Control</alt></image>"
msgstr ""
-#. kx8f2
+#. ZJDNH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154395\n"
+"par_id3149596\n"
"help.text"
-msgid "Date fields can be easily edited by the user with the up arrow and down arrow keys. Depending on the cursor position, the day, month, or the year is can be increased or decreased using the arrow keys."
+msgid "<ahelp hid=\".uno:ImageControl\">Creates an image control. It can only be used to add images from a database.</ahelp> In the form document, double-click one of these controls to open the <emph>Insert Graphic</emph> dialog to insert the image. There is also a context menu (not in design mode) with commands for inserting and deleting the image."
msgstr ""
-#. zBejA
+#. FGrrA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3153112\n"
+"par_id3150318\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">Specific Remarks on Date Fields</link>."
+msgid "Images from a database can be displayed in a form, and new images can be inserted in the database as long as the image control is not write-protected. The control must refer to a database field of the image type. Therefore, enter the data field into the properties window on the <emph>Data</emph> tab page."
msgstr ""
-#. Aj5PP
+#. 4iACX
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3152369\n"
+"hd_id3156186\n"
"help.text"
-msgid "Time Field"
+msgid "File Selection"
msgstr ""
-#. T6act
+#. VRYA8
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3153687\n"
+"par_id3150531\n"
"help.text"
-msgid "<image id=\"img_id3155949\" src=\"cmd/sc_timefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155949\">Icon</alt></image>"
+msgid "<image id=\"img_id3154344\" src=\"cmd/lc_filecontrol.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon File Selection</alt></image>"
msgstr ""
-#. 7apBh
+#. 4CELT
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3155399\n"
+"par_id3149438\n"
"help.text"
-msgid "<ahelp hid=\".uno:TimeField\">Creates a time field.</ahelp> If the form is linked to a database, the time values for the form can be adopted from the database."
+msgid "<ahelp hid=\".uno:FileControl\">Creates a button that enables file selection.</ahelp>"
msgstr ""
-#. keYu2
+#. MoAVD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154764\n"
+"par_idN11A56\n"
"help.text"
-msgid "Time fields can be easily edited by the user with the up and down arrow keys. Depending on the cursor position, the hours, minutes, or the seconds are increased or decreased using the arrow keys."
+msgid "Spin Button"
msgstr ""
-#. 4iACX
+#. CtQfD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3156186\n"
+"par_idN11A64\n"
"help.text"
-msgid "File Selection"
+msgid "<image id=\"img_id7816400\" src=\"cmd/lc_spinbutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id7816400\">Icon Spin Button</alt></image>"
msgstr ""
-#. oGq2E
+#. rY5Pe
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150531\n"
+"par_idN11A75\n"
"help.text"
-msgid "<image id=\"img_id3154344\" src=\"cmd/sc_filecontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon File Selection</alt></image>"
+msgid "<ahelp hid=\".uno:SpinButton\">Creates a spin button.</ahelp>"
msgstr ""
-#. 4CELT
+#. L6D5h
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3149438\n"
+"par_id710776\n"
"help.text"
-msgid "<ahelp hid=\".uno:FileControl\">Creates a button that enables file selection.</ahelp>"
+msgid "If you add a spin button to a Calc spreadsheet, you can use the Data tab page to create a two-way link between the spin button and a cell. As a result, when you change the contents of a cell, the contents of the spin button are updated. Conversely, if you change the value of the spin button, the contents of the cell are updated."
msgstr ""
-#. Qw4Qa
+#. dHgny
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3154652\n"
+"par_idN11ABC\n"
"help.text"
-msgid "Numerical Field"
-msgstr ""
+msgid "Scrollbar"
+msgstr "شريط التمرير"
-#. c2Gra
+#. teRA6
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3149396\n"
+"par_idN11ACA\n"
"help.text"
-msgid "<image id=\"img_id3153012\" src=\"cmd/sc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153012\">Icon</alt></image>"
+msgid "<image id=\"img_id8203985\" src=\"cmd/lc_scrollbar.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8203985\">Icon Scrollbar</alt></image>"
msgstr ""
-#. 3jPvp
+#. RNigC
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145601\n"
+"par_idN11ADB\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumericField\">Creates a numerical field.</ahelp> If the form is linked to a database, the numerical values in the form can be adopted from the database."
+msgid "<ahelp hid=\".uno:ScrollBar\">Creates a scrollbar.</ahelp>"
msgstr ""
-#. EGmCN
+#. C8usb
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3153612\n"
+"par_idN11CA3\n"
"help.text"
-msgid "Currency Field"
+msgid "You can specify the following properties for a scrollbar:"
msgstr ""
-#. 6nQhR
+#. 5NXLp
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145324\n"
+"par_idN11CDA\n"
"help.text"
-msgid "<image id=\"img_id3152866\" src=\"cmd/sc_currencyfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152866\">Icon</alt></image>"
+msgid "UI name"
msgstr ""
-#. dc7AD
+#. KiE2x
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145115\n"
+"par_idN11CE0\n"
"help.text"
-msgid "<ahelp hid=\".uno:CurrencyField\">Creates a currency field.</ahelp> If the form is linked to a database, the currency field contents for in the form can be adopted from the database."
+msgid "Semantics"
msgstr ""
-#. 2KYgF
+#. PNDZB
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3148825\n"
+"par_idN11CE7\n"
"help.text"
-msgid "Pattern Field"
-msgstr ""
+msgid "Scroll value min"
+msgstr "أقل قيمة للتمرير"
-#. zwZsE
+#. h7UcE
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3149742\n"
+"par_idN11CED\n"
"help.text"
-msgid "<image id=\"img_id3148924\" src=\"cmd/sc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148924\">Icon</alt></image>"
+msgid "Specifies the minimum height or the minimum width of a scrollbar."
msgstr ""
-#. 4SYQW
+#. 8R3PE
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150122\n"
+"par_idN11CF4\n"
"help.text"
-msgid "<ahelp hid=\".uno:PatternField\">Creates a pattern field.</ahelp> Pattern fields consist of an edit mask and a literal mask. The edit mask determines which data can be entered. The literal mask determines the contents of the pattern field when loading the form."
-msgstr ""
+msgid "Scroll value max"
+msgstr "أكبر قيمة للتمرير"
-#. NiY7c
+#. BGGh8
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3152947\n"
+"par_idN11CFA\n"
"help.text"
-msgid "Please note that pattern fields are not exported into HTML format."
+msgid "Specifies the maximum height or the maximum width of a scrollbar."
msgstr ""
-#. 7u2GY
+#. 44sBA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3145147\n"
+"par_idN11D01\n"
"help.text"
-msgid "Group Box"
+msgid "Default scroll value"
msgstr ""
-#. ZpKrz
+#. TFnZ8
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3159334\n"
+"par_idN11D07\n"
"help.text"
-msgid "<image id=\"img_id3153790\" src=\"cmd/sc_groupbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153790\">Icon Group Box</alt></image>"
+msgid "Specifies the default value of a scrollbar, used when the form is reset."
msgstr ""
-#. 3Suwy
+#. bK7Vi
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154572\n"
+"par_idN11D0E\n"
"help.text"
-msgid "<ahelp hid=\".uno:GroupBox\">Creates a frame to visually group several controls.</ahelp> <emph>Group boxes</emph> allow you to group option buttons in a frame."
-msgstr ""
+msgid "Orientation"
+msgstr "اتجاه"
-#. GXbwz
+#. xUPB2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148394\n"
+"par_idN11D14\n"
"help.text"
-msgid "If you insert a group frame into the document, the <link href=\"text/shared/autopi/01120000.xhp\" name=\"Group Element Wizard\"><emph>Group Element Wizard</emph></link> starts, which allows you to easily create an option group."
+msgid "Specifies the orientation of a scrollbar, that is, horizontal or vertical."
msgstr ""
-#. YPpYV
+#. fmsPT
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150567\n"
+"par_idN11D1B\n"
"help.text"
-msgid "<emph>Note:</emph> When you drag a group box over already existing controls and then want to select a control, you have to first open the context menu of the group box and choose <emph>Arrange - Send to Back</emph>. Then select the control while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>."
-msgstr ""
+msgid "Small change"
+msgstr "تغيير صغير"
-#. 6DEDD
+#. ZXezA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145615\n"
+"par_idN11D21\n"
"help.text"
-msgid "<emph>Group boxes</emph> are used only for a visual effect. A functional grouping of option fields can be made through the name definition: under the <link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph>Name</emph></link> properties of all option fields, enter the same name in order to group them."
+msgid "Specifies the minimum amount by which you can scroll a scrollbar, for example, by clicking an arrow."
msgstr ""
-#. JBDBc
+#. CySRJ
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3157996\n"
+"par_idN11D28\n"
"help.text"
-msgid "Table Control"
-msgstr ""
+msgid "Large change"
+msgstr "تغيير كبير"
-#. sXNiD
+#. h3r9X
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3156402\n"
+"par_idN11D2E\n"
"help.text"
-msgid "<image id=\"img_id3146324\" src=\"cmd/sc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146324\">Icon Table Control</alt></image>"
+msgid "Specifies the amount that a large step scrolls a scrollbar, for example, when you click between the scrollbar thumb and a scrollbar arrow."
msgstr ""
-#. YNpAD
+#. 34PS4
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154579\n"
+"par_idN11D35\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates a <emph>table control</emph> to display a database table.</ahelp> If you create a new table control, the <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph>Table Element Wizard</emph></link> appears."
-msgstr ""
+msgid "Delay"
+msgstr "تأخير"
-#. n4JKM
+#. RAwEx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154697\n"
+"par_idN11D3B\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Special information about Table Controls</link>."
+msgid "Specifies the delay in milliseconds between scrollbar trigger events. For example, the delay that occurs when you click an arrow button on the scrollbar and hold down the mouse button."
msgstr ""
-#. yJm6y
+#. 4cEzG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B1E\n"
+"par_idN11D42\n"
"help.text"
-msgid "Navigation bar"
+msgid "Symbol color"
msgstr ""
-#. z63Mz
+#. wrXfx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B2C\n"
+"par_idN11D48\n"
"help.text"
-msgid "<image id=\"img_id5074922\" src=\"cmd/sc_navigationbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5074922\">Icon Navigation bar</alt></image>"
+msgid "Specifies the color of the arrows on the scrollbar."
msgstr ""
-#. dmjpG
+#. nqHkR
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B3D\n"
+"par_idN11D4F\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates a <emph>Navigation</emph> bar.</ahelp>"
-msgstr ""
+msgid "Visible Size"
+msgstr "الحجم المرئي"
-#. VUmFZ
+#. bGBpN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11DB1\n"
+"par_idN11D55\n"
"help.text"
-msgid "The <emph>Navigation</emph> bar allows you to move through the records of a database or a database form. The controls on this <emph>Navigation</emph> bar work the same way as the controls on the default <link href=\"text/shared/main0213.xhp\"><emph>Navigation</emph> bar</link> in $[officename]."
+msgid "Specifies the size of the scrollbar thumb in \"value units\". For example, a value of <emph>(\"Scroll value max.\" minus \"Scroll value min.\") / 2</emph> results in a scrollbar thumb that occupies half of the scrollbar."
msgstr ""
-#. R6tBB
+#. kPyUP
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3146815\n"
+"par_idN11D58\n"
"help.text"
-msgid "Automatic Control Focus"
+msgid "To make the width of the scrollbar equal to the height of the scrollbar, set the <emph>Visible Size</emph> to zero."
msgstr ""
-#. LWHkL
+#. E82RH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150261\n"
+"par_idN11D63\n"
"help.text"
-msgid "<image id=\"img_id3149351\" src=\"cmd/sc_autocontrolfocus.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149351\">Icon</alt></image>"
+msgid "In a Calc spreadsheet, you can use the <emph>Data</emph> tab page to create a two-way link between a scrollbar and a cell."
msgstr ""
-#. iDFFL
+#. DKSBw
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3109848\n"
+"hd_id3149436\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoControlFocus\">If <emph>Automatic Control Focus</emph> is activated, the first form control will be selected when you open the document. If the button is not activated, the text will be selected after opening. The <link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Tab Order</link> that you have specified determines which is the first form control.</ahelp>"
+msgid "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">Context Menu Commands</link>"
msgstr ""
#. EphvU
@@ -9268,6 +9250,15 @@ msgctxt ""
msgid "Add Field"
msgstr ""
+#. EJFFb
+#: 01170400.xhp
+msgctxt ""
+"01170400.xhp\n"
+"bm_id871647297744020\n"
+"help.text"
+msgid "<bookmark_value>database field;add to form</bookmark_value><bookmark_value>forms;add database field</bookmark_value><bookmark_value>database field;add to report</bookmark_value><bookmark_value>report;add database field</bookmark_value>"
+msgstr ""
+
#. AmADg
#: 01170400.xhp
msgctxt ""
@@ -10483,13 +10474,13 @@ msgctxt ""
msgid "Display Grid"
msgstr ""
-#. TqCDo
+#. RQ8je
#: 01171200.xhp
msgctxt ""
"01171200.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<image id=\"img_id3153049\" src=\"cmd/sc_gridvisible.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153049\">Icon</alt></image>"
+msgid "<image id=\"img_id3153049\" src=\"cmd/lc_gridvisible.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153049\">Icon Display Grid</alt></image>"
msgstr ""
#. UKBCB
@@ -10528,13 +10519,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether to move frames, drawing elements, and controls only between grid points.</ahelp>"
msgstr ""
-#. SGEDb
+#. m7PAZ
#: 01171300.xhp
msgctxt ""
"01171300.xhp\n"
"par_id3156027\n"
"help.text"
-msgid "<image id=\"img_id3157896\" src=\"cmd/sc_griduse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157896\">Icon</alt></image>"
+msgid "<image id=\"img_id3157896\" src=\"cmd/lc_griduse.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157896\">Icon Snap to Grid</alt></image>"
msgstr ""
#. Fb5KQ
@@ -10564,13 +10555,13 @@ msgctxt ""
msgid "Helplines While Moving"
msgstr ""
-#. CLGAJ
+#. KFSbC
#: 01171400.xhp
msgctxt ""
"01171400.xhp\n"
"par_id3149549\n"
"help.text"
-msgid "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">Icon</alt></image>"
+msgid "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149760\">Icon Helplines While Moving</alt></image>"
msgstr ""
#. AFaA2
@@ -14074,13 +14065,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AutoFilter\">Filters the records, based on the content of the currently selected data field.</ahelp>"
msgstr ""
-#. sbJDk
+#. 74YJk
#: 12030000.xhp
msgctxt ""
"12030000.xhp\n"
"par_id3151234\n"
"help.text"
-msgid "<image id=\"img_id3147261\" src=\"cmd/sc_formfiltered.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147261\">Icon</alt></image>"
+msgid "<image id=\"img_id3147261\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147261\">Icon AutoFilter</alt></image>"
msgstr ""
#. qhCWv
@@ -14200,13 +14191,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Refresh\">Refreshes the displayed data.</ahelp> In a multi-user environment, refreshing the data ensures that it remains current."
msgstr ""
-#. sCdzm
+#. FDdEV
#: 12050000.xhp
msgctxt ""
"12050000.xhp\n"
"par_id3147261\n"
"help.text"
-msgid "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153910\">Icon</alt></image>"
+msgid "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153910\">Icon Refresh</alt></image>"
msgstr ""
#. fovgD
@@ -16540,13 +16531,13 @@ msgctxt ""
msgid "Unlike the normal search, which is activated by the <link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\"><emph>Find Record</emph></link> icon on the <emph>Form</emph> bar, you can search more quickly by using the form-based filter. Usually a quick database server is charged with the search. Also, you can enter more complex search conditions."
msgstr ""
-#. LnpgE
+#. kDLDD
#: 12110000.xhp
msgctxt ""
"12110000.xhp\n"
"par_id3153394\n"
"help.text"
-msgid "<image id=\"img_id3147226\" src=\"cmd/sc_formfilter.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147226\">Icon</alt></image>"
+msgid "<image id=\"img_id3147226\" src=\"cmd/lc_datafilterspecialfilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147226\">Icon Form Filter</alt></image>"
msgstr ""
#. 5NfGA
@@ -16585,13 +16576,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormFiltered\" visibility=\"visible\">Switches between the filtered and unfiltered view of the table.</ahelp>"
msgstr ""
-#. zstf3
+#. WUQE5
#: 12120000.xhp
msgctxt ""
"12120000.xhp\n"
"par_id3149999\n"
"help.text"
-msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3146130\" width=\"38px\" height=\"38px\"><alt id=\"alt_id3146130\">Icon</alt></image>"
+msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3146130\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Form Filter</alt></image>"
msgstr ""
#. yEcEB
@@ -16648,13 +16639,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ViewFormAsGrid\">Activates an additional table view when in the form view.</ahelp> When the <emph>Data source as table</emph> function is activated, you see the table in an area above the form."
msgstr ""
-#. 3C96W
+#. zFZbc
#: 12130000.xhp
msgctxt ""
"12130000.xhp\n"
"par_id3093440\n"
"help.text"
-msgid "<image id=\"img_id3156414\" src=\"cmd/sc_viewformasgrid.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156414\">Icon</alt></image>"
+msgid "<image id=\"img_id3156414\" src=\"cmd/lc_viewformasgrid.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156414\">Icon</alt></image>"
msgstr ""
#. u7TDW
diff --git a/source/ar/helpcontent2/source/text/shared/04.po b/source/ar/helpcontent2/source/text/shared/04.po
index b9f866fd087..30c58d7511e 100644
--- a/source/ar/helpcontent2/source/text/shared/04.po
+++ b/source/ar/helpcontent2/source/text/shared/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE 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-19 17:31+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2018-07-08 15:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -106,13 +106,13 @@ msgctxt ""
msgid "You can enter arbitrary Unicode characters in the document typing the Unicode hexadecimal code point and then pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> (default). Type the Unicode hexadecimal notation and press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> to toggle between the Unicode character and its hexadecimal notation. Selection is not necessary but the conversion will apply to the selected characters. Toggling occurs on the characters prior to the cursor position when these characters form a valid Unicode hexadecimal point. Hexadecimal code points with value in the range U+0000 to U+0020 are not converted."
msgstr ""
-#. u4AsW
+#. PwHVE
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"par_id1001591272531804\n"
"help.text"
-msgid "The default Unicode conversion shortcut is <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> and <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+C</keycode></caseinline><defaultinline><keycode>Alt+C</keycode></defaultinline></switchinline> in some locales where the default Unicode shortcut interferes with the main menu shortcut. To reassign the shortcut, choose <menuitem>Tools > Customize > Keyboard</menuitem> and select <emph>Category:Options</emph> with <emph>Function:Toggle Unicode Notation</emph>."
+msgid "The default Unicode conversion shortcut is <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> and <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+C</keycode></caseinline><defaultinline><keycode>Alt+C</keycode></defaultinline></switchinline> in some locales where the default Unicode shortcut interferes with the main menu shortcut. To reassign the shortcut, choose <menuitem>Tools - Customize - Keyboard</menuitem> and select <emph>Category:Options</emph> with <emph>Function:Toggle Unicode Notation</emph>."
msgstr ""
#. cBDHp
diff --git a/source/ar/helpcontent2/source/text/shared/guide.po b/source/ar/helpcontent2/source/text/shared/guide.po
index 789a5aa637b..4d6ec809707 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: 2022-02-21 15:23+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2021-11-26 20:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ar/>\n"
@@ -673,22 +673,31 @@ msgctxt ""
msgid "<bookmark_value>spreadsheet; auto-redact</bookmark_value> <bookmark_value>presentations; auto-redact</bookmark_value> <bookmark_value>text documents; auto-redact contents</bookmark_value> <bookmark_value>automatic redaction</bookmark_value>"
msgstr ""
-#. dujqZ
+#. ycDxe
#: auto_redact.xhp
msgctxt ""
"auto_redact.xhp\n"
"hd_id171562795247122\n"
"help.text"
-msgid "<variable id=\"autoredact_h1\"><link href=\"text/shared/guide/auto_redact.xhp\" name=\"auto_redact\">Automatic Redaction</link></variable>"
+msgid "<variable id=\"autoredact_h1\"><link href=\"text/shared/guide/auto_redact.xhp\" name=\"auto_redact\">Auto-Redact</link></variable>"
msgstr ""
-#. 5TXro
+#. wiGmP
#: auto_redact.xhp
msgctxt ""
"auto_redact.xhp\n"
"par_id4715627952214572\n"
"help.text"
-msgid "<variable id=\"auto_redact_var\"><ahelp hid=\"sfx/ui/autoredactdialog/\">Use automatic redaction to define words and patterns that are automatically marked for redaction.</ahelp></variable> This makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues."
+msgid "<variable id=\"auto_redact_var\"><ahelp hid=\"sfx/ui/autoredactdialog/\">Use automatic redaction to define words and patterns that are automatically marked for redaction.</ahelp></variable>"
+msgstr ""
+
+#. kCE9E
+#: auto_redact.xhp
+msgctxt ""
+"auto_redact.xhp\n"
+"par_id641647277510873\n"
+"help.text"
+msgid "Automatic redaction makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues."
msgstr ""
#. erJBg
@@ -8971,13 +8980,22 @@ msgctxt ""
msgid "<variable id=\"DevTools_h1\"><link href=\"text/shared/guide/dev_tools.xhp\" name=\"DevTools_help\">Development Tools</link></variable>"
msgstr ""
-#. p3pqz
+#. khuRq
#: dev_tools.xhp
msgctxt ""
"dev_tools.xhp\n"
"par_id3155069\n"
"help.text"
-msgid "<variable id=\"DevTools_intro\"><ahelp hid=\".uno:LoadToolBox\">Inspects objects in %PRODUCTNAME documents and shows supported UNO services, as well as available methods, properties and implemented interfaces. This feature also allows to explore the document structure using the Document Object Model (DOM).</ahelp></variable>"
+msgid "<variable id=\"DevTools_intro\"><ahelp hid=\".uno:LoadToolBox\">Inspects objects in %PRODUCTNAME documents and shows supported UNO services, as well as available methods, properties and implemented interfaces.</ahelp></variable>"
+msgstr ""
+
+#. DtSfG
+#: dev_tools.xhp
+msgctxt ""
+"dev_tools.xhp\n"
+"par_id791647281944610\n"
+"help.text"
+msgid "This feature also allows to explore the document structure using the Document Object Model (DOM)."
msgstr ""
#. st97j
@@ -22552,22 +22570,31 @@ msgctxt ""
msgid "<bookmark_value>spreadsheet; redacting contents</bookmark_value> <bookmark_value>presentations; redacting contents</bookmark_value> <bookmark_value>text documents; redacting contents</bookmark_value> <bookmark_value>redaction</bookmark_value>"
msgstr ""
-#. A7KDQ
+#. vYCGW
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"hd_id171562795247717\n"
"help.text"
-msgid "<variable id=\"redaction_h1\"><link href=\"text/shared/guide/redaction.xhp\" name=\"redaction_link\">Redacting Documents</link></variable>"
+msgid "<variable id=\"redaction_h1\"><link href=\"text/shared/guide/redaction.xhp\" name=\"redaction_link\">Redaction</link></variable>"
msgstr ""
-#. AFwWF
+#. 4DfDB
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"par_id471562795247717\n"
"help.text"
-msgid "<variable id=\"redaction_desc\"><ahelp hid=\".\">Redacting documents blocks out words or portions of a document for authorized use or viewing.</ahelp></variable> Redaction protects sensitive information and helps enterprises and organizations to comply with regulations on confidentiality or privacy."
+msgid "<variable id=\"redaction_desc\"><ahelp hid=\".\">Redacting documents blocks out words or portions of a document for authorized use or viewing.</ahelp></variable>"
+msgstr ""
+
+#. sB25i
+#: redaction.xhp
+msgctxt ""
+"redaction.xhp\n"
+"par_id291647277725275\n"
+"help.text"
+msgid "Redaction protects sensitive information and helps enterprises and organizations to comply with regulations on confidentiality or privacy."
msgstr ""
#. QdoMp
diff --git a/source/ar/helpcontent2/source/text/shared/menu.po b/source/ar/helpcontent2/source/text/shared/menu.po
index dc4c499457c..1367b4c2234 100644
--- a/source/ar/helpcontent2/source/text/shared/menu.po
+++ b/source/ar/helpcontent2/source/text/shared/menu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-11-08 19:34+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2016-05-24 02:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,6 +16,24 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1464055988.000000\n"
+#. rxCQJ
+#: forms.xhp
+msgctxt ""
+"forms.xhp\n"
+"tit\n"
+"help.text"
+msgid "Forms submenu"
+msgstr ""
+
+#. EHLP3
+#: forms.xhp
+msgctxt ""
+"forms.xhp\n"
+"hd_id491647289210348\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/menu/forms.xhp\" name=\"Forms Submenu\">Forms Submenu</link></variable>"
+msgstr ""
+
#. EEMss
#: insert_chart.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index aa6eae574ea..38d52f0f5d1 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: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2022-01-12 14:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ar/>\n"
@@ -15667,6 +15667,24 @@ msgctxt ""
msgid "<emph>Calc A1 | Excel A1</emph>"
msgstr ""
+#. oJiom
+#: detailedcalculation.xhp
+msgctxt ""
+"detailedcalculation.xhp\n"
+"hd_id71645215179431\n"
+"help.text"
+msgid "Apply those settings to current document only"
+msgstr ""
+
+#. AKoD6
+#: detailedcalculation.xhp
+msgctxt ""
+"detailedcalculation.xhp\n"
+"par_id111645215251396\n"
+"help.text"
+msgid "Mark this checkbox to apply the settings to the document only."
+msgstr ""
+
#. YBuej
#: detailedcalculation.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/swriter.po b/source/ar/helpcontent2/source/text/swriter.po
index 213431b12d4..30735700cd6 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\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"
@@ -1726,13 +1726,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/main0120.xhp\" name=\"Form menu\">Form</link>"
msgstr ""
-#. LQF4M
+#. FK2va
#: main0120.xhp
msgctxt ""
"main0120.xhp\n"
"par_id991529755027118\n"
"help.text"
-msgid "<variable id=\"variable name\"><ahelp hid=\"hid path or command\">Contains commands for activate form design mode, open control wizards and insert form controls in your text document.</ahelp></variable>"
+msgid "<variable id=\"form_intro\"><ahelp hid=\".\">Contains commands for activate form design mode, open control wizards and insert form controls in your document.</ahelp></variable>"
msgstr ""
#. AdXBE
@@ -2895,3 +2895,399 @@ msgctxt ""
"help.text"
msgid "You can use the <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">Help system</link> as a complete reference for $[officename] applications, including <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">instructions</link> for simple and complex tasks."
msgstr ""
+
+#. DNbRR
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"tit\n"
+"help.text"
+msgid "Track Changes Toolbar"
+msgstr ""
+
+#. a8US4
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id671647012520594\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/track_changes_toolbar.xhp\" name=\"Track Changes Toolbar\">Track Changes Toolbar</link></variable>"
+msgstr ""
+
+#. 4XWe5
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id471647012520596\n"
+"help.text"
+msgid "Contains the commands that are available for tracking changes in your file."
+msgstr ""
+
+#. iUjGN
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id261647012734234\n"
+"help.text"
+msgid "Choose <menuitem>View - Toolbars - Track Changes</menuitem>."
+msgstr ""
+
+#. T8AaM
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id221647013245370\n"
+"help.text"
+msgid "<image src=\"cmd/lc_showtrackedchanges.svg\" id=\"img_id801647013245371\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821647013245372\">Icon Show track changes</alt></image>"
+msgstr ""
+
+#. eBTMj
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id31647013245373\n"
+"help.text"
+msgid "Show track changes"
+msgstr ""
+
+#. FSoq4
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id791647013362400\n"
+"help.text"
+msgid "<image src=\"cmd/lc_trackchanges.svg\" id=\"img_id921647013362401\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id561647013362402\">Icon Record Changes</alt></image>"
+msgstr ""
+
+#. BxM8k
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id781647013362404\n"
+"help.text"
+msgid "Record Changes"
+msgstr ""
+
+#. R7EFt
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id731647013552967\n"
+"help.text"
+msgid "Previous Track Change"
+msgstr ""
+
+#. nxbjC
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id901647013566069\n"
+"help.text"
+msgid "<image src=\"cmd/lc_previoustrackedchange.svg\" id=\"img_id151647013566070\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id981647013566071\">Icon Previous track change</alt></image>"
+msgstr ""
+
+#. poJng
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id391647013566073\n"
+"help.text"
+msgid "Previous track change"
+msgstr ""
+
+#. v76PF
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id551647013674361\n"
+"help.text"
+msgid "Next Track Change"
+msgstr ""
+
+#. NyWdo
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id231647013679440\n"
+"help.text"
+msgid "<image src=\"cmd/lc_nexttrackedchange.svg\" id=\"img_id1001647013679441\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id971647013679442\">Icon Next track change</alt></image>"
+msgstr ""
+
+#. XE2LH
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id531647013679443\n"
+"help.text"
+msgid "Next track change"
+msgstr ""
+
+#. cniUB
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id421647013795427\n"
+"help.text"
+msgid "Accept Track Change"
+msgstr ""
+
+#. UgReW
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id1001647013785665\n"
+"help.text"
+msgid "<image src=\"cmd/lc_accepttrackedchange.svg\" id=\"img_id491647013785666\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id301647013785667\">Icon Accept Track Change</alt></image>"
+msgstr ""
+
+#. qe8kW
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id971647013785668\n"
+"help.text"
+msgid "Accept Track Change"
+msgstr ""
+
+#. 37qtQ
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id871647013918576\n"
+"help.text"
+msgid "Reject Track Change"
+msgstr ""
+
+#. Dw5dd
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id981647013912301\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rejecttrackedchange.svg\" id=\"img_id931647013912302\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id811647013912303\">Icon Reject Track Change</alt></image>"
+msgstr ""
+
+#. D68WB
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id21647013912304\n"
+"help.text"
+msgid "Reject Track Change"
+msgstr ""
+
+#. DZWAf
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id991647014048136\n"
+"help.text"
+msgid "Accept All Tracked Changes"
+msgstr ""
+
+#. 6FjwL
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id161647014053976\n"
+"help.text"
+msgid "<image src=\"cmd/lc_acceptalltrackedchanges.svg\" id=\"img_id981647014053977\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761647014053978\">Icon Accept All Tracked Changes</alt></image>"
+msgstr ""
+
+#. B8Sna
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id701647014053979\n"
+"help.text"
+msgid "Accept All Tracked Changes"
+msgstr ""
+
+#. CxSzX
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id341647014115494\n"
+"help.text"
+msgid "Reject All Tracked Changes"
+msgstr ""
+
+#. Nh45F
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id891647014121791\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rejectalltrackedchanges.svg\" id=\"img_id141647014121792\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861647014121793\">Icon Reject All Tracked Changes</alt></image>"
+msgstr ""
+
+#. YAGs7
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id451647014121795\n"
+"help.text"
+msgid "Reject All Tracked Changes"
+msgstr ""
+
+#. aEELF
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id901647014258055\n"
+"help.text"
+msgid "Accept Track Change and select next one"
+msgstr ""
+
+#. vCCQp
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id511647014293796\n"
+"help.text"
+msgid "<image src=\"cmd/lc_accepttrackedchangetonext.svg\" id=\"img_id791647014293797\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id611647014293798\">Icon Accept Track Change and select next one</alt></image>"
+msgstr ""
+
+#. 2E2qH
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id851647014293800\n"
+"help.text"
+msgid "Accept Track Change and select next one"
+msgstr ""
+
+#. o2wCB
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id451647014408416\n"
+"help.text"
+msgid "Reject Track Change and select next one"
+msgstr ""
+
+#. LGqTK
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id971647014413668\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rejecttrackedchangetonext.svg\" id=\"img_id631647014413669\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661647014413670\">Icon Reject Track Change and select next one</alt></image>"
+msgstr ""
+
+#. h9smy
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id361647014413671\n"
+"help.text"
+msgid "Reject Track Change and select next one"
+msgstr ""
+
+#. s3jxf
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id721647014498850\n"
+"help.text"
+msgid "<image src=\"cmd/lc_accepttrackedchanges.svg\" id=\"img_id551647014498851\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381647014498852\">Icon Manage Track Changes</alt></image>"
+msgstr ""
+
+#. nyhMH
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id641647014498854\n"
+"help.text"
+msgid "Manage Track Changes"
+msgstr ""
+
+#. WAoEE
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id111647018300377\n"
+"help.text"
+msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id271647018300378\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61647018300380\">Icon Insert Comment</alt></image>"
+msgstr ""
+
+#. JRJZp
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id851647018300382\n"
+"help.text"
+msgid "Insert Comment"
+msgstr ""
+
+#. KxwHJ
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id411647015103299\n"
+"help.text"
+msgid "<image src=\"cmd/lc_commentchangetracking.svg\" id=\"img_id181647015103300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381647015103301\">Icon Insert Track Change Comment</alt></image>"
+msgstr ""
+
+#. w43CP
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id611647015103302\n"
+"help.text"
+msgid "Insert Track Change Comment"
+msgstr ""
+
+#. vHtJD
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id481647015406606\n"
+"help.text"
+msgid "<image src=\"cmd/lc_protecttracechangemode.svg\" id=\"img_id591647015406607\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311647015406608\">Icon Protect Changes</alt></image>"
+msgstr ""
+
+#. GrZBC
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id901647015406609\n"
+"help.text"
+msgid "Protect Changes"
+msgstr ""
+
+#. n4z84
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id611647015829636\n"
+"help.text"
+msgid "<image src=\"cmd/lc_comparedocuments.svg\" id=\"img_id31647015829637\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id691647015829638\">Icon Compare Document</alt></image>"
+msgstr ""
+
+#. RxYUx
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id441647015829640\n"
+"help.text"
+msgid "Compare Document"
+msgstr ""
+
+#. RMv9v
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id331647019044607\n"
+"help.text"
+msgid "<image src=\"cmd/lc_mergedocuments.svg\" id=\"img_id271647019044609\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id451647019044610\">Icon Merge Document</alt></image>"
+msgstr ""
+
+#. GPhfh
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id201647019044612\n"
+"help.text"
+msgid "Merge Document"
+msgstr ""
diff --git a/source/ar/helpcontent2/source/text/swriter/01.po b/source/ar/helpcontent2/source/text/swriter/01.po
index d9c39eef4bc..04717df0f0b 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-04-04 11:41+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"
@@ -4516,13 +4516,229 @@ msgctxt ""
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr ""
-#. K54uB
+#. dG28G
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3149806\n"
+"help.text"
+msgid "The restart location specifies where the next line will start after a line break."
+msgstr ""
+
+#. dAvpm
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id781648827677698\n"
+"help.text"
+msgid "Possible values are below."
+msgstr ""
+
+#. 2VByF
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id251648822718602\n"
+"help.text"
+msgid "Original text layout"
+msgstr ""
+
+#. Y2mYP
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id341648819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_orig.png\" id=\"img_id941648819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id361648819712406\">Original text layout</alt></image>"
+msgstr ""
+
+#. GhVWf
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id191648813862661\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. dmg79
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id251648813862662\n"
+"help.text"
+msgid "Formatting Mark"
+msgstr ""
+
+#. fjDym
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id61648813862663\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. GgweD
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id141648813862664\n"
+"help.text"
+msgid "[None]"
+msgstr ""
+
+#. MhD6q
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id71648813862665\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_none.png\" id=\"img_id71648815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815500905\">Line break none</alt></image>"
+msgstr ""
+
+#. C3oyH
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id811648813862667\n"
+"help.text"
+msgid "Continue right after the current line."
+msgstr ""
+
+#. r9gv5
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id346648819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_none.png\" id=\"img_id941148819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id361648819752406\">Sample line break none (default)</alt></image>"
+msgstr ""
+
+#. gmKv3
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id991648813999363\n"
+"help.text"
+msgid "Next Full Line"
+msgstr ""
+
+#. 5jXBF
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id401648813999364\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_full.png\" id=\"img_id71638815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815501905\">Line break full</alt></image>"
+msgstr ""
+
+#. yP6GD
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id871648813999365\n"
+"help.text"
+msgid "Continue at the next full line, that is below all of the anchored objects intersecting with the current line."
+msgstr ""
+
+#. szejD
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id341641819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_full.png\" id=\"img_id341648819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id961648819712406\">Sample line break full</alt></image>"
+msgstr ""
+
+#. M4cmF
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id161648814025099\n"
+"help.text"
+msgid "Left"
+msgstr ""
+
+#. pD6fu
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id731748814025100\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_left.png\" id=\"img_id71647815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815500905\">Line break left</alt></image>"
+msgstr ""
+
+#. jrVKp
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id791648814025101\n"
+"help.text"
+msgid "Continue at the next line which is unblocked on the left hand side."
+msgstr ""
+
+#. ZBxDu
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id351648819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_left.png\" id=\"img_id941649819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id321648819712406\">Original text layout</alt></image>"
+msgstr ""
+
+#. hRhpk
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id271648814369416\n"
+"help.text"
+msgid "Right"
+msgstr ""
+
+#. 2BFuP
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id801648814369418\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_right.png\" id=\"img_id71648815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815500905\">Line break right</alt></image>"
+msgstr ""
+
+#. RE7s8
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id671648814369419\n"
+"help.text"
+msgid "Continue at the next line which is unblocked on the right hand side."
+msgstr ""
+
+#. Jd3mG
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id341648819715404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_right.png\" id=\"img_id94164883712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id361648819712407\">Original text layout</alt></image>"
+msgstr ""
+
+#. HjTa9
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id961648814424612\n"
+"help.text"
+msgid "The default value for the line break is none."
+msgstr ""
+
+#. L77Xt
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"par_id3149685\n"
"help.text"
-msgid "You can also insert a line break by pressing <keycode>Shift+Enter</keycode>."
+msgid "You can also insert a default line break by pressing <keycode>Shift+Enter</keycode>."
msgstr ""
#. CZccf
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index 061ce3e8a94..57136467a7e 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ar/>\n"
@@ -709,22 +709,22 @@ msgctxt ""
msgid "<bookmark_value>spellcheck;Automatic Spell Checking on/off</bookmark_value> <bookmark_value>automatic spellcheck</bookmark_value> <bookmark_value>checking spelling;while typing</bookmark_value> <bookmark_value>words;disabling spellcheck</bookmark_value>"
msgstr ""
-#. NED6R
+#. D3Z5v
#: auto_spellcheck.xhp
msgctxt ""
"auto_spellcheck.xhp\n"
"hd_id3154265\n"
"help.text"
-msgid "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\" name=\"Automatically Check Spelling\">Automatically Check Spelling</link></variable>"
+msgid "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\" name=\"Automatically Check Spelling\">Automatic Check Spelling</link></variable>"
msgstr ""
-#. S35vF
+#. 2zePN
#: auto_spellcheck.xhp
msgctxt ""
"auto_spellcheck.xhp\n"
"par_id3154664\n"
"help.text"
-msgid "You can have $[officename] automatically check spelling while you type and underline possible misspelt words with a red wavy line."
+msgid "%PRODUCTNAME can automatically check spelling while you type and underline possible misspelled words with a red wavy line."
msgstr ""
#. tUdEw
@@ -15397,13 +15397,13 @@ msgctxt ""
msgid "To Enable and Disable Smart Tags"
msgstr ""
-#. oLnFX
+#. dFEPA
#: smarttags.xhp
msgctxt ""
"smarttags.xhp\n"
"par_id349131\n"
"help.text"
-msgid "When you have installed at least one Smart Tags extension, you see the <link href=\"text/shared/01/06040700.xhp\">Smart Tags</link> page in <item type=\"menuitem\">Tools - Autocorrect Options</item>. Use this dialog to enable or disable Smart Tags and to manage the installed tags."
+msgid "When you have installed at least one Smart Tags extension, you see the <link href=\"text/shared/01/06040700.xhp\">Smart Tags</link> page in <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>. Use this dialog to enable or disable Smart Tags and to manage the installed tags."
msgstr ""
#. CPCjL
@@ -19096,13 +19096,13 @@ msgctxt ""
msgid "<variable id=\"using_thesaurus\"><link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"Thesaurus\">Thesaurus</link></variable>"
msgstr ""
-#. PSuH5
+#. FdDJr
#: using_thesaurus.xhp
msgctxt ""
"using_thesaurus.xhp\n"
"par_id3149820\n"
"help.text"
-msgid "You can use the thesaurus to look up synonyms or related terms."
+msgid "Use the thesaurus to look up synonyms or related terms."
msgstr ""
#. ynxEV
diff --git a/source/ar/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/ar/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 3bcbff41faa..27e1fff7683 100644
--- a/source/ar/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/ar/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2020-03-31 10:35+0200\n"
-"PO-Revision-Date: 2022-02-07 18:38+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022440.000000\n"
#. tBfTE
@@ -1373,7 +1373,7 @@ msgctxt ""
"OOO_CONTROL_40\n"
"LngText.text"
msgid "{&DialogDefaultBold}User Information"
-msgstr ""
+msgstr "{&DialogDefaultBold}معلومات المستخدم"
#. 3cLPR
#: Control.ulf
@@ -1661,7 +1661,7 @@ msgctxt ""
"OOO_CONTROL_90\n"
"LngText.text"
msgid "{&DialogDefaultBold}Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}المجلد الوجهة"
#. RgRB4
#: Control.ulf
@@ -1715,7 +1715,7 @@ msgctxt ""
"OOO_CONTROL_98\n"
"LngText.text"
msgid "{&DialogDefaultBold}Disk Space Requirements"
-msgstr ""
+msgstr "{&DialogDefaultBold}متطلبات مساحة القرص"
#. ZairS
#: Control.ulf
@@ -1751,7 +1751,7 @@ msgctxt ""
"OOO_CONTROL_105\n"
"LngText.text"
msgid "{&DialogDefaultBold}Files in Use"
-msgstr ""
+msgstr "{&DialogDefaultBold}الملفات قيد الاستخدام"
#. EjFBo
#: Control.ulf
@@ -1814,7 +1814,7 @@ msgctxt ""
"OOO_CONTROL_115\n"
"LngText.text"
msgid "{&DialogDefaultBold}Change Current Destination Folder"
-msgstr ""
+msgstr "{&DialogDefaultBold}غيّر مجلد الوجهة الحالي"
#. vQeGg
#: Control.ulf
@@ -1940,7 +1940,7 @@ msgctxt ""
"OOO_CONTROL_133\n"
"LngText.text"
msgid "{&DialogDefaultBold}License Agreement"
-msgstr ""
+msgstr "{&DialogDefaultBold}اتفاقية الترخيص"
#. VmMs5
#: Control.ulf
@@ -1985,7 +1985,7 @@ msgctxt ""
"OOO_CONTROL_140\n"
"LngText.text"
msgid "{&DialogDefaultBold}Program Maintenance"
-msgstr ""
+msgstr "{&DialogDefaultBold}صيانة البرنامج"
#. w9y7B
#: Control.ulf
@@ -2093,7 +2093,7 @@ msgctxt ""
"OOO_CONTROL_155\n"
"LngText.text"
msgid "{&DialogDefaultBold}Out of Disk Space"
-msgstr ""
+msgstr "{&DialogDefaultBold}نفذت مساحة القرص"
#. 4BEms
#: Control.ulf
@@ -2147,7 +2147,7 @@ msgctxt ""
"OOO_CONTROL_161\n"
"LngText.text"
msgid "{&DialogHeading}Welcome to the Patch for [ProductName]"
-msgstr ""
+msgstr "{&DialogHeading}مرحباً إلى ترقيعة [ProductName]"
#. wFLhj
#: Control.ulf
@@ -2455,15 +2455,6 @@ msgctxt ""
msgid "&Cancel"
msgstr "أل&غِ"
-#. rvG8Q
-#: Control.ulf
-msgctxt ""
-"Control.ulf\n"
-"OOO_CONTROL_206\n"
-"LngText.text"
-msgid "error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here"
-msgstr "يظهر نصّ الخطأ هنا يظهر نصّ الخطأ هنا يظهر نصّ الخطأ هنا يظهر نصّ الخطأ هنا يظهر نصّ الخطأ هنا يظهر نصّ الخطأ هنا يظهر نصّ الخطأ هنا يظهر نصّ الخطأ هنا يظهر نصّ الخطأ هنا يظهر نصّ الخطأ هنا"
-
#. D6Bgs
#: Control.ulf
msgctxt ""
@@ -2624,7 +2615,7 @@ msgctxt ""
"OOO_CONTROL_226\n"
"LngText.text"
msgid "{&DialogHeading}Installation Wizard Completed"
-msgstr ""
+msgstr "{&DialogHeading}اكتمل مرشد التثبيت"
#. fCUfv
#: Control.ulf
@@ -2705,7 +2696,7 @@ msgctxt ""
"OOO_CONTROL_238\n"
"LngText.text"
msgid "{&DialogDefaultBold}Installing [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}يثبّت [ProductName]"
#. hwEMZ
#: Control.ulf
@@ -2714,7 +2705,7 @@ msgctxt ""
"OOO_CONTROL_239\n"
"LngText.text"
msgid "{&DialogDefaultBold}Uninstalling [ProductName]"
-msgstr ""
+msgstr "{&DialogDefaultBold}يزيل تثبيت [ProductName]"
#. XuEFu
#: Control.ulf
@@ -2975,7 +2966,7 @@ msgctxt ""
"OOO_CONTROL_278\n"
"LngText.text"
msgid "{&DialogDefaultBold}File Type"
-msgstr ""
+msgstr "{&DialogDefaultBold}نوع الملف"
#. gjEzM
#: Control.ulf
@@ -3128,7 +3119,7 @@ msgctxt ""
"OOO_CONTROL_324\n"
"LngText.text"
msgid "{&DialogDefaultBold}Files in Use"
-msgstr ""
+msgstr "{&DialogDefaultBold}الملفات قيد الاستخدام"
#. giWW4
#: Control.ulf
@@ -3155,7 +3146,7 @@ msgctxt ""
"OOO_CONTROL_327\n"
"LngText.text"
msgid "{&DialogDefaultBold}Attention!"
-msgstr "{&DialogDefaultBold}تحذير!"
+msgstr "{&DialogDefaultBold}انتباه!"
#. 5eE5R
#: Control.ulf
@@ -4469,7 +4460,7 @@ msgctxt ""
"OOO_STR_MS_EXCEL_WORKSHEET\n"
"LngText.text"
msgid "Microsoft Excel Worksheet"
-msgstr "ورقة عمل ميكروسوفت إكسل"
+msgstr "ورقة عمل ميكروسوفت أكسل"
#. sz9Ca
#: Property.ulf
@@ -4478,7 +4469,7 @@ msgctxt ""
"OOO_STR_MS_EXCEL_TEMPLATE\n"
"LngText.text"
msgid "Microsoft Excel Template"
-msgstr "قالب ميكروسوفت إكسل"
+msgstr "قالب ميكروسوفت أكسل"
#. nE65f
#: Property.ulf
@@ -4523,7 +4514,7 @@ msgctxt ""
"OOO_RADIOBUTTON_1\n"
"LngText.text"
msgid "{&DialogDefaultBold}&Modify"
-msgstr ""
+msgstr "{&DialogDefaultBold}&عدّل"
#. AGLAj
#: RadioBut.ulf
@@ -4532,7 +4523,7 @@ msgctxt ""
"OOO_RADIOBUTTON_2\n"
"LngText.text"
msgid "{&DialogDefaultBold}Re&pair"
-msgstr ""
+msgstr "{&DialogDefaultBold}أ&صلِح"
#. wCZDY
#: RadioBut.ulf
@@ -4541,7 +4532,7 @@ msgctxt ""
"OOO_RADIOBUTTON_3\n"
"LngText.text"
msgid "{&DialogDefaultBold}&Remove"
-msgstr ""
+msgstr "{&DialogDefaultBold}أ&زِل"
#. GGfjA
#: RadioBut.ulf
@@ -4559,7 +4550,7 @@ msgctxt ""
"OOO_RADIOBUTTON_5\n"
"LngText.text"
msgid "{&DialogDefaultBold}Cu&stom"
-msgstr ""
+msgstr "{&DialogDefaultBold}م&خصص"
#. WaaRd
#: RadioBut.ulf
diff --git a/source/ar/librelogo/source/pythonpath.po b/source/ar/librelogo/source/pythonpath.po
index ff7eb143c97..4b767a57481 100644
--- a/source/ar/librelogo/source/pythonpath.po
+++ b/source/ar/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-06-29 13:09+0200\n"
-"PO-Revision-Date: 2022-02-07 18:39+0000\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/librelogosourcepythonpath/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: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1533033583.000000\n"
#. tFoAo
@@ -356,7 +356,7 @@ msgctxt ""
"BOLD\n"
"property.text"
msgid "bold"
-msgstr "عريض"
+msgstr "ثخين"
#. Q2DmA
#: LibreLogo_en_US.properties
@@ -446,7 +446,7 @@ msgctxt ""
"HEADING\n"
"property.text"
msgid "heading|setheading|seth"
-msgstr "ترويسة|عين_ترويسة"
+msgstr "خط‌عنوان|عيّن‌خط‌عنوان"
#. HpQLM
#: LibreLogo_en_US.properties
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office.po b/source/ar/officecfg/registry/data/org/openoffice/Office.po
index 91e81f38bb8..8e5661c56b1 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2022-02-19 13:39+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/ar/>\n"
"Language: ar\n"
@@ -44,7 +44,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "LEFT 15°"
-msgstr ""
+msgstr "يسار 15°"
#. Fwb5j
#: Addons.xcu
@@ -54,7 +54,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "RIGHT 15°"
-msgstr ""
+msgstr "يمين 15°"
#. Cnces
#: Addons.xcu
@@ -74,7 +74,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "STOP"
-msgstr ""
+msgstr "إيقاف"
#. TcCmB
#: Addons.xcu
@@ -84,7 +84,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "HOME"
-msgstr "المنزل"
+msgstr "الرئيسي"
#. odHjy
#: Addons.xcu
@@ -794,7 +794,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Report Header"
-msgstr "ترويسة التقرير"
+msgstr "رأس التقرير"
#. Dntv2
#: ExtendedColorScheme.xcu
@@ -814,7 +814,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Page Header"
-msgstr "ترويسة الصفحة"
+msgstr "رأس الصفحة"
#. qQZRT
#: ExtendedColorScheme.xcu
@@ -834,7 +834,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Group Header"
-msgstr "ترويسة المجموعة"
+msgstr "رأس المجموعة"
#. DJAB5
#: ExtendedColorScheme.xcu
@@ -854,7 +854,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Column Header"
-msgstr "ترويسة العمود"
+msgstr "رأس العمود"
#. bMTUY
#: ExtendedColorScheme.xcu
@@ -1044,7 +1044,7 @@ msgctxt ""
"STR_FINISH\n"
"value.text"
msgid "~Finish"
-msgstr "أ~نهِ"
+msgstr "إنها~ء"
#. DsMBa
#: PresentationMinimizer.xcu
@@ -1114,7 +1114,7 @@ msgctxt ""
"STR_IMAGE_OPTIMIZATION\n"
"value.text"
msgid "Images"
-msgstr "الصور"
+msgstr "صور"
#. FDFCo
#: PresentationMinimizer.xcu
@@ -1124,7 +1124,7 @@ msgctxt ""
"STR_LOSSLESS_COMPRESSION\n"
"value.text"
msgid "~Lossless compression"
-msgstr "~ضغط بدون فقد للبيانات"
+msgstr "~ضغط بدون فقد بيانات"
#. uzK38
#: PresentationMinimizer.xcu
@@ -1784,7 +1784,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Close"
-msgstr "إغلاق"
+msgstr "أغلق"
#. F6pTC
#: PresenterScreen.xcu
@@ -1794,7 +1794,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Close"
-msgstr "إغلاق"
+msgstr "أغلق"
#. 7GvYv
#: PresenterScreen.xcu
@@ -1804,7 +1804,7 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Close"
-msgstr "إغلاق"
+msgstr "أغلق"
#. gwJHk
#: PresenterScreen.xcu
@@ -1944,7 +1944,7 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Previous slide without effects"
-msgstr "الشريحة السابقة بدون تأثيرات"
+msgstr "الشريحة السابقة بِلا تأثيرات"
#. jbbUB
#: PresenterScreen.xcu
@@ -1964,7 +1964,7 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Next slide without effects"
-msgstr "الشريحة التالية بدون تأثيرات"
+msgstr "الشريحة التالية بِلا تأثيرات"
#. 4NgP8
#: PresenterScreen.xcu
@@ -2324,7 +2324,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "معرّف الفئة"
+msgstr "معرّف‌الصنف"
#. DSPes
#: TableWizard.xcu
@@ -2334,7 +2334,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "معرّف الفئة"
+msgstr "معرّف‌الصنف"
#. xEMQw
#: TableWizard.xcu
@@ -2344,7 +2344,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryName"
-msgstr "اسم الفئة"
+msgstr "اسم‌الصنف"
#. MbNHE
#: TableWizard.xcu
@@ -2444,7 +2444,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "معرّف‌الفئة"
+msgstr "معرّف‌الصنف"
#. d6dbD
#: TableWizard.xcu
@@ -3034,7 +3034,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "اللقب"
#. 8KmMy
#: TableWizard.xcu
@@ -3044,7 +3044,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "اللقب"
#. 838Ju
#: TableWizard.xcu
@@ -3544,7 +3544,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "اللقب"
#. H7Bqz
#: TableWizard.xcu
@@ -3554,7 +3554,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "اللقب"
#. 4dmkL
#: TableWizard.xcu
@@ -4234,7 +4234,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "اللقب"
#. nDsvK
#: TableWizard.xcu
@@ -4244,7 +4244,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "اللقب"
#. xnWhM
#: TableWizard.xcu
@@ -5404,7 +5404,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "SalesTax"
-msgstr "SalesTax"
+msgstr "ضريبةمبيعات"
#. AKELU
#: TableWizard.xcu
@@ -5414,7 +5414,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "SalesTax"
-msgstr "SalesTax"
+msgstr "ضريبةمبيعات"
#. uP8db
#: TableWizard.xcu
@@ -5424,7 +5424,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "LineTotal"
-msgstr "LineTotal"
+msgstr "إجمالي‌السطر"
#. gmxro
#: TableWizard.xcu
@@ -5434,7 +5434,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "LineTotal"
-msgstr "LineTotal"
+msgstr "إجمالي‌السطر"
#. guVjD
#: TableWizard.xcu
@@ -7554,7 +7554,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "TrackingCode"
-msgstr "TrackingCode"
+msgstr "رمزالتعقب"
#. 6A75v
#: TableWizard.xcu
@@ -7564,7 +7564,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "TrckngCode"
-msgstr "TrckngCode"
+msgstr "رمزتعقب"
#. LLVAm
#: TableWizard.xcu
@@ -7774,7 +7774,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PackageDimensions"
-msgstr "PackageDimensions"
+msgstr "أبعاد‌الرزمة"
#. mFhFs
#: TableWizard.xcu
@@ -7784,7 +7784,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PackDimens"
-msgstr "PackDimens"
+msgstr "أبعاد‌رزمة"
#. yLeMB
#: TableWizard.xcu
@@ -8004,7 +8004,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "AssetCategoryID"
-msgstr "AssetCategoryID"
+msgstr "معرّف‌صنف‌المادة"
#. WBLFz
#: TableWizard.xcu
@@ -8014,7 +8014,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "AssetCatID"
-msgstr "AssetCatID"
+msgstr "معرّف‌صنف‌مادة"
#. gxEFU
#: TableWizard.xcu
@@ -8914,7 +8914,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "معرّف‌الصنف"
#. 8gWzE
#: TableWizard.xcu
@@ -8924,7 +8924,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "معرّف‌الصنف"
#. xtBLn
#: TableWizard.xcu
@@ -8934,7 +8934,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryName"
-msgstr "اسم الفئة"
+msgstr "اسم‌الصنف"
#. z63pH
#: TableWizard.xcu
@@ -9034,7 +9034,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "اللقب"
#. BMGRC
#: TableWizard.xcu
@@ -9474,7 +9474,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "معرّف‌الصنف"
#. cS7Fp
#: TableWizard.xcu
@@ -9484,7 +9484,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "CategoryID"
-msgstr "CategoryID"
+msgstr "معرّف‌الصنف"
#. 2vHUF
#: TableWizard.xcu
@@ -11254,7 +11254,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "MusicCategoryID"
-msgstr "MusicCategoryID"
+msgstr "معرّف‌صنف‌الموسيقى"
#. 4mckL
#: TableWizard.xcu
@@ -11264,7 +11264,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "MusicCatID"
-msgstr "MusicCatID"
+msgstr "معرّف‌صنف‌موسيقى"
#. TbLJE
#: TableWizard.xcu
@@ -11374,7 +11374,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NumberofTracks"
-msgstr "NumberofTracks"
+msgstr "عددالتعقبات"
#. PCEWn
#: TableWizard.xcu
@@ -11384,7 +11384,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NoofTracks"
-msgstr "NoofTracks"
+msgstr "عددتعقبات"
#. Eahug
#: TableWizard.xcu
@@ -11524,7 +11524,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "العنوان"
#. thk4t
#: TableWizard.xcu
@@ -11534,7 +11534,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "العنوان"
#. qpehG
#: TableWizard.xcu
@@ -11684,7 +11684,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Pages"
-msgstr "الصفحات"
+msgstr "صفحات"
#. W3VeG
#: TableWizard.xcu
@@ -11694,7 +11694,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "Pages"
-msgstr "الصفحات"
+msgstr "صفحات"
#. hB7pS
#: TableWizard.xcu
@@ -12944,7 +12944,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Microsoft Excel 4.x - 5.0 / 95"
-msgstr "ميكروسوفت إكسل ٤.* – ٥٫٠ / ٩٥"
+msgstr "ميكروسوفت أكسل ٤.* – ٥٫٠ / ٩٥"
#. D5ASv
#: UI.xcu
@@ -12954,7 +12954,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Microsoft Excel 4.x - 5.0 / 95 Templates"
-msgstr "قوالب ميكروسوفت إكسل ٤.* – ٥٫٠ / ٩٥"
+msgstr "قوالب ميكروسوفت أكسل ٤.* – ٥٫٠ / ٩٥"
#. QFbii
#: UI.xcu
@@ -13014,7 +13014,7 @@ msgctxt ""
"Category\n"
"value.text"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. EHEGG
#: Writer.xcu
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 9695bff28c0..d476037a302 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022442.000000\n"
#. W5ukN
@@ -94,7 +94,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Search"
-msgstr "كرّر البحث"
+msgstr "كرر البحث"
#. Q9cEF
#: BasicIDECommands.xcu
@@ -254,7 +254,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Dialog"
-msgstr "مربع حواري"
+msgstr "حوار"
#. RHTyx
#: BasicIDEWindowState.xcu
@@ -294,7 +294,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Dialog"
-msgstr "مربع حواري"
+msgstr "حوار"
#. fEt7C
#: BasicIDEWindowState.xcu
@@ -344,7 +344,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. HXnnP
#: BibliographyCommands.xcu
@@ -634,7 +634,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Chart"
-msgstr "أدرج رسم بياني"
+msgstr "أدرج رسمًا بيانيًا"
#. csZtu
#: CalcCommands.xcu
@@ -784,7 +784,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation..."
-msgstr "ال~فصل بالمقاطع ..."
+msgstr "~وصل الكلمات..."
#. AQgBD
#: CalcCommands.xcu
@@ -834,7 +834,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pivot Table Filter"
-msgstr "مرشّح جداول معالجة البيانات"
+msgstr "مرشّح الجدول المحوري"
#. BGjMw
#: CalcCommands.xcu
@@ -1114,7 +1114,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pivot Table"
-msgstr "جدول معالجة بيانات"
+msgstr "جدول محوري"
#. MsgbY
#: CalcCommands.xcu
@@ -1134,7 +1134,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert or Edit Pivot Table"
-msgstr ""
+msgstr "أدرج أو حرر جدولاً محوريًا"
#. VZAqF
#: CalcCommands.xcu
@@ -1154,7 +1154,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert or Edit..."
-msgstr ""
+msgstr "أ~درج أو حرر..."
#. dHdzP
#: CalcCommands.xcu
@@ -1164,7 +1164,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert or Edit Pivot Table..."
-msgstr ""
+msgstr "أ~درج أو حرر جدولاً محوريًا..."
#. vqC2u
#: CalcCommands.xcu
@@ -1694,7 +1694,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Add"
-msgstr "أضف"
+msgstr "أضِف"
#. oDTYB
#: CalcCommands.xcu
@@ -1774,7 +1774,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Search"
-msgstr "كرّر البحث"
+msgstr "كرر البحث"
#. BkfR7
#: CalcCommands.xcu
@@ -2086,6 +2086,26 @@ msgctxt ""
msgid "F~ourier Analysis..."
msgstr ""
+#. aTBPM
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertSparkline\n"
+"Label\n"
+"value.text"
+msgid "Insert Sparkline..."
+msgstr ""
+
+#. CoZgJ
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:DeleteSparkline\n"
+"Label\n"
+"value.text"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dTXDB
#: CalcCommands.xcu
msgctxt ""
@@ -2094,7 +2114,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Headers and Footers..."
-msgstr "ال~ترويسات و التذييلات..."
+msgstr "ال~رؤوس و التذييلات..."
#. 9wsip
#: CalcCommands.xcu
@@ -2116,16 +2136,6 @@ msgctxt ""
msgid "Data ~Validation..."
msgstr ""
-#. xxDxd
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "احذف الصفوف"
-
#. wZAYL
#: CalcCommands.xcu
msgctxt ""
@@ -2136,16 +2146,6 @@ msgctxt ""
msgid "Insert"
msgstr "أدرِج"
-#. jgGQR
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "احذف الأعمدة"
-
#. 5PPGW
#: CalcCommands.xcu
msgctxt ""
@@ -2276,26 +2276,6 @@ msgctxt ""
msgid "Delete All Comments"
msgstr "احذف كل التعليقات"
-#. PzCtT
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comm~ent"
-msgstr "ت~عليق"
-
-#. HAWW3
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"PopupLabel\n"
-"value.text"
-msgid "Insert Co~mment"
-msgstr "أدرج ت~عليقا"
-
#. uUwKE
#: CalcCommands.xcu
msgctxt ""
@@ -2324,7 +2304,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Headers"
-msgstr ""
+msgstr "شاهِد الرؤوس"
#. g3nWt
#: CalcCommands.xcu
@@ -2484,7 +2464,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Track Change Comment"
-msgstr ""
+msgstr "أدرج تعليق تتبّع تغييرات"
#. zVBGm
#: CalcCommands.xcu
@@ -3196,16 +3176,6 @@ msgctxt ""
msgid "~Show Sheet..."
msgstr "أ~ظهر الورقة..."
-#. BARqL
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "دمج الخلايا"
-
#. APBqu
#: CalcCommands.xcu
msgctxt ""
@@ -3364,7 +3334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Refresh Pivot Table"
-msgstr "~حدّث جدول معالجة البيانات"
+msgstr "أ~عِد تحميل الجدول المحوري"
#. kGoK3
#: CalcCommands.xcu
@@ -3374,7 +3344,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Refresh"
-msgstr "تحدي~ث"
+msgstr "أ~عِد التحميل"
#. Gm4Yj
#: CalcCommands.xcu
@@ -3384,7 +3354,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Pivot Table"
-msgstr "ا~حذف جدول معالجة البيانات"
+msgstr "ا~حذف الجدول المحوري"
#. 5DQ3b
#: CalcCommands.xcu
@@ -3394,7 +3364,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Delete"
-msgstr "ح~ذف"
+msgstr "اح~ذف"
#. EK9r8
#: CalcCommands.xcu
@@ -3734,7 +3704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Center"
-msgstr "محاذاة إلى الوسط"
+msgstr "حاذِ إلى الوسط"
#. LfMgB
#: CalcCommands.xcu
@@ -3924,7 +3894,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number"
-msgstr "عدد"
+msgstr "رقم"
#. tprDT
#: CalcCommands.xcu
@@ -3934,7 +3904,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Format as Number"
-msgstr "نسّق كعدد"
+msgstr "نسّق كرقم"
#. sDWH8
#: CalcCommands.xcu
@@ -3964,7 +3934,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Time"
-msgstr "وقت"
+msgstr "الوقت"
#. xPTeE
#: CalcCommands.xcu
@@ -4314,7 +4284,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Pivot Table"
-msgstr "~جدول معالجة بيانات"
+msgstr "~جدول محوري"
#. Eudzw
#: CalcCommands.xcu
@@ -4814,7 +4784,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 1"
-msgstr "عنوان رئيسي ١"
+msgstr "خط عنوان 1"
#. xGZQE
#: CalcCommands.xcu
@@ -4824,7 +4794,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 1"
-msgstr "عنوان رئيسي ١"
+msgstr "خط عنوان 1"
#. CmDKW
#: CalcCommands.xcu
@@ -4834,7 +4804,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Cell Style"
-msgstr "طراز خلية عنوان رئيسي 1"
+msgstr "طراز خلية خط عنوان 1"
#. N9gg5
#: CalcCommands.xcu
@@ -4844,7 +4814,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 2"
-msgstr "عنوان رئيسي ٢"
+msgstr "خط عنوان 2"
#. NwSni
#: CalcCommands.xcu
@@ -4854,7 +4824,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 2"
-msgstr "عنوان رئيسي ٢"
+msgstr "خط عنوان 2"
#. YE3co
#: CalcCommands.xcu
@@ -4864,7 +4834,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Cell Style"
-msgstr "طراز خلية عنوان رئيسي 2"
+msgstr "طراز خلية خط عنوان 2"
#. 6Wxq6
#: CalcCommands.xcu
@@ -5124,7 +5094,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Column Header"
-msgstr "ترويسة العمود"
+msgstr "رأس العمود"
#. p4Zjo
#: CalcWindowState.xcu
@@ -5237,7 +5207,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Pivot Table"
-msgstr "جدول معالجة بيانات"
+msgstr "جدول محوري"
#. HyD7e
#: CalcWindowState.xcu
@@ -5257,7 +5227,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Row Header"
-msgstr "ترويسة الصف"
+msgstr "رأس الصف"
#. oueah
#: CalcWindowState.xcu
@@ -5447,7 +5417,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. DhKzB
#: CalcWindowState.xcu
@@ -5487,7 +5457,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr "قياسي (وضع العرض)"
+msgstr "قياسي (نمط المعايَنة)"
#. Jy7YE
#: CalcWindowState.xcu
@@ -5617,7 +5587,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Single Mode)"
-msgstr "قياسي (وضع أحادي)"
+msgstr "قياسي (نمط المعايَنة)"
#. UGtGP
#: CalcWindowState.xcu
@@ -5627,7 +5597,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines and Arrows"
-msgstr ""
+msgstr "خطوط و سهام"
#. vvEtr
#: CalcWindowState.xcu
@@ -7529,7 +7499,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Properties..."
-msgstr "خصائص..."
+msgstr "الخصائص..."
#. GBUCH
#: DbuCommands.xcu
@@ -7619,7 +7589,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. 93WFq
#: DbuCommands.xcu
@@ -8500,7 +8470,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Animation"
-msgstr "حركة"
+msgstr "متحرك"
#. btZfh
#: DrawImpressCommands.xcu
@@ -8520,7 +8490,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Master Slides"
-msgstr ""
+msgstr "شرائح رئيسة"
#. yFsEC
#: DrawImpressCommands.xcu
@@ -8550,7 +8520,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation"
-msgstr "~فصل بالمقاطع"
+msgstr "~وصل الكلمات"
#. CQf4G
#: DrawImpressCommands.xcu
@@ -8980,7 +8950,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xternal Links..."
-msgstr ""
+msgstr "رواب~ط خارجية..."
#. pQhVJ
#: DrawImpressCommands.xcu
@@ -9150,7 +9120,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Connectors"
-msgstr ""
+msgstr "الموصلات"
#. GFbAp
#: DrawImpressCommands.xcu
@@ -9341,7 +9311,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Master"
-msgstr "~الرئيسي"
+msgstr "ر~ئيسيّ"
#. EsUfw
#: DrawImpressCommands.xcu
@@ -9451,7 +9421,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Layout"
-msgstr "تخطيط الشريحة"
+msgstr "مخطط الشريحة"
#. BBXTY
#: DrawImpressCommands.xcu
@@ -9636,14 +9606,13 @@ msgstr "ا~كسر"
#. 9yBgu
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:AdvancedMode\n"
"Label\n"
"value.text"
msgid "Transformations"
-msgstr "النقل"
+msgstr "تحويلات"
#. KLDYE
#: DrawImpressCommands.xcu
@@ -9653,7 +9622,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Transparency tool"
-msgstr ""
+msgstr "أداة الشفافية"
#. hSqtf
#: DrawImpressCommands.xcu
@@ -9663,7 +9632,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Interactive transparency tool"
-msgstr ""
+msgstr "أداة شفافية تفاعلية"
#. trSck
#: DrawImpressCommands.xcu
@@ -10465,7 +10434,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Master"
-msgstr "~الرئيسي"
+msgstr "ر~ئيسيّ"
#. FE22A
#: DrawImpressCommands.xcu
@@ -10515,7 +10484,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Header and Footer..."
-msgstr "التروي~سة و التذييل..."
+msgstr "الرأ~س و التذييل..."
#. WESiK
#: DrawImpressCommands.xcu
@@ -10585,7 +10554,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page Pane"
-msgstr "جزء الص~فحات"
+msgstr "لوحة الص~فحات"
#. 9W9yh
#: DrawImpressCommands.xcu
@@ -10595,27 +10564,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tas~k Pane"
-msgstr "جزء ال~مهام"
-
-#. EAawg
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "دمج الخلايا"
-
-#. eQphw
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells"
-msgstr "تقسيم الخلايا"
+msgstr "لوحة ال~مهام"
#. Bvk8Q
#: DrawImpressCommands.xcu
@@ -10747,26 +10696,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "أدرج أعمدة"
-#. momxn
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Row"
-msgstr "احذف الصف"
-
-#. YzuWU
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Column"
-msgstr "حذف العمود"
-
#. yTCcA
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10785,7 +10714,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Table"
-msgstr "تحديد الجدول"
+msgstr "حدد الجدول"
#. 3qbMi
#: DrawImpressCommands.xcu
@@ -10795,7 +10724,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Select..."
-msgstr ""
+msgstr "ح~دد..."
#. AsuBE
#: DrawImpressCommands.xcu
@@ -10805,7 +10734,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Select Table"
-msgstr ""
+msgstr "حدد الجدول"
#. yvdda
#: DrawImpressCommands.xcu
@@ -10877,16 +10806,6 @@ msgctxt ""
msgid "~Table..."
msgstr "ج~دول..."
-#. apmru
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comme~nt"
-msgstr "~تعليق"
-
#. XUrBD
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10945,7 +10864,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Slide"
-msgstr "إدراج شريحة"
+msgstr "أدرِج شريحة"
#. DpnDu
#: DrawImpressCommands.xcu
@@ -11802,7 +11721,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Pane (no selection)"
-msgstr ""
+msgstr "لوحة الصفحات (لا تحديد)"
#. 5ascH
#: DrawWindowState.xcu
@@ -11812,7 +11731,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane"
-msgstr ""
+msgstr "لوحة الصفحة الرئيسة"
#. hMUvt
#: DrawWindowState.xcu
@@ -11822,18 +11741,17 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane (no selection)"
-msgstr ""
+msgstr "لوحة الصفحة الرئيسة (لا تحديد)"
#. SvG2a
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/table\n"
"UIName\n"
"value.text"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. R7ADX
#: DrawWindowState.xcu
@@ -11893,7 +11811,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. czEDU
#: DrawWindowState.xcu
@@ -11943,7 +11861,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines and Arrows"
-msgstr ""
+msgstr "خطوط و سهام"
#. 9hGnF
#: DrawWindowState.xcu
@@ -11957,14 +11875,13 @@ msgstr "حرر النقاط"
#. UdUPE
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
msgid "Transformations"
-msgstr "النقل"
+msgstr "تحويلات"
#. HtRmf
#: DrawWindowState.xcu
@@ -11984,7 +11901,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Redacted Export"
-msgstr ""
+msgstr "تصدير المنقّح"
#. GvLVw
#: DrawWindowState.xcu
@@ -12154,7 +12071,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. Qh3P3
#: DrawWindowState.xcu
@@ -12244,7 +12161,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr "قياسي (وضع العرض)"
+msgstr "قياسي (نمط المعايَنة)"
#. 6ZRkm
#: DrawWindowState.xcu
@@ -12274,7 +12191,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. Js5fG
#: DrawWindowState.xcu
@@ -12284,7 +12201,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Master View"
-msgstr "عرض رئيسي"
+msgstr "المعاينة الرئيسة"
#. Bcmob
#: DrawWindowState.xcu
@@ -12944,7 +12861,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bold Flash"
-msgstr "وميض واضح"
+msgstr "وميض ثخين"
#. NsVhi
#: Effects.xcu
@@ -13144,7 +13061,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bold Reveal"
-msgstr "إظهار عريض"
+msgstr "إظهار ثخين"
#. aR3eg
#: Effects.xcu
@@ -15004,7 +14921,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian"
-msgstr "الفينيسية"
+msgstr "البِندقية"
#. 3CeRi
#: Effects.xcu
@@ -15964,7 +15881,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. GiAcD
#: GenericCategories.xcu
@@ -16074,7 +15991,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. kEMD4
#: GenericCategories.xcu
@@ -16095,7 +16012,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. F7ZM5
#: GenericCategories.xcu
@@ -16105,7 +16022,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. HcsCB
#: GenericCategories.xcu
@@ -16225,7 +16142,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. EKdJB
#: GenericCommands.xcu
@@ -18175,7 +18092,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bold"
-msgstr "عريض"
+msgstr "ثخين"
#. 2R3hx
#: GenericCommands.xcu
@@ -18635,7 +18552,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Center"
-msgstr ""
+msgstr "حاذِ إلى الوسط"
#. TipA3
#: GenericCommands.xcu
@@ -18995,7 +18912,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lines and Arrows"
-msgstr "خطوط و أسهم"
+msgstr "خطوط و سهام"
#. BgpD3
#: GenericCommands.xcu
@@ -19355,7 +19272,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Templates"
-msgstr "القوالب"
+msgstr "قوالب"
#. Z5UDc
#: GenericCommands.xcu
@@ -19857,7 +19774,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Unordered List"
-msgstr ""
+msgstr "قائمة غير مرتّبة"
#. XoWcu
#: GenericCommands.xcu
@@ -19867,7 +19784,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Unordered List"
-msgstr ""
+msgstr "قائمة ~غير مرتّبة"
#. d6G5u
#: GenericCommands.xcu
@@ -19887,7 +19804,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ordered List"
-msgstr ""
+msgstr "قائمة مرتّبة"
#. yMEgE
#: GenericCommands.xcu
@@ -19897,7 +19814,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Ordered List"
-msgstr ""
+msgstr "قائمة م~رتّبة"
#. oJFRD
#: GenericCommands.xcu
@@ -19927,7 +19844,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Outline Format"
-msgstr ""
+msgstr "~نسَق المخطط"
#. RMCDt
#: GenericCommands.xcu
@@ -19937,7 +19854,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Outline Format"
-msgstr ""
+msgstr "جدد نسَق المخطط"
#. uKMCr
#: GenericCommands.xcu
@@ -19967,7 +19884,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Dimen~sions..."
-msgstr ""
+msgstr "الم~قاسات..."
#. TgPVp
#: GenericCommands.xcu
@@ -19987,7 +19904,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ignore"
-msgstr ""
+msgstr "تجاهل"
#. qgNxD
#: GenericCommands.xcu
@@ -19997,7 +19914,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "IgnoreAll"
-msgstr ""
+msgstr "تجاهل‌الكل"
#. Z8CTY
#: GenericCommands.xcu
@@ -20007,7 +19924,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Apply Suggestion"
-msgstr ""
+msgstr "طبّق المقترح"
#. ucq4M
#: GenericCommands.xcu
@@ -20117,7 +20034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Button"
-msgstr "زر"
+msgstr "زِر"
#. ETtoB
#: GenericCommands.xcu
@@ -20547,7 +20464,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Styles Preview"
-msgstr ""
+msgstr "معاينة الطُرُز"
#. Zt2GN
#: GenericCommands.xcu
@@ -20597,7 +20514,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~New Style from Selection"
-msgstr ""
+msgstr "طراز ~جديد من التحديد"
#. kk8gA
#: GenericCommands.xcu
@@ -20637,7 +20554,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Update Selected Style"
-msgstr ""
+msgstr "~حدّث الطراز المحدد"
#. sgMoW
#: GenericCommands.xcu
@@ -20757,7 +20674,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hyperlink Control"
-msgstr ""
+msgstr "تحكّم الارتباط التشعبي"
#. 2rDGb
#: GenericCommands.xcu
@@ -20917,7 +20834,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Character Highlighting Color (in Text Box and Shapes)"
-msgstr ""
+msgstr "لون تمييز المحارف (في مربع النص والأشكال)"
#. SPsxZ
#: GenericCommands.xcu
@@ -21097,7 +21014,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Combo Box"
-msgstr "مربع تحرير و سرد"
+msgstr "مربع مركّب"
#. EMNG9
#: GenericCommands.xcu
@@ -21658,7 +21575,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Line"
-msgstr "~سطر"
+msgstr "خ~ط"
#. ESaN2
#: GenericCommands.xcu
@@ -21950,6 +21867,26 @@ msgctxt ""
msgid "~Merge"
msgstr "ا~دمج"
+#. rAjSP
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:MergeCells\n"
+"Label\n"
+"value.text"
+msgid "Merge Cells"
+msgstr ""
+
+#. ktF7K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SplitCell\n"
+"Label\n"
+"value.text"
+msgid "Split Cells..."
+msgstr ""
+
#. 2gYcx
#: GenericCommands.xcu
msgctxt ""
@@ -22478,7 +22415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Image~Map"
-msgstr "مخطط ~صورة"
+msgstr "خريطة ~صورية"
#. ERUDC
#: GenericCommands.xcu
@@ -22818,7 +22755,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Grid"
-msgstr "شبكة"
+msgstr "الشبكة"
#. RS66c
#: GenericCommands.xcu
@@ -23208,7 +23145,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Decrease Indent"
-msgstr "أنقص الإزاحة"
+msgstr "أنقِص الإزاحة"
#. gW55H
#: GenericCommands.xcu
@@ -23218,7 +23155,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Decrease Indent"
-msgstr "أنقص الإزاحة"
+msgstr "أنقِص الإزاحة"
#. K2K2x
#: GenericCommands.xcu
@@ -23238,7 +23175,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Increase Indent"
-msgstr "زد الإزاحة"
+msgstr "زِد الإزاحة"
#. Lfz6Y
#: GenericCommands.xcu
@@ -23248,7 +23185,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Increase Indent"
-msgstr "زد الإزاحة"
+msgstr "زِد الإزاحة"
#. HmVua
#: GenericCommands.xcu
@@ -23968,7 +23905,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "What's New"
-msgstr ""
+msgstr "ما الجديد"
#. B8Gcc
#: GenericCommands.xcu
@@ -24309,7 +24246,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Combo Box"
-msgstr "مربع تحرير وسرد"
+msgstr "مربع مركّب"
#. ZAc85
#: GenericCommands.xcu
@@ -24919,7 +24856,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh"
-msgstr "حدّث"
+msgstr "أعِد التحميل"
#. D4EUF
#: GenericCommands.xcu
@@ -24929,7 +24866,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Control"
-msgstr "التحكم بالتحديث"
+msgstr "تحكّم إعادة التحميل"
#. n4m38
#: GenericCommands.xcu
@@ -25849,7 +25786,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete"
-msgstr "ح~ذف"
+msgstr "اح~ذف"
#. ZMsAG
#: GenericCommands.xcu
@@ -26139,7 +26076,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~View"
-msgstr "~عرض"
+msgstr "معاي~نة"
#. iEu6j
#: GenericCommands.xcu
@@ -26269,7 +26206,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. ZxxTy
#: GenericCommands.xcu
@@ -26441,6 +26378,66 @@ msgctxt ""
msgid "Insert Column"
msgstr "أدرِج عموداً"
+#. LhLtz
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"Label\n"
+"value.text"
+msgid "Delete Columns"
+msgstr ""
+
+#. AG4Qy
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Columns"
+msgstr ""
+
+#. KxsdA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected columns"
+msgstr ""
+
+#. VL8Wa
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"Label\n"
+"value.text"
+msgid "Delete Rows"
+msgstr ""
+
+#. uAPr9
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Rows"
+msgstr ""
+
+#. wjm8K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected rows"
+msgstr ""
+
#. poXFa
#: GenericCommands.xcu
msgctxt ""
@@ -26579,7 +26576,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Templates"
-msgstr "القوالب"
+msgstr "قوالب"
#. TAgSe
#: GenericCommands.xcu
@@ -26609,7 +26606,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Apply document classification"
-msgstr ""
+msgstr "طبّق تصنيف المستندات"
#. owQR2
#: GenericCommands.xcu
@@ -26619,7 +26616,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Document Classification"
-msgstr ""
+msgstr "أدِر تصنيف المستند"
#. SFcbr
#: GenericCommands.xcu
@@ -26629,7 +26626,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Paragraph Classification"
-msgstr ""
+msgstr "أدِر تصنيف الفقرة"
#. N6XvZ
#: GenericCommands.xcu
@@ -26839,7 +26836,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Open Local Copy"
-msgstr ""
+msgstr "ا~فتح نسخة محلية"
#. KmJBw
#: GenericCommands.xcu
@@ -27350,14 +27347,13 @@ msgstr ""
#. D3FGq
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/table\n"
"UIName\n"
"value.text"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. pQGP9
#: ImpressWindowState.xcu
@@ -27417,18 +27413,17 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines and Arrows"
-msgstr ""
+msgstr "خطوط و سهام"
#. AoqtG
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/toolbar/choosemodebar\n"
"UIName\n"
"value.text"
msgid "Transformations"
-msgstr "النقل"
+msgstr "تحويلات"
#. U6A4Z
#: ImpressWindowState.xcu
@@ -27758,7 +27753,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. EMcSF
#: ImpressWindowState.xcu
@@ -27798,7 +27793,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr "قياسي (وضع العرض)"
+msgstr "قياسي (نمط المعايَنة)"
#. qsBFj
#: ImpressWindowState.xcu
@@ -27828,7 +27823,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. cZBBE
#: ImpressWindowState.xcu
@@ -27838,7 +27833,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Master View"
-msgstr "عرض رئيسي"
+msgstr "المعاينة الرئيسة"
#. XgwBZ
#: ImpressWindowState.xcu
@@ -27858,7 +27853,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. hCMAu
#: ImpressWindowState.xcu
@@ -27868,7 +27863,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Single Mode)"
-msgstr "قياسي (وضع أحادي)"
+msgstr "قياسي (النمط المنفرد)"
#. SoDWX
#: ImpressWindowState.xcu
@@ -28318,7 +28313,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report Header/Footer"
-msgstr "ترويسة/تذييل التقرير"
+msgstr "رأس\\تذييل التقرير"
#. EACbA
#: ReportCommands.xcu
@@ -28328,7 +28323,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Header/Footer"
-msgstr "ترويسة/تذييل الصفحة"
+msgstr "ترويس/تذييل الصفحة"
#. DVRia
#: ReportCommands.xcu
@@ -28468,7 +28463,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Column Header/Footer"
-msgstr "ترويسة/تذييل ال~عمود"
+msgstr "ترويس/تذييل ال~عمود"
#. 5CBUX
#: ReportCommands.xcu
@@ -28859,7 +28854,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Shapes"
-msgstr "الأشكال"
+msgstr "أشكال"
#. DtiXt
#: Sidebar.xcu
@@ -28873,14 +28868,13 @@ msgstr "المعرض"
#. 8s6F9
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SdMasterPagesDeck\n"
"Title\n"
"value.text"
msgid "Master Slides"
-msgstr "الشريحة الرئيسية"
+msgstr "شرائح رئيسة"
#. AfH6t
#: Sidebar.xcu
@@ -28890,7 +28884,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Animation"
-msgstr "التحريك"
+msgstr "متحرك"
#. ZBnfV
#: Sidebar.xcu
@@ -29142,6 +29136,16 @@ msgctxt ""
msgid "Slide"
msgstr "شريحة"
+#. zDinJ
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.DrawPageDeck\n"
+"Title\n"
+"value.text"
+msgid "Page"
+msgstr ""
+
#. E9FJB
#: Sidebar.xcu
msgctxt ""
@@ -29190,7 +29194,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Animation"
-msgstr "التحريك"
+msgstr "متحرك"
#. W2JmC
#: Sidebar.xcu
@@ -29350,7 +29354,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style Presets"
-msgstr "الأنماط المعرّفة مسبقًا"
+msgstr "الطُرُز المعرّفة مسبقًا"
#. n3DuN
#: Sidebar.xcu
@@ -29430,7 +29434,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Table"
-msgstr ""
+msgstr "جدول"
#. fEcBG
#: Sidebar.xcu
@@ -29450,7 +29454,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Columns"
-msgstr ""
+msgstr "الأعمدة"
#. CDJWW
#: StartModuleWindowState.xcu
@@ -29490,7 +29494,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sidebar"
-msgstr "شريط جانبي"
+msgstr "الشريط الجانبي"
#. TTPWA
#: ToolbarMode.xcu
@@ -29520,7 +29524,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "شريط مجموعات متضامّ"
+msgstr "شريط‌مجمّع متراصّ"
#. qM7MP
#: ToolbarMode.xcu
@@ -29530,7 +29534,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr "شريط مجموعات"
+msgstr "شريط‌مجمّع"
#. jjRxj
#: ToolbarMode.xcu
@@ -29540,7 +29544,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual Single"
-msgstr ""
+msgstr "سياقيّ منفرد"
#. sbj8Q
#: ToolbarMode.xcu
@@ -29580,7 +29584,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sidebar"
-msgstr "شريط جانبي"
+msgstr "الشريط الجانبي"
#. NZEoV
#: ToolbarMode.xcu
@@ -29600,7 +29604,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "ألسنة متضامّ"
#. EfebG
#: ToolbarMode.xcu
@@ -29610,7 +29614,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "شريط مجموعات متضامّ"
+msgstr "شريط‌مجمّع متراصّ"
#. is78h
#: ToolbarMode.xcu
@@ -29620,7 +29624,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr "شريط مجموعات"
+msgstr "شريط‌مجمّع"
#. GPGPB
#: ToolbarMode.xcu
@@ -29670,7 +29674,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "ألسنة متضامّ"
#. quFBW
#: ToolbarMode.xcu
@@ -29680,7 +29684,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "شريط مجموعات متضامّ"
+msgstr "شريط‌مجمّع متراصّ"
#. tGs79
#: ToolbarMode.xcu
@@ -29690,7 +29694,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr "شريط مجموعات"
+msgstr "شريط‌مجمّع"
#. WcJLU
#: ToolbarMode.xcu
@@ -29700,7 +29704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual Single"
-msgstr ""
+msgstr "سياقيّ منفرد"
#. ekpVE
#: ToolbarMode.xcu
@@ -29730,7 +29734,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "ألسنة"
#. mGCMC
#: ToolbarMode.xcu
@@ -29740,7 +29744,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "ألسنة متضامّ"
#. nrNaZ
#: ToolbarMode.xcu
@@ -29750,7 +29754,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "شريط‌مجمّع متراصّ"
#. FncB5
#: ToolbarMode.xcu
@@ -29760,7 +29764,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual Single"
-msgstr ""
+msgstr "سياقيّ منفرد"
#. 5eckD
#: ToolbarMode.xcu
@@ -29840,7 +29844,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Header"
-msgstr "أدرِج ترويسة"
+msgstr "أدرِج ترويسًا"
#. 3CEM5
#: WriterCommands.xcu
@@ -30460,7 +30464,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Use header/footer menu"
-msgstr "استخدم قائمة الترويسة/التذييل"
+msgstr "استخدم قائمة الترويس/التذييل"
#. 3nEko
#: WriterCommands.xcu
@@ -30470,7 +30474,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Use the advanced popup menu to create header/footer on the fly"
-msgstr "استخدم القائمة المنبثقة المتقدمة لإنشاء ترويسة/تذييل بسرعة"
+msgstr "استخدم القائمة المنبثقة المتقدمة لإنشاء ترويس/تذييل بسرعة"
#. EPnUe
#: WriterCommands.xcu
@@ -30534,14 +30538,13 @@ msgstr "~تعليق..."
#. hupz9
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:CommentChangeTracking\n"
"TooltipLabel\n"
"value.text"
msgid "Insert Track Change Comment"
-msgstr "أدرج تعليق تتبع تغييرات ODF"
+msgstr "أدرج تعليق تتبّع تغييرات"
#. uoAny
#: WriterCommands.xcu
@@ -30651,7 +30654,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set Reminder"
-msgstr ""
+msgstr "عيّن التذكير"
#. n2p7v
#: WriterCommands.xcu
@@ -30661,7 +30664,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Set Reminder"
-msgstr ""
+msgstr "عيّن التذكير"
#. g5xTe
#: WriterCommands.xcu
@@ -30921,7 +30924,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Index Entry"
-msgstr "أدرج مُدخل فهرس"
+msgstr "أدرج مُدخَل فهرس"
#. wAnNA
#: WriterCommands.xcu
@@ -31811,7 +31814,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Load Styles from Template"
-msgstr ""
+msgstr "ح~مّل الطُرُز من قالب"
#. m6dbV
#: WriterCommands.xcu
@@ -32041,7 +32044,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. SvFa2
#: WriterCommands.xcu
@@ -32211,7 +32214,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xternal Links..."
-msgstr ""
+msgstr "رواب~ط خارجية..."
#. PCFhM
#: WriterCommands.xcu
@@ -32251,7 +32254,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Header Rows Repeat Across Pages"
-msgstr "تتكرّر صفوف الترويسة في كل صفحة"
+msgstr "تتكرّر صفوف خط العنوان عبر الصفحات"
#. xhNkD
#: WriterCommands.xcu
@@ -32443,66 +32446,6 @@ msgctxt ""
msgid "Columns ~Before"
msgstr ""
-#. rzDZU
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "احذف الصفوف"
-
-#. DDmHu
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Rows"
-msgstr "~صفوف"
-
-#. mBMTr
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected rows"
-msgstr "احذف الصفوف المحددة"
-
-#. WGcRm
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "احذف الأعمدة"
-
-#. P6wy9
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Columns"
-msgstr "أعمد~ة"
-
-#. rhbdp
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected columns"
-msgstr "احذف الأعمدة المحددة"
-
#. RxF66
#: WriterCommands.xcu
msgctxt ""
@@ -32531,27 +32474,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Delete table"
-msgstr ""
-
-#. f2Fpk
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells..."
-msgstr "اقسم الخلايا..."
-
-#. DqRgD
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "ادمج الخلايا"
+msgstr "احذف الجدول"
#. TTVL5
#: WriterCommands.xcu
@@ -32651,7 +32574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Cell"
-msgstr "حدّد الخلية"
+msgstr "حدد الخلية"
#. QH2nm
#: WriterCommands.xcu
@@ -32671,7 +32594,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Cell"
-msgstr ""
+msgstr "حدد الخلية"
#. PpyJW
#: WriterCommands.xcu
@@ -32721,7 +32644,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Update ~Fields"
-msgstr ""
+msgstr "حدّث الح~قول"
#. tpc5P
#: WriterCommands.xcu
@@ -32731,7 +32654,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Table"
-msgstr "حدّد الجدول"
+msgstr "حدد الجدول"
#. dPaC3
#: WriterCommands.xcu
@@ -32741,7 +32664,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Table"
-msgstr "الج~دول"
+msgstr "ج~دول"
#. Af8EP
#: WriterCommands.xcu
@@ -32751,7 +32674,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Select Table"
-msgstr ""
+msgstr "حدد الجدول"
#. wzPFD
#: WriterCommands.xcu
@@ -33071,7 +32994,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Chapter Up with Subpoints"
-msgstr ""
+msgstr "انقل الفصل لأعلى مع النقاط الفرعية"
#. GCegb
#: WriterCommands.xcu
@@ -33091,7 +33014,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Chapter Down with Subpoints"
-msgstr ""
+msgstr "انقل الفصل لأسفل مع النقاط الفرعية"
#. JF2Ui
#: WriterCommands.xcu
@@ -33211,7 +33134,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Search"
-msgstr "كرّر البحث"
+msgstr "كرر البحث"
#. NXWwC
#: WriterCommands.xcu
@@ -33871,7 +33794,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Header"
-msgstr "إلى الترويسة"
+msgstr "إلى الترويس"
#. GSRog
#: WriterCommands.xcu
@@ -34231,7 +34154,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to next table formula"
-msgstr "إلى معادلة الجدول التالية"
+msgstr "اذهب إلى صيغة الجدول التالية"
#. EcSGG
#: WriterCommands.xcu
@@ -34241,7 +34164,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to previous table formula"
-msgstr "إلى معادلة الجدول السابقة"
+msgstr "اذهب الى صيغة الجدول السابقة"
#. L98F7
#: WriterCommands.xcu
@@ -34251,7 +34174,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to next faulty table formula"
-msgstr "إلى معادلة الجدول الخاطئة التالية"
+msgstr "اذهب إلى صيغة الجدول الخاطئة التالية"
#. 27XxB
#: WriterCommands.xcu
@@ -34261,7 +34184,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to previous faulty table formula"
-msgstr "إلى معادلة الجدول الخاطئة السابقة"
+msgstr "اذهب إلى صيغة الجدول الخاطئة السابقة"
#. KxPWA
#: WriterCommands.xcu
@@ -34381,7 +34304,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fields"
-msgstr "الحقول"
+msgstr "حقول"
#. FEAFx
#: WriterCommands.xcu
@@ -34401,7 +34324,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hyphenation..."
-msgstr "ال~فصل بالمقاطع ..."
+msgstr "~وصل الكلمات..."
#. ngTBv
#: WriterCommands.xcu
@@ -34841,7 +34764,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Add to List"
-msgstr ""
+msgstr "أ~ضِف إلى قائمة"
#. rbB7v
#: WriterCommands.xcu
@@ -34891,7 +34814,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Back"
-msgstr "السابق"
+msgstr "رجوع"
#. u6dob
#: WriterCommands.xcu
@@ -35023,7 +34946,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~1"
-msgstr "عنوان رئيسي ~١"
+msgstr "خط عنوان ~١"
#. eRnxM
#: WriterCommands.xcu
@@ -35033,7 +34956,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~1"
-msgstr "عنوان رئيسي ~١"
+msgstr "خط عنوان ~١"
#. sR7Dv
#: WriterCommands.xcu
@@ -35043,7 +34966,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Paragraph Style"
-msgstr "نمط فقرات ”عنوان رئيسي ١“"
+msgstr "طراز فقرة ”خط عنوان ١“"
#. zKbSB
#: WriterCommands.xcu
@@ -35053,7 +34976,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~2"
-msgstr "عنوان رئيسي ~٢"
+msgstr "خط عنوان ~٢"
#. FfmEY
#: WriterCommands.xcu
@@ -35063,7 +34986,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~2"
-msgstr "عنوان رئيسي ~٢"
+msgstr "خط عنوان ~٢"
#. B2DRF
#: WriterCommands.xcu
@@ -35073,7 +34996,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Paragraph Style"
-msgstr "نمط فقرات ”عنوان رئيسي ٢“"
+msgstr "طراز فقرة ”خط عنوان 2“"
#. ZetCn
#: WriterCommands.xcu
@@ -35083,7 +35006,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~3"
-msgstr "عنوان رئيسي ~٣"
+msgstr "خط عنوان ~٣"
#. iVgff
#: WriterCommands.xcu
@@ -35093,7 +35016,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~3"
-msgstr "عنوان رئيسي ~٣"
+msgstr "خط عنوان ~٣"
#. 5viXu
#: WriterCommands.xcu
@@ -35103,7 +35026,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 3 Paragraph Style"
-msgstr "نمط فقرات ”عنوان رئيسي ٣“"
+msgstr "طراز فقرة ”خط عنوان ٣“"
#. k53FG
#: WriterCommands.xcu
@@ -35113,7 +35036,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~4"
-msgstr "عنوان رئيسي ~٤"
+msgstr "خط عنوان ~٤"
#. CjEN7
#: WriterCommands.xcu
@@ -35123,7 +35046,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~4"
-msgstr "عنوان رئيسي ~٤"
+msgstr "خط عنوان ~٤"
#. fW95P
#: WriterCommands.xcu
@@ -35133,7 +35056,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 4 Paragraph Style"
-msgstr "نمط فقرات ”عنوان رئيسي ٤“"
+msgstr "طراز فقرة ”خط عنوان ٤“"
#. FjBvj
#: WriterCommands.xcu
@@ -35143,7 +35066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~5"
-msgstr "عنوان رئيسي ~٥"
+msgstr "خط عنوان ~٥"
#. oyAXE
#: WriterCommands.xcu
@@ -35153,7 +35076,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~5"
-msgstr "عنوان رئيسي ~٥"
+msgstr "خط عنوان ~٥"
#. VKdxm
#: WriterCommands.xcu
@@ -35163,7 +35086,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 5 Paragraph Style"
-msgstr "نمط فقرات ”عنوان رئيسي ٥“"
+msgstr "طراز فقرة ”خط عنوان ٥“"
#. vhWdD
#: WriterCommands.xcu
@@ -35173,7 +35096,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~6"
-msgstr "عنوان رئيسي ~٦"
+msgstr "خط عنوان ~٦"
#. HEHGi
#: WriterCommands.xcu
@@ -35183,7 +35106,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~6"
-msgstr "عنوان رئيسي ~٦"
+msgstr "خط عنوان ~٦"
#. A8xfL
#: WriterCommands.xcu
@@ -35193,7 +35116,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 6 Paragraph Style"
-msgstr "نمط فقرات ”عنوان رئيسي ٦“"
+msgstr "طراز فقرة ”خط عنوان ٦“"
#. PZvwB
#: WriterCommands.xcu
@@ -35203,7 +35126,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Quotations"
-msgstr "اقتبا~س"
+msgstr "تنصيص~ات"
#. evCdC
#: WriterCommands.xcu
@@ -35213,7 +35136,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Quotations"
-msgstr "اقتبا~س"
+msgstr "تنصيص~ات"
#. dDoKs
#: WriterCommands.xcu
@@ -35223,7 +35146,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Quotations Paragraph Style"
-msgstr "نمط فقرات ”اقتباس“"
+msgstr "طراز فقرة التنصيصات"
#. 2vgz8
#: WriterCommands.xcu
@@ -35293,7 +35216,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default ~Character"
-msgstr ""
+msgstr "الم~حرف المبدئي"
#. UJ5WP
#: WriterCommands.xcu
@@ -35323,7 +35246,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~mphasis"
-msgstr "تأ~كيد"
+msgstr "ت~شديد"
#. FgGtz
#: WriterCommands.xcu
@@ -35333,7 +35256,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~mphasis"
-msgstr "تأ~كيد"
+msgstr "ت~شديد"
#. d6TqC
#: WriterCommands.xcu
@@ -35393,7 +35316,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Qu~otation"
-msgstr "اق~تباس"
+msgstr "~تنصيص"
#. AQvDE
#: WriterCommands.xcu
@@ -35403,7 +35326,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Quotation Character Style"
-msgstr ""
+msgstr "طراز محرف التنصيص"
#. 9LD4r
#: WriterCommands.xcu
@@ -35413,7 +35336,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Qu~otation"
-msgstr "اق~تباس"
+msgstr "~تنصيص"
#. Pbsp9
#: WriterCommands.xcu
@@ -35423,7 +35346,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Quotation Character Style"
-msgstr ""
+msgstr "طراز محرف التنصيص"
#. JJF6G
#: WriterCommands.xcu
@@ -35463,7 +35386,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet • List Style"
-msgstr ""
+msgstr "طراز قائمة النقط •"
#. VBvBU
#: WriterCommands.xcu
@@ -35473,7 +35396,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet • List Style"
-msgstr ""
+msgstr "طراز قائمة النقط •"
#. BW4E6
#: WriterCommands.xcu
@@ -35483,7 +35406,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bullet • List Style"
-msgstr ""
+msgstr "طراز قائمة النقط •"
#. mqYSC
#: WriterCommands.xcu
@@ -35493,7 +35416,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering 123 List Style"
-msgstr ""
+msgstr "طراز قائمة ترقيم 1‏2‏3"
#. D5sRy
#: WriterCommands.xcu
@@ -35503,7 +35426,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering 123 List Style"
-msgstr ""
+msgstr "طراز قائمة ترقيم 1‏2‏3"
#. 5AJuo
#: WriterCommands.xcu
@@ -35513,7 +35436,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering 123 List Style"
-msgstr ""
+msgstr "طراز قائمة ترقيم 1‏2‏3"
#. xAyDX
#: WriterCommands.xcu
@@ -35523,7 +35446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ABC List Style"
-msgstr ""
+msgstr "طراز قائمة ترقيم أب‌ج"
#. uENeD
#: WriterCommands.xcu
@@ -35533,7 +35456,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering ABC List Style"
-msgstr ""
+msgstr "طراز قائمة ترقيم أب‌ج"
#. c6BjB
#: WriterCommands.xcu
@@ -35543,7 +35466,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering ABC List Style"
-msgstr ""
+msgstr "طراز قائمة ترقيم أب‌ج"
#. uxkph
#: WriterCommands.xcu
@@ -35553,7 +35476,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering abc List Style"
-msgstr ""
+msgstr "قائمة طراز ترقيم أبـ‌جـ"
#. Lcogs
#: WriterCommands.xcu
@@ -35563,7 +35486,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering abc List Style"
-msgstr ""
+msgstr "قائمة طراز ترقيم أبـ‌جـ"
#. fYB5d
#: WriterCommands.xcu
@@ -35573,7 +35496,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Numbering abc List Style"
-msgstr ""
+msgstr "قائمة طراز ترقيم أبـ‌جـ"
#. UHSTJ
#: WriterCommands.xcu
@@ -36053,7 +35976,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting"
-msgstr "تنسيق"
+msgstr "التنسيق"
#. Bp5Du
#: WriterFormWindowState.xcu
@@ -36293,7 +36216,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr "قياسي (وضع العرض)"
+msgstr "قياسي (نمط المعايَنة)"
#. BoMEG
#: WriterFormWindowState.xcu
@@ -36543,7 +36466,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. ejDKL
#: WriterGlobalWindowState.xcu
@@ -36553,7 +36476,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting"
-msgstr "تنسيق"
+msgstr "التنسيق"
#. 6QzrE
#: WriterGlobalWindowState.xcu
@@ -36683,7 +36606,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. iLrpm
#: WriterGlobalWindowState.xcu
@@ -36773,7 +36696,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr "قياسي (وضع العرض)"
+msgstr "قياسي (نمط المعايَنة)"
#. VZELB
#: WriterGlobalWindowState.xcu
@@ -37053,7 +36976,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting"
-msgstr "تنسيق"
+msgstr "التنسيق"
#. FftME
#: WriterReportWindowState.xcu
@@ -37293,7 +37216,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr "قياسي (وضع العرض)"
+msgstr "قياسي (نمط المعايَنة)"
#. ySeBh
#: WriterReportWindowState.xcu
@@ -37523,7 +37446,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. jDCJ4
#: WriterWebWindowState.xcu
@@ -37533,7 +37456,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting"
-msgstr "تنسيق"
+msgstr "التنسيق"
#. BwCtL
#: WriterWebWindowState.xcu
@@ -37563,7 +37486,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. JYC7D
#: WriterWebWindowState.xcu
@@ -37573,7 +37496,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. NS9TD
#: WriterWebWindowState.xcu
@@ -37743,7 +37666,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr "قياسي (وضع العرض)"
+msgstr "قياسي (نمط المعايَنة)"
#. Yke4u
#: WriterWebWindowState.xcu
@@ -37983,7 +37906,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. 9vptu
#: WriterWindowState.xcu
@@ -37993,7 +37916,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formatting"
-msgstr "تنسيق"
+msgstr "التنسيق"
#. UHYbB
#: WriterWindowState.xcu
@@ -38033,7 +37956,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lines and Arrows"
-msgstr ""
+msgstr "خطوط و سهام"
#. VE7Pg
#: WriterWindowState.xcu
@@ -38253,7 +38176,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr "القياسي (وضع العرض)"
+msgstr "قياسي (نمط المعايَنة)"
#. fmEKa
#: WriterWindowState.xcu
@@ -38403,7 +38326,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Single Mode)"
-msgstr "قياسي (وضع أحادي)"
+msgstr "قياسي (النمط المنفرد)"
#. h6gRt
#: WriterWindowState.xcu
@@ -38553,7 +38476,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. oCCNK
#: XFormsWindowState.xcu
@@ -38583,7 +38506,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. 4CcVV
#: XFormsWindowState.xcu
@@ -38793,7 +38716,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Standard (Viewing Mode)"
-msgstr "قياسي (وضع العرض)"
+msgstr "قياسي (نمط المعايَنة)"
#. hahnM
#: XFormsWindowState.xcu
diff --git a/source/ar/readlicense_oo/docs.po b/source/ar/readlicense_oo/docs.po
index bf0b97fecb9..d149a4c7dfa 100644
--- a/source/ar/readlicense_oo/docs.po
+++ b/source/ar/readlicense_oo/docs.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:12+0200\n"
-"PO-Revision-Date: 2021-03-19 16:39+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/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: 1542022443.000000\n"
#. q6Gg3
@@ -86,7 +86,7 @@ msgctxt ""
"A13\n"
"readmeitem.text"
msgid "You can use this copy of ${PRODUCTNAME} free of charge because individual contributors and corporate sponsors have designed, developed, tested, translated, documented, supported, marketed, and helped in many other ways to make ${PRODUCTNAME} what it is today - the world's leading Open Source productivity software for home and office."
-msgstr "يمكنك استخدام هذه النسخة من ${PRODUCTNAME} مجانا بدون رسوم لأن المتطوعين والشركات الراعية قاموا بالتصميم، والتطوير، والإختبار، والترجمة، والتوثيق، والدعم، والتسويق، والمساعدة بطرق متعددة لجعل ${PRODUCTNAME} كما هو اليوم - متزعماً صدراة المشاريع المفتوحة المصدر في العالم كبرنامج إنتاجية للمنزل والمكتب."
+msgstr "يمكنك استخدام هذه النسخة من ${PRODUCTNAME} مجانا بِلا رسوم لأن المتطوعين والشركات الراعية قاموا بالتصميم، والتطوير، والاختبار، والترجمة، والتوثيق، والدعم، والتسويق، والمساعدة بطرق متعددة لجعل ${PRODUCTNAME} كما هو اليوم - زعيم البرمجيات الإنتاجية مفتوحة المصدر في العالم للمنزل والمكتب."
#. CTGH2
#: readme.xrm
@@ -590,7 +590,7 @@ msgctxt ""
"abcdef\n"
"readmeitem.text"
msgid "Difficulties starting ${PRODUCTNAME} (e.g. applications hang) as well as problems with the screen display are often caused by the graphics card driver. If these problems occur, please update your graphics card driver or try using the graphics driver delivered with your operating system."
-msgstr ""
+msgstr "صعوبات بدء ${PRODUCTNAME} (مثلا علوق التطبيقات) وكذا مشاكل عَرض الشاشة يسببها غالبًا مشغّل بطاقة الرسوميات. إذا حصلت هذه المشاكل فالرجاء تحديث مشغّل بطاقة الرسوميات لديك أو محاولة استخدام مشغّل الرسوميات المُعطى مع نظام التشغيل لديك."
#. inrAd
#: readme.xrm
diff --git a/source/ar/reportdesign/messages.po b/source/ar/reportdesign/messages.po
index e07ac97e057..cc15e856af8 100644
--- a/source/ar/reportdesign/messages.po
+++ b/source/ar/reportdesign/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:20+0100\n"
-"PO-Revision-Date: 2022-02-19 13:39+0000\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/ar/>\n"
"Language: ar\n"
@@ -13,14 +13,14 @@ 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: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1518296086.000000\n"
#. FBVr9
#: reportdesign/inc/stringarray.hrc:19
msgctxt "RID_STR_FORCENEWPAGE_CONST"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. 2VDzY
#: reportdesign/inc/stringarray.hrc:20
@@ -62,7 +62,7 @@ msgstr "كلّ الصّفحات"
#: reportdesign/inc/stringarray.hrc:36
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "Not With Report Header"
-msgstr "ليس مع ترويسة التقرير"
+msgstr "ليس مع رأس التقرير"
#. wchYh
#: reportdesign/inc/stringarray.hrc:37
@@ -74,7 +74,7 @@ msgstr "ليس مع تذييل التقرير"
#: reportdesign/inc/stringarray.hrc:38
msgctxt "RID_STR_REPORTPRINTOPTION_CONST"
msgid "Not With Report Header/Footer"
-msgstr "ليس مع ترويسة التقرير أو تذييله"
+msgstr "ليس مع رأس\\تذييل التقرير"
#. ZC2oS
#: reportdesign/inc/stringarray.hrc:44
@@ -346,7 +346,7 @@ msgstr "بقاء المجموعات معًا"
#: reportdesign/inc/strings.hrc:42
msgctxt "RID_STR_PAGEHEADEROPTION"
msgid "Page header"
-msgstr "ترويسة الصفحة"
+msgstr "رأس الصفحة"
#. rzwjM
#: reportdesign/inc/strings.hrc:43
@@ -382,7 +382,7 @@ msgstr "الموضع ص"
#: reportdesign/inc/strings.hrc:48
msgctxt "RID_STR_WIDTH"
msgid "Width"
-msgstr "العرض"
+msgstr "العُرض"
#. GkcPB
#: reportdesign/inc/strings.hrc:49
@@ -652,13 +652,13 @@ msgstr "تنسيق شرطي"
#: reportdesign/inc/strings.hrc:95
msgctxt "RID_STR_UNDO_REMOVE_REPORTHEADERFOOTER"
msgid "Remove report header / report footer"
-msgstr "أزِل ترويسة التقرير/تذييل التقرير"
+msgstr "أزِل رأس التقرير/تذييل التقرير"
#. iHU5A
#: reportdesign/inc/strings.hrc:96
msgctxt "RID_STR_UNDO_ADD_REPORTHEADERFOOTER"
msgid "Add report header / report footer"
-msgstr "أضف ترويسة التقرير/تذييل التقرير"
+msgstr "أضف رأس التقرير/تذييل التقرير"
#. EGhDu
#. The # character is used for replacing
@@ -671,13 +671,13 @@ msgstr "تغيير الخاصية '#'"
#: reportdesign/inc/strings.hrc:99
msgctxt "RID_STR_UNDO_ADD_GROUP_HEADER"
msgid "Add group header "
-msgstr "إضافة ترويسة المجموعة "
+msgstr "أضِف رأس المجموعة "
#. DgPmD
#: reportdesign/inc/strings.hrc:100
msgctxt "RID_STR_UNDO_REMOVE_GROUP_HEADER"
msgid "Remove group header "
-msgstr "إزالة ترويسة المجموعة "
+msgstr "أزِل رأس المجموعة "
#. DENjF
#: reportdesign/inc/strings.hrc:101
@@ -756,7 +756,7 @@ msgstr "حذف عنصر تحكم"
#: reportdesign/inc/strings.hrc:114
msgctxt "RID_STR_GROUPHEADER"
msgid "GroupHeader"
-msgstr "رأس المجموعة"
+msgstr "رأس‌المجموعة"
#. LseTq
#. Please try to avoid spaces in the name. It is used as a programmatic one.
@@ -788,7 +788,7 @@ msgstr "غير المحاذاة"
#: reportdesign/inc/strings.hrc:121
msgctxt "RID_STR_HEADER"
msgid "# Header"
-msgstr "ترويسة #"
+msgstr "# رأس"
#. 9Zu4z
#. # will be replaced with a name.";
@@ -843,25 +843,25 @@ msgstr "تغيير سمات الصفحة"
#: reportdesign/inc/strings.hrc:131
msgctxt "RID_STR_PAGEHEADERFOOTER_INSERT"
msgid "Insert Page Header/Footer"
-msgstr "أدرج ترويسة/تذييل الصفحة"
+msgstr "أدرج رأس\\تذييل الصفحة"
#. JZEaA
#: reportdesign/inc/strings.hrc:132
msgctxt "RID_STR_PAGEHEADERFOOTER_DELETE"
msgid "Delete Page Header/Footer"
-msgstr "احذف ترويسة/تذييل الصفحة"
+msgstr "احذف رأس\\تذييل الصفحة"
#. zENVV
#: reportdesign/inc/strings.hrc:133
msgctxt "RID_STR_REPORTHEADERFOOTER_INSERT"
msgid "Insert Report Header/Footer"
-msgstr "أدرج ترويسة/تذييل التقرير"
+msgstr "أدرج رأس\\تذييل التقرير"
#. cF5cE
#: reportdesign/inc/strings.hrc:134
msgctxt "RID_STR_REPORTHEADERFOOTER_DELETE"
msgid "Delete Report Header/Footer"
-msgstr "احذف ترويسة/تذييل التقرير"
+msgstr "احذف رأس\\تذييل التقرير"
#. YfLKD
#: reportdesign/inc/strings.hrc:135
@@ -891,7 +891,7 @@ msgstr "التفاصيل"
#: reportdesign/inc/strings.hrc:139
msgctxt "RID_STR_PAGE_HEADER"
msgid "Page Header"
-msgstr "ترويسة الصفحة"
+msgstr "رأس الصفحة"
#. VaKUs
#: reportdesign/inc/strings.hrc:140
@@ -903,7 +903,7 @@ msgstr "تذييل الصفحة"
#: reportdesign/inc/strings.hrc:141
msgctxt "RID_STR_REPORT_HEADER"
msgid "Report Header"
-msgstr "ترويسة التقرير"
+msgstr "رأس التقرير"
#. cgWUK
#: reportdesign/inc/strings.hrc:142
@@ -987,7 +987,7 @@ msgstr "حدد حقلاً، أو اكتب تعبيرًا للفرز أو الت
#: reportdesign/inc/strings.hrc:157
msgctxt "STR_RPT_HELP_HEADER"
msgid "Display a header for this group?"
-msgstr "هل تريد عرض ترويسة لهذه المجموعة؟"
+msgstr "هل تريد عرض رأس لهذه المجموعة؟"
#. 2eKET
#: reportdesign/inc/strings.hrc:158
@@ -1049,7 +1049,7 @@ msgstr "المجموعات"
#: reportdesign/inc/strings.hrc:172
msgctxt "RID_STR_GROUP_HEADER"
msgid "Group Header"
-msgstr "ترويسة المجموعة"
+msgstr "رأس المجموعة"
#. u85VE
#: reportdesign/inc/strings.hrc:173
@@ -1307,7 +1307,7 @@ msgstr "ت_ضمين التاريخ"
#: reportdesign/uiconfig/dbreport/ui/datetimedialog.ui:113
msgctxt "datetimedialog|datelistbox_label"
msgid "_Format:"
-msgstr "التن_سيق:"
+msgstr "النسَ_ق:"
#. DRAAK
#: reportdesign/uiconfig/dbreport/ui/datetimedialog.ui:125
@@ -1411,7 +1411,7 @@ msgstr "الفرز"
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:210
msgctxt "floatingsort|label7"
msgid "Group Header"
-msgstr "ترويسة المجموعة"
+msgstr "رأس المجموعة"
#. hwKPG
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:224
@@ -1533,13 +1533,13 @@ msgstr "الفرز والتجميع…"
#: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:26
msgctxt "navigatormenu|page"
msgid "Page Header/Footer..."
-msgstr "ترويسة/تذييل الصفحة…"
+msgstr "رأس\\تذييل الصفحة…"
#. dCNEo
#: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:34
msgctxt "navigatormenu|report"
msgid "Report Header/Footer..."
-msgstr "ترويسة/تذييل التقرير…"
+msgstr "رأس\\تذييل التقرير…"
#. tDRkM
#: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:48
@@ -1551,7 +1551,7 @@ msgstr "دالة جديدة"
#: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:62
msgctxt "navigatormenu|properties"
msgid "Properties..."
-msgstr "خصائص…"
+msgstr "الخصائص..."
#. b84af
#: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:70
@@ -1567,7 +1567,6 @@ msgstr "إعداد الصفحة"
#. C2GxE
#: reportdesign/uiconfig/dbreport/ui/pagedialog.ui:138
-#, fuzzy
msgctxt "pagedialog|page"
msgid "Page"
msgstr "الصفحة"
@@ -1606,7 +1605,7 @@ msgstr "التنسيق"
#: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:167
msgctxt "pagenumberdialog|toppage"
msgid "_Top of Page (Header)"
-msgstr "أ_على الصفحة (الترويسة)"
+msgstr "أ_على الصفحة (الرأس)"
#. Bt5Xv
#: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:183
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index 513a59f1536..a4f9a6dfb65 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/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: 2022-02-18 12:18+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022445.000000\n"
#. kBovX
@@ -217,7 +217,7 @@ msgstr "الصفات/الخطوط"
#: sc/inc/globstr.hrc:45
msgctxt "STR_UNDO_COLWIDTH"
msgid "Column Width"
-msgstr "عرض العمود"
+msgstr "عُرض العمود"
#. ZR5P8
#: sc/inc/globstr.hrc:46
@@ -385,7 +385,7 @@ msgstr "تعديل نطاق قاعدة بيانات"
#: sc/inc/globstr.hrc:73
msgctxt "STR_UNDO_IMPORTDATA"
msgid "Importing"
-msgstr "استيراد"
+msgstr "يستورد"
#. kCWvL
#: sc/inc/globstr.hrc:74
@@ -601,13 +601,13 @@ msgstr "تحرير تعليق"
#: sc/inc/globstr.hrc:109
msgctxt "STR_UNDO_DEC_INDENT"
msgid "Decrease Indent"
-msgstr "إنقاص الإزاحة"
+msgstr "أنقِص الإزاحة"
#. 4kqvD
#: sc/inc/globstr.hrc:110
msgctxt "STR_UNDO_INC_INDENT"
msgid "Increase Indent"
-msgstr "زيادة الإزاحة"
+msgstr "زِد الإزاحة"
#. pizsf
#: sc/inc/globstr.hrc:111
@@ -673,7 +673,7 @@ msgstr "تغيير حالة الأحرف"
#: sc/inc/globstr.hrc:121
msgctxt "STR_DBNAME_IMPORT"
msgid "Import"
-msgstr "استيراد"
+msgstr "استورد"
#. rmKDS
#: sc/inc/globstr.hrc:122
@@ -706,8 +706,8 @@ msgid ""
"The range does not contain column headers.\n"
"Do you want the first line to be used as column header?"
msgstr ""
-"النطاق لا يحتوي على ترويسات أعمدة.\n"
-"هل ترغب في استخدام السطر الأول كترويسة عمود؟"
+"النطاق لا يحتوي على رؤوس أعمدة.\n"
+"هل ترغب في استخدام السطر الأول كرأس عمود؟"
#. W8DjC
#: sc/inc/globstr.hrc:127
@@ -831,14 +831,13 @@ msgstr "وَ"
#: sc/inc/globstr.hrc:145
msgctxt "STR_TABLE_OR"
msgid "OR"
-msgstr ""
+msgstr "أو"
#. ovwBG
#: sc/inc/globstr.hrc:146
-#, fuzzy
msgctxt "STR_TABLE_DEF"
msgid "Sheet"
-msgstr "الورقة"
+msgstr "ورقة"
#. wnc9f
#: sc/inc/globstr.hrc:147
@@ -1496,7 +1495,7 @@ msgstr "(ضروري)"
#: sc/inc/globstr.hrc:263
msgctxt "STR_NOTES"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. GfDDe
#: sc/inc/globstr.hrc:264
@@ -1556,19 +1555,19 @@ msgstr "المبدئيّ"
#: sc/inc/globstr.hrc:273
msgctxt "STR_STYLENAME_HEADING"
msgid "Heading"
-msgstr ""
+msgstr "خط العنوان"
#. NM7R3
#: sc/inc/globstr.hrc:274
msgctxt "STR_STYLENAME_HEADING_1"
msgid "Heading 1"
-msgstr "عنوان رئيسي ١"
+msgstr "خط عنوان 1"
#. 8XF63
#: sc/inc/globstr.hrc:275
msgctxt "STR_STYLENAME_HEADING_2"
msgid "Heading 2"
-msgstr "عنوان رئيسي ٢"
+msgstr "خط عنوان 2"
#. WBuWS
#: sc/inc/globstr.hrc:276
@@ -1820,7 +1819,7 @@ msgstr "لا يمكن إدراج المراجع فوق بيانات المصدر
#: sc/inc/globstr.hrc:316
msgctxt "STR_SCENARIO_NOTFOUND"
msgid "Scenario not found"
-msgstr "لم يتم العثور على السيناريو"
+msgstr "لم يُعثر على السيناريو"
#. h9AuX
#: sc/inc/globstr.hrc:317
@@ -1844,7 +1843,7 @@ msgstr "رسوم بيانية"
#: sc/inc/globstr.hrc:320
msgctxt "STR_VOBJ_DRAWINGS"
msgid "Drawing Objects"
-msgstr "كائنات رسومية"
+msgstr "كائنات رسم"
#. JGftp
#: sc/inc/globstr.hrc:321
@@ -1874,7 +1873,7 @@ msgstr "من اليسار إلى اليمين"
#: sc/inc/globstr.hrc:325
msgctxt "STR_SCATTR_PAGE_NOTES"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. ZhGSA
#: sc/inc/globstr.hrc:326
@@ -1886,7 +1885,7 @@ msgstr "الشبكة"
#: sc/inc/globstr.hrc:327
msgctxt "STR_SCATTR_PAGE_HEADERS"
msgid "Row & Column Headers"
-msgstr "ترويسات الأسطر والأعمدة"
+msgstr "رؤوس الصفوف والأعمدة"
#. opCNb
#: sc/inc/globstr.hrc:328
@@ -1910,7 +1909,7 @@ msgstr "اتجاه الطباعة"
#: sc/inc/globstr.hrc:331
msgctxt "STR_SCATTR_PAGE_FIRSTPAGENO"
msgid "First page number"
-msgstr "أول رقم صفحة"
+msgstr "رقم أول صفحة"
#. 98ZSn
#: sc/inc/globstr.hrc:332
@@ -1922,7 +1921,7 @@ msgstr "تقليص/تكبير مخرجات الطباعة"
#: sc/inc/globstr.hrc:333
msgctxt "STR_SCATTR_PAGE_SCALETOPAGES"
msgid "Fit print range(s) on number of pages"
-msgstr "ملاءمة نطاق (نطاقات) الطباعة بعدد الصفحات"
+msgstr "ملاءمة نطاق (نطاقات) الطباعة على عدد الصفحات"
#. kDAZk
#: sc/inc/globstr.hrc:334
@@ -1934,7 +1933,7 @@ msgstr "ملاءمة نطاق (نطاقات) الطباعة بالعرض/الا
#: sc/inc/globstr.hrc:335
msgctxt "STR_SCATTR_PAGE_SCALE_WIDTH"
msgid "Width"
-msgstr "العرض"
+msgstr "العُرض"
#. DCDgF
#: sc/inc/globstr.hrc:336
@@ -1947,12 +1946,12 @@ msgstr "الارتفاع"
msgctxt "STR_SCATTR_PAGE_SCALE_PAGES"
msgid "One page"
msgid_plural "%1 pages"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+msgstr[0] "لا صفحات"
+msgstr[1] "صفحة واحدة"
+msgstr[2] "صفحتان"
+msgstr[3] "%1 صفحات"
+msgstr[4] "%1 صفحة"
+msgstr[5] "%1 صفحة"
#. CHEgx
#: sc/inc/globstr.hrc:338
@@ -2050,7 +2049,7 @@ msgstr "تعذر إدراج الجدول."
#: sc/inc/globstr.hrc:352
msgctxt "STR_TABREMOVE_ERROR"
msgid "The sheets could not be deleted."
-msgstr "تعذر حذف الجداول."
+msgstr "تعذر حذف الورقات."
#. SQGAE
#: sc/inc/globstr.hrc:353
@@ -2078,7 +2077,7 @@ msgstr ""
#: sc/inc/globstr.hrc:356
msgctxt "STR_ERR_NOREF"
msgid "No cell references are found in the selected cells."
-msgstr "لم يُعثر على مراجع لخلايا في الخلايا المحدّدة."
+msgstr "لم يُعثر على مراجع خلايا في الخلايا المحدّدة."
#. vKDsp
#: sc/inc/globstr.hrc:357
@@ -2142,7 +2141,7 @@ msgstr ""
#: sc/inc/globstr.hrc:366
msgctxt "STR_QUICKHELP_DELETE"
msgid "Delete contents"
-msgstr "حذف المحتويات"
+msgstr "احذف المحتويات"
#. uJtdh
#: sc/inc/globstr.hrc:367
@@ -2191,7 +2190,7 @@ msgstr "نتيجة الجدول المحوري"
#: sc/inc/globstr.hrc:375
msgctxt "STR_PIVOT_STYLE_CATEGORY"
msgid "Pivot Table Category"
-msgstr "فئة الجدول المحوري"
+msgstr "صنف الجدول المحوري"
#. bTwc9
#: sc/inc/globstr.hrc:376
@@ -2233,7 +2232,7 @@ msgstr "المجاميع الفرعية"
#: sc/inc/globstr.hrc:382
msgctxt "STR_OPERATION_NONE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. FVErn
#: sc/inc/globstr.hrc:383
@@ -2333,31 +2332,31 @@ msgstr "تحويل هانغول/هانجا"
#: sc/inc/globstr.hrc:397
msgctxt "STR_NAME_INPUT_CELL"
msgid "Select Cell"
-msgstr "تحديد الخلية"
+msgstr "حدد الخلية"
#. AkoV3
#: sc/inc/globstr.hrc:398
msgctxt "STR_NAME_INPUT_RANGE"
msgid "Select Range"
-msgstr "اختيار النطاق"
+msgstr "حدد النطاق"
#. U2Jow
#: sc/inc/globstr.hrc:399
msgctxt "STR_NAME_INPUT_DBRANGE"
msgid "Select Database Range"
-msgstr "تحديد نطاق قاعدة البيانات"
+msgstr "حدد نطاق قاعدة البيانات"
#. jfJtb
#: sc/inc/globstr.hrc:400
msgctxt "STR_NAME_INPUT_ROW"
msgid "Go To Row"
-msgstr "انتقال إلى الصف"
+msgstr "انتقل إلى الصف"
#. fF3Qb
#: sc/inc/globstr.hrc:401
msgctxt "STR_NAME_INPUT_SHEET"
msgid "Go To Sheet"
-msgstr "انتقال إلى الورقة"
+msgstr "اذهب إلى الورقة"
#. xEAo2
#: sc/inc/globstr.hrc:402
@@ -2423,7 +2422,7 @@ msgstr "المصفوفات المتداخلة غير مدعومة."
#: sc/inc/globstr.hrc:412
msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
msgid "Unsupported inline array content."
-msgstr ""
+msgstr "محتوى مصفوفة سطري غير مدعوم."
#. n5PAG
#: sc/inc/globstr.hrc:413
@@ -2543,7 +2542,7 @@ msgstr "شكل بيضاوي"
#: sc/inc/globstr.hrc:426
msgctxt "STR_FORM_BUTTON"
msgid "Button"
-msgstr "زر"
+msgstr "زِر"
#. gkBcL
#: sc/inc/globstr.hrc:427
@@ -2669,7 +2668,7 @@ msgstr "اسم غير صحيح. مستخدم بالفعل في مجال آخر."
#: sc/inc/globstr.hrc:447
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Start with a letter, use only letters, numbers and underscore."
-msgstr ""
+msgstr "اسم غير سليم. ابدأ بحرف واستخدم الحروف والأرقام والشارحة السفلية فقط."
#. owW4Y
#: sc/inc/globstr.hrc:448
@@ -2679,21 +2678,21 @@ msgid ""
"\n"
"Do you want to continue?"
msgstr ""
-"يحتوي هذا المستند مراجع خراجية لمستندات غير محفوظة.\n"
+"يحتوي هذا المستند مراجع خارجية لمستندات غير محفوظة.\n"
"\n"
-"هل تود المتابعة؟"
+"أتريد المتابعة؟"
#. dSCFD
#: sc/inc/globstr.hrc:449
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
-msgstr "المستند هذا مرجع لمستند آخر لم يُحفظ بعد. إغلاقه دون الحفظ سيتسبب بفقدان البيانات."
+msgstr "هذا المستند مرجع لمستند آخر لم يُحفظ بعد. إغلاقه دون الحفظ سيتسبب بفقدان البيانات."
#. uBwWr
#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_CONDITION"
msgid "Cell value"
-msgstr ""
+msgstr "قيمة الخلية"
#. E8yxG
#: sc/inc/globstr.hrc:451
@@ -2717,25 +2716,25 @@ msgstr "مجموعة الأيقونات"
#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_BETWEEN"
msgid "is between"
-msgstr ""
+msgstr "هو ما بين"
#. VwraP
#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_NOTBETWEEN"
msgid "is not between"
-msgstr ""
+msgstr "هو ليس ما بين"
#. 35tDp
#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_UNIQUE"
msgid "is unique"
-msgstr ""
+msgstr "هو فريد"
#. CCscL
#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_DUPLICATE"
msgid "is duplicate"
-msgstr ""
+msgstr "هو تكرار"
#. owhPn
#: sc/inc/globstr.hrc:458
@@ -2747,19 +2746,19 @@ msgstr "الصيغة هي"
#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_TOP10"
msgid "is in top elements"
-msgstr ""
+msgstr "هو في العناصر العليا"
#. tR5xA
#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_BOTTOM10"
msgid "is in bottom elements"
-msgstr ""
+msgstr "هو في العناصر السفلى"
#. EWAhr
#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_TOP_PERCENT"
msgid "is in top percent"
-msgstr ""
+msgstr "هو في النسبة المئوية العليا"
#. vRk5n
#: sc/inc/globstr.hrc:462
@@ -2771,31 +2770,31 @@ msgstr "التاريخ هو"
#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "is in bottom percent"
-msgstr ""
+msgstr "هو في النسبة المئوية السفلى"
#. w5vq3
#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "is above average"
-msgstr ""
+msgstr "هو فوق المعدل"
#. 4QM7C
#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "is below average"
-msgstr ""
+msgstr "هو دون المعدل"
#. CZfTg
#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "is above or equal average"
-msgstr ""
+msgstr "هو أعلى من أو يساوي المعدل"
#. GmUGP
#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "is below or equal average"
-msgstr ""
+msgstr "هو أدنى من أو يساوي المعدل"
#. 8DgQ9
#: sc/inc/globstr.hrc:468
@@ -3122,7 +3121,7 @@ msgstr "الورقة %1 من %2"
#: sc/inc/globstr.hrc:518
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
-msgstr ""
+msgstr "%1 و %2 زيادة"
#. X3uUX
#: sc/inc/globstr.hrc:519
@@ -3249,18 +3248,30 @@ msgstr ""
#: sc/inc/globstr.hrc:539
msgctxt "STR_HYPHENATECELL_ON"
msgid "Hyphenate: On"
-msgstr ""
+msgstr "وصل: مشتغل"
#. kXiLH
#: sc/inc/globstr.hrc:540
msgctxt "STR_HYPHENATECELL_OFF"
msgid "Hyphenate: Off"
-msgstr ""
+msgstr "وصل: معطَّل"
#. 5Vr2B
#: sc/inc/globstr.hrc:541
msgctxt "STR_INDENTCELL"
msgid "Indent: "
+msgstr "أزِح: "
+
+#. HWAmv
+#: sc/inc/globstr.hrc:542
+msgctxt "STR_UNDO_INSERT_SPARKLINE"
+msgid "Insert Sparkline Group"
+msgstr ""
+
+#. LiBMo
+#: sc/inc/globstr.hrc:543
+msgctxt "STR_UNDO_DELETE_SPARKLINE"
+msgid "Delete Sparkline"
msgstr ""
#. dB8cp
@@ -3383,13 +3394,13 @@ msgstr "لا يتوفر مرشّح لهذا النوع من الملفات."
#: sc/inc/scerrors.hrc:44
msgctxt "RID_ERRHDLSC"
msgid "Unknown or unsupported Excel file format."
-msgstr "نسق ملف إكسل مجهول أو غير مدعوم."
+msgstr "نسق ملف أكسل مجهول أو غير مدعوم."
#. SyADN
#: sc/inc/scerrors.hrc:46
msgctxt "RID_ERRHDLSC"
msgid "Excel file format not yet implemented."
-msgstr "لم يُنفّذ نسق ملفّات إكسل بعد."
+msgstr "لم يُنفّذ نسق ملفّات أكسل بعد."
#. vhTKu
#: sc/inc/scerrors.hrc:48
@@ -3411,29 +3422,28 @@ msgstr "يحتوي الملف على بيانات بعد الصف 8192، وبا
#. sRW9a
#: sc/inc/scerrors.hrc:54 sc/inc/scerrors.hrc:102
-#, fuzzy
msgctxt "RID_ERRHDLSC"
msgid "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col)."
-msgstr "خطأ في تنسيق في الملف الموجود بالمستند الفرعي $(ARG1) عند $(ARG2)(صف،عمود)."
+msgstr "اكتُشف خطأ في نسَق الملف في المستند الفرعي $(ARG1) عند $(ARG2)(الصف،العمود)."
#. NzaA9
#: sc/inc/scerrors.hrc:56
msgctxt "RID_ERRHDLSC"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr "تم اكتشاف خطأ في تنسيق الملف في $(ARG1)(صف،عمود)."
+msgstr "عُثر على خطأ في نسَق الملف في $(ARG1)(صف،عمود)."
#. gYKQj
#. Export ----------------------------------------------------
#: sc/inc/scerrors.hrc:60
msgctxt "RID_ERRHDLSC"
msgid "Connection to the file could not be established."
-msgstr ""
+msgstr "تعذّرت إقامة اتصال إلى الملف."
#. BeyFY
#: sc/inc/scerrors.hrc:62
msgctxt "RID_ERRHDLSC"
msgid "Data could not be written."
-msgstr ""
+msgstr "تعذّرت كتابة البيانات."
#. tWYYs
#: sc/inc/scerrors.hrc:64
@@ -4103,10 +4113,9 @@ msgstr "رقم صحيح من 1 إلى 12 يمثل الشهر."
#. PmsNF
#: sc/inc/scfuncs.hrc:187
-#, fuzzy
msgctxt "SC_OPCODE_GET_DATE"
msgid "Day"
-msgstr "أيام"
+msgstr "اليوم"
#. McM2X
#: sc/inc/scfuncs.hrc:188
@@ -4122,7 +4131,6 @@ msgstr "إرجاع رقم داخلي لنص يتضمن تنسيق تاريخ م
#. 5Dfoq
#: sc/inc/scfuncs.hrc:195
-#, fuzzy
msgctxt "SC_OPCODE_GET_DATE_VALUE"
msgid "Text"
msgstr "النص"
@@ -4489,7 +4497,6 @@ msgstr "إرجاع رقم متتالٍ لنص بتنسيق إدخال وقت م
#. GKRRm
#: sc/inc/scfuncs.hrc:315
-#, fuzzy
msgctxt "SC_OPCODE_GET_TIME_VALUE"
msgid "Text"
msgstr "النص"
@@ -6633,16 +6640,15 @@ msgstr "النطاق المراد تطبيق المعايير عليه."
#. miDfc
#: sc/inc/scfuncs.hrc:986
-#, fuzzy
msgctxt "SC_OPCODE_SUM_IF"
msgid "Criteria"
-msgstr "المعيار"
+msgstr "المعايير"
#. GBGyP
#: sc/inc/scfuncs.hrc:987
msgctxt "SC_OPCODE_SUM_IF"
msgid "The criteria to be applied to the range."
-msgstr ""
+msgstr "المعايير التي تطبَّق على المدى."
#. tj6UM
#: sc/inc/scfuncs.hrc:988
@@ -6677,16 +6683,15 @@ msgstr "النطاق المراد تطبيق المعايير عليه."
#. aV2bj
#: sc/inc/scfuncs.hrc:998
-#, fuzzy
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "Criteria"
-msgstr "المعيار"
+msgstr "المعايير"
#. mHjDY
#: sc/inc/scfuncs.hrc:999
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "The criteria to be applied to the range."
-msgstr ""
+msgstr "المعايير التي تطبَّق على المدى."
#. SisUL
#: sc/inc/scfuncs.hrc:1000
@@ -6840,16 +6845,15 @@ msgstr "مجال الخلايا المراد تقييمه بالمعايير ا
#. pGUfg
#: sc/inc/scfuncs.hrc:1043
-#, fuzzy
msgctxt "SC_OPCODE_COUNT_IF"
msgid "Criteria"
-msgstr "المعيار"
+msgstr "المعايير"
#. Dv9PK
#: sc/inc/scfuncs.hrc:1044
msgctxt "SC_OPCODE_COUNT_IF"
msgid "The criteria to be applied to the range."
-msgstr ""
+msgstr "المعايير التي تطبَّق على المدى."
#. hUVL8
#: sc/inc/scfuncs.hrc:1050
@@ -12239,7 +12243,7 @@ msgstr "لإرجاع الاحتمال ذي الطرف الأيمن لتوزيع
#: sc/inc/scfuncs.hrc:2793
msgctxt "SC_OPCODE_CHI_DIST_MS"
msgid "Number"
-msgstr "الرقم"
+msgstr "رقم"
#. pocbP
#: sc/inc/scfuncs.hrc:2794
@@ -13997,13 +14001,13 @@ msgstr "أي1"
#: sc/inc/scfuncs.hrc:3281
msgctxt "SC_OPCODE_ADDRESS"
msgid "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."
-msgstr "نمط المرجع: 0 أو FALSE تعني نمط R1C1، أية قيمة أخرى أو محذوف تعني نمط A1."
+msgstr "الطراز المرجع: 0 أو خطأ FALSE تعني الطراز R1C1، أية قيمة أخرى أو محذوف تعني الطراز أي1 A1."
#. a8TPH
#: sc/inc/scfuncs.hrc:3282
msgctxt "SC_OPCODE_ADDRESS"
msgid "Sheet"
-msgstr "الورقة"
+msgstr "ورقة"
#. 4Wrvi
#: sc/inc/scfuncs.hrc:3283
@@ -14358,7 +14362,7 @@ msgstr "أي1"
#: sc/inc/scfuncs.hrc:3401
msgctxt "SC_OPCODE_INDIRECT"
msgid "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."
-msgstr "نمط المرجع: 0 أو FALSE تعني نمط R1C1، أية قيمة أخرى أو محذوف تعني نمط A1."
+msgstr "الطراز المرجع: 0 أو خطأ FALSE تعني الطراز R1C1، أية قيمة أخرى أو محذوف تعني الطراز أي1 A1."
#. 269jg
#: sc/inc/scfuncs.hrc:3407
@@ -14424,10 +14428,9 @@ msgstr "القيمة المراد استخدامها في المقارنة."
#. svVHi
#: sc/inc/scfuncs.hrc:3422
-#, fuzzy
msgctxt "SC_OPCODE_MATCH"
msgid "Lookup array"
-msgstr "مصفوفة_البحث"
+msgstr "مصفوفة البحث"
#. cdkps
#: sc/inc/scfuncs.hrc:3423
@@ -14451,7 +14454,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3431
msgctxt "SC_OPCODE_OFFSET"
msgid "Returns a reference which has been moved in relation to the starting point."
-msgstr "إرجاع مرجع تمت إزاحته بالمقارنة مع نقطة الانطلاق."
+msgstr "يُرجِع مرجعًا نُقل بالمقارنة مع نقطة الانطلاق."
#. Kt5Hn
#: sc/inc/scfuncs.hrc:3432
@@ -14463,7 +14466,7 @@ msgstr "المرجع"
#: sc/inc/scfuncs.hrc:3433
msgctxt "SC_OPCODE_OFFSET"
msgid "The reference (cell) from which to base the movement."
-msgstr "المرجع (الخلية) التي تريد تحديد الإزاحة بدءًا منها."
+msgstr "المرجع (الخلية) التي تريد تحديد النقل بدءًا منها."
#. ZSZKE
#: sc/inc/scfuncs.hrc:3434
@@ -14475,7 +14478,7 @@ msgstr "الصفوف"
#: sc/inc/scfuncs.hrc:3435
msgctxt "SC_OPCODE_OFFSET"
msgid "The number of rows to be moved either up or down."
-msgstr "عدد الصفوف التي سيتم إزاحتها لأعلى أو لأسفل."
+msgstr "عدد الصفوف التي ستُنقل لأعلى أو لأسفل."
#. GSFDq
#: sc/inc/scfuncs.hrc:3436
@@ -14487,7 +14490,7 @@ msgstr "الأعمدة"
#: sc/inc/scfuncs.hrc:3437
msgctxt "SC_OPCODE_OFFSET"
msgid "The number of columns that are to be moved to the left or to the right."
-msgstr "عدد الأعمدة التي سيتم إزاحتها لليسار أو لليمين."
+msgstr "عدد الأعمدة التي ستُنقل لليسار أو لليمين."
#. Gkwct
#: sc/inc/scfuncs.hrc:3438
@@ -14499,19 +14502,19 @@ msgstr "الارتفاع"
#: sc/inc/scfuncs.hrc:3439
msgctxt "SC_OPCODE_OFFSET"
msgid "The number of rows of the moved reference."
-msgstr "عدد صفوف المرجع الذي تمت إزاحته."
+msgstr "عدد صفوف المرجع الذي نُقل."
#. Y5Gux
#: sc/inc/scfuncs.hrc:3440
msgctxt "SC_OPCODE_OFFSET"
msgid "Width"
-msgstr "العرض"
+msgstr "العُرض"
#. RBhpn
#: sc/inc/scfuncs.hrc:3441
msgctxt "SC_OPCODE_OFFSET"
msgid "The number of columns in the moved reference."
-msgstr "عدد أعمدة المرجع الذي تمت إزاحته."
+msgstr "عدد أعمدة المرجع الذي نُقل."
#. 94GDy
#: sc/inc/scfuncs.hrc:3447
@@ -14553,7 +14556,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3463
msgctxt "SC_OPCODE_STYLE"
msgid "Applies a Style to the formula cell."
-msgstr "تطبيق نمط تنسيق على خلية الصيغة."
+msgstr "يطبّق طرازاً تنسيق على خلية الصيغة."
#. NQuDE
#: sc/inc/scfuncs.hrc:3464
@@ -14565,7 +14568,7 @@ msgstr "الطراز"
#: sc/inc/scfuncs.hrc:3465
msgctxt "SC_OPCODE_STYLE"
msgid "The name of the Style to be applied."
-msgstr "اسم النمط المراد تطبيقه."
+msgstr "اسم الطراز الذي سيُطبَّق."
#. CW5zj
#: sc/inc/scfuncs.hrc:3466
@@ -14577,21 +14580,19 @@ msgstr "الوقت"
#: sc/inc/scfuncs.hrc:3467
msgctxt "SC_OPCODE_STYLE"
msgid "The time (in seconds) that the Style is to remain valid."
-msgstr "المدة (بالثواني) التي يبقى فيها النمط صالحًا."
+msgstr "المدة (بالثواني) التي يبقى فيها الطراز صالحًا."
#. kcP6b
#: sc/inc/scfuncs.hrc:3468
-#, fuzzy
msgctxt "SC_OPCODE_STYLE"
msgid "Style 2"
-msgstr "النمط2"
+msgstr "الطراز 2"
#. HBrCD
#: sc/inc/scfuncs.hrc:3469
-#, fuzzy
msgctxt "SC_OPCODE_STYLE"
msgid "The style to be applied after time expires."
-msgstr "النمط الذي سيتم تطبيقه بعد انتهاء الوقت."
+msgstr "الطراز الذي سيُطبَّق بعد انتهاء الوقت."
#. Ri4A7
#: sc/inc/scfuncs.hrc:3475
@@ -14603,7 +14604,7 @@ msgstr "نتيجة رابط ت‌ب‌ح."
#: sc/inc/scfuncs.hrc:3476
msgctxt "SC_OPCODE_DDE"
msgid "Server"
-msgstr "خادوم"
+msgstr "الخادوم"
#. 2UcAR
#: sc/inc/scfuncs.hrc:3477
@@ -14621,20 +14622,19 @@ msgstr "الموضوع/الملف"
#: sc/inc/scfuncs.hrc:3479
msgctxt "SC_OPCODE_DDE"
msgid "The topic or name of the file."
-msgstr ""
+msgstr "موضوع أو اسم الملف."
#. utkfp
#: sc/inc/scfuncs.hrc:3480
msgctxt "SC_OPCODE_DDE"
msgid "Item/range"
-msgstr ""
+msgstr "العنصر/النطاق"
#. cYaTf
#: sc/inc/scfuncs.hrc:3481
-#, fuzzy
msgctxt "SC_OPCODE_DDE"
msgid "The item or range from which data is to be taken."
-msgstr "النطاق المراد أخذ البيانات منه."
+msgstr "العنصر أو النطاق المراد أخذ البيانات منه."
#. u5Tb2
#: sc/inc/scfuncs.hrc:3482
@@ -14652,26 +14652,25 @@ msgstr "تحديد كيفية تحويل البيانات إلى أرقام."
#: sc/inc/scfuncs.hrc:3489
msgctxt "SC_OPCODE_HYPERLINK"
msgid "Construct a Hyperlink."
-msgstr ""
+msgstr "ركّب ارتباطًا تشعبيًا"
#. UAXBE
#: sc/inc/scfuncs.hrc:3490
msgctxt "SC_OPCODE_HYPERLINK"
msgid "URL"
-msgstr "عنوان URL"
+msgstr "رابط"
#. XFwBY
#: sc/inc/scfuncs.hrc:3491
msgctxt "SC_OPCODE_HYPERLINK"
msgid "The clickable URL."
-msgstr ""
+msgstr "الرابط القابل للنقر."
#. AufAt
#: sc/inc/scfuncs.hrc:3492
-#, fuzzy
msgctxt "SC_OPCODE_HYPERLINK"
msgid "Cell text"
-msgstr "نص خلية"
+msgstr "نص الخلية"
#. mgaK8
#: sc/inc/scfuncs.hrc:3493
@@ -14699,7 +14698,6 @@ msgstr "اسم حقل الجدول المحوري المطلوب استخراج
#. svGFq
#: sc/inc/scfuncs.hrc:3502
-#, fuzzy
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
msgid "Pivot table"
msgstr "جدول محوري"
@@ -14712,7 +14710,6 @@ msgstr "مرجع إلى خلية أو نطاق في الجدول المحوري.
#. gcYNf
#: sc/inc/scfuncs.hrc:3504
-#, fuzzy
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
msgid "Field name / item"
msgstr "اسم الحقل/ العنصر"
@@ -14749,7 +14746,6 @@ msgstr "تحويل ASCII نصف العرض وحروف katakana إلى عرض ك
#. 4DpED
#: sc/inc/scfuncs.hrc:3520
-#, fuzzy
msgctxt "SC_OPCODE_JIS"
msgid "Text"
msgstr "النص"
@@ -14768,7 +14764,6 @@ msgstr "تحويل ASCII عرض كامل وحروف katakana إلى نصف ال
#. FKMAj
#: sc/inc/scfuncs.hrc:3528
-#, fuzzy
msgctxt "SC_OPCODE_ASC"
msgid "Text"
msgstr "النص"
@@ -14787,7 +14782,6 @@ msgstr "إرجاع الكود للحرف الأول من النص."
#. GJzcS
#: sc/inc/scfuncs.hrc:3536
-#, fuzzy
msgctxt "SC_OPCODE_CODE"
msgid "Text"
msgstr "النص"
@@ -14855,7 +14849,6 @@ msgstr "حذف الأحرف التي تتعذر طباعتها من النص."
#. hAtdo
#: sc/inc/scfuncs.hrc:3562
-#, fuzzy
msgctxt "SC_OPCODE_CLEAN"
msgid "Text"
msgstr "النص"
@@ -14874,7 +14867,6 @@ msgstr "دمج عدة نصوص في نص واحد."
#. eokBK
#: sc/inc/scfuncs.hrc:3570
-#, fuzzy
msgctxt "SC_OPCODE_CONCAT"
msgid "Text"
msgstr "النص"
@@ -14893,7 +14885,6 @@ msgstr ""
#. qtkhM
#: sc/inc/scfuncs.hrc:3578
-#, fuzzy
msgctxt "SC_OPCODE_CONCAT_MS"
msgid "Text"
msgstr "النص"
@@ -14936,7 +14927,6 @@ msgstr ""
#. R8bUT
#: sc/inc/scfuncs.hrc:3590
-#, fuzzy
msgctxt "SC_OPCODE_TEXTJOIN_MS"
msgid "Text"
msgstr "النص"
@@ -15160,7 +15150,6 @@ msgstr "النص المراد البحث عنه."
#. oJDy4
#: sc/inc/scfuncs.hrc:3654
-#, fuzzy
msgctxt "SC_OPCODE_FIND"
msgid "Text"
msgstr "النص"
@@ -15204,7 +15193,6 @@ msgstr "النص المراد البحث عنه."
#. 4DXDD
#: sc/inc/scfuncs.hrc:3666
-#, fuzzy
msgctxt "SC_OPCODE_SEARCH"
msgid "Text"
msgstr "النص"
@@ -15235,7 +15223,6 @@ msgstr "تحذف المسافات الزائدة من النص."
#. suQD3
#: sc/inc/scfuncs.hrc:3676
-#, fuzzy
msgctxt "SC_OPCODE_TRIM"
msgid "Text"
msgstr "النص"
@@ -15254,7 +15241,6 @@ msgstr "تحويل كافة الأحرف الأولى في كل الكلمات
#. MT7Gu
#: sc/inc/scfuncs.hrc:3684
-#, fuzzy
msgctxt "SC_OPCODE_PROPER"
msgid "Text"
msgstr "النص"
@@ -15273,7 +15259,6 @@ msgstr "تحويل كل الأحرف الموجودة في نص إلى أحرف
#. semL2
#: sc/inc/scfuncs.hrc:3692
-#, fuzzy
msgctxt "SC_OPCODE_UPPER"
msgid "Text"
msgstr "النص"
@@ -15292,7 +15277,6 @@ msgstr "تحويل كل الأحرف الموجودة في نص إلى أحرف
#. 3pTMV
#: sc/inc/scfuncs.hrc:3700
-#, fuzzy
msgctxt "SC_OPCODE_LOWER"
msgid "Text"
msgstr "النص"
@@ -15311,7 +15295,6 @@ msgstr "تحويل نص إلى رقم."
#. TC6y4
#: sc/inc/scfuncs.hrc:3708
-#, fuzzy
msgctxt "SC_OPCODE_VALUE"
msgid "Text"
msgstr "النص"
@@ -15477,7 +15460,6 @@ msgstr "حساب طول سلسلة نصية."
#. F7TeC
#: sc/inc/scfuncs.hrc:3760
-#, fuzzy
msgctxt "SC_OPCODE_LEN"
msgid "Text"
msgstr "النص"
@@ -15496,7 +15478,6 @@ msgstr "إرجاع الحرف اﻷول أو الأحرف الأولى من ال
#. JE2BB
#: sc/inc/scfuncs.hrc:3768
-#, fuzzy
msgctxt "SC_OPCODE_LEFT"
msgid "Text"
msgstr "النص"
@@ -15528,7 +15509,6 @@ msgstr "إرجاع الحرف الأخير أو الأحرف الأخيرة لن
#. XLYbU
#: sc/inc/scfuncs.hrc:3778
-#, fuzzy
msgctxt "SC_OPCODE_RIGHT"
msgid "Text"
msgstr "النص"
@@ -15560,7 +15540,6 @@ msgstr "إرجاع سلسلة نصية جزئية من النص."
#. KSF9r
#: sc/inc/scfuncs.hrc:3788
-#, fuzzy
msgctxt "SC_OPCODE_MID"
msgid "Text"
msgstr "النص"
@@ -15604,7 +15583,6 @@ msgstr "تكرار نص ما بعدد مرات محدد."
#. hE3Cj
#: sc/inc/scfuncs.hrc:3800
-#, fuzzy
msgctxt "SC_OPCODE_REPT"
msgid "Text"
msgstr "النص"
@@ -15636,7 +15614,6 @@ msgstr "استبدال نص قديم بآخر جديد في السلسلة ال
#. jWzEv
#: sc/inc/scfuncs.hrc:3810
-#, fuzzy
msgctxt "SC_OPCODE_SUBSTITUTE"
msgid "Text"
msgstr "النص"
@@ -15792,7 +15769,6 @@ msgstr "تحويل نص من نظام أرقام محدد إلى رقم صحيح
#. gVET7
#: sc/inc/scfuncs.hrc:3850
-#, fuzzy
msgctxt "SC_OPCODE_DECIMAL"
msgid "Text"
msgstr "النص"
@@ -15836,7 +15812,6 @@ msgstr "القيمة المراد اختبارها."
#. Y3Wp3
#: sc/inc/scfuncs.hrc:3862 sc/inc/scfuncs.hrc:3864
-#, fuzzy
msgctxt "SC_OPCODE_CONVERT_OOO"
msgid "Text"
msgstr "النص"
@@ -15927,7 +15902,6 @@ msgstr "إرجاع الكود الرقمي لحرف Unicode الأول في سل
#. NFb28
#: sc/inc/scfuncs.hrc:3896
-#, fuzzy
msgctxt "SC_OPCODE_UNICODE"
msgid "Text"
msgstr "النص"
@@ -16037,7 +16011,6 @@ msgstr "تحويل نص إلى رقم، بأسلوب مستقل عن اللغة
#. cyLMe
#: sc/inc/scfuncs.hrc:3926
-#, fuzzy
msgctxt "SC_OPCODE_NUMBERVALUE"
msgid "Text"
msgstr "النص"
@@ -16221,7 +16194,6 @@ msgstr "حساب طول سلسلة نصية."
#. sCCbq
#: sc/inc/scfuncs.hrc:3983
-#, fuzzy
msgctxt "SC_OPCODE_LENB"
msgid "Text"
msgstr "النص"
@@ -16241,7 +16213,6 @@ msgstr "إرجاع الحرف الأخير أو الأحرف الأخيرة لن
#. 3uMzB
#: sc/inc/scfuncs.hrc:3990
-#, fuzzy
msgctxt "SC_OPCODE_RIGHTB"
msgid "Text"
msgstr "النص"
@@ -16274,7 +16245,6 @@ msgstr "إرجاع الحرف اﻷول أو الأحرف الأولى من ال
#. 9fVd5
#: sc/inc/scfuncs.hrc:3999
-#, fuzzy
msgctxt "SC_OPCODE_LEFTB"
msgid "Text"
msgstr "النص"
@@ -16307,7 +16277,6 @@ msgstr "إرجاع سلسلة نصية جزئية من النص."
#. uCFzD
#: sc/inc/scfuncs.hrc:4008
-#, fuzzy
msgctxt "SC_OPCODE_MIDB"
msgid "Text"
msgstr "النص"
@@ -16572,7 +16541,6 @@ msgstr "استبدال جزء من نص ما بنص آخر."
#. yFLRy
#: sc/inc/scfuncs.hrc:4088
-#, fuzzy
msgctxt "SC_OPCODE_REPLACEB"
msgid "Text"
msgstr "النص"
@@ -16641,7 +16609,6 @@ msgstr "النص المراد البحث عنه."
#. gRPS2
#: sc/inc/scfuncs.hrc:4104
-#, fuzzy
msgctxt "SC_OPCODE_FINDB"
msgid "Text"
msgstr "النص"
@@ -16685,7 +16652,6 @@ msgstr "النص المراد البحث عنه."
#. wtFyg
#: sc/inc/scfuncs.hrc:4116
-#, fuzzy
msgctxt "SC_OPCODE_SEARCHB"
msgid "Text"
msgstr "النص"
@@ -16966,7 +16932,7 @@ msgstr ""
#: sc/inc/strings.hrc:46
msgctxt "SCSTR_FILTER_NO_FILL"
msgid "No Fill"
-msgstr ""
+msgstr "بِلا تعبئة"
#. 8DPvA
#: sc/inc/strings.hrc:47
@@ -17059,12 +17025,12 @@ msgstr "أدرج صورة"
msgctxt "SCSTR_TOTAL"
msgid "One result found"
msgid_plural "%1 results found"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
+msgstr[0] "لم يُعثر غلى نتائج"
+msgstr[1] "عُثر على نتيجة واحدة"
+msgstr[2] "عُثر على نتيجتين"
+msgstr[3] "عُثر على %1 نتائج"
+msgstr[4] "عُثر على %1 نتيجةً"
+msgstr[5] "عُثر على %1 نتيجةٍ"
#. 7GkKi
#: sc/inc/strings.hrc:63
@@ -17254,7 +17220,7 @@ msgstr "عرض المستند"
#: sc/inc/strings.hrc:97
msgctxt "STR_ACC_TABLE_NAME"
msgid "Sheet %1"
-msgstr "الورقة %1"
+msgstr "ورقة %1"
#. 2qRJG
#: sc/inc/strings.hrc:98
@@ -17290,7 +17256,7 @@ msgstr "المنطقة اليمنى"
#: sc/inc/strings.hrc:103
msgctxt "STR_ACC_HEADER_NAME"
msgid "Header of page %1"
-msgstr "ترويسة الصفحة %1"
+msgstr "ترويس الصفحة %1"
#. BwF8D
#: sc/inc/strings.hrc:104
@@ -17350,43 +17316,43 @@ msgstr "(وضع المعاينة)"
#: sc/inc/strings.hrc:113
msgctxt "SCSTR_PRINTOPT_PAGES"
msgid "Pages:"
-msgstr ""
+msgstr "الصفحات:"
#. FYjDY
#: sc/inc/strings.hrc:114
msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY"
msgid "~Suppress output of empty pages"
-msgstr ""
+msgstr "أ~خمد إخراج الصفحات الفارغة"
#. GQNVf
#: sc/inc/strings.hrc:115
msgctxt "SCSTR_PRINTOPT_ALLSHEETS"
msgid "Print All Sheets"
-msgstr ""
+msgstr "اطبع كل الأوراق"
#. xcKcm
#: sc/inc/strings.hrc:116
msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS"
msgid "Print Selected Sheets"
-msgstr ""
+msgstr "اطبع الأوراق المحددة"
#. e7kTj
#: sc/inc/strings.hrc:117
msgctxt "SCSTR_PRINTOPT_SELECTEDCELLS"
msgid "Print Selected Cells"
-msgstr ""
+msgstr "اطبع الخلايا المحددة"
#. z4DB6
#: sc/inc/strings.hrc:118
msgctxt "SCSTR_PRINTOPT_FROMWHICH"
msgid "From which:"
-msgstr ""
+msgstr "من أيّها:"
#. v5EK2
#: sc/inc/strings.hrc:119
msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "كل ال~صفحات"
#. cvNuW
#: sc/inc/strings.hrc:120
@@ -17428,13 +17394,13 @@ msgstr "كالك A1"
#: sc/inc/strings.hrc:126
msgctxt "SCSTR_FORMULA_SYNTAX_XL_A1"
msgid "Excel A1"
-msgstr "إكسل A1"
+msgstr "أكسل A1"
#. KLkBH
#: sc/inc/strings.hrc:127
msgctxt "SCSTR_FORMULA_SYNTAX_XL_R1C1"
msgid "Excel R1C1"
-msgstr "إكسل R1C1"
+msgstr "أكسل R1C1"
#. pr4wW
#: sc/inc/strings.hrc:128
@@ -17583,10 +17549,9 @@ msgstr "مربط الخلية"
#. rTGKc
#: sc/inc/strings.hrc:152
-#, fuzzy
msgctxt "SCSTR_CONDITION"
msgid "Condition "
-msgstr "الشّروط"
+msgstr "الشرط "
#. 56Wmj
#. content description strings are also use d in ScLinkTargetsObj
@@ -17615,10 +17580,9 @@ msgstr "مجالات قاعدة البيانات"
#. kbHfD
#: sc/inc/strings.hrc:159
-#, fuzzy
msgctxt "SCSTR_CONTENT_GRAPHIC"
msgid "Images"
-msgstr "الصورة"
+msgstr "صور"
#. 3imVs
#: sc/inc/strings.hrc:160
@@ -17630,7 +17594,7 @@ msgstr "كائنات OLE"
#: sc/inc/strings.hrc:161
msgctxt "SCSTR_CONTENT_NOTE"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. 5UcFo
#: sc/inc/strings.hrc:162
@@ -17680,10 +17644,9 @@ msgstr "اسم السيناريو"
#. oWz3B
#: sc/inc/strings.hrc:169
-#, fuzzy
msgctxt "SCSTR_QHLP_SCEN_COMMENT"
msgid "Comment"
-msgstr "_التعليقات"
+msgstr "تعليق"
#. tNLKD
#: sc/inc/strings.hrc:171
@@ -18755,7 +18718,7 @@ msgstr ""
#: sc/inc/strings.hrc:363
msgctxt "STR_ENABLE_CONTENT"
msgid "Allow updating"
-msgstr ""
+msgstr "إتاحة التحديث"
#. w5Gd7
#. Insert image dialog
@@ -19056,7 +19019,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:270
msgctxt "advancedfilterdialog|unique"
msgid "_No duplications"
-msgstr "بلا ت_كرار"
+msgstr "بِلا ت_كرار"
#. gEg7S
#: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:279
@@ -19182,7 +19145,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:66
msgctxt "aggregatefunctionentry/cols"
msgid "Columns"
-msgstr ""
+msgstr "الأعمدة"
#. BDhZj
#: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:75
@@ -19200,13 +19163,13 @@ msgstr "ترويسات/تذييلات"
#: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:139
msgctxt "allheaderfooterdialog|headerright"
msgid "Header (right)"
-msgstr "ترويسة (يمين)"
+msgstr "ترويس (يمين)"
#. wriG5
#: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:186
msgctxt "allheaderfooterdialog|headerleft"
msgid "Header (left)"
-msgstr "ترويسة (يسار)"
+msgstr "ترويس (يسار)"
#. C6sND
#: sc/uiconfig/scalc/ui/allheaderfooterdialog.ui:234
@@ -19302,7 +19265,7 @@ msgstr "الصّفوف لكلّ عيّنة:"
#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:412
msgctxt "analysisofvariancedialog|label1"
msgid "Parameters"
-msgstr "المُعاملات"
+msgstr "المتغيرات الوسيطة"
#. nG25U
#: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:437
@@ -19368,7 +19331,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/autoformattable.ui:265
msgctxt "autoformattable|label1"
msgid "Format"
-msgstr "النسق"
+msgstr "التنسيق"
#. ZVWaV
#: sc/uiconfig/scalc/ui/autoformattable.ui:295
@@ -19626,7 +19589,7 @@ msgstr "أول _صفّ كتسمية"
#: sc/uiconfig/scalc/ui/changesourcedialog.ui:127
msgctxt "changesourcedialog|label1"
msgid "Labels"
-msgstr "التسميات"
+msgstr "اللصائق"
#. 3aACC
#: sc/uiconfig/scalc/ui/chardialog.ui:8
@@ -19770,19 +19733,19 @@ msgstr ""
#: sc/uiconfig/scalc/ui/colwidthdialog.ui:8
msgctxt "colwidthdialog|ColWidthDialog"
msgid "Column Width"
-msgstr "عرض العمود"
+msgstr "عُرض العمود"
#. nXoxa
#: sc/uiconfig/scalc/ui/colwidthdialog.ui:90
msgctxt "colwidthdialog|label1"
msgid "Width"
-msgstr "العرض"
+msgstr "العُرض"
#. j9AMh
#: sc/uiconfig/scalc/ui/colwidthdialog.ui:110
msgctxt "colwidthdialog|extended_tip|value"
msgid "Enter the column width that you want to use."
-msgstr ""
+msgstr "أدخِل عُرض العمود الذي تريد استخدامه."
#. qUvgX
#: sc/uiconfig/scalc/ui/colwidthdialog.ui:121
@@ -19794,7 +19757,7 @@ msgstr "ال_قيمة المبدئيّة"
#: sc/uiconfig/scalc/ui/colwidthdialog.ui:129
msgctxt "colwidthdialog|extended_tip|default"
msgid "Automatically adjusts the column width based on the current font."
-msgstr ""
+msgstr "يضبّط تلقائيًا عُرض العمود استناداً إلى الخط الحالي."
#. enAfe
#: sc/uiconfig/scalc/ui/colwidthdialog.ui:160
@@ -19830,7 +19793,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:173
msgctxt "condformatmanager|add"
msgid "Add"
-msgstr "أ_ضف"
+msgstr "أضِف"
#. BTut7
#: sc/uiconfig/scalc/ui/condformatmanager.ui:179
@@ -20088,19 +20051,19 @@ msgstr ""
#: sc/uiconfig/scalc/ui/conditionalentry.ui:388
msgctxt "conditionalentry|typeis"
msgid "is between"
-msgstr ""
+msgstr "هو ما بين"
#. 2A2DA
#: sc/uiconfig/scalc/ui/conditionalentry.ui:389
msgctxt "conditionalentry|typeis"
msgid "is not between"
-msgstr ""
+msgstr "هو ليس ما بين"
#. 5HFGX
#: sc/uiconfig/scalc/ui/conditionalentry.ui:390
msgctxt "conditionalentry|typeis"
msgid "is duplicate"
-msgstr ""
+msgstr "هو تكرار"
#. 8ZUSC
#: sc/uiconfig/scalc/ui/conditionalentry.ui:391
@@ -20136,25 +20099,25 @@ msgstr ""
#: sc/uiconfig/scalc/ui/conditionalentry.ui:396
msgctxt "conditionalentry|typeis"
msgid "is above average"
-msgstr ""
+msgstr "هو فوق المعدل"
#. 7Scqx
#: sc/uiconfig/scalc/ui/conditionalentry.ui:397
msgctxt "conditionalentry|typeis"
msgid "is below average"
-msgstr ""
+msgstr "هو دون المعدل"
#. hrCLZ
#: sc/uiconfig/scalc/ui/conditionalentry.ui:398
msgctxt "conditionalentry|typeis"
msgid "is above or equal average"
-msgstr ""
+msgstr "هو أعلى من أو يساوي المعدل"
#. B75cQ
#: sc/uiconfig/scalc/ui/conditionalentry.ui:399
msgctxt "conditionalentry|typeis"
msgid "is below or equal average"
-msgstr ""
+msgstr "هو أدنى من أو يساوي المعدل"
#. 3MvCE
#: sc/uiconfig/scalc/ui/conditionalentry.ui:400
@@ -20305,13 +20268,13 @@ msgstr "كل الخلايا"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:471
msgctxt "conditionalentry|type"
msgid "Cell value"
-msgstr ""
+msgstr "قيمة الخلية"
#. ZqmeM
#: sc/uiconfig/scalc/ui/conditionalentry.ui:472
msgctxt "conditionalentry|type"
msgid "Formula is"
-msgstr "المعادلة هي"
+msgstr "الصيغة هي"
#. BWDxf
#: sc/uiconfig/scalc/ui/conditionalentry.ui:473
@@ -20421,40 +20384,37 @@ msgstr ""
#: sc/uiconfig/scalc/ui/conditionalentry.ui:542
msgctxt "conditionalentry|iconsettype"
msgid "4 Traffic Lights"
-msgstr ""
+msgstr "4 أضوية مرور"
#. iGXCy
#: sc/uiconfig/scalc/ui/conditionalentry.ui:543
-#, fuzzy
msgctxt "conditionalentry|iconsettype"
msgid "5 Arrows"
-msgstr "٣ أسهم"
+msgstr "5 أسهم"
#. 7EuvV
#: sc/uiconfig/scalc/ui/conditionalentry.ui:544
-#, fuzzy
msgctxt "conditionalentry|iconsettype"
msgid "5 Gray Arrows"
-msgstr "٣ أسهم رصاصيّة"
+msgstr "5 أسهم رمادية"
#. CaZNK
#: sc/uiconfig/scalc/ui/conditionalentry.ui:545
msgctxt "conditionalentry|iconsettype"
msgid "5 Ratings"
-msgstr ""
+msgstr "5 تقييمات"
#. Ae5jK
#: sc/uiconfig/scalc/ui/conditionalentry.ui:546
-#, fuzzy
msgctxt "conditionalentry|iconsettype"
msgid "5 Quarters"
-msgstr "أرباع سنة"
+msgstr "5 أرباع"
#. BdcCG
#: sc/uiconfig/scalc/ui/conditionalentry.ui:547
msgctxt "conditionalentry|iconsettype"
msgid "5 Boxes"
-msgstr ""
+msgstr "5 صناديق"
#. DEVHA
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:8
@@ -20490,31 +20450,31 @@ msgstr ""
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:204
msgctxt "conditionalformatdialog|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. upqJA
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:216
msgctxt "conditionalformatdialog|up"
msgid "_Up"
-msgstr ""
+msgstr "أعل_ى"
#. fGKvB
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:223
msgctxt "conditionalformatdialog|extended_tip|up"
msgid "Increase priority of the selected condition."
-msgstr ""
+msgstr "أزِد أولوية الشرط المحدد."
#. yaQBX
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:235
msgctxt "conditionalformatdialog|down"
msgid "Do_wn"
-msgstr ""
+msgstr "أسف_ل"
#. ykMES
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:242
msgctxt "conditionalformatdialog|extended_tip|down"
msgid "Decrease priority of the selected condition."
-msgstr ""
+msgstr "أنقص أولوية الشرط المحدد."
#. Q6Ag7
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:265
@@ -20795,7 +20755,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/consolidatedialog.ui:396
msgctxt "consolidatedialog|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. DLuPQ
#: sc/uiconfig/scalc/ui/consolidatedialog.ui:416
@@ -21297,7 +21257,7 @@ msgstr "وسط"
#: sc/uiconfig/scalc/ui/databaroptions.ui:420
msgctxt "databaroptions|axis_pos"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. f95PC
#: sc/uiconfig/scalc/ui/databaroptions.ui:424
@@ -21387,13 +21347,13 @@ msgstr "الدالة"
#: sc/uiconfig/scalc/ui/datafielddialog.ui:176
msgctxt "datafielddialog|checkbutton1"
msgid "Show it_ems without data"
-msgstr ""
+msgstr "أظهِر الع_ناصر بلا بيانات"
#. 4S4kV
#: sc/uiconfig/scalc/ui/datafielddialog.ui:184
msgctxt "datafielddialog|extended_tip|checkbutton1"
msgid "Includes empty columns and rows in the results table."
-msgstr ""
+msgstr "ضمّن الأعمدة والصفوف الفارغة في جدول النتائج."
#. CNVLs
#: sc/uiconfig/scalc/ui/datafielddialog.ui:203
@@ -21660,7 +21620,7 @@ msgstr "عناصر"
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:420
msgctxt "datafieldoptionsdialog|extended_tip|items"
msgid "Enter the maximum number of items that you want to show automatically."
-msgstr ""
+msgstr "أدخِل أقصى عدد من العناصر الذي تريد إظهاره تلقائياً."
#. 6WBE7
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:440
@@ -21678,20 +21638,19 @@ msgstr "أسفل"
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:445
msgctxt "datafieldoptionsdialog|extended_tip|from"
msgid "Shows the top or bottom items in the specified sort order."
-msgstr ""
+msgstr "يُظهر العناصر السفلى أو العليا بتنظيم الترتيب المحدد."
#. 7dxVF
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:460
msgctxt "datafieldoptionsdialog|extended_tip|using"
msgid "Select the data field that you want to sort the data by."
-msgstr ""
+msgstr "حدد حقل البيانات الذي تريد ترتيب البيانات بحسبه."
#. sVRqx
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:475
-#, fuzzy
msgctxt "datafieldoptionsdialog|label4"
msgid "Show Automatically"
-msgstr "إظهار تلقائي"
+msgstr "أظهِر تلقائيًا"
#. kiXTb
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:546
@@ -21701,10 +21660,9 @@ msgstr ""
#. FDavv
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:557
-#, fuzzy
msgctxt "datafieldoptionsdialog|label9"
msgid "Hide Items"
-msgstr "إخفاء العناصر"
+msgstr "أخفِ العناصر"
#. foyVo
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:581
@@ -21714,10 +21672,9 @@ msgstr ""
#. qTAzs
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:594
-#, fuzzy
msgctxt "datafieldoptionsdialog|hierarchyft"
msgid "Hierarch_y:"
-msgstr "_هيكلة"
+msgstr "ال_هرمية:"
#. MmXfs
#: sc/uiconfig/scalc/ui/dataform.ui:8
@@ -21747,13 +21704,13 @@ msgstr "ج_ديد"
#: sc/uiconfig/scalc/ui/dataform.ui:193
msgctxt "dataform|delete"
msgid "_Delete"
-msgstr "ح_ذف"
+msgstr "اح_ذف"
#. SCweE
#: sc/uiconfig/scalc/ui/dataform.ui:207
msgctxt "dataform|restore"
msgid "_Restore"
-msgstr "است_عادة"
+msgstr "است_عد"
#. GAxdr
#: sc/uiconfig/scalc/ui/dataform.ui:221
@@ -21777,79 +21734,79 @@ msgstr ""
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:25
msgctxt "dataproviderdlg/okaybtn"
msgid "Okay"
-msgstr ""
+msgstr "حسنًا"
#. Ah2h8
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:38
msgctxt "dataproviderdlg/cancelbtn"
msgid "Cancel"
-msgstr ""
+msgstr "ألغِ"
#. a7EFA
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:88
msgctxt "dataproviderdlg|db_name"
msgid "Database Range:"
-msgstr ""
+msgstr "مدى البيانات:"
#. pSQ4F
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:113
msgctxt "dataproviderdlg/provider"
msgid "Data Provider:"
-msgstr ""
+msgstr "مزوَِد البيانات:"
#. RGiXi
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:138
msgctxt "dataproviderdlg/url"
msgid "URL:"
-msgstr ""
+msgstr "الرابط:"
#. GKDQA
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:161
msgctxt "dataproviderdlg/browse_btn"
msgid "Browse"
-msgstr ""
+msgstr "تصفّح"
#. GABzG
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:175
msgctxt "dataproviderdlg/id"
msgid "Id / Xpath:"
-msgstr ""
+msgstr "معرِّف \\ Xpath:"
#. pwS4k
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:203
msgctxt "dataproviderdlg/lbSource"
msgid "Source"
-msgstr ""
+msgstr "المصدر"
#. fHfGq
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:237
msgctxt "dataproviderdlg/transformation_add"
msgid "Add"
-msgstr ""
+msgstr "أضِف"
#. Smoiv
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:241
msgctxt "dataproviderdlg/AddTransformation_tooltip"
msgid "Add Transformations"
-msgstr ""
+msgstr "أضِف تحويلات"
#. cSgeU
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:297
msgctxt "dataproviderdlg/transformation"
msgid "Transformations"
-msgstr ""
+msgstr "تحويلات"
#. gpeXB
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:353
msgctxt "dataproviderdlg/apply"
msgid "Apply"
-msgstr ""
+msgstr "طبّق"
#. bDVwi
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:357
msgctxt "dataproviderdlg/apply_tooltiptext"
msgid "Apply Changes"
-msgstr ""
+msgstr "طبّق التغييرات"
#. 6pCFs
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:376
@@ -21865,10 +21822,9 @@ msgstr "تيارات بيانات مباشرة"
#. BjFaA
#: sc/uiconfig/scalc/ui/datastreams.ui:105
-#, fuzzy
msgctxt "datastreams|label6"
msgid "URL:"
-msgstr "عنوان URL"
+msgstr "الرابط:"
#. GUSse
#: sc/uiconfig/scalc/ui/datastreams.ui:117
@@ -22019,7 +21975,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:56
msgctxt "datetimetransformationentry|day"
msgid "Day"
-msgstr ""
+msgstr "اليوم"
#. BAjUz
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:57
@@ -22073,13 +22029,13 @@ msgstr ""
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:65
msgctxt "datetimetransformationentry|time"
msgid "Time"
-msgstr ""
+msgstr "الوقت"
#. bRjJe
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:80
msgctxt "datetimetransformationentry/cols"
msgid "Columns"
-msgstr ""
+msgstr "الأعمدة"
#. sM9XW
#: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:89
@@ -22152,7 +22108,7 @@ msgstr "تعديل"
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:317
msgctxt "definedatabaserangedialog|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. TniCB
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:350
@@ -22519,7 +22475,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/deletecontents.ui:196
msgctxt "deletecontents|comments"
msgid "_Comments"
-msgstr "_التعليقات"
+msgstr "ت_عليقات"
#. psiqN
#: sc/uiconfig/scalc/ui/deletecontents.ui:204
@@ -22661,7 +22617,7 @@ msgstr "وضع السحب"
#: sc/uiconfig/scalc/ui/dropmenu.ui:22
msgctxt "dropmenu|hyperlink"
msgid "Insert as Hyperlink"
-msgstr "أدرج كرابط"
+msgstr "أدرج كارتباط تشعبي"
#. EVfz4
#: sc/uiconfig/scalc/ui/dropmenu.ui:28
@@ -22697,7 +22653,7 @@ msgstr "يُنشأ نسخة عندما تقوم بسحب و إفلات شيء م
#: sc/uiconfig/scalc/ui/dropmenu.ui:71
msgctxt "dropmenu|SCSTR_DISPLAY"
msgid "Display"
-msgstr ""
+msgstr "عَرض"
#. kzFT9
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:15
@@ -22894,7 +22850,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:317
msgctxt "exponentialsmoothingdialog|label1"
msgid "Parameters"
-msgstr "المُعاملات"
+msgstr "المتغيرات الوسيطة"
#. kcYtb
#: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:342
@@ -23019,7 +22975,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/filldlg.ui:142
msgctxt "filldlg|up"
msgid "_Up"
-msgstr ""
+msgstr "أعل_ى"
#. y6hB6
#: sc/uiconfig/scalc/ui/filldlg.ui:151
@@ -23263,7 +23219,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/findreplaceentry.ui:45
msgctxt "findreplace|find"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. mBfPJ
#: sc/uiconfig/scalc/ui/findreplaceentry.ui:59
@@ -23806,10 +23762,9 @@ msgstr "التجميع"
#. 64CQA
#: sc/uiconfig/scalc/ui/groupbydate.ui:122
-#, fuzzy
msgctxt "groupbydate|auto_start"
msgid "_Automatically"
-msgstr "تلقائيًا"
+msgstr "تلقا_ئيًا"
#. u9esd
#: sc/uiconfig/scalc/ui/groupbydate.ui:137
@@ -23868,10 +23823,9 @@ msgstr "التجميع"
#. G8xYZ
#: sc/uiconfig/scalc/ui/groupbynumber.ui:104
-#, fuzzy
msgctxt "groupbynumber|auto_start"
msgid "_Automatically"
-msgstr "تلقائيًا"
+msgstr "تلقا_ئيًا"
#. nbnZC
#: sc/uiconfig/scalc/ui/groupbynumber.ui:119
@@ -23953,19 +23907,19 @@ msgstr ""
#: sc/uiconfig/scalc/ui/headerdialog.ui:183
msgctxt "headerdialog|headerright"
msgid "Header (right)"
-msgstr "ترويسة (يمين)"
+msgstr "ترويس (يمين)"
#. Pmhog
#: sc/uiconfig/scalc/ui/headerdialog.ui:230
msgctxt "headerdialog|headerleft"
msgid "Header (left)"
-msgstr "ترويسة (يسار)"
+msgstr "ترويس (يسار)"
#. XDBWk
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:47
msgctxt "headerfootercontent|title"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "العنوان"
#. B95vE
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:55
@@ -24019,19 +23973,19 @@ msgstr "أدخل نصا لإظهاره في الجهة اليُمنى لأعلى
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:238
msgctxt "headerfootercontent|labelFT_H_DEFINED"
msgid "_Header"
-msgstr "ال_ترويسة"
+msgstr "الرأ_س"
#. di3Ad
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:253
msgctxt "headerfootercontent|labelFT_F_DEFINED"
msgid "_Footer"
-msgstr "ت_ذييل الصفحة"
+msgstr "الت_ذييل"
#. z9EEa
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:280
msgctxt "headerfootercontent|labelFT_H_CUSTOM"
msgid "Custom header"
-msgstr "ترويسة مخصصة"
+msgstr "ترويس مخصص"
#. kDb9h
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:293
@@ -24055,7 +24009,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:338
msgctxt "headerfootercontent|buttonBTN_FILE|tooltip_text"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "العنوان"
#. CKzAC
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:346
@@ -24405,7 +24359,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/insertname.ui:70
msgctxt "insertname|paste"
msgid "_Paste"
-msgstr ""
+msgstr "أل_صق"
#. TNPzH
#: sc/uiconfig/scalc/ui/insertname.ui:79
@@ -24610,13 +24564,13 @@ msgstr "تذييل (يسار)"
#: sc/uiconfig/scalc/ui/leftheaderdialog.ui:8
msgctxt "leftheaderdialog|Left Header"
msgid "Header (left)"
-msgstr "ترويسة (يسار)"
+msgstr "ترويس (يسار)"
#. QTG93
#: sc/uiconfig/scalc/ui/leftheaderdialog.ui:139
msgctxt "leftheaderdialog|headerleft"
msgid "Header (left)"
-msgstr "ترويسة (يسار)"
+msgstr "ترويس (يسار)"
#. C7nbC
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:20
@@ -24778,7 +24732,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:491
msgctxt "managenamesdialog|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. j3EMw
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:527
@@ -24845,7 +24799,7 @@ msgstr "الفاصل"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:60
msgctxt "mergecolumnentry/cols"
msgid "Columns"
-msgstr ""
+msgstr "الأعمدة"
#. cMGtd
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:69
@@ -25017,7 +24971,7 @@ msgstr "فترة"
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
-msgstr "المُعاملات"
+msgstr "المتغيرات الوسيطة"
#. Ed3fa
#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:359
@@ -25191,7 +25145,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/namerangesdialog.ui:319
msgctxt "namerangesdialog|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. E2Wk2
#: sc/uiconfig/scalc/ui/namerangesdialog.ui:370
@@ -25215,7 +25169,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/navigatorpanel.ui:22
msgctxt "navigatorpanel|hyperlink"
msgid "Insert as Hyperlink"
-msgstr "أدرج كرابط"
+msgstr "أدرج كارتباط تشعبي"
#. 62g94
#: sc/uiconfig/scalc/ui/navigatorpanel.ui:28
@@ -25404,7 +25358,7 @@ msgstr "لا حل"
#: sc/uiconfig/scalc/ui/nosolutiondialog.ui:62
msgctxt "nosolutiondialog|label1"
msgid "No solution was found."
-msgstr "لم يوجد أي حل."
+msgstr "لم يُعثر على حلّ."
#. iQSEv
#: sc/uiconfig/scalc/ui/notebookbar.ui:2997
@@ -25434,13 +25388,13 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:3808
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
-msgstr ""
+msgstr "زِد الإزاحة"
#. TBHRy
#: sc/uiconfig/scalc/ui/notebookbar.ui:3821
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "أنقِص الإزاحة"
#. 6GvMB
#: sc/uiconfig/scalc/ui/notebookbar.ui:4727
@@ -25464,7 +25418,7 @@ msgstr "ح_قل"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5882
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "أ_درج"
#. HnjBi
#: sc/uiconfig/scalc/ui/notebookbar.ui:5987
@@ -25484,7 +25438,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:7062
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "م_خطط"
#. eWinY
#: sc/uiconfig/scalc/ui/notebookbar.ui:7146
@@ -25502,7 +25456,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:8474
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_بيانات"
#. xzx9j
#: sc/uiconfig/scalc/ui/notebookbar.ui:8580
@@ -25526,37 +25480,37 @@ msgstr "مر~اجعة"
#: sc/uiconfig/scalc/ui/notebookbar.ui:10354
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "معاي_نة"
#. rPdAq
#: sc/uiconfig/scalc/ui/notebookbar.ui:10439
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "معاي~نة"
#. SAv6Z
#: sc/uiconfig/scalc/ui/notebookbar.ui:11548
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
-msgstr ""
+msgstr "صور_ة"
#. rwprK
#: sc/uiconfig/scalc/ui/notebookbar.ui:11669
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "صور~ة"
#. EjbzV
#: sc/uiconfig/scalc/ui/notebookbar.ui:12850
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr ""
+msgstr "_درو"
#. iagRv
#: sc/uiconfig/scalc/ui/notebookbar.ui:12957
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~درو"
#. EgeGL
#: sc/uiconfig/scalc/ui/notebookbar.ui:13415
@@ -25568,31 +25522,31 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:13705
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
-msgstr ""
+msgstr "_كائن"
#. xTKVv
#: sc/uiconfig/scalc/ui/notebookbar.ui:13812
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~كائن"
#. cHyKz
#: sc/uiconfig/scalc/ui/notebookbar.ui:14371
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. CJ2qx
#: sc/uiconfig/scalc/ui/notebookbar.ui:14476
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "و~سائط"
#. eQK6A
#: sc/uiconfig/scalc/ui/notebookbar.ui:14858
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
-msgstr ""
+msgstr "ط_باعة"
#. sCGyG
#: sc/uiconfig/scalc/ui/notebookbar.ui:14941
@@ -25689,7 +25643,7 @@ msgstr "أ~درج"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6312
msgctxt "notebookbar_compact|PageMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "م_خطط"
#. TbQMa
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6364
@@ -25707,7 +25661,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7264
msgctxt "notebookbar_compact|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_بيانات"
#. TCt7E
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7315
@@ -25731,61 +25685,61 @@ msgstr "مر~اجعة"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8716
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "معاي_نة"
#. ZGh8C
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8768
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "معاي~نة"
#. dV94w
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
-msgstr ""
+msgstr "_صورة"
#. ekWoX
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "صور~ة"
#. 8eQN8
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. FBf68
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~درو"
#. DoVwy
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "كائن"
#. JXKiY
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~كائن"
#. q8wnS
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. 7HDt3
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "و~سائط"
#. vSDok
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
@@ -25843,10 +25797,9 @@ msgstr "_ملف"
#. MR7ZB
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3413
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
-msgstr "ت_حرير"
+msgstr "ح_رّر"
#. AXNcR
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3529
@@ -25869,24 +25822,21 @@ msgstr "الفقر_ة"
#. UnsAB
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4304
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|numberb"
msgid "_Number"
-msgstr "الأر_قام"
+msgstr "ر_قم"
#. hBvBa
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4415
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|datab"
msgid "_Data"
-msgstr "البيانات"
+msgstr "_بيانات"
#. CMGpS
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4526
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|insertb"
msgid "_Insert"
-msgstr "إدراج"
+msgstr "أ_درج"
#. 5wZbP
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4637
@@ -25896,10 +25846,9 @@ msgstr "مر_اجعة"
#. Uyv2y
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4748
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewb"
msgid "_View"
-msgstr "عرض"
+msgstr "معاي_نة"
#. bgPuY
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4857
@@ -25918,7 +25867,7 @@ msgstr "ام_تداد"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5221
msgctxt "notebookbar_groupedbar_compact|FormatButton"
msgid "F_ont"
-msgstr ""
+msgstr "ال_خط"
#. jZETF
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5445
@@ -25928,16 +25877,15 @@ msgstr "الفقر_ة"
#. 5Wp5j
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5694
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewS"
msgid "_View"
-msgstr "عرض"
+msgstr "معاي_نة"
#. DC7Hv
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5829
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. ncAKi
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6254
@@ -25947,13 +25895,13 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10246
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "_رتّب"
#. 8pLR3
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6529
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
-msgstr ""
+msgstr "شك_ل"
#. NM63T
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6776
@@ -25966,13 +25914,13 @@ msgstr "_جمّع"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6899
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
-msgstr ""
+msgstr "3_الأبعاد"
#. BTzDn
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7127
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "م_عمل‌خطوط"
#. PLqyG
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7238
@@ -25982,43 +25930,43 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10606
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_شبكة"
#. K6izG
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7368
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "Im_age"
-msgstr ""
+msgstr "_صورة"
#. SEFWn
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8020
msgctxt "notebookbar_groupedbar_compact|ColorButton"
msgid "Fi_lter"
-msgstr ""
+msgstr "مرشّ_ح"
#. 5a4zV
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8409
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
-msgstr ""
+msgstr "_كائن"
#. Ghwp6
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9208
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. nyHDP
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9821
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. PhCFL
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11073
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Print"
-msgstr ""
+msgstr "ط_باعة"
#. RC7F3
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11957
@@ -26054,13 +26002,13 @@ msgstr "تشديد 3"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2652
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
-msgstr "عنوان رئيسي ١"
+msgstr "خط عنوان 1"
#. 6Ej4G
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2660
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
-msgstr "عنوان رئيسي ٢"
+msgstr "خط عنوان 2"
#. sqE94
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2674
@@ -26130,10 +26078,9 @@ msgstr "_ملف"
#. aqbEs
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3665
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
-msgstr "ت_حرير"
+msgstr "ح_رّر"
#. HFC9U
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3858
@@ -26149,38 +26096,33 @@ msgstr "ال_خط"
#. 9HzEG
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4359
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|numberb"
msgid "_Number"
-msgstr "الأر_قام"
+msgstr "ر_قم"
#. F7vQ2
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4567
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphb"
msgid "_Alignment"
-msgstr "محاذاة"
+msgstr "محا_ذاة"
#. QnhiG
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4795
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|cellb"
msgid "_Cells"
-msgstr "خلايا"
+msgstr "خلا_يا"
#. rrpkZ
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4953
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertb"
msgid "_Insert"
-msgstr "إدراج"
+msgstr "أ_درج"
#. NsDSM
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5131
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|datab"
msgid "_Data"
-msgstr "البيانات"
+msgstr "_بيانات"
#. gQQfL
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5299
@@ -26198,27 +26140,25 @@ msgstr "معاي_نة"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5687
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "Im_age"
-msgstr ""
+msgstr "_صورة"
#. punQr
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
-msgstr "تنظيم"
+msgstr "_رتّب"
#. DDTxx
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
-msgstr "_لون"
+msgstr "ل_ون"
#. CHosB
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
-msgstr "ال_شبكة"
+msgstr "_شبكة"
#. xeUxD
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
@@ -26236,14 +26176,13 @@ msgstr "مر_اجعة"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
-msgstr "_التعليقات"
+msgstr "ت_عليقات"
#. m9Mxg
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
-msgstr "قارن"
+msgstr "_قارن"
#. ewCjP
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
@@ -26255,21 +26194,19 @@ msgstr "معاي_نة"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. QNg9L
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
-msgstr "ت_حرير"
+msgstr "ح_رّر"
#. MECyG
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
-msgstr "تنظيم"
+msgstr "_رتّب"
#. 9Z4JQ
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
@@ -26287,7 +26224,7 @@ msgstr "_جمّع"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
-msgstr ""
+msgstr "3_الأبعاد"
#. stsit
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
@@ -26297,10 +26234,9 @@ msgstr "ال_خط"
#. ZDEax
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
-msgstr "محاذاة"
+msgstr "محا_ذاة"
#. CVAyh
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
@@ -26310,37 +26246,33 @@ msgstr "معاي_نة"
#. h6EHi
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
-msgstr "إدراج"
+msgstr "أ_درج"
#. eLnnF
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
-msgstr "الوسائط"
+msgstr "و_سائط"
#. dzADL
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
-msgstr "الإ_طار"
+msgstr "إط_ار"
#. GjFnB
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
-msgstr "تنظيم"
+msgstr "_رتّب"
#. DF4U7
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
-msgstr "ال_شبكة"
+msgstr "_شبكة"
#. UZ2JJ
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
@@ -26406,13 +26338,13 @@ msgstr "تشديد 3"
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:200
msgctxt "notebookbar_groups|stylemenuhed1"
msgid "Heading 1"
-msgstr "عنوان رئيسي ١"
+msgstr "خط عنوان 1"
#. msdD7
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:209
msgctxt "notebookbar_groups|stylemenuhed2"
msgid "Heading 2"
-msgstr "عنوان رئيسي ٢"
+msgstr "خط عنوان 2"
#. KvySv
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:224
@@ -26460,7 +26392,7 @@ msgstr "حاشية ذيلية"
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:296
msgctxt "notebookbar_groups|tablestylenone"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. 2EFPh
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:304
@@ -26476,10 +26408,9 @@ msgstr ""
#. AWqDR
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:320
-#, fuzzy
msgctxt "notebookbar_groups|tablestyle2"
msgid "Style 2"
-msgstr "النمط2"
+msgstr "الطراز 2"
#. vHoey
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:328
@@ -26644,7 +26575,7 @@ msgstr "صورة"
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:2084
msgctxt "notebookbar_groups|wrapoff"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. MCMXX
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:2093
@@ -26672,10 +26603,9 @@ msgstr "بعد"
#. PGXfq
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:2129
-#, fuzzy
msgctxt "notebookbar_groups|wrapthrough"
msgid "Through"
-msgstr "_خلال"
+msgstr "خلال"
#. WEBWT
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:2144
@@ -26779,7 +26709,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:75
msgctxt "numbertransformationentry/cols"
msgid "Columns"
-msgstr ""
+msgstr "الأعمدة"
#. FFa8s
#: sc/uiconfig/scalc/ui/numbertransformationentry.ui:84
@@ -27215,10 +27145,9 @@ msgstr ""
#. wT6PN
#: sc/uiconfig/scalc/ui/optdlg.ui:119
-#, fuzzy
msgctxt "optdlg|label2"
msgid "Sheets"
-msgstr "ورقة"
+msgstr "أوراق"
#. JptgQ
#: sc/uiconfig/scalc/ui/optdlg.ui:135
@@ -27248,7 +27177,7 @@ msgstr "خيارات المعادلات"
#: sc/uiconfig/scalc/ui/optformula.ui:114
msgctxt "optformula|label9"
msgid "Excel 2007 and newer:"
-msgstr "إكسل ٢٠٠٧ فأحدث:"
+msgstr "أكسل ٢٠٠٧ فأحدث:"
#. y4nbF
#: sc/uiconfig/scalc/ui/optformula.ui:128
@@ -27497,7 +27426,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/optsortlists.ui:232
msgctxt "optsortlists|discard"
msgid "_Discard"
-msgstr "أ_همِل"
+msgstr "اس_تبعِد"
#. KiBRx
#: sc/uiconfig/scalc/ui/optsortlists.ui:246
@@ -27521,13 +27450,13 @@ msgstr "تع_ديل"
#: sc/uiconfig/scalc/ui/optsortlists.ui:279
msgctxt "optsortlists|delete"
msgid "_Delete"
-msgstr "ح_ذف"
+msgstr "اح_ذف"
#. FAswN
#: sc/uiconfig/scalc/ui/optsortlists.ui:286
msgctxt "optsortlists|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. L7EBD
#: sc/uiconfig/scalc/ui/optsortlists.ui:311
@@ -27593,7 +27522,7 @@ msgstr "الفقرة"
#: sc/uiconfig/scalc/ui/paradialog.ui:136
msgctxt "paradialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
-msgstr "الإزاحة و التباعد"
+msgstr "الإزاحات والتباعد"
#. PRo68
#: sc/uiconfig/scalc/ui/paradialog.ui:183
@@ -27679,10 +27608,10 @@ msgctxt "pastespecial|PasteSpecial"
msgid "Paste Special"
msgstr "لصق خاص"
-#. diPtG
+#. 9DVsp
#: sc/uiconfig/scalc/ui/pastespecial.ui:130
msgctxt "pastespecial|paste_values_only|label"
-msgid "_Values Only"
+msgid "Values Only"
msgstr ""
#. XyU8o
@@ -27697,10 +27626,10 @@ msgctxt "pastespecial|extended_tip|paste_values_only"
msgid "Pastes numbers, text, dates and the results of formulas."
msgstr ""
-#. CTEKF
+#. qDbrz
#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
-msgid "Values & _Formats"
+msgid "Values & Formats"
msgstr ""
#. 7GuDi
@@ -27715,10 +27644,10 @@ msgctxt "pastespecial|extended_tip|paste_values_formats"
msgid "Pastes cell values, formula results and formats applied to cells."
msgstr ""
-#. Rb8KR
+#. uCJBB
#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
-msgid "Formats Onl_y"
+msgid "Formats Only"
msgstr ""
#. Cvyjn
@@ -27733,10 +27662,10 @@ 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
+#. osqEX
#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
-msgid "_Transpose All"
+msgid "Transpose All"
msgstr ""
#. sbLGi
@@ -27751,10 +27680,10 @@ msgctxt "pastespecial|extended_tip|paste_transpose"
msgid "Pastes cell contents transposed, hence columns are converted to rows."
msgstr ""
-#. 4ETCT
+#. B28BC
#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
-msgid "_Run immediately"
+msgid "Run immediately"
msgstr ""
#. 7a9JE
@@ -27769,10 +27698,10 @@ msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
-#. g6DfA
+#. huhPQ
#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
-msgid "_All"
+msgid "All"
msgstr ""
#. Labin
@@ -27781,11 +27710,11 @@ msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
-#. qzFbg
+#. sg69o
#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
-msgid "_Numbers"
-msgstr "الأر_قام"
+msgid "Numbers"
+msgstr ""
#. SCVEu
#: sc/uiconfig/scalc/ui/pastespecial.ui:317
@@ -27793,12 +27722,11 @@ msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
-#. BSEWE
+#. APG3W
#: sc/uiconfig/scalc/ui/pastespecial.ui:328
-#, fuzzy
msgctxt "pastespecial|text"
-msgid "Te_xt"
-msgstr "ال_نص"
+msgid "Text"
+msgstr ""
#. JWDk5
#: sc/uiconfig/scalc/ui/pastespecial.ui:336
@@ -27806,11 +27734,11 @@ msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
-#. DBaJD
+#. HEwjB
#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
-msgid "_Date & time"
-msgstr "ال_تاريخ والوقت"
+msgid "Date & time"
+msgstr ""
#. jq6Md
#: sc/uiconfig/scalc/ui/pastespecial.ui:355
@@ -27818,11 +27746,11 @@ msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
-#. aHXF8
+#. HKgB9
#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
-msgid "For_mats"
-msgstr "التن_سيقات"
+msgid "Formats"
+msgstr ""
#. ehyEf
#: sc/uiconfig/scalc/ui/pastespecial.ui:374
@@ -27830,11 +27758,11 @@ msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
-#. NT4Am
+#. vAFRC
#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
-msgid "_Comments"
-msgstr "_التعليقات"
+msgid "Comments"
+msgstr ""
#. 3uP7i
#: sc/uiconfig/scalc/ui/pastespecial.ui:393
@@ -27842,10 +27770,10 @@ 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
+#. 5n5r7
#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
-msgid "Ob_jects"
+msgid "Objects"
msgstr ""
#. DZsnr
@@ -27854,10 +27782,10 @@ 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
+#. 2wYuG
#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
-msgid "F_ormulas"
+msgid "Formulas"
msgstr ""
#. Na5Ba
@@ -27872,10 +27800,10 @@ msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
-#. fonBJ
+#. SKs5y
#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
-msgid "Don't sh_ift"
+msgid "Don't shift"
msgstr ""
#. q3Xv3
@@ -27884,10 +27812,10 @@ msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
-#. RuiU6
+#. 4hD8A
#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
-msgid "_Down"
+msgid "Down"
msgstr ""
#. BNALN
@@ -27896,12 +27824,11 @@ msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
-#. obSAt
+#. Psyof
#: sc/uiconfig/scalc/ui/pastespecial.ui:519
-#, fuzzy
msgctxt "pastespecial|move_right"
-msgid "_Right"
-msgstr "يمينًا"
+msgid "Right"
+msgstr ""
#. GEFe7
#: sc/uiconfig/scalc/ui/pastespecial.ui:528
@@ -27915,10 +27842,10 @@ msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
-#. nuJd9
+#. JXJTf
#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
-msgid "As _Link"
+msgid "As Link"
msgstr ""
#. Bg9dc
@@ -27927,10 +27854,10 @@ 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
+#. 7yzbi
#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
-msgid "Trans_pose"
+msgid "Transpose"
msgstr ""
#. P3eE4
@@ -27939,10 +27866,10 @@ 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
+#. 3VcAr
#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
-msgid "_Skip empty cells"
+msgid "Skip empty cells"
msgstr ""
#. BodqB
@@ -27963,12 +27890,11 @@ msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr "خيارات"
-#. nJiy4
+#. ekYg5
#: sc/uiconfig/scalc/ui/pastespecial.ui:681
-#, fuzzy
msgctxt "pastespecial|none"
-msgid "Non_e"
-msgstr "ملاحظة"
+msgid "None"
+msgstr ""
#. 7GKDG
#: sc/uiconfig/scalc/ui/pastespecial.ui:690
@@ -27976,11 +27902,11 @@ 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
+#. QhQnq
#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
-msgid "_Add"
-msgstr "أ_ضف"
+msgid "Add"
+msgstr ""
#. bNyh2
#: sc/uiconfig/scalc/ui/pastespecial.ui:711
@@ -27988,12 +27914,11 @@ 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
+#. 4SmrC
#: sc/uiconfig/scalc/ui/pastespecial.ui:723
-#, fuzzy
msgctxt "pastespecial|subtract"
-msgid "_Subtract"
-msgstr "ا~طرح"
+msgid "Subtract"
+msgstr ""
#. 2SKbT
#: sc/uiconfig/scalc/ui/pastespecial.ui:732
@@ -28001,10 +27926,10 @@ msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
-#. zdDUB
+#. 4HCRU
#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
-msgid "_Multiply"
+msgid "Multiply"
msgstr ""
#. jkRDm
@@ -28013,10 +27938,10 @@ msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
-#. 7Nd8u
+#. 55rBT
#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
-msgid "_Divide"
+msgid "Divide"
msgstr ""
#. 9VKdS
@@ -28058,24 +27983,21 @@ msgstr ""
#. KBmND
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:133
-#, fuzzy
msgctxt "pivotfielddialog|none"
msgid "_None"
-msgstr "ملاحظة"
+msgstr "_بلا"
#. ABmZC
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:148
-#, fuzzy
msgctxt "pivotfielddialog|auto"
msgid "_Automatic"
-msgstr "تلقائي"
+msgstr "_تلقائي"
#. mHvW7
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:163
-#, fuzzy
msgctxt "pivotfielddialog|user"
msgid "_User-defined"
-msgstr "_معرف من قبل المستخدم"
+msgstr "ع_رّفه المستخدم"
#. k2AjG
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:211
@@ -28093,13 +28015,13 @@ msgstr "المجاميع الفرعية"
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:242
msgctxt "pivotfielddialog|showall"
msgid "Show it_ems without data"
-msgstr ""
+msgstr "أظهِر الع_ناصر بلا بيانات"
#. 7GAbs
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:250
msgctxt "pivotfielddialog|extended_tip|showall"
msgid "Includes empty columns and rows in the results table."
-msgstr ""
+msgstr "ضمّن الأعمدة والصفوف الفارغة في جدول النتائج."
#. aUWEK
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:269
@@ -28123,13 +28045,13 @@ msgstr "وَ"
#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:103
msgctxt "pivotfilterdialog|connect1"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. qaU7X
#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:110
msgctxt "pivotfilterdialog|extended_tip|connect1"
msgid "Select a logical operator for the filter."
-msgstr ""
+msgstr "حدد مُعاملاً منطقيًا للمرشح."
#. TW6Uf
#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:124
@@ -28141,20 +28063,19 @@ msgstr "وَ"
#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:125
msgctxt "pivotfilterdialog|connect2"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. t5VCe
#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:129
msgctxt "pivotfilterdialog|extended_tip|connect2"
msgid "Select a logical operator for the filter."
-msgstr ""
+msgstr "حدد مُعاملاً منطقيًا للمرشح."
#. rDPh7
#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:142
-#, fuzzy
msgctxt "pivotfilterdialog|label2"
msgid "Operator"
-msgstr "ال_معامل"
+msgstr "المُعامل"
#. AQC5N
#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:153
@@ -28262,7 +28183,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:483
msgctxt "pivotfilterdialog|unique"
msgid "_No duplications"
-msgstr "بدون ت_كرار"
+msgstr "بِلا ت_كرار"
#. QCGpa
#: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:492
@@ -28296,10 +28217,9 @@ msgstr "خيا_رات"
#. ztfNB
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:48
-#, fuzzy
msgctxt "pivottablelayoutdialog|PivotTableLayout"
msgid "Pivot Table Layout"
-msgstr "قيمة الجدول المحوري"
+msgstr "مخطط الجدول المحوري"
#. FCKww
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:75
@@ -28317,7 +28237,7 @@ msgstr "يغلق الحوار ويستبعد كل التغييرات."
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:163
msgctxt "pivottablelayoutdialog|label3"
msgid "Column Fields:"
-msgstr "حقول العمود:"
+msgstr "حقول أعمدة:"
#. AeEju
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:214
@@ -28327,10 +28247,9 @@ msgstr ""
#. WWrpy
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:244
-#, fuzzy
msgctxt "pivottablelayoutdialog|label5"
msgid "Data Fields:"
-msgstr "حقل بيانات"
+msgstr "حقول بيانات:"
#. cvgCA
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:295
@@ -28342,7 +28261,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:325
msgctxt "pivottablelayoutdialog|label4"
msgid "Row Fields:"
-msgstr ""
+msgstr "حقول صفوف:"
#. n7GRA
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:374
@@ -28354,7 +28273,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:404
msgctxt "pivottablelayoutdialog|label2"
msgid "Filters:"
-msgstr ""
+msgstr "المرشّحات:"
#. yN8BR
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:455
@@ -28364,10 +28283,9 @@ msgstr ""
#. Scoht
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:517
-#, fuzzy
msgctxt "pivottablelayoutdialog|label1"
msgid "Available Fields:"
-msgstr "الحقول المت~وفّرة"
+msgstr "الحقول المتاحة:"
#. FBtEV
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:567
@@ -28379,25 +28297,25 @@ msgstr ""
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:598
msgctxt "pivottablelayoutdialog|label6"
msgid "Drag the Items into the Desired Position"
-msgstr ""
+msgstr "اسحب العنصر إلى الموضع المرغوب"
#. 9EpNA
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:626
msgctxt "pivottablelayoutdialog|check-ignore-empty-rows"
msgid "Ignore empty rows"
-msgstr ""
+msgstr "أهمِل الصفوف الفارغة"
#. CAJBa
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:634
msgctxt "pivottablelayoutdialog|extended_tip|check-ignore-empty-rows"
msgid "Ignores empty fields in the data source."
-msgstr ""
+msgstr "يهمل الحقول الفارغة في مصدر البيانات."
#. jgyea
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:645
msgctxt "pivottablelayoutdialog|check-identify-categories"
msgid "Identify categories"
-msgstr ""
+msgstr "نعرّف على الأصناف"
#. uzKL8
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:653
@@ -28461,10 +28379,9 @@ msgstr "خيارات"
#. LevDB
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:792
-#, fuzzy
msgctxt "pivottablelayoutdialog|destination-radio-new-sheet"
msgid "New sheet"
-msgstr "ور_قة جديدة"
+msgstr "ورقة جديدة"
#. Ld2sG
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:808
@@ -28492,10 +28409,9 @@ msgstr ""
#. UjyGK
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:872
-#, fuzzy
msgctxt "pivottablelayoutdialog|destination-radio-named-range"
msgid "Named range"
-msgstr "مجال م_سمى"
+msgstr "نطاق مسمَّى"
#. xhpiB
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:891
@@ -28524,23 +28440,21 @@ msgstr ""
#. 6s5By
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:971
-#, fuzzy
msgctxt "pivottablelayoutdialog|source-radio-named-range"
msgid "Named range"
-msgstr "مجال م_سمى"
+msgstr "نطاق مسمَّى"
#. QTYpg
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1001
-#, fuzzy
msgctxt "pivottablelayoutdialog|label9"
msgid "Source"
-msgstr "المصدر:"
+msgstr "المصدر"
#. daE6g
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1019
msgctxt "pivottablelayoutdialog|label7"
msgid "Source and Destination"
-msgstr ""
+msgstr "المصدر والوجهة"
#. WUqGN
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1028
@@ -29156,7 +29070,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:60
msgctxt "replacenulltransformationentry/cols"
msgid "Columns"
-msgstr ""
+msgstr "الأعمدة"
#. KHAnu
#: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:69
@@ -29252,13 +29166,13 @@ msgstr "تذييل (يمين)"
#: sc/uiconfig/scalc/ui/rightheaderdialog.ui:8
msgctxt "rightheaderdialog|RightHeaderDialog"
msgid "Header (right)"
-msgstr "ترويسة (يمين)"
+msgstr "ترويس (يمين)"
#. Sa3pf
#: sc/uiconfig/scalc/ui/rightheaderdialog.ui:139
msgctxt "rightheaderdialog|headerright"
msgid "Header (right)"
-msgstr "ترويسة (يمين)"
+msgstr "ترويس (يمين)"
#. ATWGG
#: sc/uiconfig/scalc/ui/rowheightdialog.ui:8
@@ -29276,7 +29190,7 @@ msgstr "الارتفاع:"
#: sc/uiconfig/scalc/ui/rowheightdialog.ui:110
msgctxt "rowheightdialog|extended_tip|value"
msgid "Enter the row height that you want to use."
-msgstr ""
+msgstr "أدخِل ارتفاع الصف الذي تريد استخدامه."
#. thALC
#: sc/uiconfig/scalc/ui/rowheightdialog.ui:121
@@ -29288,7 +29202,7 @@ msgstr "ال_قيمة المبدئيّة"
#: sc/uiconfig/scalc/ui/rowheightdialog.ui:129
msgctxt "rowheightdialog|extended_tip|default"
msgid "Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents."
-msgstr ""
+msgstr "يضبّط ارتفاع الصف إلى الحجم استناداً إلى القالب الافتراضي. قد يظهر المحتوى الحالي مقصوصًا عموديًا. لن يطول الارتفاع أكثر تلقائياً عندما تُدخِل محتويات أكبر."
#. qEa9T
#: sc/uiconfig/scalc/ui/rowheightdialog.ui:160
@@ -29400,10 +29314,9 @@ msgstr ""
#. X9GgG
#: sc/uiconfig/scalc/ui/scenariodialog.ui:170
-#, fuzzy
msgctxt "scenariodialog|label2"
msgid "Comment"
-msgstr "_التعليقات"
+msgstr "تعليق"
#. GcXCj
#: sc/uiconfig/scalc/ui/scenariodialog.ui:200
@@ -29507,7 +29420,7 @@ msgstr " حذف السيناريو المحدد."
#: sc/uiconfig/scalc/ui/scenariomenu.ui:25
msgctxt "scenariomenu|edit"
msgid "Properties..."
-msgstr "خصائص..."
+msgstr "الخصائص..."
#. nAdtF
#: sc/uiconfig/scalc/ui/scenariomenu.ui:29
@@ -29729,7 +29642,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/searchresults.ui:101
msgctxt "searchresults|sheet"
msgid "Sheet"
-msgstr ""
+msgstr "ورقة"
#. BFKKA
#: sc/uiconfig/scalc/ui/searchresults.ui:115
@@ -29769,10 +29682,9 @@ msgstr ""
#. BYmD6
#: sc/uiconfig/scalc/ui/selectdatasource.ui:142
-#, fuzzy
msgctxt "selectdatasource|type"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. vDibq
#: sc/uiconfig/scalc/ui/selectdatasource.ui:143
@@ -29822,7 +29734,7 @@ msgstr "التحديد"
#: sc/uiconfig/scalc/ui/selectrange.ui:16
msgctxt "selectrange|SelectRangeDialog"
msgid "Select Database Range"
-msgstr "تحديد نطاق قاعدة البيانات"
+msgstr "حدد نطاق قاعدة البيانات"
#. LTKjo
#: sc/uiconfig/scalc/ui/selectrange.ui:126
@@ -29931,13 +29843,13 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sharedfirstheaderdialog.ui:139
msgctxt "sharedfirstheaderdialog|headerright"
msgid "Header (right)"
-msgstr ""
+msgstr "ترويس (يمين)"
#. B8Tvi
#: sc/uiconfig/scalc/ui/sharedfirstheaderdialog.ui:186
msgctxt "sharedfirstheaderdialog|headerleft"
msgid "Header (left)"
-msgstr ""
+msgstr "ترويس (يسار)"
#. DEDQP
#: sc/uiconfig/scalc/ui/sharedfooterdialog.ui:8
@@ -29949,13 +29861,13 @@ msgstr "ترويسات/تذييلات"
#: sc/uiconfig/scalc/ui/sharedfooterdialog.ui:139
msgctxt "sharedfooterdialog|headerright"
msgid "Header (right)"
-msgstr "ترويسة (يمين)"
+msgstr "ترويس (يمين)"
#. 2FkAh
#: sc/uiconfig/scalc/ui/sharedfooterdialog.ui:186
msgctxt "sharedfooterdialog|headerleft"
msgid "Header (left)"
-msgstr "ترويسة (يسار)"
+msgstr "ترويس (يسار)"
#. MwLwF
#: sc/uiconfig/scalc/ui/sharedfooterdialog.ui:234
@@ -30141,7 +30053,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:255
msgctxt "sheetprintpage|checkBTN_GRID"
msgid "_Grid"
-msgstr "ال_شبكة"
+msgstr "_شبكة"
#. V7t5z
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:263
@@ -30153,7 +30065,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:274
msgctxt "sheetprintpage|checkBTN_NOTES"
msgid "_Comments"
-msgstr "_التعليقات"
+msgstr "ت_عليقات"
#. UJ7Js
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:282
@@ -30298,7 +30210,7 @@ msgstr "ملاءمة نطاق (نطاقات) الطباعة بالعرض/الا
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:646
msgctxt "sheetprintpage|comboLB_SCALEMODE"
msgid "Fit print range(s) on number of pages"
-msgstr "ملاءمة نطاق (نطاقات) الطباعة بعدد الصفحات"
+msgstr "ملاءمة نطاق (نطاقات) الطباعة على عدد الصفحات"
#. AzkrF
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:650
@@ -30591,13 +30503,13 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:80
msgctxt "sidebarnumberformat|numberformatcombobox"
msgid "Time"
-msgstr ""
+msgstr "الوقت"
#. EukSF
#: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:81
msgctxt "sidebarnumberformat|numberformatcombobox"
msgid "Scientific"
-msgstr ""
+msgstr "علمي"
#. AQV5y
#: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:82
@@ -30775,316 +30687,312 @@ msgid "Optimize result to"
msgstr "تحسين نتيجة إلى"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:155
+#: sc/uiconfig/scalc/ui/solverdlg.ui:162
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "بت_غيير الخلايا"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:166
+#: sc/uiconfig/scalc/ui/solverdlg.ui:173
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "الأ_دنى"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:178
+#: sc/uiconfig/scalc/ui/solverdlg.ui:185
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:189
+#: sc/uiconfig/scalc/ui/solverdlg.ui:196
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "الحد الأ_قصى"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:201
+#: sc/uiconfig/scalc/ui/solverdlg.ui:208
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:226
+#: sc/uiconfig/scalc/ui/solverdlg.ui:233
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:269
+#: sc/uiconfig/scalc/ui/solverdlg.ui:276
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:312
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_قيمة"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:317
+#: sc/uiconfig/scalc/ui/solverdlg.ui:324
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:342
+#: sc/uiconfig/scalc/ui/solverdlg.ui:349
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:428
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "مرجع ال_خلية"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:442
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "ال_معامل"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:456
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "الق_يمة"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:476
+#: sc/uiconfig/scalc/ui/solverdlg.ui:483
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "مرجع ال_خلية"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:495
+#: sc/uiconfig/scalc/ui/solverdlg.ui:502
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "مرجع ال_خلية"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:514
+#: sc/uiconfig/scalc/ui/solverdlg.ui:521
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "مرجع ال_خلية"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:533
+#: sc/uiconfig/scalc/ui/solverdlg.ui:540
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "مرجع ال_خلية"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:591
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:592
+#: sc/uiconfig/scalc/ui/solverdlg.ui:599
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:593
+#: sc/uiconfig/scalc/ui/solverdlg.ui:600
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:594
+#: sc/uiconfig/scalc/ui/solverdlg.ui:601
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "عدد صحيح"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:595
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "ثنائي"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:599
-#, fuzzy
+#: sc/uiconfig/scalc/ui/solverdlg.ui:606
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
-msgstr "ال_معامل"
+msgstr "المُعامل"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:613
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:614
+#: sc/uiconfig/scalc/ui/solverdlg.ui:621
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:615
+#: sc/uiconfig/scalc/ui/solverdlg.ui:622
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:616
+#: sc/uiconfig/scalc/ui/solverdlg.ui:623
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "عدد صحيح"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:617
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "ثنائي"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:621
-#, fuzzy
+#: sc/uiconfig/scalc/ui/solverdlg.ui:628
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
-msgstr "ال_معامل"
+msgstr "المُعامل"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:635
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:636
+#: sc/uiconfig/scalc/ui/solverdlg.ui:643
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:637
+#: sc/uiconfig/scalc/ui/solverdlg.ui:644
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:638
+#: sc/uiconfig/scalc/ui/solverdlg.ui:645
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "عدد صحيح"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:639
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "ثنائي"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:643
-#, fuzzy
+#: sc/uiconfig/scalc/ui/solverdlg.ui:650
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
-msgstr "ال_معامل"
+msgstr "المُعامل"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:657
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:658
+#: sc/uiconfig/scalc/ui/solverdlg.ui:665
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:659
+#: sc/uiconfig/scalc/ui/solverdlg.ui:666
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:660
+#: sc/uiconfig/scalc/ui/solverdlg.ui:667
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "عدد صحيح"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:661
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "ثنائي"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:665
-#, fuzzy
+#: sc/uiconfig/scalc/ui/solverdlg.ui:672
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
-msgstr "ال_معامل"
+msgstr "المُعامل"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:685
+#: sc/uiconfig/scalc/ui/solverdlg.ui:692
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "القيمة"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:705
+#: sc/uiconfig/scalc/ui/solverdlg.ui:712
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "القيمة"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:725
+#: sc/uiconfig/scalc/ui/solverdlg.ui:732
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "القيمة"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:745
+#: sc/uiconfig/scalc/ui/solverdlg.ui:752
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "القيمة"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:803
+#: sc/uiconfig/scalc/ui/solverdlg.ui:810
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "أزِل"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:815
+#: sc/uiconfig/scalc/ui/solverdlg.ui:822
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "أزِل"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:827
+#: sc/uiconfig/scalc/ui/solverdlg.ui:834
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "أزِل"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:839
+#: sc/uiconfig/scalc/ui/solverdlg.ui:846
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "أزِل"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:862
+#: sc/uiconfig/scalc/ui/solverdlg.ui:869
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "تحديد الشروط"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:895
+#: sc/uiconfig/scalc/ui/solverdlg.ui:899
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
@@ -31193,13 +31101,13 @@ msgid "Sort"
msgstr "فرز"
#. BMbZ7
-#: sc/uiconfig/scalc/ui/sortdialog.ui:139
+#: sc/uiconfig/scalc/ui/sortdialog.ui:112
msgctxt "sortdialog|criteria"
msgid "Sort Criteria"
msgstr "معايير الترتيب"
#. gMSdg
-#: sc/uiconfig/scalc/ui/sortdialog.ui:186
+#: sc/uiconfig/scalc/ui/sortdialog.ui:135
msgctxt "sortdialog|options"
msgid "Options"
msgstr "خيارات"
@@ -31493,6 +31401,102 @@ msgctxt "sortwarning|sorttip"
msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
msgstr "تلميح: يمكن اكتشاف نطاق الفرز تلقائيًا. وضع مؤشر الخلية داخل قائمة وتنفيذ الفرز. سيتم فرز كامل النطاق المجاور للخلايا غير الفارغة حينئذ."
+#. 5YeNV
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:8
+msgctxt "SparklineDialog"
+msgid "Sparkline Dialog"
+msgstr ""
+
+#. Atj7n
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:161
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Input range:"
+msgstr ""
+
+#. gYQBd
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:178
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Output range:"
+msgstr ""
+
+#. faM2q
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:197
+msgctxt "SparklineDialog|label-data"
+msgid "Data"
+msgstr ""
+
+#. mcBDU
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:231
+msgctxt "SparklineDialog|label-series"
+msgid "Series:"
+msgstr ""
+
+#. N5L8b
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:246
+msgctxt "SparklineDialog|label-negative"
+msgid "Negative Points:"
+msgstr ""
+
+#. y5dsG
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:318
+msgctxt "SparklineDialog|label-low"
+msgid "Low Points:"
+msgstr ""
+
+#. LRGMH
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:390
+msgctxt "SparklineDialog|label-high"
+msgid "High Points:"
+msgstr ""
+
+#. WSgFy
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:426
+msgctxt "SparklineDialog|label-marker"
+msgid "Marker:"
+msgstr ""
+
+#. 6kVrt
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:556
+msgctxt "SparklineDialog|label-first"
+msgid "First Points:"
+msgstr ""
+
+#. tdvGa
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:572
+msgctxt "SparklineDialog|label-last"
+msgid "Last Points:"
+msgstr ""
+
+#. UAFwj
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:588
+msgctxt "SparklineDialog|label-type"
+msgid "Type:"
+msgstr ""
+
+#. gxMQL
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:608
+msgctxt "SparklineDialog|line-radiobutton"
+msgid "Line"
+msgstr ""
+
+#. VPdbn
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:627
+msgctxt "SparklineDialog|column-radiobutton"
+msgid "Column"
+msgstr ""
+
+#. oLsAN
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:646
+msgctxt "SparklineDialog|stacked-radiobutton"
+msgid "Stacked"
+msgstr ""
+
+#. 9uKMb
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:688
+msgctxt "SparklineDialog|label-properties"
+msgid "Properties"
+msgstr ""
+
#. p9BBw
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29
msgctxt "splitcolumnentry|name"
@@ -31551,20 +31555,19 @@ msgstr "وَ"
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:218
msgctxt "standardfilterdialog|connect1"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. htwdi
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:225
-#, fuzzy
msgctxt "standardfilterdialog|connect1-atkobject"
msgid "Operator 1"
-msgstr "ال_معامل"
+msgstr "المُعامل 1"
#. oZfag
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:226
msgctxt "standardfilterdialog|extended_tip|connect1"
msgid "For the following arguments, you can choose between the logical operators AND / OR."
-msgstr ""
+msgstr "للمتغيرات الوسيطة التالية، يمكنك الاختيار بين المُعاملات المنطقية وَ \\ أو."
#. k269E
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:240
@@ -31576,20 +31579,19 @@ msgstr "وَ"
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:241
msgctxt "standardfilterdialog|connect2"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. ob3HA
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:248
-#, fuzzy
msgctxt "standardfilterdialog|connect2-atkobject"
msgid "Operator 2"
-msgstr "ال_معامل"
+msgstr "المُعامل 2"
#. pBC9C
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:249
msgctxt "standardfilterdialog|extended_tip|connect2"
msgid "For the following arguments, you can choose between the logical operators AND / OR."
-msgstr ""
+msgstr "للمتغيرات الوسيطة التالية، يمكنك الاختيار بين المُعاملات المنطقية وَ \\ أو."
#. UZ8iA
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:263
@@ -31601,14 +31603,13 @@ msgstr "وَ"
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:264
msgctxt "standardfilterdialog|connect3"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. 4JHNi
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:268
-#, fuzzy
msgctxt "standardfilterdialog|connect3-atkobject"
msgid "Operator 3"
-msgstr "ال_معامل"
+msgstr "المُعامل 3"
#. CqBrM
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:282
@@ -31620,7 +31621,7 @@ msgstr "وَ"
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:283
msgctxt "standardfilterdialog|connect4"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. Sqfmd
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:287
@@ -31631,10 +31632,9 @@ msgstr "ال_معامل"
#. upKBs
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:300
-#, fuzzy
msgctxt "standardfilterdialog|label2"
msgid "Operator"
-msgstr "ال_معامل"
+msgstr "المُعامل"
#. vRvzD
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:311
@@ -31656,10 +31656,9 @@ msgstr "القيمة"
#. jHRCJ
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:349
-#, fuzzy
msgctxt "standardfilterdialog|field1-atkobject"
msgid "Field Name 1"
-msgstr "اسم الحقل"
+msgstr "اسم الحقل 1"
#. e9keG
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:350
@@ -31669,10 +31668,9 @@ msgstr ""
#. 4ozHK
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:368
-#, fuzzy
msgctxt "standardfilterdialog|field2-atkobject"
msgid "Field Name 2"
-msgstr "اسم الحقل"
+msgstr "اسم الحقل 2"
#. yhdgc
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:369
@@ -31682,10 +31680,9 @@ msgstr ""
#. C4XRG
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:387
-#, fuzzy
msgctxt "standardfilterdialog|field3-atkobject"
msgid "Field Name 3"
-msgstr "اسم الحقل"
+msgstr "اسم الحقل 3"
#. FCNiT
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:388
@@ -31695,10 +31692,9 @@ msgstr ""
#. Y9hSS
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:403
-#, fuzzy
msgctxt "standardfilterdialog|field4-atkobject"
msgid "Field Name 4"
-msgstr "اسم الحقل"
+msgstr "اسم الحقل 4"
#. ajVU5
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:423
@@ -31707,7 +31703,7 @@ msgstr "اسم الحقل"
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:540
msgctxt "standardfilterdialog|cond"
msgid "Largest"
-msgstr ""
+msgstr "الأكبر"
#. QSesc
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:424
@@ -31716,7 +31712,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:541
msgctxt "standardfilterdialog|cond"
msgid "Smallest"
-msgstr ""
+msgstr "الأصغر"
#. TpdQF
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:425
@@ -31725,7 +31721,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:542
msgctxt "standardfilterdialog|cond"
msgid "Largest %"
-msgstr ""
+msgstr "الأكبر %"
#. aQA5f
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:426
@@ -31734,7 +31730,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:543
msgctxt "standardfilterdialog|cond"
msgid "Smallest %"
-msgstr ""
+msgstr "الأصغر %"
#. eL6RL
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:427
@@ -31944,7 +31940,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1014
msgctxt "standardfilterdialog|unique"
msgid "_No duplications"
-msgstr "بدون ت_كرار"
+msgstr "بِلا ت_كرار"
#. EiBMm
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1023
@@ -32039,10 +32035,9 @@ msgstr ""
#. uBMEs
#: sc/uiconfig/scalc/ui/statisticsinfopage.ui:24
-#, fuzzy
msgctxt "statisticsinfopage|label6"
msgid "Pages:"
-msgstr "صفحات"
+msgstr "الصفحات:"
#. 4NfcR
#: sc/uiconfig/scalc/ui/statisticsinfopage.ui:50
@@ -32341,7 +32336,7 @@ msgstr "يعيّن الصف الذي تريد بدأ الاستيراد منه."
#: sc/uiconfig/scalc/ui/textimportcsv.ui:212
msgctxt "textimportcsv|label1"
msgid "Import"
-msgstr "استيراد"
+msgstr "استورد"
#. RpRBk
#: sc/uiconfig/scalc/ui/textimportcsv.ui:249
@@ -32570,7 +32565,7 @@ msgstr "نص إلى أعمدة"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:826
msgctxt "textimportcsv|label4"
msgid "Fields"
-msgstr "الحقول"
+msgstr "حقول"
#. t6zdn
#: sc/uiconfig/scalc/ui/textimportcsv.ui:855
@@ -32588,14 +32583,13 @@ msgstr "خيارات الاستيراد"
#: sc/uiconfig/scalc/ui/textimportoptions.ui:57
msgctxt "textimportoptions|keepasking"
msgid "Keep asking during this session"
-msgstr ""
+msgstr "واصل السؤال أثناء هذه الجلسة"
#. Ug4iB
#: sc/uiconfig/scalc/ui/textimportoptions.ui:102
-#, fuzzy
msgctxt "textimportoptions|custom"
msgid "Custom:"
-msgstr "مخصّص"
+msgstr "مخصّص:"
#. DnkxF
#: sc/uiconfig/scalc/ui/textimportoptions.ui:117
@@ -32605,17 +32599,15 @@ msgstr "تلقائي"
#. FMRA7
#: sc/uiconfig/scalc/ui/textimportoptions.ui:148
-#, fuzzy
msgctxt "textimportoptions|label2"
msgid "Select the Language to Use for Import"
-msgstr "تحديد اللغة المطلوب استخدامها للاستيراد"
+msgstr "حدد اللغة لاستخدامها للاستيراد"
#. iRYr7
#: sc/uiconfig/scalc/ui/textimportoptions.ui:169
-#, fuzzy
msgctxt "textimportoptions|convertdata"
msgid "Detect special numbers (such as dates)"
-msgstr "اكتشاف الأرقام الخاصة (مثل التواريخ)."
+msgstr "اكتشف الأرقام الخاصة (مثل التواريخ)"
#. 6aP7U
#: sc/uiconfig/scalc/ui/textimportoptions.ui:183
@@ -32627,37 +32619,37 @@ msgstr "خيارات"
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:28
msgctxt "texttransformationentry|name"
msgid "Text Transformation"
-msgstr ""
+msgstr "تحويل النص"
#. zXpJU
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:47
msgctxt "texttransformation_type|tolower"
msgid "To Lower"
-msgstr ""
+msgstr "إلى الصغير"
#. DkKCf
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:48
msgctxt "texttransformation_type|toupper"
msgid "To Upper"
-msgstr ""
+msgstr "إلى الكبير"
#. ZsHz4
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:49
msgctxt "texttransformation_type|capitalize"
msgid "Capitalize"
-msgstr ""
+msgstr "اجعل بحروف كبيرة"
#. PTyGj
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:50
msgctxt "texttransformation_type|trim"
msgid "Trim"
-msgstr ""
+msgstr "قرطف"
#. 72R3f
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:65
msgctxt "texttransformationentry/cols"
msgid "Columns"
-msgstr ""
+msgstr "الأعمدة"
#. aoBA3
#: sc/uiconfig/scalc/ui/texttransformationentry.ui:74
@@ -32704,10 +32696,9 @@ msgstr ""
#. G6GjE
#: sc/uiconfig/scalc/ui/tpviewpage.ui:88
-#, fuzzy
msgctxt "tpviewpage|value"
msgid "Value h_ighlighting"
-msgstr "ت~مييز القيم"
+msgstr "ت_مييز القيم"
#. Ve6Bg
#: sc/uiconfig/scalc/ui/tpviewpage.ui:96
@@ -32755,7 +32746,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/tpviewpage.ui:168
msgctxt "tpviewpage|label4"
msgid "Display"
-msgstr "عرض"
+msgstr "عَرض"
#. oCEpm
#: sc/uiconfig/scalc/ui/tpviewpage.ui:195
@@ -33340,22 +33331,21 @@ msgstr "صالحة حتّى"
#. u59K3
#: sc/uiconfig/scalc/ui/validationdialog.ui:144
-#, fuzzy
msgctxt "validationdialog|criteria"
msgid "Criteria"
-msgstr "المعيار"
+msgstr "المعايير"
#. Jrrv4
#: sc/uiconfig/scalc/ui/validationdialog.ui:191
msgctxt "validationdialog|inputhelp"
msgid "Input Help"
-msgstr ""
+msgstr "مساعدة الإدخال"
#. rEgBc
#: sc/uiconfig/scalc/ui/validationdialog.ui:239
msgctxt "validationdialog|erroralert"
msgid "Error Alert"
-msgstr ""
+msgstr "تحذير الخطأ"
#. tRXEs
#: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:15
@@ -33427,7 +33417,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/warnautocorrect.ui:13
msgctxt "warnautocorrect|WarnAutoCorrect"
msgid "%PRODUCTNAME Calc found an error in the formula entered."
-msgstr ""
+msgstr "عثر %PRODUCTNAME كالك على خطأ في الصيغة المُدخَلة."
#. 7BDGp
#: sc/uiconfig/scalc/ui/warnautocorrect.ui:14
@@ -33444,10 +33434,9 @@ msgstr "مصدر HTML"
#. E5nmH
#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:39
-#, fuzzy
msgctxt "xmlsourcedialog|ok"
msgid "_Import"
-msgstr "استيراد"
+msgstr "ا_ستورد"
#. B5Q88
#: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:112
diff --git a/source/ar/scp2/source/calc.po b/source/ar/scp2/source/calc.po
index b92982bc279..e72533f4757 100644
--- a/source/ar/scp2/source/calc.po
+++ b/source/ar/scp2/source/calc.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2018-02-12 14:43+0000\n"
-"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-03-02 17:42+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourcecalc/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"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: 1518446586.000000\n"
#. rTGYE
@@ -158,7 +158,7 @@ msgctxt ""
"STR_REG_VAL_MS_EXCEL_WORKSHEET_OLD\n"
"LngText.text"
msgid "Microsoft Excel 97-2003 Worksheet"
-msgstr "ورقة عمل ميكروسوفت إكسل ٩٧-٢٠٠٣"
+msgstr "ورقة عمل ميكروسوفت أكسل ٩٧-٢٠٠٣"
#. aAdan
#: registryitem_calc.ulf
@@ -167,7 +167,7 @@ msgctxt ""
"STR_REG_VAL_MS_EXCEL_WORKSHEET\n"
"LngText.text"
msgid "Microsoft Excel Worksheet"
-msgstr "ورقة عمل ميكروسوفت إكسل"
+msgstr "ورقة عمل ميكروسوفت أكسل"
#. GWhEw
#: registryitem_calc.ulf
@@ -176,7 +176,7 @@ msgctxt ""
"STR_REG_VAL_MS_EXCEL_WEBQUERY\n"
"LngText.text"
msgid "Microsoft Excel Web Query File"
-msgstr "ملف استعلام وِب ميكروسوفت إكسل"
+msgstr "ملف استعلام وَب ميكروسوفت أكسل"
#. QGyiB
#: registryitem_calc.ulf
@@ -185,7 +185,7 @@ msgctxt ""
"STR_REG_VAL_MS_EXCEL_TEMPLATE_OLD\n"
"LngText.text"
msgid "Microsoft Excel 97-2003 Template"
-msgstr "قالب ميكروسوفت إكسل ٩٧-٢٠٠٣"
+msgstr "قالب ميكروسوفت أكسل ٩٧-٢٠٠٣"
#. sputX
#: registryitem_calc.ulf
@@ -194,7 +194,7 @@ msgctxt ""
"STR_REG_VAL_MS_EXCEL_TEMPLATE\n"
"LngText.text"
msgid "Microsoft Excel Template"
-msgstr "قالب ميكروسوفت إكسل"
+msgstr "قالب ميكروسوفت أكسل"
#. vnbCH
#: registryitem_calc.ulf
diff --git a/source/ar/scp2/source/draw.po b/source/ar/scp2/source/draw.po
index 71f8434f182..3c9caca13c9 100644
--- a/source/ar/scp2/source/draw.po
+++ b/source/ar/scp2/source/draw.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-01-27 03:39+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourcedraw/ar/>\n"
"Language: ar\n"
@@ -257,7 +257,7 @@ msgctxt ""
"STR_REG_VAL_GRAPHICS_INTERCHANGE_FORMAT\n"
"LngText.text"
msgid "Graphics Interchange Format File"
-msgstr ""
+msgstr "ملف نسَق رسوم متبادلة"
#. ntV8p
#: registryitem_draw.ulf
diff --git a/source/ar/scp2/source/ooo.po b/source/ar/scp2/source/ooo.po
index 3b463596625..dea9151cb62 100644
--- a/source/ar/scp2/source/ooo.po
+++ b/source/ar/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-02-21 15:23+0100\n"
-"PO-Revision-Date: 2021-12-20 11:38+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/ar/>\n"
"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: 1542022445.000000\n"
#. CYBGJ
@@ -50,7 +50,7 @@ msgctxt ""
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
-msgstr ""
+msgstr "ليبرأوفيس، حزمة المكتب الإنتاجية التي توفّرها مؤسسة المستند The Document Foundation. طالع https://www.documentfoundation.org"
#. Bf97K
#: module_helppack.ulf
@@ -2249,7 +2249,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_PT_BR\n"
"LngText.text"
msgid "Installs the Brazilian Portuguese user interface"
-msgstr ""
+msgstr "يُثبّت واجهة المستخدم البرتغالية البرازيلية"
#. zFXF5
#: module_langpack.ulf
@@ -3574,7 +3574,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_VEC\n"
"LngText.text"
msgid "Venetian"
-msgstr ""
+msgstr "البِندقية"
#. daNwF
#: module_langpack.ulf
@@ -4207,7 +4207,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_SZL\n"
"LngText.text"
msgid "Silesian"
-msgstr ""
+msgstr "السيليزيانية"
#. Erz8u
#: module_langpack.ulf
@@ -4612,7 +4612,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_EO\n"
"LngText.text"
msgid "Esperanto spelling dictionary, hyphenation rules, and thesaurus"
-msgstr ""
+msgstr "قاموس التدقيق الإملائي للُغة الاسبرانتو، قواعد الواصلة والمترادفات"
#. 6Mzvn
#: module_ooo.ulf
@@ -4810,7 +4810,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_ID\n"
"LngText.text"
msgid "Indonesian spelling dictionary, hyphenation rules, and thesaurus"
-msgstr ""
+msgstr "قاموس التدقيق الإملائي وقواعد الواصلة والمترادفات للُّغة الأندونيسية"
#. G6XKV
#: module_ooo.ulf
@@ -4955,7 +4955,7 @@ msgctxt ""
"STR_DESC_MODULE_EXTENSION_DICTIONARY_MN\n"
"LngText.text"
msgid "Mongolian spelling dictionary, and hyphenation rules"
-msgstr ""
+msgstr "قاموس التدقيق الإملائي للُّغة المنغولية وقواعد الواصلة"
#. s33jG
#: module_ooo.ulf
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index 3bcb7efc6b9..ee7a8b91842 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/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: 2022-02-21 15:23+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ar/>\n"
"Language: ar\n"
@@ -200,7 +200,7 @@ msgstr ""
#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "All ~Pages"
-msgstr ""
+msgstr "كل ال~صفحات"
#. 7nrMB
#: sd/inc/DocumentRenderer.hrc:91
@@ -283,7 +283,7 @@ msgstr "_نعم"
#: sd/inc/errhdl.hrc:30
msgctxt "RID_SD_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr "تم اكتشاف خطأ في تنسيق الملف في $(ARG1)(صف،عمود)."
+msgstr "عُثر على خطأ في نسَق الملف في $(ARG1)(صف،عمود)."
#. cXzDt
#: sd/inc/errhdl.hrc:32 sd/inc/errhdl.hrc:34
@@ -331,7 +331,7 @@ msgstr "الطُرُز المخفية"
#: sd/inc/pageformatpanel.hrc:24
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. eNMWm
#: sd/inc/pageformatpanel.hrc:25
@@ -365,7 +365,7 @@ msgstr "عريضة"
#: sd/inc/pageformatpanel.hrc:39
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. LxZSX
#: sd/inc/pageformatpanel.hrc:40
@@ -399,13 +399,13 @@ msgstr "عريضة"
#: sd/inc/strings.hrc:25
msgctxt "STR_NULL"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. zEak7
#: sd/inc/strings.hrc:26
msgctxt "STR_INSERTPAGE"
msgid "Insert Slide"
-msgstr "إدراج شريحة"
+msgstr "أدرِج شريحة"
#. dHm9F
#: sd/inc/strings.hrc:27
@@ -963,7 +963,7 @@ msgstr "إصدارة ملفّ الصّورة هذا غير مدعومة"
#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
-msgstr "لم يُعثر على مرشّح الصّورة"
+msgstr "لم يُعثر على مرشّح الصورة"
#. qdeHG
#: sd/inc/strings.hrc:117
@@ -1063,7 +1063,7 @@ msgstr ""
#: sd/inc/strings.hrc:132
msgctxt "STR_CLICK_ACTION_NONE"
msgid "No action"
-msgstr "بدون إجراء"
+msgstr "بِلا إجراء"
#. Cd6E6
#: sd/inc/strings.hrc:133
@@ -1287,7 +1287,7 @@ msgstr "لا يمكن تنفيذ هذه العملية في الوضع المب
#: sd/inc/strings.hrc:172
msgctxt "STR_PUBLISH_BACK"
msgid "Back"
-msgstr "السابق"
+msgstr "رجوع"
#. tDRYt
#: sd/inc/strings.hrc:173
@@ -1389,7 +1389,7 @@ msgstr "المسار"
#: sd/inc/strings.hrc:189
msgctxt "STR_FILEFORMAT_NAME"
msgid "File name without extension"
-msgstr "اسم الملف بدون امتداد"
+msgstr "اسم الملف بِلا امتداد"
#. M4uEt
#: sd/inc/strings.hrc:190
@@ -1562,7 +1562,7 @@ msgstr "بمحتويات"
#: sd/inc/strings.hrc:219
msgctxt "STR_HTMLEXP_NOOUTLINE"
msgid "Without contents"
-msgstr "بدون محتويات"
+msgstr "بِلا محتويات"
#. cWcCG
#: sd/inc/strings.hrc:220
@@ -1651,13 +1651,13 @@ msgstr "اسم الشريحة الرئيسة. انقر يمينًا لتعرض
#: sd/inc/strings.hrc:233
msgctxt "STR_TITLE_RENAMESLIDE"
msgid "Rename Slide"
-msgstr "غيّر اسم الشريحة"
+msgstr "أعدْ تسمية الشريحة"
#. KEEy2
#: sd/inc/strings.hrc:234
msgctxt "STR_TITLE_RENAMEPAGE"
msgid "Rename Page"
-msgstr ""
+msgstr "أعدْ تسمية الصفحة"
#. rBmcL
#: sd/inc/strings.hrc:235
@@ -1675,7 +1675,7 @@ msgstr "الاسم"
#: sd/inc/strings.hrc:237
msgctxt "STR_TITLE_RENAMEMASTER"
msgid "Rename Master Slide"
-msgstr "غيّر اسم الشريحة الرئيسية"
+msgstr "أعدْ تسمية الشريحة الرئيسة"
#. rWiXQ
#: sd/inc/strings.hrc:238
@@ -1699,7 +1699,7 @@ msgstr "منطقة التذييل"
#: sd/inc/strings.hrc:241
msgctxt "STR_PLACEHOLDER_DESCRIPTION_HEADER"
msgid "Header Area"
-msgstr "منطقة الترويسة"
+msgstr "منطقة الرأس"
#. 8JGJD
#: sd/inc/strings.hrc:242
@@ -1723,7 +1723,7 @@ msgstr "منطقة رقم الصفحة"
#: sd/inc/strings.hrc:245
msgctxt "STR_FIELD_PLACEHOLDER_HEADER"
msgid "<header>"
-msgstr "<ترويسة>"
+msgstr "<رأس>"
#. RoVvC
#: sd/inc/strings.hrc:246
@@ -1783,7 +1783,7 @@ msgstr "الشرائح"
#: sd/inc/strings.hrc:255
msgctxt "STR_LEFT_PANE_DRAW_TITLE"
msgid "Pages"
-msgstr "الصفحات"
+msgstr "صفحات"
#. C7hf2
#: sd/inc/strings.hrc:256
@@ -1837,25 +1837,25 @@ msgstr ""
#: sd/inc/strings.hrc:264
msgctxt "RID_ANNOTATIONS_START"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. 76dF3
#: sd/inc/strings.hrc:265
msgctxt "STR_RESET_LAYOUT"
msgid "Reset Slide Layout"
-msgstr "إعادة تعيين تخطيط الشريحة"
+msgstr "صفّر مخطط الشريحة"
#. EB6XY
#: sd/inc/strings.hrc:266
msgctxt "STR_INSERT_TABLE"
msgid "Insert Table"
-msgstr "إدراج جدول"
+msgstr "أدرج جدولاً"
#. koDfS
#: sd/inc/strings.hrc:267
msgctxt "STR_INSERT_CHART"
msgid "Insert Chart"
-msgstr "إدراج مخطط"
+msgstr "أدرج رسمًا بيانيًا"
#. re2hh
#: sd/inc/strings.hrc:268
@@ -2095,7 +2095,7 @@ msgstr "انقر لإضافة ملاحظات"
#: sd/inc/strings.hrc:308
msgctxt "STR_PRESOBJ_TITLE_MOBILE"
msgid "Double-tap to add Title"
-msgstr ""
+msgstr "قرع مزدوج لإضافة عنوان"
#. jLtyS
#: sd/inc/strings.hrc:309
@@ -2161,7 +2161,7 @@ msgstr "المبدئيّ"
#: sd/inc/strings.hrc:319
msgctxt "STR_LAYOUT_DEFAULT_TITLE_NAME"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "العنوان"
#. zT4rH
#: sd/inc/strings.hrc:320
@@ -2191,13 +2191,13 @@ msgstr "أدرج صفحة"
#: sd/inc/strings.hrc:324
msgctxt "STR_SLIDE_SETUP_TITLE"
msgid "Slide Properties"
-msgstr ""
+msgstr "خصائص الشريحة"
#. pA7rP
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_OBJWITHOUTFILL"
msgid "Object without fill"
-msgstr "كائن بدون تعبئة"
+msgstr "كائن بِلا تعبئة"
#. btJeg
#: sd/inc/strings.hrc:327
@@ -2221,19 +2221,19 @@ msgstr "أي4"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_A4_TITLE"
msgid "Title A4"
-msgstr ""
+msgstr "أي4 عنوان"
#. ZCLYo
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_A4_HEADLINE"
msgid "Heading A4"
-msgstr ""
+msgstr "أي4 خط عنوان"
#. epKM4
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_A4_TEXT"
msgid "Text A4"
-msgstr ""
+msgstr "أي4 نص"
#. kCg3k
#: sd/inc/strings.hrc:333
@@ -2245,25 +2245,25 @@ msgstr "أي0"
#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_A0_TITLE"
msgid "Title A0"
-msgstr ""
+msgstr "أي0 عنوان"
#. 6AG4z
#: sd/inc/strings.hrc:335
msgctxt "STR_POOLSHEET_A0_HEADLINE"
msgid "Heading A0"
-msgstr ""
+msgstr "أي0 خط عنوان"
#. gLfCw
#: sd/inc/strings.hrc:336
msgctxt "STR_POOLSHEET_A0_TEXT"
msgid "Text A0"
-msgstr ""
+msgstr "أي0 نص"
#. eDG7h
#: sd/inc/strings.hrc:337
msgctxt "STR_POOLSHEET_GRAPHIC"
msgid "Graphic"
-msgstr ""
+msgstr "رسم"
#. o4g3u
#: sd/inc/strings.hrc:338
@@ -2275,49 +2275,49 @@ msgstr "أشكال"
#: sd/inc/strings.hrc:339
msgctxt "STR_POOLSHEET_LINES"
msgid "Lines"
-msgstr ""
+msgstr "خطوط"
#. 2ohzZ
#: sd/inc/strings.hrc:340
msgctxt "STR_POOLSHEET_MEASURE"
msgid "Arrow Line"
-msgstr ""
+msgstr "خط سهم"
#. mLCYV
#: sd/inc/strings.hrc:341
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
-msgstr ""
+msgstr "خط مقطّع"
#. xtD8b
#: sd/inc/strings.hrc:343
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "مملوء"
#. BGGf5
#: sd/inc/strings.hrc:344
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "أزرق مملوء"
#. sGCBw
#: sd/inc/strings.hrc:345
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "أخضر مملوء"
#. xfoEY
#: sd/inc/strings.hrc:346
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "أصفر مملوء"
#. eEKGF
#: sd/inc/strings.hrc:347
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "أحمر مملوء"
#. uHgQH
#: sd/inc/strings.hrc:349
@@ -2353,7 +2353,7 @@ msgstr "خُطّط بالاحمر"
#: sd/inc/strings.hrc:355
msgctxt "STR_PSEUDOSHEET_TITLE"
msgid "Title"
-msgstr "المسمى الوظيفي"
+msgstr "العنوان"
#. zn6qa
#: sd/inc/strings.hrc:356
@@ -2541,7 +2541,7 @@ msgstr "تذييل‌العَرض‌التقديمي"
#: sd/inc/strings.hrc:389
msgctxt "SID_SD_A11Y_P_HEADER_N"
msgid "PresentationHeader"
-msgstr "ترويسةالعَرض‌التقديميعرض تقديمي"
+msgstr "رأس‌العَرض‌التقديمي"
#. EfHeH
#: sd/inc/strings.hrc:390
@@ -2625,10 +2625,9 @@ msgstr "التاريخ"
#. EFmn4
#: sd/inc/strings.hrc:403
-#, fuzzy
msgctxt "SID_SD_A11Y_P_NUMBER_N_STYLE"
msgid "Number"
-msgstr "الرقم"
+msgstr "رقم"
#. wFpMQ
#: sd/inc/strings.hrc:404
@@ -2823,7 +2822,7 @@ msgstr "متنوعة: %1"
#: sd/inc/strings.hrc:436
msgctxt "STR_SLIDETRANSITION_NONE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. KAsTD
#: sd/inc/strings.hrc:438
@@ -2907,7 +2906,7 @@ msgstr "تشغيل الوسائط"
#: sd/inc/strings.hrc:452
msgctxt "RID_DRAW_TABLE_TOOLBOX"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. xCRmu
#: sd/inc/strings.hrc:454
@@ -3005,19 +3004,19 @@ msgstr "اس~تخدم فقط درج الورق من تفضيلات الطابع
#: sd/inc/strings.hrc:469
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
-msgstr ""
+msgstr "الصفحات:"
#. a3tSp
#: sd/inc/strings.hrc:470
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
-msgstr ""
+msgstr "الشرائح:"
#. pPiWM
#: sd/inc/strings.hrc:472
msgctxt "STR_SAR_WRAP_FORWARD"
msgid "%PRODUCTNAME Impress has searched to the end of the presentation. Do you want to continue at the beginning?"
-msgstr "بحث %PRODUCTNAME امبريس حتى نهاية العرض. هل تريد متابعة البحث من البداية؟"
+msgstr "بحث %PRODUCTNAME امبريس حتى نهاية العَرض التقديمي. هل تريد المتابعة من البداية؟"
#. buKAC
#: sd/inc/strings.hrc:473
@@ -3041,50 +3040,49 @@ msgstr "بحث %PRODUCTNAME درو حتى بداية العرض. هل تريد
#: sd/inc/strings.hrc:477
msgctxt "STR_ANIMATION_DIALOG_TITLE"
msgid "Animation"
-msgstr ""
+msgstr "متحرك"
#. X9CWA
#: sd/inc/strings.hrc:479
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
-msgstr ""
+msgstr "ارتباط"
#. yYhnC
#: sd/inc/strings.hrc:481
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Next"
-msgstr ""
+msgstr "ال~تالي"
#. YG7NQ
#: sd/inc/strings.hrc:482
msgctxt "RID_SVXSTR_MENU_NEXT"
msgid "~Previous"
-msgstr ""
+msgstr "ال~سابق"
#. A9eJu
#: sd/inc/strings.hrc:483
msgctxt "RID_SVXSTR_MENU_FIRST"
msgid "~First Slide"
-msgstr ""
+msgstr "الشريحة الأ~ولى"
#. CVatA
#: sd/inc/strings.hrc:484
msgctxt "RID_SVXSTR_MENU_LAST"
msgid "~Last Slide"
-msgstr ""
+msgstr "الشريحة الأ~خيرة"
#. Wkvpi
#: sd/inc/strings.hrc:486
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
-msgstr ""
+msgstr "أغلق اللوحة"
#. xNozF
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
-#, fuzzy
msgctxt "breakdialog|BreakDialog"
msgid "Break"
-msgstr "ا~كسر"
+msgstr "توقف"
#. reFAv
#: sd/uiconfig/sdraw/ui/breakdialog.ui:56
@@ -3234,7 +3232,7 @@ msgstr "ال_عرض:"
#: sd/uiconfig/sdraw/ui/copydlg.ui:368
msgctxt "copydlg|label9"
msgid "_Height:"
-msgstr "الار_تفاع:"
+msgstr "الارت_فاع:"
#. pLxaH
#: sd/uiconfig/sdraw/ui/copydlg.ui:388
@@ -3443,10 +3441,9 @@ msgstr "المحرف"
#. GsQBk
#: sd/uiconfig/sdraw/ui/drawchardialog.ui:136
-#, fuzzy
msgctxt "drawchardialog|RID_SVXPAGE_CHAR_NAME"
msgid "Fonts"
-msgstr "الخط:"
+msgstr "الخطوط"
#. 7LgAf
#: sd/uiconfig/sdraw/ui/drawchardialog.ui:183
@@ -3508,7 +3505,7 @@ msgstr "فقرة"
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:136
msgctxt "drawparadialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
-msgstr "الإزاحة و التباعد"
+msgstr "الإزاحات والتباعد"
#. xDCfw
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:183
@@ -3533,7 +3530,7 @@ msgstr "المحاذاة"
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:328
msgctxt "drawparadialog|labelNUMBERING"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. DgUaS
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:28
@@ -3709,7 +3706,7 @@ msgstr "تأثيرات الخطّ"
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:425
msgctxt "drawprtldialog|RID_SVXPAGE_STD_PARAGRAPH"
msgid "Indents & Spacing"
-msgstr "الإزاحة و التباعد"
+msgstr "الإزاحات والتباعد"
#. hQgNU
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:473
@@ -3727,7 +3724,7 @@ msgstr "نقطيات"
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:569
msgctxt "drawprtldialog|RID_SVXPAGE_PICK_SINGLE_NUM"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. MoKr2
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:617
@@ -3794,7 +3791,7 @@ msgstr "أدخل عنوان الطبقة."
#: sd/uiconfig/sdraw/ui/insertlayer.ui:149
msgctxt "insertlayer|label5"
msgid "_Title"
-msgstr "الع_نوان"
+msgstr "ال_عنوان"
#. KKC7D
#: sd/uiconfig/sdraw/ui/insertlayer.ui:188
@@ -3939,7 +3936,7 @@ msgstr "أ~درج"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:6423
msgctxt "drawnotebookbar|PageMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "م_خطط"
#. Rv7x4
#: sd/uiconfig/sdraw/ui/notebookbar.ui:6508
@@ -3969,31 +3966,31 @@ msgstr "معاي_نة"
#: sd/uiconfig/sdraw/ui/notebookbar.ui:8243
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "معاي~نة"
#. 94L75
#: sd/uiconfig/sdraw/ui/notebookbar.ui:9588
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
-msgstr ""
+msgstr "ن_ص"
#. PQtWE
#: sd/uiconfig/sdraw/ui/notebookbar.ui:9683
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
-msgstr ""
+msgstr "ن~ص"
#. tNq7H
#: sd/uiconfig/sdraw/ui/notebookbar.ui:10585
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
-msgstr ""
+msgstr "جد_ول"
#. 9pJGh
#: sd/uiconfig/sdraw/ui/notebookbar.ui:10669
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "ج~دول"
#. ECD4J
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11196
@@ -4007,49 +4004,49 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11864
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
-msgstr ""
+msgstr "صور_ة"
#. 7FoFi
#: sd/uiconfig/sdraw/ui/notebookbar.ui:11973
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "صور~ة"
#. 6SADm
#: sd/uiconfig/sdraw/ui/notebookbar.ui:13724
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr ""
+msgstr "_درو"
#. 6S8qN
#: sd/uiconfig/sdraw/ui/notebookbar.ui:13830
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~درو"
#. QAEDd
#: sd/uiconfig/sdraw/ui/notebookbar.ui:14663
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
-msgstr ""
+msgstr "_كائن"
#. SL4NA
#: sd/uiconfig/sdraw/ui/notebookbar.ui:14770
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
-msgstr ""
+msgstr "~كائن"
#. 4aAxG
#: sd/uiconfig/sdraw/ui/notebookbar.ui:15271
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. ed3LH
#: sd/uiconfig/sdraw/ui/notebookbar.ui:15375
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "و~سائط"
#. FAL6c
#: sd/uiconfig/sdraw/ui/notebookbar.ui:16183
@@ -4067,25 +4064,25 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17054
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
-msgstr ""
+msgstr "3أبع_اد"
#. fEyRX
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17161
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3أبع~اد"
#. 7ZLQw
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17685
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
-msgstr ""
+msgstr "ر_ئيسيّ"
#. oiXVg
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17769
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
-msgstr ""
+msgstr "ر~ئيسيّ"
#. yzvja
#: sd/uiconfig/sdraw/ui/notebookbar.ui:17826
@@ -4187,19 +4184,19 @@ msgstr "معاي_نة"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7662
msgctxt "notebookbar_draw_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "معاي~نة"
#. CqEAM
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9144
msgctxt "notebookbar_draw_compact|TextMenuButton"
msgid "T_ext"
-msgstr ""
+msgstr "ن_ص"
#. LFcJC
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9198
msgctxt "notebookbar_draw_compact|ReferencesLabel"
msgid "T~ext"
-msgstr ""
+msgstr "ن~ص"
#. sdACh
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10891
@@ -4211,7 +4208,7 @@ msgstr "_جدول"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10942
msgctxt "notebookbar_draw_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "ج~دول"
#. EGCcN
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
@@ -4223,43 +4220,43 @@ msgstr "صورة"
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "صور~ة"
#. CezAN
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. tAMd5
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~درو"
#. A49xv
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "كائن"
#. 3gubF
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~كائن"
#. fDRf9
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. dAbX4
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "و~سائط"
#. SCSH8
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
@@ -4277,25 +4274,25 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
-msgstr ""
+msgstr "ر_ئيسيّ"
#. S3huE
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
-msgstr ""
+msgstr "ر~ئيسيّ"
#. T3Z8R
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
-msgstr ""
+msgstr "3أبع_اد"
#. ZCuDe
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3أبع~اد"
#. YpLRj
#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
@@ -4343,7 +4340,7 @@ msgstr "_ملف"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3162
msgctxt "draw_notebookbar_groupedbar_compact|editb"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. vbFke
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3288
@@ -4358,7 +4355,7 @@ msgstr "أ_درج"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12468
msgctxt "draw_notebookbar_groupedbar_compact|draw"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. DsE2d
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3872
@@ -4405,7 +4402,7 @@ msgstr "ام_تداد"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5490
msgctxt "draw_notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
-msgstr ""
+msgstr "ال_خط"
#. pUqDJ
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4793
@@ -4418,20 +4415,20 @@ msgstr "الفقر_ة"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5976
msgctxt "draw_notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
-msgstr ""
+msgstr "جد_ول"
#. QzCG4
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6641
msgctxt "draw_notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
-msgstr ""
+msgstr "_كالك"
#. 5GKtj
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6907
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11370
msgctxt "draw_notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. dc5qG
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7332
@@ -4441,13 +4438,13 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11795
msgctxt "draw_notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "_رتّب"
#. ApB4j
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7783
msgctxt "draw_notebookbar_groupedbar_compact|draw"
msgid "_Shape"
-msgstr ""
+msgstr "شك_ل"
#. R5YZh
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8049
@@ -4460,19 +4457,19 @@ msgstr "_جمّع"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8285
msgctxt "draw_notebookbar_groupedbar_compact|3Db"
msgid "3_D"
-msgstr ""
+msgstr "3_الأبعاد"
#. hgFay
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8512
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "م_عمل‌خطوط"
#. Q6ELJ
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8623
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_شبكة"
#. fQJRZ
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8759
@@ -4484,25 +4481,25 @@ msgstr "_صورة"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9570
msgctxt "draw_notebookbar_groupedbar_compact|GridB"
msgid "Fi_lter"
-msgstr ""
+msgstr "مرشّ_ح"
#. 8qSXf
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9851
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
-msgstr ""
+msgstr "_كائن"
#. QdUM9
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10703
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. kwxYr
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12332
msgctxt "draw_notebookbar_groupedbar_compact|oleB"
msgid "_Master"
-msgstr ""
+msgstr "ر_ئيسيّ"
#. bBpXr
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:14098
@@ -4797,7 +4794,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:278
msgctxt "customanimationeffecttab|extended_tip|sound_preview"
msgid "Plays the selected sound file."
-msgstr ""
+msgstr "يشغّل ملف الصوت المحدد."
#. EwZ9F
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:309
@@ -4882,21 +4879,21 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:131
msgctxt "customanimationfragment|25"
msgid "Tiny"
-msgstr ""
+msgstr "بالغ الصغر"
#. KFKEz
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:41
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:139
msgctxt "customanimationfragment|50"
msgid "Smaller"
-msgstr ""
+msgstr "أصغر"
#. 6PRME
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:49
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:147
msgctxt "customanimationfragment|150"
msgid "Larger"
-msgstr ""
+msgstr "أكبر"
#. kt7nE
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:57
@@ -4963,7 +4960,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:197
msgctxt "customanimationfragment|bold"
msgid "Bold"
-msgstr ""
+msgstr "ثخين"
#. FsHZh
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:205
@@ -4975,7 +4972,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:213
msgctxt "customanimationfragment|underline"
msgid "Underlined"
-msgstr ""
+msgstr "تحته خط"
#. icBD4
#: sd/uiconfig/simpress/ui/customanimationproperties.ui:8
@@ -5019,25 +5016,25 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:215
msgctxt "customanimationspanel|lbEffect"
msgid "Effects"
-msgstr ""
+msgstr "التأثيرات"
#. WGWNA
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:236
msgctxt "customanimationspanel|add"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. nRqGR
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:240
msgctxt "customanimationspanel|add_effect|tooltip_text"
msgid "Add Effect"
-msgstr ""
+msgstr "أضف تأثيراً"
#. CskWF
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:246
msgctxt "customanimationspanel|extended_tip|add_effect"
msgid "Adds another animation effect for the selected object on the slide."
-msgstr ""
+msgstr "أضِف تأثير تحريك آخر للكائن المحدد على الشريحة."
#. vitMM
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:261
@@ -5079,7 +5076,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:331
msgctxt "customanimationspanel|categorylabel"
msgid "Category:"
-msgstr "الفئة:"
+msgstr "الصنف:"
#. jQcZZ
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:345
@@ -5115,7 +5112,7 @@ msgstr "تأثيرات متنوعة"
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:353
msgctxt "customanimationspanel|extended_tip|categorylb"
msgid "Select an animation effect category."
-msgstr ""
+msgstr "حدد صنف تأثيرات الحركة."
#. EHRAp
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:370
@@ -5127,7 +5124,7 @@ msgstr "التأثير:"
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:419
msgctxt "customanimationspanel|extended_tip|effect_list"
msgid "Select an animation effect."
-msgstr ""
+msgstr "حدد تأثير حركة."
#. LGuGy
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:435
@@ -5163,7 +5160,7 @@ msgstr "بعد السابق"
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:472
msgctxt "customanimationspanel|extended_tip|start_effect_list"
msgid "Displays when the selected animation effect should be started."
-msgstr ""
+msgstr "يَعرض متى ينبغي بدء تأثير الحركة المحدد."
#. 8AUq9
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:486
@@ -5247,13 +5244,13 @@ msgstr "كدس التحريك"
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:645
msgctxt "customanimationspanel|custom_animation_list_label"
msgid "Animation List"
-msgstr ""
+msgstr "قائمة التحريك"
#. F7AZL
#: sd/uiconfig/simpress/ui/customanimationspanel.ui:701
msgctxt "customanimationspanel|extended_tip|CustomAnimationsPanel"
msgid "Assigns effects to selected objects."
-msgstr ""
+msgstr "يسند تأثيرات للكائنات المحددة."
#. rYtTX
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:30
@@ -5487,7 +5484,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customslideshows.ui:231
msgctxt "customslideshows|extended_tip|delete"
msgid "Deletes the selected element or elements without requiring confirmation."
-msgstr ""
+msgstr "يحذف العنصر أو العناصر المحددة دون طلب تأكيد."
#. 8Cf3C
#: sd/uiconfig/simpress/ui/customslideshows.ui:267
@@ -5635,10 +5632,9 @@ msgstr ""
#. fmuQT
#: sd/uiconfig/simpress/ui/dlgfield.ui:231
-#, fuzzy
msgctxt "dlgfield|label3"
msgid "F_ormat"
-msgstr "التّن_سيق"
+msgstr "ن_سَق"
#. 4HTWi
#: sd/uiconfig/simpress/ui/dlgfield.ui:264
@@ -5850,35 +5846,33 @@ msgstr ""
#. Bu3De
#: sd/uiconfig/simpress/ui/dockinganimation.ui:449
-#, fuzzy
msgctxt "dockinganimation|getone|tooltip_text"
msgid "Apply Object"
-msgstr "كائن بريمج"
+msgstr "طبّق الكائن"
#. 9tgAf
#: sd/uiconfig/simpress/ui/dockinganimation.ui:454
msgctxt "dockinganimation|extended_tip|getone"
msgid "Adds selected object(s) as a single image."
-msgstr ""
+msgstr "أضف الكائن (الكائنات) المحدد كصورة مفردة."
#. f6tL5
#: sd/uiconfig/simpress/ui/dockinganimation.ui:468
msgctxt "dockinganimation|getall|tooltip_text"
msgid "Apply Objects Individually"
-msgstr ""
+msgstr "طبّق الكائنات فرديًا"
#. ECmGc
#: sd/uiconfig/simpress/ui/dockinganimation.ui:473
msgctxt "dockinganimation|extended_tip|getall"
msgid "Adds an image for each selected object."
-msgstr ""
+msgstr "يضيف صورة لكل كائن محدد."
#. VGN4f
#: sd/uiconfig/simpress/ui/dockinganimation.ui:500
-#, fuzzy
msgctxt "dockinganimation|label3"
msgid "Number"
-msgstr "الرقم"
+msgstr "رقم"
#. 8kUXo
#: sd/uiconfig/simpress/ui/dockinganimation.ui:539
@@ -5966,21 +5960,18 @@ msgstr "أ_زل"
#. DXV9V
#: sd/uiconfig/simpress/ui/fontsizemenu.ui:12
-#, fuzzy
msgctxt "fontsizemenu|25"
msgid "Tiny"
-msgstr "دقيق"
+msgstr "بالغ الصغر"
#. KeRNm
#: sd/uiconfig/simpress/ui/fontsizemenu.ui:20
-#, fuzzy
msgctxt "fontsizemenu|50"
msgid "Smaller"
msgstr "أصغر"
#. 6WKBZ
#: sd/uiconfig/simpress/ui/fontsizemenu.ui:28
-#, fuzzy
msgctxt "fontsizemenu|150"
msgid "Larger"
msgstr "أكبر"
@@ -5993,30 +5984,27 @@ msgstr "كبير جدا"
#. dgg5q
#: sd/uiconfig/simpress/ui/fontstylemenu.ui:12
-#, fuzzy
msgctxt "fontstylemenu|bold"
msgid "Bold"
-msgstr "عريض"
+msgstr "ثخين"
#. HgpdJ
#: sd/uiconfig/simpress/ui/fontstylemenu.ui:20
-#, fuzzy
msgctxt "fontstylemenu|italic"
msgid "Italic"
-msgstr "_مائل"
+msgstr "مائل"
#. A5UUL
#: sd/uiconfig/simpress/ui/fontstylemenu.ui:28
-#, fuzzy
msgctxt "fontstylemenu|underline"
msgid "Underlined"
-msgstr "مس_طّر"
+msgstr "تحته خط"
#. BnypD
#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:8
msgctxt "headerfooterdialog|HeaderFooterDialog"
msgid "Header and Footer"
-msgstr "الترويسة و التذييل"
+msgstr "الرأس والتذييل"
#. HmAnf
#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:24
@@ -6046,38 +6034,37 @@ msgstr "الشرائح"
#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:192
msgctxt "headerfooterdialog|notes"
msgid "Notes and Handouts"
-msgstr ""
+msgstr "إبلاغات ونشرات"
#. jAdBZ
#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:219
msgctxt "headerfooterdialog|extended_tip|HeaderFooterDialog"
msgid "Adds or changes text in placeholders at the top and the bottom of slides and master slides."
-msgstr ""
+msgstr "يضيف أو يغيّر النص في الحالّات في أعلى وأسفل الشرائح والشرائح الرئيسة."
#. BgFsS
#: sd/uiconfig/simpress/ui/headerfootertab.ui:35
-#, fuzzy
msgctxt "headerfootertab|header_cb"
msgid "Heade_r"
-msgstr "ترويسة"
+msgstr "_رأس"
#. 7qH6R
#: sd/uiconfig/simpress/ui/headerfootertab.ui:44
msgctxt "headerfootertab|extended_tip|header_cb"
msgid "Adds the text that you enter in the Header text box to the top of the slide."
-msgstr ""
+msgstr "يضيف النص الذي تُدخله في صندوق نص الرأس إلى أعلى الشريحة."
#. Qktzq
#: sd/uiconfig/simpress/ui/headerfootertab.ui:64
msgctxt "headerfootertab|header_label"
msgid "Header _text:"
-msgstr "_نص الترويسة:"
+msgstr "_نص الرأس:"
#. uNdGZ
#: sd/uiconfig/simpress/ui/headerfootertab.ui:83
msgctxt "headerfootertab|extended_tip|header_text"
msgid "Adds the text that you enter to the top of the slide."
-msgstr ""
+msgstr "يضيف النص الذي تُدخله إلى أعلى الشريحة."
#. ruQCk
#: sd/uiconfig/simpress/ui/headerfootertab.ui:105
@@ -6089,45 +6076,43 @@ msgstr "ال_تاريخ والوقت"
#: sd/uiconfig/simpress/ui/headerfootertab.ui:113
msgctxt "headerfootertab|extended_tip|datetime_cb"
msgid "Adds the date and time to the slide."
-msgstr ""
+msgstr "يضيف التأريخ والوقت إلى الشريحة."
#. LDq83
#: sd/uiconfig/simpress/ui/headerfootertab.ui:137
-#, fuzzy
msgctxt "headerfootertab|rb_fixed"
msgid "Fi_xed"
-msgstr "ثابت"
+msgstr "_ثابت"
#. RrPiS
#: sd/uiconfig/simpress/ui/headerfootertab.ui:149
msgctxt "headerfootertab|extended_tip|rb_fixed"
msgid "Displays the date and time that you enter in the text box."
-msgstr ""
+msgstr "يَعرض التأريخ والوقت الذي تُدخله في مربع النص."
#. Nycig
#: sd/uiconfig/simpress/ui/headerfootertab.ui:170
msgctxt "headerfootertab|extended_tip|datetime_value"
msgid "Displays the date and time that you enter in the text box."
-msgstr ""
+msgstr "يَعرض التأريخ والوقت الذي تُدخله في مربع النص."
#. Zch2Q
#: sd/uiconfig/simpress/ui/headerfootertab.ui:195
-#, fuzzy
msgctxt "headerfootertab|rb_auto"
msgid "_Variable"
-msgstr "المتغير"
+msgstr "مت_غير"
#. CA8yX
#: sd/uiconfig/simpress/ui/headerfootertab.ui:207
msgctxt "headerfootertab|extended_tip|rb_auto"
msgid "Displays the date and time that the slide was created. Select a date format from the list."
-msgstr ""
+msgstr "يَعرض التأريخ والوقت الذي أُنشئِت فيه الشريحة. حدد نسَق تأريخ من القائمة."
#. fXSJq
#: sd/uiconfig/simpress/ui/headerfootertab.ui:229
msgctxt "headerfootertab|extended_tip|language_list"
msgid "Select the language for the date and time format."
-msgstr ""
+msgstr "حدد لغةَ لنسَق التأريخ والوقت."
#. iDwM5
#: sd/uiconfig/simpress/ui/headerfootertab.ui:242
@@ -6139,14 +6124,13 @@ msgstr "الل_غة:"
#: sd/uiconfig/simpress/ui/headerfootertab.ui:258
msgctxt "headerfootertab|extended_tip|datetime_format_list"
msgid "Displays the date and time that the slide was created. Select a date format from the list."
-msgstr ""
+msgstr "يَعرض التأريخ والوقت الذي أُنشئِت فيه الشريحة. حدد نسَق تأريخ من القائمة."
#. mDMwW
#: sd/uiconfig/simpress/ui/headerfootertab.ui:271
-#, fuzzy
msgctxt "headerfootertab|language_label1"
msgid "_Format:"
-msgstr "التن_سيق:"
+msgstr "النسَ_ق:"
#. htD4f
#: sd/uiconfig/simpress/ui/headerfootertab.ui:315
@@ -6158,7 +6142,7 @@ msgstr "الت_ذييل"
#: sd/uiconfig/simpress/ui/headerfootertab.ui:323
msgctxt "headerfootertab|extended_tip|footer_cb"
msgid "Adds the text that you enter in the Footer text box to the bottom of the slide."
-msgstr ""
+msgstr "يضيف النص الذي تُدخله في مربع نص التذييل إلى أسفل الشريحة."
#. oA3mG
#: sd/uiconfig/simpress/ui/headerfootertab.ui:343
@@ -6170,7 +6154,7 @@ msgstr "نص ال_تذييل:"
#: sd/uiconfig/simpress/ui/headerfootertab.ui:362
msgctxt "headerfootertab|extended_tip|footer_text"
msgid "Adds the text that you enter to the bottom of the slide."
-msgstr ""
+msgstr "يضيف النص الذي تُدخله إلى أسفل الشريحة."
#. UERZK
#: sd/uiconfig/simpress/ui/headerfootertab.ui:391
@@ -6182,7 +6166,7 @@ msgstr "رقم ال_شريحة"
#: sd/uiconfig/simpress/ui/headerfootertab.ui:399
msgctxt "headerfootertab|extended_tip|slide_number"
msgid "Adds the slide number or the page number."
-msgstr ""
+msgstr "يضيف رقم الشريحة أو رقم الصفحة."
#. ZmRZp
#: sd/uiconfig/simpress/ui/headerfootertab.ui:415
@@ -6200,7 +6184,7 @@ msgstr "لا _تعرض على الشريحة الأولى"
#: sd/uiconfig/simpress/ui/headerfootertab.ui:439
msgctxt "headerfootertab|extended_tip|not_on_title"
msgid "Does not display your specified information on the first slide of your presentation."
-msgstr ""
+msgstr "لا يَعرض المعلومات المحددة خاصتك على الشريحة الأولى من عَرضك التقديمي."
#. jjanG
#: sd/uiconfig/simpress/ui/headerfootertab.ui:453
@@ -6561,10 +6545,9 @@ msgstr "ال~عناصر الرئيسية"
#. 2kiHn
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:92
-#, fuzzy
msgctxt "masterlayoutdlg|header"
msgid "_Header"
-msgstr "ترويسة"
+msgstr "الرأ_س"
#. r7Aa8
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:100
@@ -6656,7 +6639,7 @@ msgstr "اعرض معاينة _صغيرة"
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:12
msgctxt "navigatorpanelSTR_DRAGTYPE_URL"
msgid "Insert as Hyperlink"
-msgstr "أدرج كرابط"
+msgstr "أدرج كارتباط تشعبي"
#. ptpuN
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:20
@@ -6746,7 +6729,7 @@ msgstr "الشريحة الأخيرة"
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:194
msgctxt "navigatorpanel|extended_tip|last"
msgid "Jumps to the last page."
-msgstr ""
+msgstr "يقفز إلى الصفحة الأخيرة."
#. mHVom
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:218
@@ -6782,13 +6765,13 @@ msgstr ""
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:272
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_NAMED_SHAPES"
msgid "Named shapes"
-msgstr ""
+msgstr "الأشكال المسمّاة"
#. dLEPF
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:281
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_ALL_SHAPES"
msgid "All shapes"
-msgstr ""
+msgstr "كل الأشكال"
#. qGFEo
#: sd/uiconfig/simpress/ui/notebookbar.ui:3196
@@ -6842,7 +6825,7 @@ msgstr "أ~درج"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6909
msgctxt "impressnotebookbar|SlideMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "م_خطط"
#. ArPLp
#: sd/uiconfig/simpress/ui/notebookbar.ui:6994
@@ -6854,7 +6837,7 @@ msgstr "م~خطط"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7458
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "عرض _شرائح"
#. nV5FC
#: sd/uiconfig/simpress/ui/notebookbar.ui:7542
@@ -6884,19 +6867,19 @@ msgstr "معاي_نة"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9465
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "معاي~نة"
#. bWC2b
#: sd/uiconfig/simpress/ui/notebookbar.ui:10359
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
-msgstr ""
+msgstr "جد_ول"
#. dmEJG
#: sd/uiconfig/simpress/ui/notebookbar.ui:10443
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "ج~دول"
#. Cn8TS
#: sd/uiconfig/simpress/ui/notebookbar.ui:10968
@@ -6910,49 +6893,49 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:11638
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
-msgstr ""
+msgstr "صور_ة"
#. XCSMA
#: sd/uiconfig/simpress/ui/notebookbar.ui:11747
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "صور~ة"
#. nTy3C
#: sd/uiconfig/simpress/ui/notebookbar.ui:13449
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr ""
+msgstr "_درو"
#. BfNQD
#: sd/uiconfig/simpress/ui/notebookbar.ui:13556
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~درو"
#. p3Faf
#: sd/uiconfig/simpress/ui/notebookbar.ui:14390
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
-msgstr ""
+msgstr "_كائن"
#. wL8mu
#: sd/uiconfig/simpress/ui/notebookbar.ui:14497
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
-msgstr ""
+msgstr "~كائن"
#. AAosj
#: sd/uiconfig/simpress/ui/notebookbar.ui:14998
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. GgHEg
#: sd/uiconfig/simpress/ui/notebookbar.ui:15102
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "و~سائط"
#. W9oCC
#: sd/uiconfig/simpress/ui/notebookbar.ui:15910
@@ -6970,13 +6953,13 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:16789
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
-msgstr ""
+msgstr "ر_ئيسيّ"
#. XAZEm
#: sd/uiconfig/simpress/ui/notebookbar.ui:16873
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
-msgstr ""
+msgstr "ر~ئيسيّ"
#. DyZAq
#: sd/uiconfig/simpress/ui/notebookbar.ui:17683
@@ -6994,13 +6977,13 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:18554
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
-msgstr ""
+msgstr "3أبع_اد"
#. xwrog
#: sd/uiconfig/simpress/ui/notebookbar.ui:18661
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3أبع~اد"
#. syaDA
#: sd/uiconfig/simpress/ui/notebookbar.ui:18718
@@ -7096,7 +7079,7 @@ msgstr "مر~اجعة"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7825
msgctxt "notebookbar_impress_compact|LayoutMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "عرض _شرائح"
#. KAo9c
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7877
@@ -7114,7 +7097,7 @@ msgstr "معاي_نة"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8761
msgctxt "notebookbar_impress_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "معاي~نة"
#. CzCMC
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10445
@@ -7126,7 +7109,7 @@ msgstr "_جدول"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10496
msgctxt "notebookbar_impress_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "ج~دول"
#. BzXPB
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
@@ -7138,43 +7121,43 @@ msgstr "صورة"
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "صور~ة"
#. ZqPYr
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. 78DU3
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~درو"
#. uv2FE
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "كائن"
#. FSjqt
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~كائن"
#. t3Fmv
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. HbptL
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "و~سائط"
#. NNqQ2
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
@@ -7192,25 +7175,25 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
-msgstr ""
+msgstr "ر_ئيسيّ"
#. NUiWE
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
-msgstr ""
+msgstr "ر~ئيسيّ"
#. 4f9xG
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
-msgstr ""
+msgstr "3أبع_اد"
#. ntfL7
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
-msgstr ""
+msgstr "3أبع~اد"
#. ntjaC
#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
@@ -7256,24 +7239,23 @@ msgstr "_ملف"
#. MR7ZB
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3202
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
-msgstr "ت~حرير"
+msgstr "ح_رّر"
#. 26rGJ
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3328
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4511
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "S_lide"
-msgstr ""
+msgstr "_شريحة"
#. WZ5Fe
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3485
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12450
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. GYqWX
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3913
@@ -7321,7 +7303,7 @@ msgstr "ام_تداد"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5482
msgctxt "notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
-msgstr ""
+msgstr "ال_خط"
#. YgxCs
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4890
@@ -7334,20 +7316,20 @@ msgstr "الفقر_ة"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5953
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
-msgstr ""
+msgstr "جد_ول"
#. PRamE
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6605
msgctxt "notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
-msgstr ""
+msgstr "_كالك"
#. DC7Hv
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6871
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11332
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. ncAKi
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7296
@@ -7357,7 +7339,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11757
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "_رتّب"
#. 8pLR3
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7747
@@ -7376,19 +7358,19 @@ msgstr "_جمّع"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8247
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
-msgstr ""
+msgstr "3_الأبعاد"
#. BTzDn
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8474
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "م_عمل‌خطوط"
#. PLqyG
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8585
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_شبكة"
#. XL8kc
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8721
@@ -7400,25 +7382,25 @@ msgstr "_صورة"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9532
msgctxt "notebookbar_groupedbar_compact|GridB"
msgid "Fi_lter"
-msgstr ""
+msgstr "مرشّ_ح"
#. 5a4zV
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9813
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
-msgstr ""
+msgstr "_كائن"
#. Ghwp6
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10665
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. w6MPS
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12294
msgctxt "notebookbar_groupedbar_compact|oleB"
msgid "_Master"
-msgstr ""
+msgstr "ر_ئيسيّ"
#. MGQxe
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13347
@@ -7459,24 +7441,21 @@ msgstr "_ملف"
#. aqbEs
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3420
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
-msgstr "ت~حرير"
+msgstr "ح_رّر"
#. S4ZPU
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3577
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowb"
msgid "_Slide Show"
-msgstr "عرض الشرائح"
+msgstr "عرض _شرائح"
#. ZShaH
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3770
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphstylet"
msgid "S_lide"
-msgstr "شريحة"
+msgstr "_شريحة"
#. dS4bE
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3919
@@ -7488,7 +7467,7 @@ msgstr "أ_درج"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4255
msgctxt "notebookbar_groupedbar_full|draw"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. gQQfL
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4439
@@ -7508,25 +7487,22 @@ msgstr "معاي_نة"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9631
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11022
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12254
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
-msgstr "تنظيم"
+msgstr "_رتّب"
#. ZZz6G
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5024
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowt"
msgid "_Slide Show"
-msgstr "عرض الشرائح"
+msgstr "عرض _شرائح"
#. etFeN
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5267
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6510
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ormat"
-msgstr "التّن_سيق"
+msgstr "ن_سَق"
#. sdehG
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5578
@@ -7555,10 +7531,9 @@ msgstr "مر_اجعة"
#. jHLaW
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6267
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowtt"
msgid "_Slide Show"
-msgstr "عرض الشرائح"
+msgstr "عرض _شرائح"
#. Ew7Ho
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6996
@@ -7576,29 +7551,27 @@ msgstr "ال_صفوف"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7378
msgctxt "notebookbar_groupedbar_full|calculatet"
msgid "_Calc"
-msgstr ""
+msgstr "_كالك"
#. WfzeY
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7704
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. QNg9L
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7989
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
-msgstr "ت~حرير"
+msgstr "ح_رّر"
#. BfnGg
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8541
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9783
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11174
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_Grid"
-msgstr "الشبكة"
+msgstr "_شبكة"
#. 3i55T
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8683
@@ -7610,7 +7583,7 @@ msgstr "_جمّع"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8822
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
-msgstr ""
+msgstr "3_الأبعاد"
#. SbHmx
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9078
@@ -7621,31 +7594,27 @@ msgstr "الرسم"
#. DDTxx
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9243
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
-msgstr "اللون"
+msgstr "ل_ون"
#. eLnnF
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10172
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
-msgstr "الوسائط"
+msgstr "و_سائط"
#. duFFM
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10347
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|slideshowOLE"
msgid "_Slide Show"
-msgstr "عرض الشرائح"
+msgstr "عرض _شرائح"
#. wrKzp
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10622
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "F_rame"
-msgstr "الإ_طار"
+msgstr "إط_ار"
#. EMvnF
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11320
@@ -7670,7 +7639,7 @@ msgstr "أ_درج"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11936
msgctxt "notebookbar_groupedbar_full|drawm"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. tcCdm
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12416
@@ -7759,10 +7728,9 @@ msgstr "المبدئيّ"
#. 7YLfF
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:265
-#, fuzzy
msgctxt "notebookbar_groups|shapestylenofill"
msgid "No Fill"
-msgstr "بدون تعبئة"
+msgstr "بِلا تعبئة"
#. ZvUBh
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:273
@@ -7842,7 +7810,7 @@ msgstr "مخطط"
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1318
msgctxt "notebookbar_groups|animationb"
msgid "Animation"
-msgstr "الحركة"
+msgstr "متحرك"
#. Dxvi5
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1336
@@ -7872,7 +7840,7 @@ msgstr "الوصلات"
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1585
msgctxt "notebookbar_groups|insertgrouplabel"
msgid "Insert"
-msgstr "أدرِج"
+msgstr "أدرج"
#. Du8Qw
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1621
@@ -7909,7 +7877,7 @@ msgstr "صورة"
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1826
msgctxt "notebookbar_groups|wrapoff"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. MCMXX
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1835
@@ -7937,10 +7905,9 @@ msgstr "بعد"
#. PGXfq
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1871
-#, fuzzy
msgctxt "notebookbar_groups|wrapthrough"
msgid "Through"
-msgstr "_خلال"
+msgstr "خلال"
#. WEBWT
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1886
@@ -8122,7 +8089,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:478
msgctxt "optimpressgeneralpage|textselected"
msgid "Only text area selectable"
-msgstr ""
+msgstr "فقط مساحة النص قابلة للتحديد"
#. EQqRZ
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:486
@@ -8194,25 +8161,25 @@ msgstr "إزالة الصورة من القائمة"
#: sd/uiconfig/simpress/ui/photoalbum.ui:175
msgctxt "photoalbum|up_btn"
msgid "_Up"
-msgstr ""
+msgstr "أعل_ى"
#. Xzv9L
#: sd/uiconfig/simpress/ui/photoalbum.ui:179
msgctxt "photoalbum|up_btn|tooltip_text"
msgid "Move Image Up"
-msgstr "تحريك الصورة لأعلى"
+msgstr "حرّك الصورة لأعلى"
#. BHQEj
#: sd/uiconfig/simpress/ui/photoalbum.ui:190
msgctxt "photoalbum|down_btn"
msgid "Do_wn"
-msgstr ""
+msgstr "أسف_ل"
#. ANTjq
#: sd/uiconfig/simpress/ui/photoalbum.ui:194
msgctxt "photoalbum|down_btn|tooltip_text"
msgid "Move Image Down"
-msgstr "تحريك الصورة لأسفل"
+msgstr "حرّك الصورة لأسفل"
#. 98Y7U
#: sd/uiconfig/simpress/ui/photoalbum.ui:261
@@ -8264,10 +8231,9 @@ msgstr "ملء الشاشة"
#. UAHAg
#: sd/uiconfig/simpress/ui/photoalbum.ui:372
-#, fuzzy
msgctxt "photoalbum|insert_as_link_check"
msgid "Link images"
-msgstr "رابط صورة"
+msgstr "اربط الصور"
#. LAEo2
#: sd/uiconfig/simpress/ui/presentationdialog.ui:13
@@ -8285,7 +8251,7 @@ msgstr "_من:"
#: sd/uiconfig/simpress/ui/presentationdialog.ui:126
msgctxt "presentationdialog|extended_tip|from"
msgid "Enter the number of the start slide."
-msgstr ""
+msgstr "أدخِل رقم شريحة البداية."
#. tc75b
#: sd/uiconfig/simpress/ui/presentationdialog.ui:145
@@ -8297,7 +8263,7 @@ msgstr "شريحة البدء"
#: sd/uiconfig/simpress/ui/presentationdialog.ui:146
msgctxt "presentationdialog|extended_tip|from_cb"
msgid "Enter the number of the start slide."
-msgstr ""
+msgstr "أدخِل رقم شريحة البداية."
#. FLsDP
#: sd/uiconfig/simpress/ui/presentationdialog.ui:163
@@ -8929,10 +8895,9 @@ msgstr ""
#. vuFBo
#: sd/uiconfig/simpress/ui/publishingdialog.ui:548
-#, fuzzy
msgctxt "publishingdialog|chgAutoRadiobutton"
msgid "_Automatic"
-msgstr "آ_ليّ"
+msgstr "_تلقائي"
#. 3Wi7b
#: sd/uiconfig/simpress/ui/publishingdialog.ui:557
@@ -9014,10 +8979,9 @@ msgstr ""
#. CgTG4
#: sd/uiconfig/simpress/ui/publishingdialog.ui:840
-#, fuzzy
msgctxt "publishingdialog|kioskRadiobutton"
msgid "_Automatic"
-msgstr "آ_ليّ"
+msgstr "_تلقائي"
#. 3A5Bq
#: sd/uiconfig/simpress/ui/publishingdialog.ui:849
@@ -9158,10 +9122,10 @@ msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
msgstr ""
-#. GuDqe
+#. CA9F9
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1195
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
-msgid "Select a full hd resolution for a very high quality slide display."
+msgid "Select a full HD resolution for a very high-quality slide display."
msgstr ""
#. zsvW6
@@ -9401,21 +9365,18 @@ msgstr "عكس اتجاه عقارب الساعة"
#. q5TTG
#: sd/uiconfig/simpress/ui/scalemenu.ui:12
-#, fuzzy
msgctxt "scalemenu|25"
msgid "Tiny"
-msgstr "دقيق"
+msgstr "بالغ الصغر"
#. yDGRR
#: sd/uiconfig/simpress/ui/scalemenu.ui:20
-#, fuzzy
msgctxt "scalemenu|50"
msgid "Smaller"
msgstr "أصغر"
#. V5AAC
#: sd/uiconfig/simpress/ui/scalemenu.ui:28
-#, fuzzy
msgctxt "scalemenu|150"
msgid "Larger"
msgstr "أكبر"
@@ -9498,7 +9459,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/sdviewpage.ui:106
msgctxt "sdviewpage|label1"
msgid "Display"
-msgstr "عرض"
+msgstr "عَرض"
#. peBce
#: sd/uiconfig/simpress/ui/sdviewpage.ui:114
@@ -9510,7 +9471,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:38
msgctxt "sidebarslidebackground|label2"
msgid "_Format:"
-msgstr "التن_سيق:"
+msgstr "النسَ_ق:"
#. 497k8
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:52
@@ -9558,7 +9519,7 @@ msgstr "الاتجاه:"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:269
msgctxt "sidebarslidebackground|masterslidebutton"
msgid "Master View"
-msgstr "المنظور الرئيسي"
+msgstr "المعاينة الرئيسة"
#. EVfaj
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:282
@@ -9570,7 +9531,7 @@ msgstr "أغلق المنظور الرئيسي"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:313
msgctxt "sidebarslidebackground|labelmargin"
msgid "Margin:"
-msgstr ""
+msgstr "الحافة:"
#. anufD
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:326
@@ -9824,7 +9785,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
msgid "After:"
-msgstr ""
+msgstr "بعد:"
#. rJJQy
#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
@@ -9848,7 +9809,7 @@ msgstr "تقديم الشريحة"
#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:350
msgctxt "slidetransitionspanel|apply_to_all"
msgid "Apply Transition to All Slides"
-msgstr "طبّق الحركة على كل الشرائح"
+msgstr "طبّق الانتقالة على كل الشرائح"
#. hoaV2
#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:357
@@ -9878,7 +9839,7 @@ msgstr "شغّل"
#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:416
msgctxt "slidetransitionspanel|play|tooltip_text"
msgid "Preview Effect"
-msgstr ""
+msgstr "عاين التأثير"
#. HddiF
#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:423
@@ -9992,7 +9953,7 @@ msgstr "تأثيرات الخطّ"
#: sd/uiconfig/simpress/ui/templatedialog.ui:487
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
-msgstr "الإزاحة و التباعد"
+msgstr "الإزاحات والتباعد"
#. siGDD
#: sd/uiconfig/simpress/ui/templatedialog.ui:535
diff --git a/source/ar/sfx2/classification.po b/source/ar/sfx2/classification.po
index 8e7687c14de..01782593b0f 100644
--- a/source/ar/sfx2/classification.po
+++ b/source/ar/sfx2/classification.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-07-01 17:54+0200\n"
-"PO-Revision-Date: 2021-10-28 12:56+0000\n"
+"PO-Revision-Date: 2022-02-27 12:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2classification/ar/>\n"
"Language: ar\n"
@@ -43,7 +43,7 @@ msgctxt ""
"BusinessAuthorizationCategory_NB\n"
"LngText.text"
msgid "Non-Business"
-msgstr "غير تجاري"
+msgstr "لغير الأعمال"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. MNxv5
@@ -63,7 +63,7 @@ msgctxt ""
"BAC_VisualMarkingPart_GB_Header\n"
"LngText.text"
msgid "Classification: General Business"
-msgstr "تصنيف: أعمال عامة"
+msgstr "التصنيف: أعمال عامة"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. GXTzB
@@ -83,7 +83,7 @@ msgctxt ""
"BAC_VisualMarkingPart_Conf_Header\n"
"LngText.text"
msgid "Classification: Confidential"
-msgstr "تصنيف: سري"
+msgstr "التصنيف: سري"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. tXtJF
@@ -113,7 +113,7 @@ msgctxt ""
"BusinessAuthorizationCategory_IO\n"
"LngText.text"
msgid "Internal Only"
-msgstr "داخليا فقط"
+msgstr "داخلي فقط"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. 5VVpy
@@ -123,7 +123,7 @@ msgctxt ""
"BAC_VisualMarkingPart_IO_Header\n"
"LngText.text"
msgid "Classification: Internal Only"
-msgstr "تصنيف: داخليا فقط"
+msgstr "التصنيف: داخلي فقط"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. k6GEi
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index f11157fc430..8e057836f49 100644
--- a/source/ar/sfx2/messages.po
+++ b/source/ar/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-09 16:46+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149332.000000\n"
#. bHbFE
@@ -26,7 +26,7 @@ msgstr "قوالب"
#: include/sfx2/strings.hrc:26
msgctxt "STR_SAVEDOC"
msgid "~Save"
-msgstr "حف~ظ"
+msgstr "احف~ظ"
#. CQKYg
#: include/sfx2/strings.hrc:27
@@ -397,7 +397,7 @@ msgstr "أظهر لوحة الملاحة"
#: include/sfx2/strings.hrc:83
msgctxt "STR_HELP_BUTTON_INDEX_OFF"
msgid "Hide Navigation Pane"
-msgstr "أخفِ قسم الملاحة"
+msgstr "أخفِ لوحة الملاحة"
#. g8Vns
#: include/sfx2/strings.hrc:84
@@ -553,7 +553,7 @@ msgstr "التطبيق"
#: include/sfx2/strings.hrc:109
msgctxt "STR_GID_VIEW"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. NQnym
#: include/sfx2/strings.hrc:110
@@ -595,7 +595,7 @@ msgstr "تنقل"
#: include/sfx2/strings.hrc:116
msgctxt "STR_GID_INSERT"
msgid "Insert"
-msgstr "أدرِج"
+msgstr "أدرج"
#. fokQp
#: include/sfx2/strings.hrc:117
@@ -607,7 +607,7 @@ msgstr "التنسيق"
#: include/sfx2/strings.hrc:118
msgctxt "STR_GID_TEMPLATE"
msgid "Templates"
-msgstr "القوالب"
+msgstr "قوالب"
#. JAdCZ
#: include/sfx2/strings.hrc:119
@@ -619,7 +619,7 @@ msgstr "النص"
#: include/sfx2/strings.hrc:120
msgctxt "STR_GID_FRAME"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. 5V4iR
#: include/sfx2/strings.hrc:121
@@ -631,13 +631,13 @@ msgstr "صورة"
#: include/sfx2/strings.hrc:122
msgctxt "STR_GID_TABLE"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. Cmsi4
#: include/sfx2/strings.hrc:123
msgctxt "STR_GID_ENUMERATION"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. CDFSE
#: include/sfx2/strings.hrc:124
@@ -828,7 +828,7 @@ msgid ""
"This will discard all changes on the server since check-out.\n"
"Do you want to proceed?"
msgstr ""
-"هذا سيُلغي كل التغييرات على الخادوم منذ آخر تسجيل للمغادرة.\n"
+"هذا سيستبعِد كل التغييرات على الخادوم منذ آخر استقدام/سحب check-out.\n"
"أتود التقدم؟"
#. jufLD
@@ -865,13 +865,13 @@ msgstr "مستند"
#: include/sfx2/strings.hrc:157
msgctxt "STR_NONE"
msgid "- None -"
-msgstr "- بدون -"
+msgstr "- بِلا -"
#. XBXvE
#: include/sfx2/strings.hrc:158
msgctxt "saveastemplatedlg|categorylist"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. 5kUsi
#: include/sfx2/strings.hrc:159
@@ -940,7 +940,7 @@ msgstr "إصدار ملف الصورة هذا غير مدعوم"
#: include/sfx2/strings.hrc:169
msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
-msgstr "تعذّر العثور على مرشّح الصورة"
+msgstr "لم يُعثر على مرشّح الصورة"
#. huEFV
#: include/sfx2/strings.hrc:170
@@ -1030,7 +1030,7 @@ msgstr "مرحبًا بك في %PRODUCTNAME."
#: include/sfx2/strings.hrc:184
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or open an app to create one."
-msgstr "أسقط مستنداً هنا أو افتح تطبيقًا لإنشاء مستند."
+msgstr "ألقِ مستنداً هنا أو افتح تطبيقًا لإنشاء مستند."
#. oTVdA
#. Translators: Target types in Auto-redaction dialog
@@ -1081,13 +1081,13 @@ msgstr "الوِجهة"
#: include/sfx2/strings.hrc:198
msgctxt "STR_REDACTION_LOAD_TARGETS"
msgid "Load Targets"
-msgstr "تحميل الوجهات"
+msgstr "حمّل الأهداف"
#. HgrwX
#: include/sfx2/strings.hrc:199
msgctxt "STR_REDACTION_SAVE_TARGETS"
msgid "Save Targets"
-msgstr "حفظ الوجهات"
+msgstr "احفظ الأهداف"
#. MYMTF
#: include/sfx2/strings.hrc:200
@@ -1099,7 +1099,7 @@ msgstr "كل الحقول مطلوبة"
#: include/sfx2/strings.hrc:201
msgctxt "STR_REDACTION_TARGET_NAME_CLASH"
msgid "There is already a target with this name"
-msgstr "توجد مسبقاً وِجهة بهذا الإسم"
+msgstr "يوجد مسبقاً هدف بهذا الإسم"
#. s248s
#: include/sfx2/strings.hrc:202
@@ -1123,13 +1123,13 @@ msgstr "مجموعة وجهة (*.json)"
#: include/sfx2/strings.hrc:205
msgctxt "STR_REDACTION_EDIT_TARGET"
msgid "Edit Target"
-msgstr "حرّر الوجهة"
+msgstr "حرّر الهدف"
#. ACY9D
#: include/sfx2/strings.hrc:206
msgctxt "STR_REDACTION_TARGET_ADD_ERROR"
msgid "An error occurred while adding new target. Please report this incident."
-msgstr "حصل خطأ أثناء إضافة وجهة جديدة. رجاءا أبلغ عن هذه الحادثة."
+msgstr "حصل خطأ أثناء إضافة هدف جديد. رجاءا أبلغ عن هذه الحادثة."
#. 6Jog7
#: include/sfx2/strings.hrc:207
@@ -1631,351 +1631,363 @@ msgstr "اعرض التواقيع"
#: include/sfx2/strings.hrc:290
msgctxt "STR_TRACK_CHANGES_BUTTON"
msgid "Show Toolbar"
-msgstr ""
+msgstr "أظهِر شريط الأدوات"
#. 68ZqS
#: include/sfx2/strings.hrc:291
msgctxt "STR_TRACK_CHANGES_BUTTON_HIDE"
msgid "Hide Toolbar"
-msgstr ""
+msgstr "أخفِ شريط الأدوات"
#. BzVAA
#: include/sfx2/strings.hrc:292
msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
+msgstr "إعرف المزيد"
+
+#. BSyb4
+#: include/sfx2/strings.hrc:293
+msgctxt "STR_REFRESH_MASTER_PASSWORD"
+msgid "The master password is stored in an outdated format, you should refresh it"
+msgstr ""
+
+#. ysChU
+#: include/sfx2/strings.hrc:294
+msgctxt "STR_REFRESH_PASSWORD"
+msgid "Refresh Password"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
-msgstr ""
+msgstr "أناقة رمادية"
#. FkuLG
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "خلية نحل"
#. uwaPH
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "منحنى أزرق"
#. hHRDz
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "خرائط أولية"
#. MAnPU
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "علكة"
#. jEiAn
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "فكرة صفراء"
#. QDNuB
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "الحمض النووي"
#. XBrCi
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "تركيز"
#. GADdA
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "طير الغابة"
#. TT8G5
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
-msgstr ""
+msgstr "نَضِرة"
#. C5N9D
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "إلهام"
#. fCKG9
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "أضواء"
#. pcLWs
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
-msgstr ""
+msgstr "تحرر متنامٍ"
#. xo2gC
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "الحاضرة"
#. FFDBk
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "أزرق ليلي"
#. yiCzk
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "عَرض طبيعة"
#. cCZzC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "قلم رصاص"
#. Ji4Cw
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "بيانو"
#. mrbiq
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "حقيبة عَرض"
#. ysBGy
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "تقدُّم"
#. gtPt9
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "الغروب"
#. 73Y2e
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "عتيق"
#. MSY8y
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "زاهي"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "سيرة ذاتية"
#. Koe3V
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "عاوِد"
#. hCpfD
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "المبدئيّ"
#. d7Hyk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "عصري"
#. CVJEC
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
-msgstr ""
+msgstr "خطاب عمل عصري بحروف غير مذيّلة"
#. 95GeB
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
-msgstr ""
+msgstr "خطاب عمل عصري بحروف مذيّلة"
#. XdU49
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "بطاقة أعمال فيها شعار"
#. UAmSj
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "بسيط"
#. W7NVH
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "دلالات ونموذج عمليات الأعمال"
#. ZaGGB
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:331
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "أزِل"
#. JReRY
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:332
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "امسح الكل"
#. yC8Gs
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:334
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "طول كلمة المرور"
#. FKFmJ
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:335
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-انقر لتفتح الارتباط التشعبي: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:338
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "انقر لتفتح الارتباط التشعبي: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:340
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:342
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "مستند"
#. XDGTb
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:345
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "المستخدمة مؤخرا"
#. EcAjb
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "لا محارف مستخدمة مؤخرا"
#. tfjbD
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:350
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
-msgstr ""
+msgstr "ا~ستورد"
#. 8Cwfk
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
-msgstr ""
+msgstr "امت~دادات"
#. idGvM
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "أعد التسمية"
#. EyjE3
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:357
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
-msgstr ""
+msgstr "أعدْ تسمية الصنف"
#. T79Eb
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
-msgstr ""
+msgstr "صنف جديد"
#. wH3TZ
msgctxt "stock"
@@ -2043,307 +2055,305 @@ msgid "_Yes"
msgstr "_نعم"
#. F5rSU
-#: sfx2/inc/dinfdlg.hrc:27
+#: sfx2/inc/dinfdlg.hrc:29
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Checked by"
msgstr "دَقّقه"
#. BCYGG
-#: sfx2/inc/dinfdlg.hrc:28
+#: sfx2/inc/dinfdlg.hrc:30
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Client"
msgstr "العميل"
#. nSrT3
-#: sfx2/inc/dinfdlg.hrc:29
+#: sfx2/inc/dinfdlg.hrc:31
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date completed"
msgstr "تاريخ الإكمال"
#. HEaEC
-#: sfx2/inc/dinfdlg.hrc:30
+#: sfx2/inc/dinfdlg.hrc:32
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Department"
msgstr "القسم"
#. TxAux
-#: sfx2/inc/dinfdlg.hrc:31
+#: sfx2/inc/dinfdlg.hrc:33
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Destinations"
msgstr "الوجهات"
#. f3nqh
-#: sfx2/inc/dinfdlg.hrc:32
+#: sfx2/inc/dinfdlg.hrc:34
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Disposition"
msgstr "الترتيب"
#. uznMD
-#: sfx2/inc/dinfdlg.hrc:33
+#: sfx2/inc/dinfdlg.hrc:35
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Division"
msgstr "القسم"
#. 6DuFF
-#: sfx2/inc/dinfdlg.hrc:34
+#: sfx2/inc/dinfdlg.hrc:36
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Document number"
msgstr "رقم المستند"
#. XXKuP
-#: sfx2/inc/dinfdlg.hrc:35
+#: sfx2/inc/dinfdlg.hrc:37
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Editor"
msgstr "المحرّر"
#. hRRmF
-#: sfx2/inc/dinfdlg.hrc:36
+#: sfx2/inc/dinfdlg.hrc:38
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Email"
msgstr "البريد الالكتروني"
#. xNvDx
-#: sfx2/inc/dinfdlg.hrc:37
+#: sfx2/inc/dinfdlg.hrc:39
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Forward to"
msgstr "إعادة توجيه إلى"
#. xwv85
-#: sfx2/inc/dinfdlg.hrc:38
+#: sfx2/inc/dinfdlg.hrc:40
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Group"
msgstr "تجميع"
#. u59Qp
-#: sfx2/inc/dinfdlg.hrc:39
+#: sfx2/inc/dinfdlg.hrc:41
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Info"
msgstr "معلومات"
#. Ltq9H
-#: sfx2/inc/dinfdlg.hrc:40
+#: sfx2/inc/dinfdlg.hrc:42
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Language"
msgstr "اللغة"
#. bv3HC
-#: sfx2/inc/dinfdlg.hrc:41
+#: sfx2/inc/dinfdlg.hrc:43
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Mailstop"
msgstr "توقف البريد"
#. AFGi2
-#: sfx2/inc/dinfdlg.hrc:42
+#: sfx2/inc/dinfdlg.hrc:44
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Matter"
msgstr "الموضوع"
#. wGAD6
-#: sfx2/inc/dinfdlg.hrc:43
+#: sfx2/inc/dinfdlg.hrc:45
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Office"
msgstr "مكتب"
#. ZqphY
-#: sfx2/inc/dinfdlg.hrc:44
+#: sfx2/inc/dinfdlg.hrc:46
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Owner"
msgstr "المالك"
#. mK8Th
-#: sfx2/inc/dinfdlg.hrc:45
+#: sfx2/inc/dinfdlg.hrc:47
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Project"
msgstr "مشروع"
#. zFeHt
-#: sfx2/inc/dinfdlg.hrc:46
+#: sfx2/inc/dinfdlg.hrc:48
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Publisher"
msgstr "الناشر"
#. pF2eJ
-#: sfx2/inc/dinfdlg.hrc:47
+#: sfx2/inc/dinfdlg.hrc:49
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Purpose"
msgstr "الهدف"
#. GTPFZ
-#: sfx2/inc/dinfdlg.hrc:48
+#: sfx2/inc/dinfdlg.hrc:50
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Received from"
msgstr "متلقاة من"
#. dvGyQ
-#: sfx2/inc/dinfdlg.hrc:49
+#: sfx2/inc/dinfdlg.hrc:51
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded by"
msgstr "قام بالتسجيل"
#. GjVXD
-#: sfx2/inc/dinfdlg.hrc:50
+#: sfx2/inc/dinfdlg.hrc:52
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded date"
msgstr "تاريخ التسجيل"
#. o5oXa
-#: sfx2/inc/dinfdlg.hrc:51
+#: sfx2/inc/dinfdlg.hrc:53
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Reference"
msgstr "المرجع"
#. ex26g
-#: sfx2/inc/dinfdlg.hrc:52
+#: sfx2/inc/dinfdlg.hrc:54
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Source"
msgstr "المصدر"
#. 4HSZB
-#: sfx2/inc/dinfdlg.hrc:53
+#: sfx2/inc/dinfdlg.hrc:55
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Status"
msgstr "الحالة"
#. U3RdC
-#: sfx2/inc/dinfdlg.hrc:54
+#: sfx2/inc/dinfdlg.hrc:56
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Telephone number"
msgstr "رقم الهاتف"
#. Geeuu
-#: sfx2/inc/dinfdlg.hrc:55
+#: sfx2/inc/dinfdlg.hrc:57
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Typist"
msgstr "الكاتب"
#. xxHtR
-#: sfx2/inc/dinfdlg.hrc:56
-#, fuzzy
+#: sfx2/inc/dinfdlg.hrc:58
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "URL"
-msgstr "عنوان URL"
+msgstr "رابط"
#. CxTQY
-#: sfx2/inc/dinfdlg.hrc:71
+#: sfx2/inc/dinfdlg.hrc:73
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Text"
msgstr "النص"
#. MMGFi
-#: sfx2/inc/dinfdlg.hrc:72
+#: sfx2/inc/dinfdlg.hrc:74
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "DateTime"
msgstr "التاريخ والوقت"
#. GvJMH
-#: sfx2/inc/dinfdlg.hrc:73
+#: sfx2/inc/dinfdlg.hrc:75
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date"
msgstr "البيانات"
#. GyrbX
-#: sfx2/inc/dinfdlg.hrc:74
+#: sfx2/inc/dinfdlg.hrc:76
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Duration"
msgstr "المدّة"
#. CxZ4Z
-#: sfx2/inc/dinfdlg.hrc:75
+#: sfx2/inc/dinfdlg.hrc:77
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Number"
msgstr "رقم"
#. CDgvL
-#: sfx2/inc/dinfdlg.hrc:76
-#, fuzzy
+#: sfx2/inc/dinfdlg.hrc:78
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Yes or no"
-msgstr "نعم أم لا"
+msgstr "نعم أو لا"
#. AxhLy
-#: sfx2/inc/doctempl.hrc:27
+#: sfx2/inc/doctempl.hrc:29
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "My Templates"
msgstr "قوالبي"
#. 5aNp8
-#: sfx2/inc/doctempl.hrc:28
+#: sfx2/inc/doctempl.hrc:30
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Styles"
msgstr "الطُرُز"
#. t5QK9
-#: sfx2/inc/doctempl.hrc:29
+#: sfx2/inc/doctempl.hrc:31
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Business Correspondence"
msgstr "مراسلات تجارية"
#. Y79e8
-#: sfx2/inc/doctempl.hrc:30
+#: sfx2/inc/doctempl.hrc:32
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Other Business Documents"
msgstr "مستندات تجارية أخرى"
#. 2RCC9
-#: sfx2/inc/doctempl.hrc:31
+#: sfx2/inc/doctempl.hrc:33
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Personal Correspondence and Documents"
msgstr "مراسلات ومستندات خاصة"
#. 6Dgiz
-#: sfx2/inc/doctempl.hrc:32
+#: sfx2/inc/doctempl.hrc:34
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Forms and Contracts"
msgstr "نماذج وعقود"
#. VCKTG
-#: sfx2/inc/doctempl.hrc:33
+#: sfx2/inc/doctempl.hrc:35
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Finances"
msgstr "مالية"
#. HmqGP
-#: sfx2/inc/doctempl.hrc:34
+#: sfx2/inc/doctempl.hrc:36
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Education"
msgstr "تعليم"
#. xopM8
-#: sfx2/inc/doctempl.hrc:35
+#: sfx2/inc/doctempl.hrc:37
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentation Backgrounds"
msgstr "خلفيات عروض تقديمية"
#. tSQLA
-#: sfx2/inc/doctempl.hrc:36
+#: sfx2/inc/doctempl.hrc:38
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentations"
msgstr "عروض تقديمية"
#. KuNzz
-#: sfx2/inc/doctempl.hrc:37
+#: sfx2/inc/doctempl.hrc:39
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Miscellaneous"
msgstr "منوعات"
#. SC4E5
-#: sfx2/inc/doctempl.hrc:38
+#: sfx2/inc/doctempl.hrc:40
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "اللصائق"
@@ -2352,61 +2362,61 @@ msgstr "اللصائق"
#: sfx2/source/devtools/DevToolsStrings.hrc:15
msgctxt "STR_TEXT_PORTION"
msgid "Text Portion %1"
-msgstr ""
+msgstr "جزء النص %1"
#. 5ZXbE
#: sfx2/source/devtools/DevToolsStrings.hrc:16
msgctxt "STR_PARAGRAPH"
msgid "Paragraph %1"
-msgstr ""
+msgstr "فقرة %1"
#. DJi4i
#: sfx2/source/devtools/DevToolsStrings.hrc:17
msgctxt "STR_SHAPE"
msgid "Shape %1"
-msgstr ""
+msgstr "شكل %1"
#. Ucjjh
#: sfx2/source/devtools/DevToolsStrings.hrc:18
msgctxt "STR_PAGE"
msgid "Page %1"
-msgstr ""
+msgstr "صفحة %1"
#. j9DL6
#: sfx2/source/devtools/DevToolsStrings.hrc:19
msgctxt "STR_SLIDE"
msgid "Slide %1"
-msgstr ""
+msgstr "شريحة %1"
#. YQqL8
#: sfx2/source/devtools/DevToolsStrings.hrc:20
msgctxt "STR_MASTER_SLIDE"
msgid "Master Slide %1"
-msgstr ""
+msgstr "شريحة رئيسة %1"
#. CEfNy
#: sfx2/source/devtools/DevToolsStrings.hrc:21
msgctxt "STR_SHEET"
msgid "Sheet %1"
-msgstr ""
+msgstr "ورقة %1"
#. BaABx
#: sfx2/source/devtools/DevToolsStrings.hrc:23
msgctxt "STR_SHAPES_NODE"
msgid "Shapes"
-msgstr ""
+msgstr "أشكال"
#. n4VWE
#: sfx2/source/devtools/DevToolsStrings.hrc:24
msgctxt "STR_CHARTS_ENTRY"
msgid "Charts"
-msgstr ""
+msgstr "رسوم بيانية"
#. 5GWcX
#: sfx2/source/devtools/DevToolsStrings.hrc:25
msgctxt "STR_PIVOT_TABLES_ENTRY"
msgid "Pivot Tables"
-msgstr ""
+msgstr "جداول محورية"
#. BBLBQ
#: sfx2/source/devtools/DevToolsStrings.hrc:26
@@ -2418,7 +2428,7 @@ msgstr "مستند"
#: sfx2/source/devtools/DevToolsStrings.hrc:27
msgctxt "STR_SHEETS_ENTRY"
msgid "Sheets"
-msgstr ""
+msgstr "أوراق"
#. RLwRi
#: sfx2/source/devtools/DevToolsStrings.hrc:28
@@ -2436,19 +2446,19 @@ msgstr "الشرائح"
#: sfx2/source/devtools/DevToolsStrings.hrc:30
msgctxt "STR_MASTER_SLIDES_ENTRY"
msgid "Master Slides"
-msgstr ""
+msgstr "شرائح رئيسة"
#. LRq2A
#: sfx2/source/devtools/DevToolsStrings.hrc:31
msgctxt "STR_PAGES_ENTRY"
msgid "Pages"
-msgstr ""
+msgstr "صفحات"
#. 946kV
#: sfx2/source/devtools/DevToolsStrings.hrc:32
msgctxt "STR_PARAGRAPHS_ENTRY"
msgid "Paragraphs"
-msgstr ""
+msgstr "فقرات"
#. JG2qz
#: sfx2/source/devtools/DevToolsStrings.hrc:33
@@ -2460,49 +2470,49 @@ msgstr ""
#: sfx2/source/devtools/DevToolsStrings.hrc:34
msgctxt "STR_FRAMES_ENTRY"
msgid "Frames"
-msgstr ""
+msgstr "إطارات"
#. ekGEm
#: sfx2/source/devtools/DevToolsStrings.hrc:35
msgctxt "STR_GRAPHIC_OBJECTS_ENTRY"
msgid "Graphic Objects"
-msgstr ""
+msgstr "كائنات رسومية"
#. cVWmY
#: sfx2/source/devtools/DevToolsStrings.hrc:36
msgctxt "STR_EMBEDDED_OBJECTS_ENTRY"
msgid "Embedded Objects"
-msgstr ""
+msgstr "كائنات مضمَّنة"
#. xfnkV
#: sfx2/source/devtools/DevToolsStrings.hrc:38
msgctxt "STR_ANY_VALUE_TRUE"
msgid "True"
-msgstr ""
+msgstr "صحيح"
#. 2WxdA
#: sfx2/source/devtools/DevToolsStrings.hrc:39
msgctxt "STR_ANY_VALUE_FALSE"
msgid "False"
-msgstr ""
+msgstr "خطأ"
#. RBC8w
#: sfx2/source/devtools/DevToolsStrings.hrc:40
msgctxt "STR_ANY_VALUE_NULL"
msgid "Null"
-msgstr ""
+msgstr "فارغ"
#. As494
#: sfx2/source/devtools/DevToolsStrings.hrc:41
msgctxt "STR_CLASS_UNKNOWN"
msgid "Unknown"
-msgstr ""
+msgstr "غير معروف"
#. gAY69
#: sfx2/source/devtools/DevToolsStrings.hrc:43
msgctxt "STR_METHOD_TYPE_OBJECT"
msgid "object"
-msgstr ""
+msgstr "كائن"
#. HFgBW
#: sfx2/source/devtools/DevToolsStrings.hrc:44
@@ -2826,13 +2836,13 @@ msgstr "وج_هات التنقيح"
#: sfx2/uiconfig/ui/autoredactdialog.ui:222
msgctxt "autoredactdialog|btnLoadTargets"
msgid "Load Targets"
-msgstr "حمّل الوجهات"
+msgstr "حمّل الأهداف"
#. tpbYA
#: sfx2/uiconfig/ui/autoredactdialog.ui:235
msgctxt "autoredactdialog|btnSaveTargets"
msgid "Save Targets"
-msgstr "احفظ الوجهات"
+msgstr "حمّل الأهداف"
#. TQg85
#: sfx2/uiconfig/ui/autoredactdialog.ui:261
@@ -2844,7 +2854,7 @@ msgstr "أضف وجهة"
#: sfx2/uiconfig/ui/autoredactdialog.ui:274
msgctxt "autoredactdialog|edit"
msgid "Edit Target"
-msgstr "حرّر الوجهة"
+msgstr "حرّر الهدف"
#. knEqb
#: sfx2/uiconfig/ui/autoredactdialog.ui:287
@@ -2872,10 +2882,9 @@ msgstr "العلامة:"
#. 3A3VL
#: sfx2/uiconfig/ui/bookmarkmenu.ui:12
-#, fuzzy
msgctxt "bookmarkmenu|display"
msgid "Display"
-msgstr "ا_عرض"
+msgstr "عَرض"
#. VDDCt
#: sfx2/uiconfig/ui/bookmarkmenu.ui:26
@@ -2973,7 +2982,7 @@ msgstr "أضف _خاصيّة"
#: sfx2/uiconfig/ui/custominfopage.ui:23
msgctxt "custominfopage|extended_tip|add"
msgid "Click to add a new row to the Properties list."
-msgstr ""
+msgstr "انقر لتضيف صفًا جديداً إلى قائمة الخصائص."
#. aB3bA
#: sfx2/uiconfig/ui/custominfopage.ui:42
@@ -3063,7 +3072,7 @@ msgstr "أدخِل تعليقات لتساعد في تعريف المستند."
#: sfx2/uiconfig/ui/descriptioninfopage.ui:150
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
-msgstr ""
+msgstr "يحوي معلومات وصفية عن المستند."
#. tC2rt
#: sfx2/uiconfig/ui/developmenttool.ui:116
@@ -3081,61 +3090,61 @@ msgstr "التحديد الحالي"
#: sfx2/uiconfig/ui/developmenttool.ui:128
msgctxt "developmenttool|dom_refresh_button-tooltip"
msgid "Refresh Document Model Tree View"
-msgstr ""
+msgstr "أعِد تحميل المعاينة الشجرية لنموذج المستند."
#. FD2yt
#: sfx2/uiconfig/ui/developmenttool.ui:129
msgctxt "developmenttool|dom_refresh_button"
msgid "Refresh"
-msgstr ""
+msgstr "أعِد التحميل"
#. qVgcX
#: sfx2/uiconfig/ui/developmenttool.ui:175
msgctxt "developmenttool|object"
msgid "Object"
-msgstr ""
+msgstr "كائن"
#. x6GLB
#: sfx2/uiconfig/ui/developmenttool.ui:223
msgctxt "developmenttool|tooltip-back"
msgid "Back"
-msgstr ""
+msgstr "رجوع"
#. SinPk
#: sfx2/uiconfig/ui/developmenttool.ui:224
msgctxt "developmenttool|back"
msgid "Back"
-msgstr ""
+msgstr "رجوع"
#. 4CBb3
#: sfx2/uiconfig/ui/developmenttool.ui:236
msgctxt "developmenttool|tooltip-inspect"
msgid "Inspect"
-msgstr ""
+msgstr "افحص"
#. vCciB
#: sfx2/uiconfig/ui/developmenttool.ui:237
msgctxt "developmenttool|inspect"
msgid "Inspect"
-msgstr ""
+msgstr "افحص"
#. nFMXe
#: sfx2/uiconfig/ui/developmenttool.ui:249
msgctxt "developmenttool|tooltip-refresh"
msgid "Refresh"
-msgstr ""
+msgstr "أعِد التحميل"
#. CFuvW
#: sfx2/uiconfig/ui/developmenttool.ui:250
msgctxt "developmenttool|refresh"
msgid "Refresh"
-msgstr ""
+msgstr "أعِد التحميل"
#. 6gFmn
#: sfx2/uiconfig/ui/developmenttool.ui:273
msgctxt "developmenttool|classname"
msgid "Class name:"
-msgstr ""
+msgstr "اسم الفئة:"
#. a9j7f
#: sfx2/uiconfig/ui/developmenttool.ui:338
@@ -3149,13 +3158,13 @@ msgstr "الاسم"
#: sfx2/uiconfig/ui/developmenttool.ui:358
msgctxt "developmenttool|interfaces"
msgid "Interfaces"
-msgstr ""
+msgstr "الواجهات"
#. iCdWe
#: sfx2/uiconfig/ui/developmenttool.ui:410
msgctxt "developmenttool|services"
msgid "Services"
-msgstr ""
+msgstr "الخدمات"
#. H7pYE
#: sfx2/uiconfig/ui/developmenttool.ui:460
@@ -3173,7 +3182,7 @@ msgstr "النوع"
#: sfx2/uiconfig/ui/developmenttool.ui:488
msgctxt "developmenttool|info"
msgid "Info"
-msgstr ""
+msgstr "معلومات"
#. AUktw
#: sfx2/uiconfig/ui/developmenttool.ui:539
@@ -3185,37 +3194,37 @@ msgstr "الخصائص"
#: sfx2/uiconfig/ui/developmenttool.ui:569
msgctxt "developmenttool|method"
msgid "Method"
-msgstr ""
+msgstr "الطريقة"
#. EnGfg
#: sfx2/uiconfig/ui/developmenttool.ui:584
msgctxt "developmenttool|returntype"
msgid "Return Type"
-msgstr ""
+msgstr "نوع الإرجاع"
#. AKnSa
#: sfx2/uiconfig/ui/developmenttool.ui:598
msgctxt "developmenttool|parameters"
msgid "Parameters"
-msgstr ""
+msgstr "المتغيرات الوسيطة"
#. tmttq
#: sfx2/uiconfig/ui/developmenttool.ui:612
msgctxt "developmenttool|implementation_class"
msgid "Implementation Class"
-msgstr ""
+msgstr "فئة التنفيذ"
#. Q2CBK
#: sfx2/uiconfig/ui/developmenttool.ui:634
msgctxt "developmenttool|methods"
msgid "Methods"
-msgstr ""
+msgstr "الطُرُق"
#. 68CBk
#: sfx2/uiconfig/ui/devtoolsmenu.ui:12
msgctxt "devtoolsmenu|inspect"
msgid "Inspect"
-msgstr ""
+msgstr "افحص"
#. zjFgn
#: sfx2/uiconfig/ui/documentfontspage.ui:28
@@ -3227,37 +3236,37 @@ msgstr "_ضمّن الخطوط في المستند"
#: sfx2/uiconfig/ui/documentfontspage.ui:36
msgctxt "documentfontspage|extended_tip|embedFonts"
msgid "Mark this box to embed document fonts into the document file, for portability between different computer systems."
-msgstr ""
+msgstr "أشّر هذا المربع لتضمّن خطوط المستند في ملف المستند، ليمكن مناقلتها بين أنظمة حاسوب مختلفة."
#. 6rfon
#: sfx2/uiconfig/ui/documentfontspage.ui:48
msgctxt "documentfontspage|embedUsedFonts"
msgid "_Only embed fonts that are used in documents"
-msgstr ""
+msgstr "ضمّن فق_ط الخطوط المستخدمة في المستند."
#. V8E5f
#: sfx2/uiconfig/ui/documentfontspage.ui:67
msgctxt "documentfontspage|fontEmbeddingLabel"
msgid "Font Embedding"
-msgstr ""
+msgstr "تضمين الخط"
#. Gip6V
#: sfx2/uiconfig/ui/documentfontspage.ui:95
msgctxt "documentfontspage|embedLatinScriptFonts"
msgid "_Latin fonts"
-msgstr ""
+msgstr "خطوط _لاتينية"
#. nFM92
#: sfx2/uiconfig/ui/documentfontspage.ui:110
msgctxt "documentfontspage|embedAsianScriptFonts"
msgid "_Asian fonts"
-msgstr ""
+msgstr "خطوط آ_سيوية"
#. nSg9b
#: sfx2/uiconfig/ui/documentfontspage.ui:125
msgctxt "documentfontspage|embedComplexScriptFonts"
msgid "_Complex fonts"
-msgstr ""
+msgstr "خطوط م_ركّبة"
#. EFytK
#: sfx2/uiconfig/ui/documentfontspage.ui:144
@@ -3269,7 +3278,7 @@ msgstr ""
#: sfx2/uiconfig/ui/documentfontspage.ui:158
msgctxt "documentfontspage|extended_tip|DocumentFontsPage"
msgid "Embed document fonts in the current file."
-msgstr ""
+msgstr "ضمّن خطوط المستند في الملف الحالي."
#. CCxGn
#: sfx2/uiconfig/ui/documentinfopage.ui:19
@@ -3323,7 +3332,7 @@ msgstr "ت_طبيق بيانات المستخدم"
#: sfx2/uiconfig/ui/documentinfopage.ui:191
msgctxt "documentinfopage|extended_tip|userdatacb"
msgid "Saves the user's full name with the file. You can edit the name by choosing Tools - Options - User Data."
-msgstr ""
+msgstr "يحفظ الاسم الكامل للمستخدم مع الملف. يمكنك تحرير الاسم باختيار أدوات - خيارات - بيانات المستخدم."
#. JFxmP
#: sfx2/uiconfig/ui/documentinfopage.ui:202
@@ -3581,7 +3590,7 @@ msgstr "فهرس"
#: sfx2/uiconfig/ui/helpcontrol.ui:176
msgctxt "helpcontrol|find"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. 7fapN
#: sfx2/uiconfig/ui/helpcontrol.ui:226
@@ -3659,7 +3668,7 @@ msgstr "_كلمات كاملة فقط"
#: sfx2/uiconfig/ui/helpsearchpage.ui:155
msgctxt "helpsearchpage|headings"
msgid "Find in _headings only"
-msgstr "ابحث في ال_ترويسات فقط"
+msgstr "جِد في خطوط ال_عناوين فقط"
#. JDZho
#: sfx2/uiconfig/ui/helpwindow.ui:69
@@ -3791,7 +3800,7 @@ msgstr "المل_فّ:"
#: sfx2/uiconfig/ui/linkeditdialog.ui:130
msgctxt "linkeditdialog|label4"
msgid "_Category:"
-msgstr "ال_فئة:"
+msgstr "الصن_ف:"
#. AzB2M
#: sfx2/uiconfig/ui/linkeditdialog.ui:148
@@ -3809,7 +3818,7 @@ msgstr ""
#: sfx2/uiconfig/ui/linkeditdialog.ui:184
msgctxt "linkeditdialog|extended_tip|category"
msgid "Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here."
-msgstr ""
+msgstr "يسرد القسم أو الكائن الذي تريد أن يشير إليه الرابط في ملف المصدر. إذا رغبت، يمكنك أن تُدخِل قسمًا أو كائنًا جديداً هنا."
#. hiapi
#: sfx2/uiconfig/ui/linkeditdialog.ui:199
@@ -3863,7 +3872,7 @@ msgstr "يسرد القوالب المتاحة للصنف المحدد."
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:241
msgctxt "loadtemplatedialog|label2"
msgid "Templates"
-msgstr "القوالب"
+msgstr "قوالب"
#. LAAM3
#: sfx2/uiconfig/ui/loadtemplatedialog.ui:245
@@ -4007,7 +4016,7 @@ msgstr "ورّث من:"
#: sfx2/uiconfig/ui/managestylepage.ui:75
msgctxt "managestylepage|categoryft"
msgid "_Category:"
-msgstr "ال_فئة:"
+msgstr "الصن_ف:"
#. MMhJQ
#: sfx2/uiconfig/ui/managestylepage.ui:99
@@ -4145,7 +4154,7 @@ msgstr ""
#: sfx2/uiconfig/ui/optprintpage.ui:170
msgctxt "optprintpage|label2"
msgid "Warnings"
-msgstr ""
+msgstr "التحذيرات"
#. PJFLE
#: sfx2/uiconfig/ui/optprintpage.ui:198
@@ -4193,7 +4202,7 @@ msgstr ""
#: sfx2/uiconfig/ui/optprintpage.ui:304
msgctxt "optprintpage|label1"
msgid "Reduce Gradient"
-msgstr ""
+msgstr "قلل التدرّج"
#. abbre
#: sfx2/uiconfig/ui/optprintpage.ui:312
@@ -4295,7 +4304,7 @@ msgstr ""
#: sfx2/uiconfig/ui/optprintpage.ui:468
msgctxt "optprintpage|label1"
msgid "Reduce Bitmaps"
-msgstr ""
+msgstr "قلل الصور النقطية"
#. 5qQBR
#: sfx2/uiconfig/ui/optprintpage.ui:496
@@ -4325,7 +4334,7 @@ msgstr ""
#: sfx2/uiconfig/ui/optprintpage.ui:542
msgctxt "optprintpage|reducetransnone"
msgid "_No transparency"
-msgstr "لا _شفافية"
+msgstr "_بِلا شفافية"
#. ZuLVY
#: sfx2/uiconfig/ui/optprintpage.ui:551
@@ -4493,13 +4502,13 @@ msgstr "ستضيع تغييراتك إن لم تحفظها."
#: sfx2/uiconfig/ui/querysavedialog.ui:25
msgctxt "querysavedialog|discard"
msgid "Do_n’t Save"
-msgstr ""
+msgstr "_لا تحفظ"
#. dzVqL
#: sfx2/uiconfig/ui/querysavedialog.ui:56
msgctxt "querysavedialog|save"
msgid "_Save"
-msgstr ""
+msgstr "ا_حفظ"
#. 6WbvE
#: sfx2/uiconfig/ui/safemodequerydialog.ui:7
@@ -4529,7 +4538,7 @@ msgstr "احفظ كقالب"
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:102
msgctxt "saveastemplatedlg|create_label"
msgid "Enter Template _Name:"
-msgstr ""
+msgstr "أدخل ا_سم القالب:"
#. NyFdH
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:103
@@ -4547,19 +4556,19 @@ msgstr "أدخل إسمًا للقالب."
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:154
msgctxt "saveastemplatedlg|select_label"
msgid "Select Template _Category:"
-msgstr ""
+msgstr "حدد ص_نف القالب:"
#. 4ANkg
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:155
msgctxt "saveastemplatedlg|select_label"
msgid "Save template in selected category."
-msgstr ""
+msgstr "احفظ القالب في الصنف المحدد."
#. JBPKb
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:203
msgctxt "saveastemplatedlg|extended_tip|categorylb"
msgid "Select a category in which to save the new template."
-msgstr ""
+msgstr "حدد صنفًا لتحفظ فيه القالب الجديد."
#. wpZGc
#: sfx2/uiconfig/ui/saveastemplatedlg.ui:223
@@ -4847,7 +4856,7 @@ msgstr "احذف..."
#: sfx2/uiconfig/ui/tabbarcontents.ui:24
msgctxt "tabbar|locktaskpanel"
msgid "Dock"
-msgstr ""
+msgstr "أرسِ"
#. GNBR3
#: sfx2/uiconfig/ui/tabbarcontents.ui:33
@@ -4889,25 +4898,25 @@ msgstr "حدد صنفًا"
#: sfx2/uiconfig/ui/templatecategorydlg.ui:108
msgctxt "templatecategorydlg|select_label"
msgid "Select from Existing Category"
-msgstr "اختر من فئة موجودة"
+msgstr "حدد من صنف موجود"
#. 7eShP
#: sfx2/uiconfig/ui/templatecategorydlg.ui:178
msgctxt "templatecategorydlg|create_label"
msgid "or Create a New Category"
-msgstr "أو أنشئ فئة جديدة"
+msgstr "أو أنشئ صنفًا جديداً"
#. eUWTy
#: sfx2/uiconfig/ui/templatedlg.ui:46
msgctxt "templatedlg|TemplateDialog"
msgid "Templates"
-msgstr "القوالب"
+msgstr "قوالب"
#. rhuYP
#: sfx2/uiconfig/ui/templatedlg.ui:77
msgctxt "templatedlg|hidedialogcb"
msgid "Show this dialog at startup"
-msgstr "أظهر هذا الحواري عند البدء"
+msgstr "أظهر هذا الحوار عند البدء"
#. 32zsB
#: sfx2/uiconfig/ui/templatedlg.ui:144
@@ -4925,19 +4934,19 @@ msgstr "ابحث..."
#: sfx2/uiconfig/ui/templatedlg.ui:167
msgctxt "templatedlg|action_menu|label"
msgid "_Manage"
-msgstr ""
+msgstr "أ_دِر"
#. LUs2m
#: sfx2/uiconfig/ui/templatedlg.ui:181
msgctxt "templatedlg|extended_tip|action_menu"
msgid "Provides commands to create, rename and delete categories, reset default templates, and refresh the template manager."
-msgstr ""
+msgstr "يوفّر أوامر لإنشاء وإعادة تسمية وحذف الأصناف وتصفير القوالب المبدئية وإعادة تحميل مدير القوالب."
#. fXVNY
#: sfx2/uiconfig/ui/templatedlg.ui:208
msgctxt "templatedlg|filter_application|tooltip_text"
msgid "Filter by Application"
-msgstr "رشّح بالتطبيق"
+msgstr "رشّح بحسب التطبيق"
#. tqVhJ
#: sfx2/uiconfig/ui/templatedlg.ui:210
@@ -4973,7 +4982,7 @@ msgstr "الرسومات"
#: sfx2/uiconfig/ui/templatedlg.ui:228
msgctxt "templatedlg|filter_folder|tooltip_text"
msgid "Filter by Category"
-msgstr "رشّح بالفئة"
+msgstr "رشّح حسب الصنف"
#. 93CGw
#: sfx2/uiconfig/ui/templatedlg.ui:230
@@ -5129,7 +5138,7 @@ msgstr "حفظه"
#: sfx2/uiconfig/ui/versionscmis.ui:203
msgctxt "versionscmis|comments"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. c2cVg
#: sfx2/uiconfig/ui/versionscmis.ui:226
@@ -5232,7 +5241,7 @@ msgstr "حفظه"
#: sfx2/uiconfig/ui/versionsofdialog.ui:304
msgctxt "versionsofdialog|comments"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. GLD85
#: sfx2/uiconfig/ui/versionsofdialog.ui:315
diff --git a/source/ar/shell/messages.po b/source/ar/shell/messages.po
index 9d049a55f62..70e2a52150d 100644
--- a/source/ar/shell/messages.po
+++ b/source/ar/shell/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2022-02-06 08:57+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/shellmessages/ar/>\n"
"Language: ar\n"
@@ -41,7 +41,7 @@ msgstr ""
#: shell/inc/spsupp/spsuppStrings.hrc:17
msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. Cj6ae
#: shell/inc/spsupp/spsuppStrings.hrc:18
diff --git a/source/ar/shell/source/win32/shlxthandler/res.po b/source/ar/shell/source/win32/shlxthandler/res.po
index 8ebc5fb879b..4bc63502da7 100644
--- a/source/ar/shell/source/win32/shlxthandler/res.po
+++ b/source/ar/shell/source/win32/shlxthandler/res.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-01-04 15:38+0000\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/shellsourcewin32shlxthandlerres/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: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1436455519.000000\n"
#. nMHZG
@@ -113,7 +113,7 @@ msgctxt ""
"%PAGES%\n"
"LngText.text"
msgid "Pages"
-msgstr "الصفحات"
+msgstr "صفحات"
#. vhAWA
#: shlxthdl.ulf
@@ -131,7 +131,7 @@ msgctxt ""
"%GRAPHICS%\n"
"LngText.text"
msgid "Images"
-msgstr "الصّور"
+msgstr "صور"
#. WePDJ
#: shlxthdl.ulf
@@ -185,7 +185,7 @@ msgctxt ""
"%ROWS%\n"
"LngText.text"
msgid "Lines"
-msgstr "أسطر"
+msgstr "خطوط"
#. UhaXY
#: shlxthdl.ulf
diff --git a/source/ar/starmath/messages.po b/source/ar/starmath/messages.po
index 67c3e71a818..b09945c07eb 100644
--- a/source/ar/starmath/messages.po
+++ b/source/ar/starmath/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:12+0200\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/ar/>\n"
"Language: ar\n"
@@ -13,413 +13,413 @@ 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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1525785875.000000\n"
#. GrDhX
-#: starmath/inc/smmod.hrc:16
+#: starmath/inc/smmod.hrc:18
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Greek"
msgstr "اليونانية"
#. bApbv
-#: starmath/inc/smmod.hrc:17
+#: starmath/inc/smmod.hrc:19
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Special"
msgstr "خاص"
#. aXhLc
-#: starmath/inc/smmod.hrc:22
+#: starmath/inc/smmod.hrc:24
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "alpha"
msgstr "ألفا"
#. rhVhw
-#: starmath/inc/smmod.hrc:23
+#: starmath/inc/smmod.hrc:25
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ALPHA"
msgstr "ألفا_ك"
#. U3CqD
-#: starmath/inc/smmod.hrc:24
+#: starmath/inc/smmod.hrc:26
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "beta"
msgstr "بيتا"
#. pEoCL
-#: starmath/inc/smmod.hrc:25
+#: starmath/inc/smmod.hrc:27
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "BETA"
msgstr "بيتا_ك"
#. D2jkQ
-#: starmath/inc/smmod.hrc:26
+#: starmath/inc/smmod.hrc:28
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "gamma"
msgstr "جاما"
#. 4Cw8A
-#: starmath/inc/smmod.hrc:27
+#: starmath/inc/smmod.hrc:29
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "GAMMA"
msgstr "جاما_ك"
#. uMmke
-#: starmath/inc/smmod.hrc:28
+#: starmath/inc/smmod.hrc:30
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "delta"
msgstr "دلتا"
#. dBy8u
-#: starmath/inc/smmod.hrc:29
+#: starmath/inc/smmod.hrc:31
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "DELTA"
msgstr "دلتا_ك"
#. CrJqB
-#: starmath/inc/smmod.hrc:30
+#: starmath/inc/smmod.hrc:32
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "epsilon"
msgstr "إبسلون"
#. jSZ7F
-#: starmath/inc/smmod.hrc:31
+#: starmath/inc/smmod.hrc:33
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "EPSILON"
msgstr "إبسلون_ك"
#. kRvNs
-#: starmath/inc/smmod.hrc:32
+#: starmath/inc/smmod.hrc:34
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "zeta"
msgstr "زيتا"
#. YA3sh
-#: starmath/inc/smmod.hrc:33
+#: starmath/inc/smmod.hrc:35
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ZETA"
msgstr "زيتا_ك"
#. kEWFU
-#: starmath/inc/smmod.hrc:34
+#: starmath/inc/smmod.hrc:36
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "eta"
msgstr "إيتا"
#. r8ivE
-#: starmath/inc/smmod.hrc:35
+#: starmath/inc/smmod.hrc:37
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ETA"
msgstr "إيتا_ك"
#. CaW5B
-#: starmath/inc/smmod.hrc:36
+#: starmath/inc/smmod.hrc:38
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "theta"
msgstr "ثيتا"
#. MUaj7
-#: starmath/inc/smmod.hrc:37
+#: starmath/inc/smmod.hrc:39
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "THETA"
msgstr "ثيتا_ك"
#. FAdCp
-#: starmath/inc/smmod.hrc:38
+#: starmath/inc/smmod.hrc:40
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "iota"
msgstr "أوتا"
#. 2RFqS
-#: starmath/inc/smmod.hrc:39
+#: starmath/inc/smmod.hrc:41
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "IOTA"
msgstr "أوتا_ك"
#. E6LBi
-#: starmath/inc/smmod.hrc:40
+#: starmath/inc/smmod.hrc:42
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "kappa"
msgstr "كيبا"
#. PGGyZ
-#: starmath/inc/smmod.hrc:41
+#: starmath/inc/smmod.hrc:43
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "KAPPA"
msgstr "كيبا_ك"
#. QhGid
-#: starmath/inc/smmod.hrc:42
+#: starmath/inc/smmod.hrc:44
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "lambda"
msgstr "لامدا"
#. JBLgu
-#: starmath/inc/smmod.hrc:43
+#: starmath/inc/smmod.hrc:45
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "LAMBDA"
msgstr "لامدا_ك"
#. AkyEU
-#: starmath/inc/smmod.hrc:44
+#: starmath/inc/smmod.hrc:46
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "mu"
msgstr "مو"
#. t4RFD
-#: starmath/inc/smmod.hrc:45
+#: starmath/inc/smmod.hrc:47
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "MU"
msgstr "مو_ك"
#. DwBRA
-#: starmath/inc/smmod.hrc:46
+#: starmath/inc/smmod.hrc:48
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "nu"
msgstr "نو"
#. sDc6Z
-#: starmath/inc/smmod.hrc:47
+#: starmath/inc/smmod.hrc:49
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "NU"
msgstr "نو_ك"
#. dMns2
-#: starmath/inc/smmod.hrc:48
+#: starmath/inc/smmod.hrc:50
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "xi"
msgstr "زاي"
#. 2cEVh
-#: starmath/inc/smmod.hrc:49
+#: starmath/inc/smmod.hrc:51
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "XI"
msgstr "زاي_ك"
#. PWUDK
-#: starmath/inc/smmod.hrc:50
+#: starmath/inc/smmod.hrc:52
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omicron"
msgstr "أوميكرون"
#. ZvPw7
-#: starmath/inc/smmod.hrc:51
+#: starmath/inc/smmod.hrc:53
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMICRON"
msgstr "أوميكرون_ك"
#. VmDhA
-#: starmath/inc/smmod.hrc:52
+#: starmath/inc/smmod.hrc:54
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "pi"
msgstr "باي"
#. A3eoZ
-#: starmath/inc/smmod.hrc:53
+#: starmath/inc/smmod.hrc:55
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PI"
msgstr "باي_ك"
#. Pu9vL
-#: starmath/inc/smmod.hrc:54
+#: starmath/inc/smmod.hrc:56
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "rho"
msgstr "رو"
#. HjNFe
-#: starmath/inc/smmod.hrc:55
+#: starmath/inc/smmod.hrc:57
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "RHO"
msgstr "رو_ك"
#. 9Aa3V
-#: starmath/inc/smmod.hrc:56
+#: starmath/inc/smmod.hrc:58
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "sigma"
msgstr "سيجما"
#. JLWqn
-#: starmath/inc/smmod.hrc:57
+#: starmath/inc/smmod.hrc:59
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "SIGMA"
msgstr "سيجما_ك"
#. NTuqk
-#: starmath/inc/smmod.hrc:58
+#: starmath/inc/smmod.hrc:60
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tau"
msgstr "تاو"
#. GdhQ5
-#: starmath/inc/smmod.hrc:59
+#: starmath/inc/smmod.hrc:61
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "TAU"
msgstr "تاو_ك"
#. 6djSp
-#: starmath/inc/smmod.hrc:60
+#: starmath/inc/smmod.hrc:62
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "upsilon"
msgstr "أبسيلون"
#. ymFBb
-#: starmath/inc/smmod.hrc:61
+#: starmath/inc/smmod.hrc:63
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "UPSILON"
msgstr "أبسيلون_ك"
#. YxRXi
-#: starmath/inc/smmod.hrc:62
+#: starmath/inc/smmod.hrc:64
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "phi"
msgstr "فاي"
#. enCD7
-#: starmath/inc/smmod.hrc:63
+#: starmath/inc/smmod.hrc:65
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PHI"
msgstr "فاي_ك"
#. GcQPF
-#: starmath/inc/smmod.hrc:64
+#: starmath/inc/smmod.hrc:66
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "chi"
msgstr "خاي"
#. 6SBnr
-#: starmath/inc/smmod.hrc:65
+#: starmath/inc/smmod.hrc:67
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "CHI"
msgstr "خاي_ك"
#. NAmaK
-#: starmath/inc/smmod.hrc:66
+#: starmath/inc/smmod.hrc:68
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "psi"
msgstr "بسي"
#. GLZ2h
-#: starmath/inc/smmod.hrc:67
+#: starmath/inc/smmod.hrc:69
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PSI"
msgstr "بسي_ك"
#. JEF5A
-#: starmath/inc/smmod.hrc:68
+#: starmath/inc/smmod.hrc:70
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omega"
msgstr "أوميغا"
#. 9QKj8
-#: starmath/inc/smmod.hrc:69
+#: starmath/inc/smmod.hrc:71
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMEGA"
msgstr "أوميغا_ك"
#. YQGDY
-#: starmath/inc/smmod.hrc:70
+#: starmath/inc/smmod.hrc:72
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varepsilon"
msgstr "varepsilon"
#. VLAFM
-#: starmath/inc/smmod.hrc:71
+#: starmath/inc/smmod.hrc:73
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "vartheta"
msgstr "vartheta"
#. UJB26
-#: starmath/inc/smmod.hrc:72
+#: starmath/inc/smmod.hrc:74
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varpi"
msgstr "varpi"
#. BCNqp
-#: starmath/inc/smmod.hrc:73
+#: starmath/inc/smmod.hrc:75
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varrho"
msgstr "varrho"
#. SUNDb
-#: starmath/inc/smmod.hrc:74
+#: starmath/inc/smmod.hrc:76
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varsigma"
msgstr "varsigma"
#. cHCgN
-#: starmath/inc/smmod.hrc:75
+#: starmath/inc/smmod.hrc:77
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varphi"
msgstr "varphi"
#. c9n9F
-#: starmath/inc/smmod.hrc:76
+#: starmath/inc/smmod.hrc:78
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "element"
msgstr "عنصر"
#. yXYWE
-#: starmath/inc/smmod.hrc:77
+#: starmath/inc/smmod.hrc:79
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "noelement"
msgstr "noelement"
#. nDkSp
-#: starmath/inc/smmod.hrc:78
+#: starmath/inc/smmod.hrc:80
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlylessthan"
msgstr "strictlylessthan"
#. 9AZxy
-#: starmath/inc/smmod.hrc:79
+#: starmath/inc/smmod.hrc:81
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlygreaterthan"
msgstr "strictlygreaterthan"
#. 4F3qH
-#: starmath/inc/smmod.hrc:80
+#: starmath/inc/smmod.hrc:82
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "notequal"
msgstr "notequal"
#. 6UYC3
-#: starmath/inc/smmod.hrc:81
+#: starmath/inc/smmod.hrc:83
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "identical"
msgstr "مماثل"
#. 38B2B
-#: starmath/inc/smmod.hrc:82
+#: starmath/inc/smmod.hrc:84
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tendto"
msgstr "tendto"
#. kDCC4
-#: starmath/inc/smmod.hrc:83
+#: starmath/inc/smmod.hrc:85
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "infinite"
msgstr "لانهائي"
#. CnJUL
-#: starmath/inc/smmod.hrc:84
+#: starmath/inc/smmod.hrc:86
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "angle"
msgstr "زاوية"
#. MVfFZ
-#: starmath/inc/smmod.hrc:85
+#: starmath/inc/smmod.hrc:87
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "perthousand"
msgstr "perthousand"
#. tqFYX
-#: starmath/inc/smmod.hrc:86
+#: starmath/inc/smmod.hrc:88
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "and"
msgstr "و"
#. jFASF
-#: starmath/inc/smmod.hrc:87
+#: starmath/inc/smmod.hrc:89
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "or"
msgstr "أو"
@@ -770,7 +770,7 @@ msgstr "اتحاد"
#: starmath/inc/strings.hrc:78
msgctxt "RID_XINTERSECTIONY_HELP"
msgid "Intersection"
-msgstr "التقاطع"
+msgstr "تقاطع"
#. HiSD3
#: starmath/inc/strings.hrc:79
@@ -1429,7 +1429,7 @@ msgstr "شفاف"
#: starmath/inc/strings.hrc:186
msgctxt "RID_BOLDX_HELP"
msgid "Bold Font"
-msgstr "خط عريض"
+msgstr "خط ثخين"
#. 9HXmb
#: starmath/inc/strings.hrc:187
@@ -1869,7 +1869,7 @@ msgstr "محاذاة إلى اليسار"
#: starmath/inc/strings.hrc:259
msgctxt "RID_ALIGNCX_HELP"
msgid "Align Center"
-msgstr "محاذاة إلى الوسط"
+msgstr "حاذِ إلى الوسط"
#. RTRN9
#: starmath/inc/strings.hrc:260
@@ -2212,7 +2212,7 @@ msgstr "الأقواس"
#: starmath/inc/strings.hrc:316
msgctxt "RID_CATEGORY_FORMATS"
msgid "Formats"
-msgstr "تنسيقات"
+msgstr "الأنساق"
#. Yif8p
#: starmath/inc/strings.hrc:317
@@ -2314,7 +2314,7 @@ msgstr "مائل"
#: starmath/inc/strings.hrc:335
msgctxt "RID_FONTBOLD"
msgid "Bold"
-msgstr "عريض"
+msgstr "ثخين"
#. urCxA
#: starmath/inc/strings.hrc:336
@@ -2608,7 +2608,7 @@ msgstr ""
#: starmath/inc/strings.hrc:384
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
-msgstr ""
+msgstr "المتوقع ’ثابت‘ أو ’غير مذيّل‘ أو ’مذيّل‘"
#. jGZdh
#: starmath/inc/strings.hrc:385
@@ -2740,13 +2740,13 @@ msgstr ""
#: starmath/uiconfig/smath/ui/alignmentdialog.ui:134
msgctxt "alignmentdialog|center"
msgid "_Centered"
-msgstr "_توسيط"
+msgstr "_موسَّط"
#. Cppmw
#: starmath/uiconfig/smath/ui/alignmentdialog.ui:143
msgctxt "alignmentdialog|extended_tip|center"
msgid "Aligns the elements of a formula to the center."
-msgstr ""
+msgstr "يحاذي عناصر الصيغة إلى الوسط."
#. 5TgYZ
#: starmath/uiconfig/smath/ui/alignmentdialog.ui:155
@@ -2818,7 +2818,7 @@ msgstr ""
#: starmath/uiconfig/smath/ui/catalogdialog.ui:142
msgctxt "catalogdialog|symbolname"
msgid "Unknown"
-msgstr "مجهول"
+msgstr "غير معروف"
#. znrh2
#: starmath/uiconfig/smath/ui/catalogdialog.ui:205
@@ -2860,13 +2860,13 @@ msgstr "الخط"
#: starmath/uiconfig/smath/ui/fontdialog.ui:203
msgctxt "fontdialog|bold"
msgid "_Bold"
-msgstr "_عريض"
+msgstr "_ثخين"
#. XACty
#: starmath/uiconfig/smath/ui/fontdialog.ui:211
msgctxt "fontdialog|extended_tip|bold"
msgid "Check this box to assign the bold attribute to the font."
-msgstr ""
+msgstr "أشّر هذا المربع لتُسند خاصية الثخين إلى الخط."
#. mBw2w
#: starmath/uiconfig/smath/ui/fontdialog.ui:222
@@ -3142,13 +3142,13 @@ msgstr "_ثابت العرض:"
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:429
msgctxt "fonttypedialog|extended_tip|serifCB"
msgid "You can specify the font to be used as serif font."
-msgstr ""
+msgstr "يمكنك تحديد خط ليُستخدَم كخط بحروف مذيَلة."
#. mD8Qp
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:445
msgctxt "fonttypedialog|extended_tip|sansCB"
msgid "You can specify the font to be used for sans serif font."
-msgstr ""
+msgstr "يمكنك تحديد خط ليُستخدَم كخط بحروف غير مذيَلة."
#. BUA9M
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:461
@@ -3491,7 +3491,7 @@ msgstr "ال_مبدئيّ"
#: starmath/uiconfig/smath/ui/spacingdialog.ui:159
msgctxt "spacingdialog|category"
msgid "_Category"
-msgstr "ال_فئة"
+msgstr "الصن_ف"
#. 8prDU
#: starmath/uiconfig/smath/ui/spacingdialog.ui:375
diff --git a/source/ar/svl/messages.po b/source/ar/svl/messages.po
index 51094dcf2be..784b6d99a59 100644
--- a/source/ar/svl/messages.po
+++ b/source/ar/svl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:20+0100\n"
-"PO-Revision-Date: 2021-03-06 20:36+0000\n"
+"PO-Revision-Date: 2022-03-12 17:25+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svlmessages/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: 1519741483.000000\n"
#. PDMJD
@@ -34,25 +34,25 @@ msgstr "تصفّح..."
#: include/svl/svl.hrc:30
msgctxt "GRTSTR_PASSED"
msgid "PASSED"
-msgstr ""
+msgstr "ناجح"
#. CreDg
#: include/svl/svl.hrc:31
msgctxt "GRTSTR_QUIRKY"
msgid "QUIRKY"
-msgstr ""
+msgstr "زائغ"
#. DAmDx
#: include/svl/svl.hrc:32
msgctxt "GRTSTR_FAILED"
msgid "FAILED"
-msgstr ""
+msgstr "مخفق"
#. kR2Uu
#: include/svl/svl.hrc:33
msgctxt "GRTSTR_SKIPPED"
msgid "SKIPPED"
-msgstr ""
+msgstr "مُتخطّاة"
#. wH3TZ
msgctxt "stock"
diff --git a/source/ar/svtools/messages.po b/source/ar/svtools/messages.po
index 9fd77c1258f..9d0770d9e1e 100644
--- a/source/ar/svtools/messages.po
+++ b/source/ar/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: 2022-01-31 18:20+0100\n"
-"PO-Revision-Date: 2022-02-19 13:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195198.000000\n"
#. fLdeV
@@ -675,13 +675,13 @@ msgstr "مائل"
#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
-msgstr "عريض"
+msgstr "ثخين"
#. cbXrP
#: include/svtools/strings.hrc:157
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
-msgstr "عريض مائل"
+msgstr "ثخين مائل"
#. yHZD2
#: include/svtools/strings.hrc:158
@@ -705,7 +705,7 @@ msgstr "الكتاب"
#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
-msgstr ""
+msgstr "مائل ثخين"
#. QUBiF
#: include/svtools/strings.hrc:162
@@ -718,19 +718,19 @@ msgstr "مكثف"
#: include/svtools/strings.hrc:163
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
-msgstr ""
+msgstr "ثخين متراصّ"
#. Guayv
#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
-msgstr ""
+msgstr "مائل ثخين متراصّ"
#. AoubP
#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
-msgstr ""
+msgstr "مائل ثخين متراصّ"
#. bpDXQ
#: include/svtools/strings.hrc:166
@@ -764,16 +764,15 @@ msgstr ""
#. TJsAw
#: include/svtools/strings.hrc:171
-#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
-msgstr "شبه غامق"
+msgstr "شبه‌ثخين"
#. LRtri
#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
-msgstr "شبه غامق مائل"
+msgstr "شبه‌ثخين مائل"
#. bBXFx
#: include/svtools/strings.hrc:173
@@ -791,7 +790,7 @@ msgstr "هذا خط الطابعة. قد يختلف المظهر على الشا
#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
-msgstr "سيُحاكى نمط هذا الخط أو سيُستخدم أقرب نمط مطابق له."
+msgstr "سيُحاكى طراز هذا الخط أو سيُستخدم أقرب طراز مطابق له."
#. hBbuZ
#: include/svtools/strings.hrc:176
@@ -827,7 +826,7 @@ msgstr "تحريك إلى النهاية"
#: include/svtools/strings.hrc:182
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
-msgstr "أضف"
+msgstr "أضِف"
#. 4K4AF
#: include/svtools/strings.hrc:184
@@ -1195,7 +1194,7 @@ msgstr "البريد الالكتروني"
#: include/svtools/strings.hrc:246
msgctxt "STR_FIELD_URL"
msgid "URL"
-msgstr "عنوان URL"
+msgstr "رابط"
#. CGutA
#: include/svtools/strings.hrc:247
@@ -1207,25 +1206,25 @@ msgstr "ملاحظة"
#: include/svtools/strings.hrc:248
msgctxt "STR_FIELD_USER1"
msgid "User 1"
-msgstr "User 1"
+msgstr "مستخدم 1"
#. A4nkT
#: include/svtools/strings.hrc:249
msgctxt "STR_FIELD_USER2"
msgid "User 2"
-msgstr "User 2"
+msgstr "مستخدم 2"
#. J48Kt
#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_USER3"
msgid "User 3"
-msgstr "User 3"
+msgstr "مستخدم 3"
#. 3BxjF
#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_USER4"
msgid "User 4"
-msgstr "User 4"
+msgstr "مستخدم 4"
#. tBBKp
#: include/svtools/strings.hrc:252
@@ -1357,7 +1356,7 @@ msgstr "علّم الملف"
#: include/svtools/strings.hrc:276
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
-msgstr "الرسومات"
+msgstr "رسوميات"
#. Enc4X
#: include/svtools/strings.hrc:277
@@ -1453,13 +1452,13 @@ msgstr "قالب StarOffice 3.0 - 5.0"
#: include/svtools/strings.hrc:292
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
-msgstr "مستند ميكروسوفت إكسل"
+msgstr "مستند ميكروسوفت أكسل"
#. FWiWT
#: include/svtools/strings.hrc:293
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
-msgstr "قالب ميكروسوفت إكسل"
+msgstr "قالب ميكروسوفت أكسل"
#. WBsxH
#: include/svtools/strings.hrc:294
@@ -1723,19 +1722,19 @@ msgstr "مدقق إملاء Hunspell"
#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
-msgstr ""
+msgstr "مُنشيء الواصلة Libhyphen"
#. aGFNy
#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
-msgstr ""
+msgstr "قاموس مترادفات MyThes"
#. RwS4n
#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
-msgstr ""
+msgstr "قائمة الكلمات المُتجاهَلة"
#. wH3TZ
msgctxt "stock"
@@ -1803,115 +1802,115 @@ msgid "_Yes"
msgstr "_نعم"
#. tBGDJ
-#: svtools/inc/borderline.hrc:17
+#: svtools/inc/borderline.hrc:18
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. Xx4Fb
-#: svtools/inc/borderline.hrc:18
+#: svtools/inc/borderline.hrc:19
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Solid"
-msgstr ""
+msgstr "صلب"
#. Paqxg
-#: svtools/inc/borderline.hrc:19
+#: svtools/inc/borderline.hrc:20
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dotted"
-msgstr ""
+msgstr "منقّط"
#. Bucas
-#: svtools/inc/borderline.hrc:20
+#: svtools/inc/borderline.hrc:21
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dashed"
-msgstr ""
+msgstr "مقطَّع"
#. 6XEca
-#: svtools/inc/borderline.hrc:21
+#: svtools/inc/borderline.hrc:22
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double"
-msgstr ""
+msgstr "مزدوج"
#. fB75B
-#: svtools/inc/borderline.hrc:22
+#: svtools/inc/borderline.hrc:23
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Small Gap"
-msgstr ""
+msgstr "رفيع سميك، فجوة صغيرة"
#. MwnWC
-#: svtools/inc/borderline.hrc:23
+#: svtools/inc/borderline.hrc:24
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Medium Gap"
-msgstr ""
+msgstr "رفيع سميك، فجوة متوسطة"
#. V2QAy
-#: svtools/inc/borderline.hrc:24
+#: svtools/inc/borderline.hrc:25
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Large Gap"
-msgstr ""
+msgstr "رفيع سميك، فجوة كبيرة"
#. 4pwSe
-#: svtools/inc/borderline.hrc:25
+#: svtools/inc/borderline.hrc:26
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Small Gap"
-msgstr ""
+msgstr "سميك رفيع، فجوة صغيرة"
#. PYjTF
-#: svtools/inc/borderline.hrc:26
+#: svtools/inc/borderline.hrc:27
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Medium Gap"
-msgstr ""
+msgstr "سميك رفيع، فجوة متوسطة"
#. EYXfK
-#: svtools/inc/borderline.hrc:27
+#: svtools/inc/borderline.hrc:28
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Large Gap"
-msgstr ""
+msgstr "سميك رفيع، فجوة كبيرة"
#. 7gh6t
-#: svtools/inc/borderline.hrc:28
+#: svtools/inc/borderline.hrc:29
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Embossed"
-msgstr ""
+msgstr "بارز"
#. WK8Yy
-#: svtools/inc/borderline.hrc:29
+#: svtools/inc/borderline.hrc:30
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Engraved"
-msgstr ""
+msgstr "محفور"
#. NDS6G
-#: svtools/inc/borderline.hrc:30
+#: svtools/inc/borderline.hrc:31
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Outset"
-msgstr ""
+msgstr "مدرّج للخارج"
#. 7m7iw
-#: svtools/inc/borderline.hrc:31
+#: svtools/inc/borderline.hrc:32
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Inset"
-msgstr ""
+msgstr "مدرّج للداخل"
#. F9rwV
-#: svtools/inc/borderline.hrc:32
+#: svtools/inc/borderline.hrc:33
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Fine Dashed"
msgstr ""
#. GyT7A
-#: svtools/inc/borderline.hrc:33
+#: svtools/inc/borderline.hrc:34
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double Thin"
msgstr ""
#. FyVvE
-#: svtools/inc/borderline.hrc:34
+#: svtools/inc/borderline.hrc:35
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot"
msgstr ""
#. 7yoVE
-#: svtools/inc/borderline.hrc:35
+#: svtools/inc/borderline.hrc:36
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot Dot"
msgstr ""
@@ -2528,7 +2527,7 @@ msgstr ""
#: svtools/inc/errtxt.hrc:133
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr ""
+msgstr "عُثر على خطأ في نسَق الملف في $(ARG1)(صف،عمود)."
#. Di7GD
#: svtools/inc/errtxt.hrc:134
@@ -2567,2482 +2566,2482 @@ msgid "$(ERR) activating object"
msgstr "$(ERR) أثناء تنشيط الكائن"
#. jGYA8
-#: svtools/inc/langtab.hrc:28
+#: svtools/inc/langtab.hrc:29
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "[None]"
-msgstr "[بدون]"
+msgstr "[بِلا]"
#. aUWzb
-#: svtools/inc/langtab.hrc:29
+#: svtools/inc/langtab.hrc:30
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Unknown"
msgstr "غير معروف"
#. AQgxZ
-#: svtools/inc/langtab.hrc:30 svtools/inc/langtab.hrc:31
+#: svtools/inc/langtab.hrc:31 svtools/inc/langtab.hrc:32
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Default"
msgstr "المبدئيّ"
#. hsqmD
-#: svtools/inc/langtab.hrc:32
+#: svtools/inc/langtab.hrc:33
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (South Africa)"
msgstr "الأفريكانية (جنوب أفريقيا)"
#. TVGco
-#: svtools/inc/langtab.hrc:33
+#: svtools/inc/langtab.hrc:34
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Albanian"
msgstr "الألبانية"
#. unNc6
-#: svtools/inc/langtab.hrc:34
+#: svtools/inc/langtab.hrc:35
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic"
msgstr "العربية"
#. yStAU
-#: svtools/inc/langtab.hrc:35
+#: svtools/inc/langtab.hrc:36
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Algeria)"
msgstr "العربية (الجزائر)"
#. 6GPFd
-#: svtools/inc/langtab.hrc:36
+#: svtools/inc/langtab.hrc:37
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Bahrain)"
msgstr "العربية (البحرين)"
#. tvtct
-#: svtools/inc/langtab.hrc:37
+#: svtools/inc/langtab.hrc:38
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Chad)"
msgstr "العربية (تشاد)"
#. sAaq7
-#: svtools/inc/langtab.hrc:38
+#: svtools/inc/langtab.hrc:39
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Comoros)"
msgstr "العربية (جزر القمر)"
#. CtwpU
-#: svtools/inc/langtab.hrc:39
+#: svtools/inc/langtab.hrc:40
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Djibouti)"
msgstr "العربية (جيبوتي)"
#. XgGyg
-#: svtools/inc/langtab.hrc:40
+#: svtools/inc/langtab.hrc:41
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Egypt)"
msgstr "العربية (مصر)"
#. iwYQR
-#: svtools/inc/langtab.hrc:41
+#: svtools/inc/langtab.hrc:42
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Eritrea)"
msgstr "العربية (إريتريا)"
#. nKF3r
-#: svtools/inc/langtab.hrc:42
+#: svtools/inc/langtab.hrc:43
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Iraq)"
msgstr "العربية (العراق)"
#. JdGNA
-#: svtools/inc/langtab.hrc:43
+#: svtools/inc/langtab.hrc:44
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Israel)"
msgstr "العربية (فلسطين)"
#. bVjMH
-#: svtools/inc/langtab.hrc:44
+#: svtools/inc/langtab.hrc:45
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Jordan)"
msgstr "العربية (الأدرن)"
#. 2tQFC
-#: svtools/inc/langtab.hrc:45
+#: svtools/inc/langtab.hrc:46
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Kuwait)"
msgstr "العربية (الكويت)"
#. EvECi
-#: svtools/inc/langtab.hrc:46
+#: svtools/inc/langtab.hrc:47
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Lebanon)"
msgstr "العربية (لبنان)"
#. AWBGA
-#: svtools/inc/langtab.hrc:47
+#: svtools/inc/langtab.hrc:48
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Libya)"
msgstr "العربية (ليبيا)"
#. FBSpG
-#: svtools/inc/langtab.hrc:48
+#: svtools/inc/langtab.hrc:49
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Mauritania)"
msgstr "العربية (موريتانيا)"
#. YmCZY
-#: svtools/inc/langtab.hrc:49
+#: svtools/inc/langtab.hrc:50
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Morocco)"
msgstr "العربية (المغرب)"
#. VB6tk
-#: svtools/inc/langtab.hrc:50
+#: svtools/inc/langtab.hrc:51
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Oman)"
msgstr "العربية (عمان)"
#. ErqSh
-#: svtools/inc/langtab.hrc:51
+#: svtools/inc/langtab.hrc:52
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Palestine)"
msgstr "العربية (فلسطين)"
#. nURdz
-#: svtools/inc/langtab.hrc:52
+#: svtools/inc/langtab.hrc:53
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Qatar)"
msgstr "العربية (قطر)"
#. FdyFU
-#: svtools/inc/langtab.hrc:53
+#: svtools/inc/langtab.hrc:54
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Saudi Arabia)"
msgstr "العربية (السعودية)"
#. x8UtA
-#: svtools/inc/langtab.hrc:54
+#: svtools/inc/langtab.hrc:55
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Somalia)"
msgstr "العربية (الصومال)"
#. y9ptg
-#: svtools/inc/langtab.hrc:55
+#: svtools/inc/langtab.hrc:56
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Sudan)"
msgstr "العربية (السودان)"
#. caDrq
-#: svtools/inc/langtab.hrc:56
+#: svtools/inc/langtab.hrc:57
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Syria)"
msgstr "العربية (سوريا)"
#. TqKZQ
-#: svtools/inc/langtab.hrc:57
+#: svtools/inc/langtab.hrc:58
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Tunisia)"
msgstr "العربية (تونس)"
#. VfYi2
-#: svtools/inc/langtab.hrc:58
+#: svtools/inc/langtab.hrc:59
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (UAE)"
msgstr "العربية (الإمارات)"
#. f7D5o
-#: svtools/inc/langtab.hrc:59
+#: svtools/inc/langtab.hrc:60
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Yemen)"
msgstr "العربية (اليمن)"
#. vDhQJ
-#: svtools/inc/langtab.hrc:60
+#: svtools/inc/langtab.hrc:61
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aragonese"
msgstr "الأراغونية"
#. yE4TR
-#: svtools/inc/langtab.hrc:61
+#: svtools/inc/langtab.hrc:62
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Armenia)"
msgstr "الأرمينية، الغربية (أرمينيا)"
#. bacGJ
-#: svtools/inc/langtab.hrc:62
+#: svtools/inc/langtab.hrc:63
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Assamese"
msgstr "الأسامية"
#. xAg9Q
-#: svtools/inc/langtab.hrc:63
+#: svtools/inc/langtab.hrc:64
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Latin"
msgstr "اللاتينية الأذربيجانية"
#. juADB
-#: svtools/inc/langtab.hrc:64
+#: svtools/inc/langtab.hrc:65
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Cyrillic"
msgstr "السيريلية الأذربيجانية"
#. C3C7G
-#: svtools/inc/langtab.hrc:65
+#: svtools/inc/langtab.hrc:66
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Basque"
msgstr "الباسكية"
#. dJPsj
-#: svtools/inc/langtab.hrc:66
+#: svtools/inc/langtab.hrc:67
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (India)"
msgstr "البنغالية (الهند)"
#. K6cbb
-#: svtools/inc/langtab.hrc:67
+#: svtools/inc/langtab.hrc:68
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bulgarian"
msgstr "البلغارية"
#. sBBmA
-#: svtools/inc/langtab.hrc:68
+#: svtools/inc/langtab.hrc:69
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Belarusian"
msgstr "البيلاروسية"
#. 3SEoJ
-#: svtools/inc/langtab.hrc:69
+#: svtools/inc/langtab.hrc:70
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan"
msgstr "‏‏الكتالانية"
#. PoUeZ
-#: svtools/inc/langtab.hrc:70
+#: svtools/inc/langtab.hrc:71
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan (Valencian)"
msgstr "‏‏الكتالانية (فالنسيا)"
#. ErGw2
-#: svtools/inc/langtab.hrc:71
+#: svtools/inc/langtab.hrc:72
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (traditional)"
msgstr "الصينية (التقليدية)"
#. Gbige
-#: svtools/inc/langtab.hrc:72
+#: svtools/inc/langtab.hrc:73
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (simplified)"
msgstr "الصينية (المبسطة)"
#. WzgGw
-#: svtools/inc/langtab.hrc:73
+#: svtools/inc/langtab.hrc:74
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Hong Kong)"
msgstr "الصينية (هونج كونج)"
#. Kfrv5
-#: svtools/inc/langtab.hrc:74
+#: svtools/inc/langtab.hrc:75
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Singapore)"
msgstr "الصينية (سنغافورة)"
#. BSHqu
-#: svtools/inc/langtab.hrc:75
+#: svtools/inc/langtab.hrc:76
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Macau)"
msgstr "الصينية (ماكاو)"
#. FMwd9
-#: svtools/inc/langtab.hrc:76
+#: svtools/inc/langtab.hrc:77
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Church Slavic"
msgstr "السلافية الكنيسة"
#. cAkoV
-#: svtools/inc/langtab.hrc:77
+#: svtools/inc/langtab.hrc:78
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Croatian"
msgstr "الكرواتية"
#. DjdDj
-#: svtools/inc/langtab.hrc:78
+#: svtools/inc/langtab.hrc:79
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Czech"
msgstr "التشيكية"
#. xnGM2
-#: svtools/inc/langtab.hrc:79
+#: svtools/inc/langtab.hrc:80
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Danish"
msgstr "الدانمركية"
#. yMGyj
-#: svtools/inc/langtab.hrc:80
+#: svtools/inc/langtab.hrc:81
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Netherlands)"
msgstr "الهولندية (هولندا)"
#. qgJE9
-#: svtools/inc/langtab.hrc:81
+#: svtools/inc/langtab.hrc:82
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Belgium)"
msgstr "الهولندية (بلجيكا)"
#. STsDT
-#: svtools/inc/langtab.hrc:82
+#: svtools/inc/langtab.hrc:83
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (USA)"
msgstr "الإنجليزية (الولايات المتحدة)"
#. aCBBC
-#: svtools/inc/langtab.hrc:83
+#: svtools/inc/langtab.hrc:84
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (UK)"
msgstr "الإنجليزية (المملكة المتحدة)"
#. 46Cte
-#: svtools/inc/langtab.hrc:84
+#: svtools/inc/langtab.hrc:85
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English, OED spelling (UK)"
msgstr "الإنجليزية، إملاء أكسفورد (المملكة المتحدة)"
#. XCJAF
-#: svtools/inc/langtab.hrc:85
+#: svtools/inc/langtab.hrc:86
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Australia)"
msgstr "الإنجليزية (أستراليا)"
#. KPGdA
-#: svtools/inc/langtab.hrc:86
+#: svtools/inc/langtab.hrc:87
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Canada)"
msgstr "الإنجليزية (كندا)"
#. vGWET
-#: svtools/inc/langtab.hrc:87
+#: svtools/inc/langtab.hrc:88
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (New Zealand)"
msgstr "الإنجليزية (نيوزيلندا)"
#. JpNB4
-#: svtools/inc/langtab.hrc:88
+#: svtools/inc/langtab.hrc:89
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ireland)"
msgstr "الإنجليزية (أيرلندا)"
#. RYtwA
-#: svtools/inc/langtab.hrc:89
+#: svtools/inc/langtab.hrc:90
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (South Africa)"
msgstr "الإنجليزية (جنوب إفريقيا)"
#. fEWbR
-#: svtools/inc/langtab.hrc:90
+#: svtools/inc/langtab.hrc:91
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Jamaica)"
msgstr "الإنجليزية (جامايكا)"
#. 4tDmL
-#: svtools/inc/langtab.hrc:91
+#: svtools/inc/langtab.hrc:92
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Caribbean)"
msgstr "الإنجليزية (الكاريبي)"
#. craLz
-#: svtools/inc/langtab.hrc:92
+#: svtools/inc/langtab.hrc:93
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Belize)"
msgstr "الإنجليزية (بيليز)"
#. oAnX9
-#: svtools/inc/langtab.hrc:93
+#: svtools/inc/langtab.hrc:94
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Trinidad)"
msgstr "الإنجليزية (ترينيداد)"
#. DbBaG
-#: svtools/inc/langtab.hrc:94
+#: svtools/inc/langtab.hrc:95
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zimbabwe)"
msgstr "الإنجليزية (زيمبابوي)"
#. bGuDT
-#: svtools/inc/langtab.hrc:95
+#: svtools/inc/langtab.hrc:96
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Philippines)"
msgstr "الإنجليزية (الفلبين)"
#. sf7j9
-#: svtools/inc/langtab.hrc:96
+#: svtools/inc/langtab.hrc:97
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (India)"
msgstr "الإنجليزية (الهند)"
#. uqECc
-#: svtools/inc/langtab.hrc:97
+#: svtools/inc/langtab.hrc:98
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Estonian"
msgstr "الإستونية"
#. AGGnV
-#: svtools/inc/langtab.hrc:98
+#: svtools/inc/langtab.hrc:99
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Finnish"
msgstr "الفنلندية"
#. UyH2X
-#: svtools/inc/langtab.hrc:99
+#: svtools/inc/langtab.hrc:100
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Faroese"
msgstr "الفاروسية"
#. riCt7
-#: svtools/inc/langtab.hrc:100
+#: svtools/inc/langtab.hrc:101
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Persian"
msgstr "الفارسية"
#. FSxwV
-#: svtools/inc/langtab.hrc:101
+#: svtools/inc/langtab.hrc:102
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (France)"
msgstr "الفرنسية (فرنسا)"
#. LGkgS
-#: svtools/inc/langtab.hrc:102
+#: svtools/inc/langtab.hrc:103
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Belgium)"
msgstr "الفرنسية (بلجيكا)"
#. TFQ8G
-#: svtools/inc/langtab.hrc:103
+#: svtools/inc/langtab.hrc:104
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Canada)"
msgstr "الفرنسية (كندا)"
#. 8NnQa
-#: svtools/inc/langtab.hrc:104
+#: svtools/inc/langtab.hrc:105
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Switzerland)"
msgstr "الفرنسية (سويسرا)"
#. DkXiH
-#: svtools/inc/langtab.hrc:105
+#: svtools/inc/langtab.hrc:106
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Luxembourg)"
msgstr "الفرنسية (لوكسمبورغ)"
#. 8BeKQ
-#: svtools/inc/langtab.hrc:106
+#: svtools/inc/langtab.hrc:107
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Monaco)"
msgstr "الفرنسية (موناكو)"
#. DoQUZ
-#: svtools/inc/langtab.hrc:107
+#: svtools/inc/langtab.hrc:108
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gascon"
msgstr "جاسكون"
#. 6m5ud
-#: svtools/inc/langtab.hrc:108
+#: svtools/inc/langtab.hrc:109
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Germany)"
msgstr "الألمانية (ألمانيا)"
#. bTDdf
-#: svtools/inc/langtab.hrc:109
+#: svtools/inc/langtab.hrc:110
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Switzerland)"
msgstr "الألمانية (سويسرا)"
#. H6rUb
-#: svtools/inc/langtab.hrc:110
+#: svtools/inc/langtab.hrc:111
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Austria)"
msgstr "الألمانية (النمسا)"
#. EXUrT
-#: svtools/inc/langtab.hrc:111
+#: svtools/inc/langtab.hrc:112
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Luxembourg)"
msgstr "الألمانية (لوكسمبورغ)"
#. wYXvd
-#: svtools/inc/langtab.hrc:112
+#: svtools/inc/langtab.hrc:113
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Liechtenstein)"
msgstr "الألمانية (ليختنشتاين)"
#. yBvcg
-#: svtools/inc/langtab.hrc:113
+#: svtools/inc/langtab.hrc:114
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek"
msgstr "اليونانية"
#. QzGHA
-#: svtools/inc/langtab.hrc:114
+#: svtools/inc/langtab.hrc:115
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gujarati"
msgstr "الجيوجاراتية"
#. gU5Y9
-#: svtools/inc/langtab.hrc:115
+#: svtools/inc/langtab.hrc:116
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hebrew"
msgstr "العبرية"
#. vkmai
-#: svtools/inc/langtab.hrc:116
+#: svtools/inc/langtab.hrc:117
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hindi"
msgstr "الهندية"
#. FdD6d
-#: svtools/inc/langtab.hrc:117
+#: svtools/inc/langtab.hrc:118
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian"
msgstr "المجرية"
#. sRD2B
-#: svtools/inc/langtab.hrc:118
+#: svtools/inc/langtab.hrc:119
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Icelandic"
msgstr "الأيسلندية"
#. K95FW
-#: svtools/inc/langtab.hrc:119
+#: svtools/inc/langtab.hrc:120
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Indonesian"
msgstr "الإندونيسية"
#. dshDi
-#: svtools/inc/langtab.hrc:120
+#: svtools/inc/langtab.hrc:121
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Italy)"
msgstr "الإيطالية (إيطاليا)"
#. DELVB
-#: svtools/inc/langtab.hrc:121
+#: svtools/inc/langtab.hrc:122
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Switzerland)"
msgstr "الإيطالية (سويسرا)"
#. ruFE2
-#: svtools/inc/langtab.hrc:122
+#: svtools/inc/langtab.hrc:123
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Japanese"
msgstr "اليابانية"
#. qFQYv
-#: svtools/inc/langtab.hrc:123
+#: svtools/inc/langtab.hrc:124
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kannada"
msgstr "الكانادية"
#. HBG3C
-#: svtools/inc/langtab.hrc:124
+#: svtools/inc/langtab.hrc:125
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (Kashmir)"
msgstr "الكشميرية (كشمير)"
#. DwhmJ
-#: svtools/inc/langtab.hrc:125
+#: svtools/inc/langtab.hrc:126
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (India)"
msgstr "الكشميرية (الهند)"
#. UMfCV
-#: svtools/inc/langtab.hrc:126
+#: svtools/inc/langtab.hrc:127
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kazakh"
msgstr "كازاخستان"
#. fABxX
-#: svtools/inc/langtab.hrc:127
+#: svtools/inc/langtab.hrc:128
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Konkani"
msgstr "الكونكانية"
#. 5XXpX
-#: svtools/inc/langtab.hrc:128
+#: svtools/inc/langtab.hrc:129
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Korean (RoK)"
msgstr "الكورية (جمهورية كوريا)"
#. Ynb76
-#: svtools/inc/langtab.hrc:129
+#: svtools/inc/langtab.hrc:130
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latvian"
msgstr "اللاتفية"
#. C4VrT
-#: svtools/inc/langtab.hrc:130
+#: svtools/inc/langtab.hrc:131
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lithuanian"
msgstr "الليتوانية"
#. zPNto
-#: svtools/inc/langtab.hrc:131
+#: svtools/inc/langtab.hrc:132
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Macedonian"
msgstr "المقدونية"
#. nVTHg
-#: svtools/inc/langtab.hrc:132
+#: svtools/inc/langtab.hrc:133
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Malaysia)"
msgstr "المالاي (ماليزيا)"
#. fwb55
-#: svtools/inc/langtab.hrc:133
+#: svtools/inc/langtab.hrc:134
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Brunei Darussalam)"
msgstr "الماليزية (بروناي دار السلام)"
#. 8niko
-#: svtools/inc/langtab.hrc:134
+#: svtools/inc/langtab.hrc:135
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malayalam"
msgstr "المالايلامية"
#. wX45Q
-#: svtools/inc/langtab.hrc:135
+#: svtools/inc/langtab.hrc:136
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manipuri"
msgstr "المانيبور"
#. wdBgL
-#: svtools/inc/langtab.hrc:136
+#: svtools/inc/langtab.hrc:137
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Marathi"
msgstr "الماراثية"
#. gkEEQ
-#: svtools/inc/langtab.hrc:137
+#: svtools/inc/langtab.hrc:138
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (Nepal)"
msgstr "النيبالية (النيبال)"
#. LaDAA
-#: svtools/inc/langtab.hrc:138
+#: svtools/inc/langtab.hrc:139
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (India)"
msgstr "النيبالية (الهند)"
#. 7HpyY
-#: svtools/inc/langtab.hrc:139
+#: svtools/inc/langtab.hrc:140
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Bokmål"
msgstr "النرويجية، بوكمال"
#. kCv9u
-#: svtools/inc/langtab.hrc:140
+#: svtools/inc/langtab.hrc:141
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Nynorsk"
msgstr "النرويجية، نينورسك"
#. 3BNF8
-#: svtools/inc/langtab.hrc:141
+#: svtools/inc/langtab.hrc:142
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Odia"
msgstr "الأورية"
#. KEoWD
-#: svtools/inc/langtab.hrc:142
+#: svtools/inc/langtab.hrc:143
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Polish"
msgstr "البولندية"
#. yyj9v
-#: svtools/inc/langtab.hrc:143
+#: svtools/inc/langtab.hrc:144
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Angola)"
msgstr "البرتغالية (أنغولا)"
#. hZAXE
-#: svtools/inc/langtab.hrc:144
+#: svtools/inc/langtab.hrc:145
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Portugal)"
msgstr "البرتغالية (البرتغال)"
#. A5CG3
-#: svtools/inc/langtab.hrc:145
+#: svtools/inc/langtab.hrc:146
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Brazil)"
msgstr "البرتغالية (البرازيل)"
#. EGfKG
-#: svtools/inc/langtab.hrc:146
+#: svtools/inc/langtab.hrc:147
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punjabi"
msgstr "البنجابية"
#. 4ATDT
-#: svtools/inc/langtab.hrc:147
+#: svtools/inc/langtab.hrc:148
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rhaeto-Romance"
msgstr "الرايتو رومانسية"
#. TLUGG
-#: svtools/inc/langtab.hrc:148
+#: svtools/inc/langtab.hrc:149
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Romania)"
msgstr "روماني (رومانيا)"
#. uCPF7
-#: svtools/inc/langtab.hrc:149
+#: svtools/inc/langtab.hrc:150
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Moldova)"
msgstr "روماني (مولدافيا)"
#. tJTih
-#: svtools/inc/langtab.hrc:150
+#: svtools/inc/langtab.hrc:151
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Russian"
msgstr "الروسية"
#. Rih6F
-#: svtools/inc/langtab.hrc:151
+#: svtools/inc/langtab.hrc:152
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sanskrit"
msgstr "السنسكريتية"
#. CyZtm
-#: svtools/inc/langtab.hrc:152
+#: svtools/inc/langtab.hrc:153
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia and Montenegro)"
msgstr "السيريلية الصربية (صربيا ومونتنغرو)"
#. sFnB8
-#: svtools/inc/langtab.hrc:153
+#: svtools/inc/langtab.hrc:154
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia and Montenegro)"
msgstr "اللاتينية الصربية (صربيا ومونتنغرو)"
#. WbsFA
-#: svtools/inc/langtab.hrc:154
+#: svtools/inc/langtab.hrc:155
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia)"
msgstr "السيريلية الصربية (صربيا)"
#. WL3zM
-#: svtools/inc/langtab.hrc:155
+#: svtools/inc/langtab.hrc:156
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia)"
msgstr "اللاتينية الصربية (صربيا)"
#. JFnsJ
-#: svtools/inc/langtab.hrc:156
+#: svtools/inc/langtab.hrc:157
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Montenegro)"
msgstr "السيريلية الصربية (مونتنغرو)"
#. AHpmF
-#: svtools/inc/langtab.hrc:157
+#: svtools/inc/langtab.hrc:158
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Montenegro)"
msgstr "اللاتينية الصربية (مونتنغرو)"
#. JcJT4
-#: svtools/inc/langtab.hrc:158
+#: svtools/inc/langtab.hrc:159
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin"
msgstr "الصربية اللاتينية"
#. ubCyV
-#: svtools/inc/langtab.hrc:159
+#: svtools/inc/langtab.hrc:160
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sidama"
msgstr "السيداما"
#. 66wdH
-#: svtools/inc/langtab.hrc:160
+#: svtools/inc/langtab.hrc:161
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Devanagari"
msgstr "السندية، الديفاناغارية"
#. RF77g
-#: svtools/inc/langtab.hrc:161
+#: svtools/inc/langtab.hrc:162
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Arabic"
msgstr "السندية، العربية"
#. E8DXb
-#: svtools/inc/langtab.hrc:162
+#: svtools/inc/langtab.hrc:163
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovak"
msgstr "السلوفاكية"
#. GS6BZ
-#: svtools/inc/langtab.hrc:163
+#: svtools/inc/langtab.hrc:164
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovenian"
msgstr "السلوفينية"
#. bCFN3
-#: svtools/inc/langtab.hrc:164
+#: svtools/inc/langtab.hrc:165
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Spain)"
msgstr "الإسبانية (إسبانيا)"
#. AXKJF
-#: svtools/inc/langtab.hrc:165
+#: svtools/inc/langtab.hrc:166
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Mexico)"
msgstr "الإسبانية (المكسيك)"
#. 4ExjA
-#: svtools/inc/langtab.hrc:166
+#: svtools/inc/langtab.hrc:167
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Guatemala)"
msgstr "الإسبانية (غواتيمالا)"
#. ndaNA
-#: svtools/inc/langtab.hrc:167
+#: svtools/inc/langtab.hrc:168
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Costa Rica)"
msgstr "الإسبانية (كوستاريكا)"
#. rAYvf
-#: svtools/inc/langtab.hrc:168
+#: svtools/inc/langtab.hrc:169
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Panama)"
msgstr "الإسبانية (بنما)"
#. rwjDV
-#: svtools/inc/langtab.hrc:169
+#: svtools/inc/langtab.hrc:170
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Dom. Rep.)"
msgstr "الإسبانية (جمهورية الدومينيكان)"
#. aeV5T
-#: svtools/inc/langtab.hrc:170
+#: svtools/inc/langtab.hrc:171
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Venezuela)"
msgstr "الإسبانية (فنزويلا)"
#. H4CHi
-#: svtools/inc/langtab.hrc:171
+#: svtools/inc/langtab.hrc:172
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Colombia)"
msgstr "الإسبانية (كولومبيا)"
#. NkaU2
-#: svtools/inc/langtab.hrc:172
+#: svtools/inc/langtab.hrc:173
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Peru)"
msgstr "الإسبانية (البيرو)"
#. 2yKQy
-#: svtools/inc/langtab.hrc:173
+#: svtools/inc/langtab.hrc:174
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Argentina)"
msgstr "الإسبانية (الأرجنتين)"
#. cTFoB
-#: svtools/inc/langtab.hrc:174
+#: svtools/inc/langtab.hrc:175
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Ecuador)"
msgstr "الإسبانية (الاكوادور)"
#. Q7iGB
-#: svtools/inc/langtab.hrc:175
+#: svtools/inc/langtab.hrc:176
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Chile)"
msgstr "الإسبانية (تشيلي)"
#. SQeC3
-#: svtools/inc/langtab.hrc:176
+#: svtools/inc/langtab.hrc:177
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Uruguay)"
msgstr "الإسبانية (الأوروغواي)"
#. EmgTp
-#: svtools/inc/langtab.hrc:177
+#: svtools/inc/langtab.hrc:178
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Paraguay)"
msgstr "الإسبانية (الباراغواي)"
#. T7rLH
-#: svtools/inc/langtab.hrc:178
+#: svtools/inc/langtab.hrc:179
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Bolivia)"
msgstr "الإسبانية (بوليفيا)"
#. GNG7W
-#: svtools/inc/langtab.hrc:179
+#: svtools/inc/langtab.hrc:180
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (El Salvador)"
msgstr "الإسبانية (السلفادور)"
#. HoGhs
-#: svtools/inc/langtab.hrc:180
+#: svtools/inc/langtab.hrc:181
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Honduras)"
msgstr "الإسبانية (الهندوراس)"
#. KgEGv
-#: svtools/inc/langtab.hrc:181
+#: svtools/inc/langtab.hrc:182
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Nicaragua)"
msgstr "الإسبانية (نيكاراغوا)"
#. uj9QF
-#: svtools/inc/langtab.hrc:182
+#: svtools/inc/langtab.hrc:183
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Puerto Rico)"
msgstr "الإسبانية (بورتوريكو)"
#. 3bTTE
-#: svtools/inc/langtab.hrc:183
+#: svtools/inc/langtab.hrc:184
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Kenya)"
msgstr "السواحلية (كينيا)"
#. AFhrJ
-#: svtools/inc/langtab.hrc:184
+#: svtools/inc/langtab.hrc:185
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Sweden)"
msgstr "السويدية (السويد)"
#. BKF86
-#: svtools/inc/langtab.hrc:185
+#: svtools/inc/langtab.hrc:186
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Finland)"
msgstr "السويدية (فنلندا)"
#. E6Ede
-#: svtools/inc/langtab.hrc:186
+#: svtools/inc/langtab.hrc:187
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tajik"
msgstr "الطاجيكية"
#. dAFTH
-#: svtools/inc/langtab.hrc:187
+#: svtools/inc/langtab.hrc:188
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tamil"
msgstr "التاميلية"
#. RHZbp
-#: svtools/inc/langtab.hrc:188
+#: svtools/inc/langtab.hrc:189
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tatar"
msgstr "التترية"
#. pTFA6
-#: svtools/inc/langtab.hrc:189
+#: svtools/inc/langtab.hrc:190
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Telugu"
msgstr "التيلوجو"
#. 3xQFG
-#: svtools/inc/langtab.hrc:190
+#: svtools/inc/langtab.hrc:191
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Thai"
msgstr "التايلاندية"
#. 7SBCF
-#: svtools/inc/langtab.hrc:191
+#: svtools/inc/langtab.hrc:192
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkish"
msgstr "التركية"
#. jg4Y4
-#: svtools/inc/langtab.hrc:192
+#: svtools/inc/langtab.hrc:193
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (Pakistan)"
msgstr "الأردية (الباكستان)"
#. reDrZ
-#: svtools/inc/langtab.hrc:193
+#: svtools/inc/langtab.hrc:194
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (India)"
msgstr "الأردية (الهند)"
#. AciD4
-#: svtools/inc/langtab.hrc:194
+#: svtools/inc/langtab.hrc:195
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ukrainian"
msgstr "الأوكرانية"
#. 9s6wZ
-#: svtools/inc/langtab.hrc:195
+#: svtools/inc/langtab.hrc:196
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Latin"
msgstr "اللاتينية الأوزبكية"
#. HrnFi
-#: svtools/inc/langtab.hrc:196
+#: svtools/inc/langtab.hrc:197
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Cyrillic"
msgstr "الأزبكية السريلية"
#. seQBA
-#: svtools/inc/langtab.hrc:197
+#: svtools/inc/langtab.hrc:198
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Welsh"
msgstr "الولشية"
#. MyZMt
-#: svtools/inc/langtab.hrc:198
+#: svtools/inc/langtab.hrc:199
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latin"
msgstr "اللاتينية"
#. UxE47
-#: svtools/inc/langtab.hrc:199
+#: svtools/inc/langtab.hrc:200
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Esperanto"
msgstr "الاسبرانتو"
#. QDEQB
-#: svtools/inc/langtab.hrc:200
+#: svtools/inc/langtab.hrc:201
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kinyarwanda (Rwanda)"
msgstr "الكينيارواندية (رواندا)"
#. VDEdz
-#: svtools/inc/langtab.hrc:201
+#: svtools/inc/langtab.hrc:202
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maori"
msgstr "الماورية"
#. BCRzB
-#: svtools/inc/langtab.hrc:202
+#: svtools/inc/langtab.hrc:203
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Galician"
msgstr "الغليشيانية"
#. EJSEG
-#: svtools/inc/langtab.hrc:203
+#: svtools/inc/langtab.hrc:204
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dhivehi"
msgstr "الديفيهية"
#. HyrCw
-#: svtools/inc/langtab.hrc:204
+#: svtools/inc/langtab.hrc:205
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Northern Sotho"
msgstr "السوثو الشمالية"
#. iZE5p
-#: svtools/inc/langtab.hrc:205
+#: svtools/inc/langtab.hrc:206
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gaelic (Scotland)"
msgstr "الغيلية (اسكتلندا)"
#. hUdfG
-#: svtools/inc/langtab.hrc:206
+#: svtools/inc/langtab.hrc:207
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Cyrillic"
msgstr "المنغولية السيريلية"
#. XSmCF
-#: svtools/inc/langtab.hrc:207
+#: svtools/inc/langtab.hrc:208
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Mongolian"
msgstr "المنغولية"
#. SmxD2
-#: svtools/inc/langtab.hrc:208
+#: svtools/inc/langtab.hrc:209
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingua"
msgstr "الإنترلينغوا"
#. dBUa9
-#: svtools/inc/langtab.hrc:209
+#: svtools/inc/langtab.hrc:210
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bosnian"
msgstr "البوسنية"
#. c29GE
-#: svtools/inc/langtab.hrc:210
+#: svtools/inc/langtab.hrc:211
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (Bangladesh)"
msgstr "البنغالية (بنجلاديش)"
#. 9CTyH
-#: svtools/inc/langtab.hrc:211
+#: svtools/inc/langtab.hrc:212
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Occitan"
msgstr "الأوكيتانية"
#. wRpTQ
-#: svtools/inc/langtab.hrc:212
+#: svtools/inc/langtab.hrc:213
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khmer"
msgstr "الخميرية"
#. 6C2PP
-#: svtools/inc/langtab.hrc:213
+#: svtools/inc/langtab.hrc:214
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Turkey)"
msgstr "الكردية، الشمالية (تركيا)"
#. JBSdg
-#: svtools/inc/langtab.hrc:214
+#: svtools/inc/langtab.hrc:215
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Syria)"
msgstr "الكردية، الشمالية (سوريا)"
#. 7LmT2
-#: svtools/inc/langtab.hrc:215
+#: svtools/inc/langtab.hrc:216
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iraq)"
msgstr "الكردية، الوسطية (العراق)"
#. rzDHD
-#: svtools/inc/langtab.hrc:216
+#: svtools/inc/langtab.hrc:217
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iran)"
msgstr "الكردية، الوسطية (إيران)"
#. CeAFw
-#: svtools/inc/langtab.hrc:217
+#: svtools/inc/langtab.hrc:218
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iran)"
msgstr "الكردية، الجنوبية (إيران)"
#. epbri
-#: svtools/inc/langtab.hrc:218
+#: svtools/inc/langtab.hrc:219
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iraq)"
msgstr "الكردية، الجنوبية (العراق)"
#. 2KhAB
-#: svtools/inc/langtab.hrc:219
+#: svtools/inc/langtab.hrc:220
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian"
msgstr "السردينية"
#. 3sZxr
-#: svtools/inc/langtab.hrc:220
+#: svtools/inc/langtab.hrc:221
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dzongkha"
msgstr "الدزونخية"
#. NdNMD
-#: svtools/inc/langtab.hrc:221
+#: svtools/inc/langtab.hrc:222
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Tanzania)"
msgstr "السواحلية (تنزانيا)"
#. ywH3p
-#: svtools/inc/langtab.hrc:222
+#: svtools/inc/langtab.hrc:223
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lao"
msgstr "اللاوية"
#. HNY5w
-#: svtools/inc/langtab.hrc:223
+#: svtools/inc/langtab.hrc:224
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Irish"
msgstr "الأيرلندية"
#. oGuLJ
-#: svtools/inc/langtab.hrc:224
+#: svtools/inc/langtab.hrc:225
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (PR China)"
msgstr "التبتية (جمهورية الصين الشعبية)"
#. DpbUS
-#: svtools/inc/langtab.hrc:225
+#: svtools/inc/langtab.hrc:226
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Georgian"
msgstr "الجورجية"
#. vXTTC
-#: svtools/inc/langtab.hrc:226
+#: svtools/inc/langtab.hrc:227
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Frisian"
msgstr "الفريزية"
#. hYSBQ
-#: svtools/inc/langtab.hrc:227
+#: svtools/inc/langtab.hrc:228
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (South Africa)"
msgstr "تسوانا (جنوب إفريقيا)"
#. iBrft
-#: svtools/inc/langtab.hrc:228
+#: svtools/inc/langtab.hrc:229
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Zulu"
msgstr "الزولو"
#. efx7v
-#: svtools/inc/langtab.hrc:229
+#: svtools/inc/langtab.hrc:230
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vietnamese"
msgstr "الفيتانامية"
#. uik8N
-#: svtools/inc/langtab.hrc:230
+#: svtools/inc/langtab.hrc:231
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Breton"
msgstr "البريتونية"
#. UuDPF
-#: svtools/inc/langtab.hrc:231
+#: svtools/inc/langtab.hrc:232
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kalaallisut"
msgstr "الكالاليسوتية"
#. h8yi2
-#: svtools/inc/langtab.hrc:232
+#: svtools/inc/langtab.hrc:233
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ndebele, South"
msgstr "نيدابل، الجنوب"
#. GAkRJ
-#: svtools/inc/langtab.hrc:233
+#: svtools/inc/langtab.hrc:234
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Southern Sotho"
msgstr "السوثو الجنوبية"
#. 2beka
-#: svtools/inc/langtab.hrc:234
+#: svtools/inc/langtab.hrc:235
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swazi"
msgstr "السوازيلاندية"
#. GFCYC
-#: svtools/inc/langtab.hrc:235
+#: svtools/inc/langtab.hrc:236
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsonga"
msgstr "التسونجا"
#. Fd3yC
-#: svtools/inc/langtab.hrc:236
+#: svtools/inc/langtab.hrc:237
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venda"
msgstr "فندا"
#. BQkT8
-#: svtools/inc/langtab.hrc:237
+#: svtools/inc/langtab.hrc:238
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (Botswana)"
msgstr "تسوانا (بتسوانا)"
#. aCLs3
-#: svtools/inc/langtab.hrc:238
+#: svtools/inc/langtab.hrc:239
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xhosa"
msgstr "الزوشا"
#. 8tGkA
-#: svtools/inc/langtab.hrc:239
+#: svtools/inc/langtab.hrc:240
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sinhala"
msgstr "سينهالا"
#. MyZBb
-#: svtools/inc/langtab.hrc:240
+#: svtools/inc/langtab.hrc:241
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moore"
msgstr "مور"
#. MuwMr
-#: svtools/inc/langtab.hrc:241
+#: svtools/inc/langtab.hrc:242
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bambara"
msgstr "بامبارا"
#. ohYHE
-#: svtools/inc/langtab.hrc:242
+#: svtools/inc/langtab.hrc:243
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Akan"
msgstr "أكان"
#. Rpc24
-#: svtools/inc/langtab.hrc:243
+#: svtools/inc/langtab.hrc:244
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Luxembourgish"
msgstr "اللكسمبورجية"
#. TPr9P
-#: svtools/inc/langtab.hrc:244
+#: svtools/inc/langtab.hrc:245
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Friulian"
msgstr "فريوليان"
#. XFeaU
-#: svtools/inc/langtab.hrc:245
+#: svtools/inc/langtab.hrc:246
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fijian"
msgstr "فيجان"
#. DmEsD
-#: svtools/inc/langtab.hrc:246
+#: svtools/inc/langtab.hrc:247
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (Namibia)"
msgstr "الأفريقانية (ناميبيا)"
#. 2dS3j
-#: svtools/inc/langtab.hrc:247
+#: svtools/inc/langtab.hrc:248
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Namibia)"
msgstr "الإنجليزية (ناميبيا)"
#. pxpQo
-#: svtools/inc/langtab.hrc:248
+#: svtools/inc/langtab.hrc:249
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Walloon"
msgstr "والون"
#. uSw8S
-#: svtools/inc/langtab.hrc:249
+#: svtools/inc/langtab.hrc:250
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Coptic"
msgstr "القبطية"
#. cXUkb
-#: svtools/inc/langtab.hrc:250
+#: svtools/inc/langtab.hrc:251
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Eritrea)"
msgstr "التيكريكنا (أريتيريا)‏"
#. 4X4SP
-#: svtools/inc/langtab.hrc:251
+#: svtools/inc/langtab.hrc:252
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Ethiopia)"
msgstr "التيكريكنا (أثيوبيا)‏"
#. vebCw
-#: svtools/inc/langtab.hrc:252
+#: svtools/inc/langtab.hrc:253
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Amharic"
msgstr "الأمهرية"
#. wVfCr
-#: svtools/inc/langtab.hrc:253
+#: svtools/inc/langtab.hrc:254
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kirghiz"
msgstr "القرغيزية"
#. zCrUd
-#: svtools/inc/langtab.hrc:254
+#: svtools/inc/langtab.hrc:255
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Belgium)"
msgstr "الألمانية (بلجيكا)"
#. bZjgG
-#: svtools/inc/langtab.hrc:255
+#: svtools/inc/langtab.hrc:256
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chuvash"
msgstr "التشوفاشية"
#. Hhf2V
-#: svtools/inc/langtab.hrc:256
+#: svtools/inc/langtab.hrc:257
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Burmese"
msgstr "البورمية"
#. YCarY
-#: svtools/inc/langtab.hrc:257
+#: svtools/inc/langtab.hrc:258
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Nigeria)"
msgstr "هوسا (نيجيريا)"
#. JXCmu
-#: svtools/inc/langtab.hrc:258
+#: svtools/inc/langtab.hrc:259
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Ghana)"
msgstr "هوسا (غانا)"
#. 7jrGb
-#: svtools/inc/langtab.hrc:259
+#: svtools/inc/langtab.hrc:260
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Éwé"
msgstr "إيوي"
#. QWBZG
-#: svtools/inc/langtab.hrc:260
+#: svtools/inc/langtab.hrc:261
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ghana)"
msgstr "الإنجليزية (غانا)"
#. pAEtz
-#: svtools/inc/langtab.hrc:261
+#: svtools/inc/langtab.hrc:262
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sango"
msgstr "سانجو"
#. L9sDt
-#: svtools/inc/langtab.hrc:262
+#: svtools/inc/langtab.hrc:263
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tagalog"
msgstr "فلبينية"
#. iFSZs
-#: svtools/inc/langtab.hrc:263
+#: svtools/inc/langtab.hrc:264
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ganda"
msgstr "غاندا"
#. Gdbhz
-#: svtools/inc/langtab.hrc:264
+#: svtools/inc/langtab.hrc:265
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lingala"
msgstr "لينجالا"
#. TnDKB
-#: svtools/inc/langtab.hrc:265
+#: svtools/inc/langtab.hrc:266
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Low German"
msgstr "الألمانية الجنوبية"
#. Yr5hK
-#: svtools/inc/langtab.hrc:266
+#: svtools/inc/langtab.hrc:267
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hiligaynon"
msgstr "هاليجايونون"
#. nF96G
-#: svtools/inc/langtab.hrc:267
+#: svtools/inc/langtab.hrc:268
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nyanja"
msgstr "نيانجا"
#. v4jmr
-#: svtools/inc/langtab.hrc:268
+#: svtools/inc/langtab.hrc:269
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashubian"
msgstr "الكاشوبية"
#. nbEp5
-#: svtools/inc/langtab.hrc:269
+#: svtools/inc/langtab.hrc:270
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Cuba)"
msgstr "الإسبانية (كوبا)"
#. CGkDF
-#: svtools/inc/langtab.hrc:270
+#: svtools/inc/langtab.hrc:271
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Indonesia)"
msgstr "تتون (إندونسيا)"
#. yXqvC
-#: svtools/inc/langtab.hrc:271
+#: svtools/inc/langtab.hrc:272
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, North)"
msgstr "الكويتشوا (بوليفيا, الشمال)"
#. V3XMi
-#: svtools/inc/langtab.hrc:272
+#: svtools/inc/langtab.hrc:273
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, South)"
msgstr "الكويتشوا (بوليفيا, الجنوب)"
#. 3WCP7
-#: svtools/inc/langtab.hrc:273
+#: svtools/inc/langtab.hrc:274
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Somali"
msgstr "الصومالية"
#. zFoBp
-#: svtools/inc/langtab.hrc:274
+#: svtools/inc/langtab.hrc:275
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Inari (Finland)"
msgstr "السامية، إناري (فنلندا)"
#. FJAQR
-#: svtools/inc/langtab.hrc:275
+#: svtools/inc/langtab.hrc:276
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Norway)"
msgstr "السامية، لولا (النرويج)"
#. yBxW5
-#: svtools/inc/langtab.hrc:276
+#: svtools/inc/langtab.hrc:277
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Sweden)"
msgstr "السامية، لولا (السويد)"
#. 8yPLy
-#: svtools/inc/langtab.hrc:277
+#: svtools/inc/langtab.hrc:278
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Finland)"
msgstr "السامية، الشمال (فنلندا)"
#. SQTD9
-#: svtools/inc/langtab.hrc:278
+#: svtools/inc/langtab.hrc:279
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Norway)"
msgstr "السامية، الشمال (النرويج)"
#. BHGpD
-#: svtools/inc/langtab.hrc:279
+#: svtools/inc/langtab.hrc:280
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Sweden)"
msgstr "السامية، الشمال (السويد)"
#. cdYkC
-#: svtools/inc/langtab.hrc:280
+#: svtools/inc/langtab.hrc:281
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Skolt (Finland)"
msgstr "السامية، سكولت (فنلندا)"
#. od3Hp
-#: svtools/inc/langtab.hrc:281
+#: svtools/inc/langtab.hrc:282
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Norway)"
msgstr "السامية، الجنوب (النرويج)"
#. 5Ueff
-#: svtools/inc/langtab.hrc:282
+#: svtools/inc/langtab.hrc:283
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Sweden)"
msgstr "السامية، الجنوب (السويد)"
#. 7x4mU
-#: svtools/inc/langtab.hrc:283
+#: svtools/inc/langtab.hrc:284
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Kildin (Russia)"
msgstr "السامية، كيلدين (روسيا)"
#. A5Crw
-#: svtools/inc/langtab.hrc:284
+#: svtools/inc/langtab.hrc:285
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guarani (Paraguay)"
msgstr "الجوارانية (باراغواي)"
#. ESc5d
-#: svtools/inc/langtab.hrc:285
+#: svtools/inc/langtab.hrc:286
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bodo"
msgstr "البودو"
#. sSAvV
-#: svtools/inc/langtab.hrc:286
+#: svtools/inc/langtab.hrc:287
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dogri"
msgstr "الدغرية"
#. f2nfh
-#: svtools/inc/langtab.hrc:287
+#: svtools/inc/langtab.hrc:288
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maithili"
msgstr "المايثلية"
#. Rm94B
-#: svtools/inc/langtab.hrc:288
+#: svtools/inc/langtab.hrc:289
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Santali"
msgstr "السانتالية"
#. C7EGu
-#: svtools/inc/langtab.hrc:289
+#: svtools/inc/langtab.hrc:290
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Timor-Leste)"
msgstr "التيتونية (تيمور الشرقية)"
#. JzTF8
-#: svtools/inc/langtab.hrc:290
+#: svtools/inc/langtab.hrc:291
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkmen"
msgstr "التركمانية"
#. XbECR
-#: svtools/inc/langtab.hrc:291
+#: svtools/inc/langtab.hrc:292
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maltese"
msgstr "المالطية"
#. PJ6DF
-#: svtools/inc/langtab.hrc:292
+#: svtools/inc/langtab.hrc:293
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tok Pisin"
msgstr "توك بيسين"
#. kAWUo
-#: svtools/inc/langtab.hrc:293
+#: svtools/inc/langtab.hrc:294
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Shuswap"
msgstr "شوسواب"
#. sBWQv
-#: svtools/inc/langtab.hrc:294
+#: svtools/inc/langtab.hrc:295
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Oromo"
msgstr "الأوروموية"
#. jYDYi
-#: svtools/inc/langtab.hrc:295
+#: svtools/inc/langtab.hrc:296
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek, Ancient"
msgstr "اليونانية، القديمة"
#. WY8GH
-#: svtools/inc/langtab.hrc:296
+#: svtools/inc/langtab.hrc:297
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (Israel)"
msgstr "اليديشية (إسرائيل)"
#. VAWnd
-#: svtools/inc/langtab.hrc:297
+#: svtools/inc/langtab.hrc:298
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Ecuador)"
msgstr "الكويتشوا (الإكوادور)"
#. UDB2F
-#: svtools/inc/langtab.hrc:298
+#: svtools/inc/langtab.hrc:299
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uyghur"
msgstr "اليوجورية"
#. XAu8x
-#: svtools/inc/langtab.hrc:299
+#: svtools/inc/langtab.hrc:300
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Asturian"
msgstr "الأستورية"
#. hwM5p
-#: svtools/inc/langtab.hrc:300
+#: svtools/inc/langtab.hrc:301
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Upper"
msgstr "الصربية، العليا"
#. iGTFG
-#: svtools/inc/langtab.hrc:301
+#: svtools/inc/langtab.hrc:302
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Lower"
msgstr "الصربية، السفلى"
#. RvdrP
-#: svtools/inc/langtab.hrc:302
+#: svtools/inc/langtab.hrc:303
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latgalian"
msgstr "اللاتجية"
#. 94i7A
-#: svtools/inc/langtab.hrc:303
+#: svtools/inc/langtab.hrc:304
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maore"
msgstr "الماورية"
#. FeuXJ
-#: svtools/inc/langtab.hrc:304
+#: svtools/inc/langtab.hrc:305
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bushi"
msgstr "بوشي"
#. CWFtg
-#: svtools/inc/langtab.hrc:305
+#: svtools/inc/langtab.hrc:306
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tahitian"
msgstr "التاهيتية"
#. TDoMB
-#: svtools/inc/langtab.hrc:306
+#: svtools/inc/langtab.hrc:307
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malagasy, Plateau"
msgstr "الملاقاسية، الهضبة"
#. EVG88
-#: svtools/inc/langtab.hrc:307
+#: svtools/inc/langtab.hrc:308
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamentu (Netherlands Antilles)"
msgstr "بابيامانتو (جزر الأنتيل الهولندية)"
#. fbGn8
-#: svtools/inc/langtab.hrc:308
+#: svtools/inc/langtab.hrc:309
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Aruba)"
msgstr "بابيامانتو (أروبا)"
#. 9XBNE
-#: svtools/inc/langtab.hrc:309
+#: svtools/inc/langtab.hrc:310
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Campidanese"
msgstr "الساردينية، كامبيدنيز"
#. d2kAw
-#: svtools/inc/langtab.hrc:310
+#: svtools/inc/langtab.hrc:311
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Gallurese"
msgstr "الساردينية، جالوريزيه"
#. cJATX
-#: svtools/inc/langtab.hrc:311
+#: svtools/inc/langtab.hrc:312
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Logudorese"
msgstr "الساردينية، لوجودورز"
#. PJFYt
-#: svtools/inc/langtab.hrc:312
+#: svtools/inc/langtab.hrc:313
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Sassarese"
msgstr "الساردينية، ساسوريز"
#. oDLAc
-#: svtools/inc/langtab.hrc:313
+#: svtools/inc/langtab.hrc:314
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bafia"
msgstr "بافيا"
#. 598zD
-#: svtools/inc/langtab.hrc:314
+#: svtools/inc/langtab.hrc:315
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gikuyu"
msgstr "جيكويو"
#. PFxrW
-#: svtools/inc/langtab.hrc:315
+#: svtools/inc/langtab.hrc:316
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yoruba"
msgstr "اليوروبا"
#. jajFo
-#: svtools/inc/langtab.hrc:316
+#: svtools/inc/langtab.hrc:317
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Ukraine)"
msgstr "الروسينية (أوكرانيا)"
#. PpWdM
-#: svtools/inc/langtab.hrc:317
+#: svtools/inc/langtab.hrc:318
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Slovakia)"
msgstr "الروسينية (سلوفاكيا)"
#. Wgo9k
-#: svtools/inc/langtab.hrc:318
+#: svtools/inc/langtab.hrc:319
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabyle Latin"
msgstr "القابلية اﻻتينية"
#. MSnHB
-#: svtools/inc/langtab.hrc:319
+#: svtools/inc/langtab.hrc:320
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (USA)"
msgstr "اليديشية (الولايات المتحدة)"
#. uYMRX
-#: svtools/inc/langtab.hrc:320
+#: svtools/inc/langtab.hrc:321
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hawaiian"
msgstr "هاواي"
#. DyEGX
-#: svtools/inc/langtab.hrc:321
+#: svtools/inc/langtab.hrc:322
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Limbu"
msgstr "اللمبو"
#. 3jGCz
-#: svtools/inc/langtab.hrc:322
+#: svtools/inc/langtab.hrc:323
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lojban"
msgstr "اللوجبان"
#. Ec3C4
-#: svtools/inc/langtab.hrc:323
+#: svtools/inc/langtab.hrc:324
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Haitian"
msgstr "الهايتية"
#. D3Xoy
-#: svtools/inc/langtab.hrc:324
+#: svtools/inc/langtab.hrc:325
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Beembe"
msgstr "لغة Beembe"
#. 6Pkbr
-#: svtools/inc/langtab.hrc:325
+#: svtools/inc/langtab.hrc:326
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bekwel"
msgstr "لغة Bekwel"
#. 8WjqB
-#: svtools/inc/langtab.hrc:326
+#: svtools/inc/langtab.hrc:327
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Congo)"
msgstr ""
#. hCFcE
-#: svtools/inc/langtab.hrc:327
+#: svtools/inc/langtab.hrc:328
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lari"
msgstr "لاري"
#. KxXpB
-#: svtools/inc/langtab.hrc:328
+#: svtools/inc/langtab.hrc:329
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mbochi"
msgstr "لغة Mbochi"
#. 6FdTq
-#: svtools/inc/langtab.hrc:329
+#: svtools/inc/langtab.hrc:330
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Eboo"
msgstr "تيكي، إيبو"
#. FeBzA
-#: svtools/inc/langtab.hrc:330
+#: svtools/inc/langtab.hrc:331
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Ibali"
msgstr "لغة Teke-Ibali"
#. LKetF
-#: svtools/inc/langtab.hrc:331
+#: svtools/inc/langtab.hrc:332
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Tyee"
msgstr "لغة Teke-Tyee"
#. DfVqj
-#: svtools/inc/langtab.hrc:332
+#: svtools/inc/langtab.hrc:333
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vili"
msgstr "فيلي"
#. uBEkT
-#: svtools/inc/langtab.hrc:333
+#: svtools/inc/langtab.hrc:334
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "KeyID"
msgstr "معرف المفتاح"
#. maAoG
-#: svtools/inc/langtab.hrc:334
+#: svtools/inc/langtab.hrc:335
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Latin"
msgstr "البالية اللاتينية"
#. eDDSm
-#: svtools/inc/langtab.hrc:335
+#: svtools/inc/langtab.hrc:336
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kyrgyz (China)"
msgstr "القيرغيزية (الصين)"
#. RCmma
-#: svtools/inc/langtab.hrc:336
+#: svtools/inc/langtab.hrc:337
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Zyrian"
msgstr "كومية-زيرية"
#. DLxCK
-#: svtools/inc/langtab.hrc:337
+#: svtools/inc/langtab.hrc:338
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Permyak"
msgstr "كومية-برمانية"
#. zRJy3
-#: svtools/inc/langtab.hrc:338
+#: svtools/inc/langtab.hrc:339
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pitjantjatjara"
msgstr "البيتجانتجاتجارا"
#. X2WLD
-#: svtools/inc/langtab.hrc:339
+#: svtools/inc/langtab.hrc:340
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malawi)"
msgstr "الإنجليزية (ملاوي)"
#. BNve6
-#: svtools/inc/langtab.hrc:340
+#: svtools/inc/langtab.hrc:341
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Erzya"
msgstr "الأرزية"
#. bS6vy
-#: svtools/inc/langtab.hrc:341
+#: svtools/inc/langtab.hrc:342
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Meadow"
msgstr "ماري، ميدو"
#. 2YjMT
-#: svtools/inc/langtab.hrc:342
+#: svtools/inc/langtab.hrc:343
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Curaçao)"
msgstr "البابيامينتو (كوراساو)"
#. QA2V4
-#: svtools/inc/langtab.hrc:343
+#: svtools/inc/langtab.hrc:344
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Bonaire)"
msgstr "بابيامنتو (بونير)"
#. vozw6
-#: svtools/inc/langtab.hrc:344
+#: svtools/inc/langtab.hrc:345
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khanty"
msgstr "خانتي"
#. MBtJM
-#: svtools/inc/langtab.hrc:345
+#: svtools/inc/langtab.hrc:346
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Livonian"
msgstr "يفونيان"
#. wNkoh
-#: svtools/inc/langtab.hrc:346
+#: svtools/inc/langtab.hrc:347
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moksha"
msgstr "الموكشا"
#. uCDU6
-#: svtools/inc/langtab.hrc:347
+#: svtools/inc/langtab.hrc:348
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Hill"
msgstr "ماري، هيل"
#. JEhY4
-#: svtools/inc/langtab.hrc:348
+#: svtools/inc/langtab.hrc:349
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nganasan"
msgstr "لغة Nganasan"
#. hr4pq
-#: svtools/inc/langtab.hrc:349
+#: svtools/inc/langtab.hrc:350
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Olonets"
msgstr "أولونيتس"
#. Arpn4
-#: svtools/inc/langtab.hrc:350
+#: svtools/inc/langtab.hrc:351
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Veps"
msgstr "لغة Veps"
#. fJ3Ss
-#: svtools/inc/langtab.hrc:351
+#: svtools/inc/langtab.hrc:352
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Võro"
msgstr "لغة Võro"
#. HuWCs
-#: svtools/inc/langtab.hrc:352
+#: svtools/inc/langtab.hrc:353
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nenets"
msgstr "نينيتس"
#. 5Zxgd
-#: svtools/inc/langtab.hrc:353
+#: svtools/inc/langtab.hrc:354
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Central African Republic)"
-msgstr ""
+msgstr "الآكا (جمهورية افريقيا الوسطى)"
#. oBDBe
-#: svtools/inc/langtab.hrc:354
+#: svtools/inc/langtab.hrc:355
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Congo)"
-msgstr "ويعرف أيضا باسم (الكونغو)"
+msgstr "الآكا (الكونغو)"
#. GRKCD
-#: svtools/inc/langtab.hrc:355
+#: svtools/inc/langtab.hrc:356
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dibole"
msgstr "لغة Dibole"
#. cgMCr
-#: svtools/inc/langtab.hrc:356
+#: svtools/inc/langtab.hrc:357
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Doondo"
msgstr "لغة Doondo"
#. FmhF6
-#: svtools/inc/langtab.hrc:357
+#: svtools/inc/langtab.hrc:358
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kaamba"
msgstr "لغة Kaamba"
#. BBf4G
-#: svtools/inc/langtab.hrc:358
+#: svtools/inc/langtab.hrc:359
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Koongo (Congo)"
msgstr "لغة Koongo (الكونغو)"
#. HbeaC
-#: svtools/inc/langtab.hrc:359
+#: svtools/inc/langtab.hrc:360
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kunyi"
msgstr "لغة Kunyi"
#. wLxHD
-#: svtools/inc/langtab.hrc:360
+#: svtools/inc/langtab.hrc:361
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngungwel"
msgstr "لغة Ngungwel"
#. 7cvAe
-#: svtools/inc/langtab.hrc:361
+#: svtools/inc/langtab.hrc:362
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
msgstr "لغة Njyem (الكونغو)"
#. G2SG8
-#: svtools/inc/langtab.hrc:362
+#: svtools/inc/langtab.hrc:363
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punu"
msgstr "لغة Punu"
#. WjBVL
-#: svtools/inc/langtab.hrc:363
+#: svtools/inc/langtab.hrc:364
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Suundi"
msgstr "لغة Suundi"
#. 9nAA2
-#: svtools/inc/langtab.hrc:364
+#: svtools/inc/langtab.hrc:365
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Kukuya"
msgstr "لغة Teke-Kukuya"
#. dwdUH
-#: svtools/inc/langtab.hrc:365
+#: svtools/inc/langtab.hrc:366
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsaangi"
msgstr "لغة Tsaangi"
#. otqzC
-#: svtools/inc/langtab.hrc:366
+#: svtools/inc/langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Congo)"
-msgstr ""
+msgstr "الياكا (الكونغو)"
#. JuMFF
-#: svtools/inc/langtab.hrc:367
+#: svtools/inc/langtab.hrc:368
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Democratic Republic of the Congo)"
-msgstr ""
+msgstr "الياكا (جمهورية الكونغو الديمقراطية)"
#. NDjGL
-#: svtools/inc/langtab.hrc:368
+#: svtools/inc/langtab.hrc:369
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yombe (Congo)"
msgstr "لغة Yombe (الكونغو)"
#. MvwFr
-#: svtools/inc/langtab.hrc:369
+#: svtools/inc/langtab.hrc:370
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "N'ko"
msgstr "نكو"
#. WFc6C
-#: svtools/inc/langtab.hrc:370
+#: svtools/inc/langtab.hrc:371
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Udmurt"
msgstr "الأدمرت"
#. hEtfX
-#: svtools/inc/langtab.hrc:371
+#: svtools/inc/langtab.hrc:372
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (India)"
msgstr "تبت (الهند)"
#. Agf93
-#: svtools/inc/langtab.hrc:372
+#: svtools/inc/langtab.hrc:373
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cornish"
msgstr "الكورنية"
#. EtH3H
-#: svtools/inc/langtab.hrc:373
+#: svtools/inc/langtab.hrc:374
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Pite (Sweden)"
msgstr "السامية، لولا (السويد)"
#. jp6C9
-#: svtools/inc/langtab.hrc:374
+#: svtools/inc/langtab.hrc:375
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngäbere"
msgstr ""
#. 3nTLx
-#: svtools/inc/langtab.hrc:375
+#: svtools/inc/langtab.hrc:376
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kumyk"
msgstr "الكميك"
#. c56C9
-#: svtools/inc/langtab.hrc:376
+#: svtools/inc/langtab.hrc:377
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nogai"
msgstr "نوجاى"
#. CBiiA
-#: svtools/inc/langtab.hrc:377
+#: svtools/inc/langtab.hrc:378
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Karakalpak Latin"
msgstr ""
#. CkEC7
-#: svtools/inc/langtab.hrc:378
+#: svtools/inc/langtab.hrc:379
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ladin"
msgstr "اللاتينية"
#. XAiVE
-#: svtools/inc/langtab.hrc:379
+#: svtools/inc/langtab.hrc:380
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Burkina Faso)"
msgstr "الفرنسية (بوركينا فاسو)"
#. EGzhe
-#: svtools/inc/langtab.hrc:380
+#: svtools/inc/langtab.hrc:381
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Puinave"
msgstr ""
#. HNcxe
-#: svtools/inc/langtab.hrc:381
+#: svtools/inc/langtab.hrc:382
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maninkakan, Eastern, Latin"
msgstr ""
#. Kxi9E
-#: svtools/inc/langtab.hrc:382
+#: svtools/inc/langtab.hrc:383
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Avar"
msgstr ""
#. zumBa
-#: svtools/inc/langtab.hrc:383
+#: svtools/inc/langtab.hrc:384
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Latin"
msgstr ""
#. PQqU7
-#: svtools/inc/langtab.hrc:384
+#: svtools/inc/langtab.hrc:385
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Syllabics"
msgstr ""
#. kewgf
-#: svtools/inc/langtab.hrc:385
+#: svtools/inc/langtab.hrc:386
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lengo"
msgstr ""
#. KtBfE
-#: svtools/inc/langtab.hrc:386
+#: svtools/inc/langtab.hrc:387
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Côte d'Ivoire)"
msgstr "الفرنسية (ساحل العاج)"
#. DTuEL
-#: svtools/inc/langtab.hrc:387
+#: svtools/inc/langtab.hrc:388
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mali)"
msgstr "الفرنسية (مالي)"
#. LFLk6
-#: svtools/inc/langtab.hrc:388
+#: svtools/inc/langtab.hrc:389
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Senegal)"
msgstr "الفرنسية (السينيغال)"
#. mSK3x
-#: svtools/inc/langtab.hrc:389
+#: svtools/inc/langtab.hrc:390
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Benin)"
msgstr "الفرنسية (بنين)"
#. tM6qQ
-#: svtools/inc/langtab.hrc:390
+#: svtools/inc/langtab.hrc:391
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Niger)"
msgstr "الفرنسية (النيجر)"
#. nCq6f
-#: svtools/inc/langtab.hrc:391
+#: svtools/inc/langtab.hrc:392
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Togo)"
msgstr "الفرنسية (توغو)"
#. oCBvK
-#: svtools/inc/langtab.hrc:392
+#: svtools/inc/langtab.hrc:393
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kven Finnish"
msgstr ""
#. zjNcC
-#: svtools/inc/langtab.hrc:393
+#: svtools/inc/langtab.hrc:394
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venetian"
-msgstr ""
+msgstr "البِندقية"
#. 8EbCs
-#: svtools/inc/langtab.hrc:394
+#: svtools/inc/langtab.hrc:395
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Gambia)"
msgstr "الإنجليزية (غامبيا)"
#. gEd8L
-#: svtools/inc/langtab.hrc:395
+#: svtools/inc/langtab.hrc:396
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aranese"
msgstr "الأراغونية"
#. TaEzQ
-#: svtools/inc/langtab.hrc:396
+#: svtools/inc/langtab.hrc:397
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (France)"
msgstr ""
#. s4yFD
-#: svtools/inc/langtab.hrc:397
+#: svtools/inc/langtab.hrc:398
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Italy)"
msgstr ""
#. FvPLF
-#: svtools/inc/langtab.hrc:398
+#: svtools/inc/langtab.hrc:399
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Switzerland)"
msgstr "الألمانية (سويسرا)"
#. GgwXq
-#: svtools/inc/langtab.hrc:399
+#: svtools/inc/langtab.hrc:400
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Botswana)"
msgstr "الإنجليزية (بتسوانا)"
#. GZfWN
-#: svtools/inc/langtab.hrc:400
+#: svtools/inc/langtab.hrc:401
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingue Occidental"
msgstr ""
#. FFkaK
-#: svtools/inc/langtab.hrc:401
+#: svtools/inc/langtab.hrc:402
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Apatani"
msgstr ""
#. EHHtS
-#: svtools/inc/langtab.hrc:402
+#: svtools/inc/langtab.hrc:403
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Mauritius)"
msgstr "الإنجليزية (موريشيوس)"
#. atcMq
-#: svtools/inc/langtab.hrc:403
+#: svtools/inc/langtab.hrc:404
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mauritius)"
msgstr "الفرنسية (موريشيوس)"
#. UZ4Pn
-#: svtools/inc/langtab.hrc:404
+#: svtools/inc/langtab.hrc:405
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Silesian"
-msgstr ""
+msgstr "السيليزيانية"
#. RJDLA
-#: svtools/inc/langtab.hrc:405
+#: svtools/inc/langtab.hrc:406
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
#. v3WK8
-#: svtools/inc/langtab.hrc:406
+#: svtools/inc/langtab.hrc:407
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malaysia)"
msgstr "الإنجليزية (ملاوي)"
#. 4sBjT
-#: svtools/inc/langtab.hrc:407
+#: svtools/inc/langtab.hrc:408
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manchu"
msgstr ""
#. XH3fY
-#: svtools/inc/langtab.hrc:408
+#: svtools/inc/langtab.hrc:409
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xibe"
msgstr ""
#. oGNdE
-#: svtools/inc/langtab.hrc:409
+#: svtools/inc/langtab.hrc:410
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Democratic Republic of the Congo)"
msgstr ""
#. jQF7C
-#: svtools/inc/langtab.hrc:410
+#: svtools/inc/langtab.hrc:411
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr "الخط"
#. cAPXF
-#: svtools/inc/langtab.hrc:411
+#: svtools/inc/langtab.hrc:412
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Plautdietsch"
msgstr ""
#. 8LY2A
-#: svtools/inc/langtab.hrc:412
+#: svtools/inc/langtab.hrc:413
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Russia)"
msgstr ""
#. ieGNR
-#: svtools/inc/langtab.hrc:413
+#: svtools/inc/langtab.hrc:414
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Iran)"
msgstr ""
#. US8Ga
-#: svtools/inc/langtab.hrc:414
+#: svtools/inc/langtab.hrc:415
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Western (Armenia)"
msgstr "الأرمينية، الغربية (أرمينيا)"
#. nzbrZ
-#: svtools/inc/langtab.hrc:415
+#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Classical (Armenia)"
msgstr ""
#. BDKAa
-#: svtools/inc/langtab.hrc:416
+#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Malaysia)"
msgstr ""
#. AnrGG
-#: svtools/inc/langtab.hrc:417
+#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Brunei Darussalam)"
msgstr ""
#. utBog
-#: svtools/inc/langtab.hrc:418
+#: svtools/inc/langtab.hrc:419
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
msgstr ""
#. jPaAH
-#: svtools/inc/langtab.hrc:419
+#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
msgstr ""
#. mMVAF
-#: svtools/inc/langtab.hrc:420
+#: svtools/inc/langtab.hrc:421
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
msgstr ""
#. AzGAy
-#: svtools/inc/langtab.hrc:421
+#: svtools/inc/langtab.hrc:422
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
msgstr "الإنجليزية (زامبيا)"
#. 7kkKy
-#: svtools/inc/langtab.hrc:422
+#: svtools/inc/langtab.hrc:423
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Sri Lanka)"
msgstr "الإنجليزية (سريلانكا)"
#. xFPXp
-#: svtools/inc/langtab.hrc:423
+#: svtools/inc/langtab.hrc:424
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Nigeria)"
msgstr "الإنجليزية (نيجيريا)"
#. Up6ab
-#: svtools/inc/langtab.hrc:424
+#: svtools/inc/langtab.hrc:425
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabardian"
msgstr ""
#. BiDsR
-#: svtools/inc/langtab.hrc:425
+#: svtools/inc/langtab.hrc:426
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guadeloupean Creole French"
msgstr ""
#. 2b2P4
-#: svtools/inc/langtab.hrc:426
+#: svtools/inc/langtab.hrc:427
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ligurian"
msgstr ""
#. 3LvEE
-#: svtools/inc/langtab.hrc:427
+#: svtools/inc/langtab.hrc:428
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Minangkabau"
msgstr ""
#. nDkKR
-#: svtools/inc/langtab.hrc:428
+#: svtools/inc/langtab.hrc:429
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sundanese"
msgstr ""
#. wGEAB
-#: svtools/inc/langtab.hrc:429
+#: svtools/inc/langtab.hrc:430
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Hong Kong)"
msgstr "الإنجليزية (هونغ كونغ)"
#. qTMB2
-#: svtools/inc/langtab.hrc:430
+#: svtools/inc/langtab.hrc:431
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Kenya)"
msgstr "الإنجليزية (كينيا)"
#. SgQ2p
-#: svtools/inc/langtab.hrc:431
+#: svtools/inc/langtab.hrc:432
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Thai"
-msgstr ""
+msgstr "التايلندية البالية"
#. DGeeF
-#: svtools/inc/langtab.hrc:432
+#: svtools/inc/langtab.hrc:433
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cabécar"
-msgstr ""
+msgstr "الكابيكار"
#. xHCtG
-#: svtools/inc/langtab.hrc:433
+#: svtools/inc/langtab.hrc:434
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bribri"
-msgstr ""
+msgstr "برِبري"
#. 2GFgR
-#: svtools/inc/langtab.hrc:434
+#: svtools/inc/langtab.hrc:435
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Denmark)"
msgstr "الإنجليزية (الدانمارك)"
#. gmE6U
-#: svtools/inc/langtab.hrc:435
+#: svtools/inc/langtab.hrc:436
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sesotho"
-msgstr ""
+msgstr "سَسوتو"
#. BkKJX
-#: svtools/inc/langtab.hrc:436
+#: svtools/inc/langtab.hrc:437
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
-msgstr ""
+msgstr "كلِنغون"
#. xFYhC
-#: svtools/inc/langtab.hrc:437
+#: svtools/inc/langtab.hrc:438
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Israel)"
msgstr "الإنجليزية (اسرائيل)"
#. Bryjh
-#: svtools/inc/langtab.hrc:438
+#: svtools/inc/langtab.hrc:439
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Latin"
-msgstr ""
+msgstr "اللاتينية بين السلافية"
#. DZBAE
-#: svtools/inc/langtab.hrc:439
+#: svtools/inc/langtab.hrc:440
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Cyrillic"
-msgstr ""
+msgstr "السريلية بين السلافية"
#. 4eEDW
-#: svtools/inc/langtab.hrc:440
+#: svtools/inc/langtab.hrc:441
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pennsylvania Dutch"
-msgstr ""
+msgstr "الهولندية البنسلفانية"
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
@@ -5066,13 +5065,13 @@ msgstr "الجدول:"
#: svtools/uiconfig/ui/addresstemplatedialog.ui:143
msgctxt "addresstemplatedialog|extended_tip|datasource"
msgid "Select the data source for your address book."
-msgstr ""
+msgstr "حدد مصدر البيانات لدفتر العناوين."
#. UTY6t
#: svtools/uiconfig/ui/addresstemplatedialog.ui:167
msgctxt "addresstemplatedialog|extended_tip|datatable"
msgid "Select the data table for your address book."
-msgstr ""
+msgstr "حدد جدول البيانات لدفتر العناوين."
#. xkk5e
#: svtools/uiconfig/ui/addresstemplatedialog.ui:178
@@ -5084,7 +5083,7 @@ msgstr ""
#: svtools/uiconfig/ui/addresstemplatedialog.ui:185
msgctxt "addresstemplatedialog|extended_tip|admin"
msgid "Add a new data source to the Address Book Source list."
-msgstr ""
+msgstr "أضف مصدر بيانات جديد إلى قائمة مصادر دفتر العناوين."
#. sws8j
#: svtools/uiconfig/ui/addresstemplatedialog.ui:203
@@ -5114,13 +5113,13 @@ msgstr ""
#: svtools/uiconfig/ui/calendar.ui:43
msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
msgid "Today"
-msgstr ""
+msgstr "اليوم"
#. Cr9A2
#: svtools/uiconfig/ui/calendar.ui:58
msgctxt "calendar|STR_SVT_CALENDAR_NONE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
@@ -5144,7 +5143,7 @@ msgstr "خيارات %1"
#: svtools/uiconfig/ui/graphicexport.ui:141
msgctxt "graphicexport|modifydimensionscb"
msgid "Modify dimensions"
-msgstr ""
+msgstr "عدّل الأبعاد"
#. pyd6J
#: svtools/uiconfig/ui/graphicexport.ui:159
@@ -5162,7 +5161,7 @@ msgstr "الارتفاع:"
#: svtools/uiconfig/ui/graphicexport.ui:184
msgctxt "graphicexport|modifyresolutioncb"
msgid "Modify resolution"
-msgstr ""
+msgstr "عدّل المَيز"
#. ZWxGB
#: svtools/uiconfig/ui/graphicexport.ui:202
@@ -5336,7 +5335,7 @@ msgstr ""
#: svtools/uiconfig/ui/graphicexport.ui:587
msgctxt "graphicexport|label12"
msgid "Mode"
-msgstr "وضع"
+msgstr "الوضع"
#. Nhj88
#: svtools/uiconfig/ui/graphicexport.ui:607
@@ -5354,7 +5353,7 @@ msgstr ""
#: svtools/uiconfig/ui/graphicexport.ui:627
msgctxt "graphicexport|labe"
msgid "Drawing Objects"
-msgstr "كائنات رسومية"
+msgstr "كائنات رسم"
#. KMCxb
#: svtools/uiconfig/ui/graphicexport.ui:654
@@ -5492,7 +5491,7 @@ msgstr ""
#: svtools/uiconfig/ui/graphicexport.ui:962
msgctxt "graphicexport|compressnone"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. kW3QD
#: svtools/uiconfig/ui/graphicexport.ui:971
@@ -5528,7 +5527,7 @@ msgstr "يتطلّب %PRODUCTNAME إحدى بيئات جافا التّشغيل
#: svtools/uiconfig/ui/linewindow.ui:19
msgctxt "linewindow|none_line_button"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. LwyoW
#: svtools/uiconfig/ui/placeedit.ui:18
@@ -5660,13 +5659,13 @@ msgstr "الحالة:"
#: svtools/uiconfig/ui/printersetupdialog.ui:140
msgctxt "printersetupdialog|label4"
msgid "Type:"
-msgstr "النّوع:"
+msgstr "النوع:"
#. amoGB
#: svtools/uiconfig/ui/printersetupdialog.ui:152
msgctxt "printersetupdialog|label5"
msgid "Location:"
-msgstr "المكان:"
+msgstr "الموضع:"
#. B66Zc
#: svtools/uiconfig/ui/printersetupdialog.ui:164
@@ -5678,7 +5677,7 @@ msgstr "تعليق:"
#: svtools/uiconfig/ui/printersetupdialog.ui:222
msgctxt "printersetupdialog|properties"
msgid "Properties..."
-msgstr "خصائص..."
+msgstr "الخصائص..."
#. DFBtc
#: svtools/uiconfig/ui/printersetupdialog.ui:228
@@ -5726,7 +5725,7 @@ msgstr "المدخلة: %s"
#: svtools/uiconfig/ui/querydeletedialog.ui:25
msgctxt "querydeletedialog|yes"
msgid "_Delete"
-msgstr "ا_حذف"
+msgstr "اح_ذف"
#. KSj3y
#: svtools/uiconfig/ui/querydeletedialog.ui:41
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 39446816c43..3f9bd123c3c 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022449.000000\n"
#. 3GkZj
@@ -36,3067 +36,3063 @@ msgctxt "STR_ObjNameSingulGRUP"
msgid "Group object"
msgstr "كائن مجموعة"
-#. tC4qm
+#. nsYcw
#: include/svx/strings.hrc:28
+msgctxt "STR_ObjNameSingulDIAGRAM"
+msgid "Diagram"
+msgstr ""
+
+#. tC4qm
+#: include/svx/strings.hrc:29
#, fuzzy
msgctxt "STR_ObjNamePluralGRUP"
msgid "Group objects"
msgstr "كائنات مجموعة"
#. piV8E
-#: include/svx/strings.hrc:29
+#: include/svx/strings.hrc:30
msgctxt "STR_ObjNameSingulGRUPEMPTY"
msgid "Blank group object"
msgstr "كائن مجموعة فارغة"
#. BBEPU
-#: include/svx/strings.hrc:30
+#: include/svx/strings.hrc:31
msgctxt "STR_ObjNamePluralGRUPEMPTY"
msgid "Blank group objects"
msgstr "كائنات مجموعات فارغة"
#. NVHmC
-#: include/svx/strings.hrc:31
+#: include/svx/strings.hrc:32
msgctxt "STR_ObjNameSingulLINE"
msgid "Line"
msgstr "الخط"
#. SD2Wy
-#: include/svx/strings.hrc:32
+#: include/svx/strings.hrc:33
#, fuzzy
msgctxt "STR_ObjNameSingulLINE_Hori"
msgid "Horizontal line"
msgstr "خط أفقي"
#. 3dPEH
-#: include/svx/strings.hrc:33
+#: include/svx/strings.hrc:34
msgctxt "STR_ObjNameSingulLINE_Vert"
msgid "Vertical line"
msgstr "خط رأسي"
#. JzFtj
-#: include/svx/strings.hrc:34
+#: include/svx/strings.hrc:35
#, fuzzy
msgctxt "STR_ObjNameSingulLINE_Diag"
msgid "Diagonal line"
msgstr "خط قطري"
#. YPAoe
-#: include/svx/strings.hrc:35
+#: include/svx/strings.hrc:36
msgctxt "STR_ObjNamePluralLINE"
msgid "Lines"
-msgstr "أسطر"
+msgstr "خطوط"
#. yS2nC
-#: include/svx/strings.hrc:36
+#: include/svx/strings.hrc:37
msgctxt "STR_ObjNameSingulRECT"
msgid "Rectangle"
msgstr "مستطيل"
#. TDTj8
-#: include/svx/strings.hrc:37
+#: include/svx/strings.hrc:38
msgctxt "STR_ObjNamePluralRECT"
msgid "Rectangles"
msgstr "أشكال مستطيلة"
#. fnV49
-#: include/svx/strings.hrc:38
+#: include/svx/strings.hrc:39
msgctxt "STR_ObjNameSingulQUAD"
msgid "Square"
msgstr "مربع"
#. XkEHU
-#: include/svx/strings.hrc:39
+#: include/svx/strings.hrc:40
msgctxt "STR_ObjNamePluralQUAD"
msgid "Squares"
msgstr "مربعات"
#. vw4Ut
-#: include/svx/strings.hrc:40
+#: include/svx/strings.hrc:41
msgctxt "STR_ObjNameSingulPARAL"
msgid "Parallelogram"
msgstr "متوازي أضلاع"
#. yCpvs
-#: include/svx/strings.hrc:41
+#: include/svx/strings.hrc:42
msgctxt "STR_ObjNamePluralPARAL"
msgid "Parallelograms"
msgstr "متوازيات الأضلاع"
#. SfDZQ
-#: include/svx/strings.hrc:42
+#: include/svx/strings.hrc:43
msgctxt "STR_ObjNameSingulRECTRND"
msgid "Rounded rectangle"
msgstr "مستطيل مستدير الزوايا"
#. PYAii
-#: include/svx/strings.hrc:43
+#: include/svx/strings.hrc:44
msgctxt "STR_ObjNamePluralRECTRND"
msgid "Rounded Rectangles"
msgstr "مستطيلات مستديرة الزوايا"
#. xQAn8
-#: include/svx/strings.hrc:44
+#: include/svx/strings.hrc:45
msgctxt "STR_ObjNameSingulQUADRND"
msgid "rounded square"
msgstr "مربع مستدير الزوايا"
#. JHxon
-#: include/svx/strings.hrc:45
+#: include/svx/strings.hrc:46
msgctxt "STR_ObjNamePluralQUADRND"
msgid "Rounded Squares"
msgstr "مربعات مستديرة الزوايا"
#. 89eHB
-#: include/svx/strings.hrc:46
+#: include/svx/strings.hrc:47
msgctxt "STR_ObjNameSingulPARALRND"
msgid "Rounded Parallelogram"
msgstr "متوازي أضلاع مستدير الزوايا"
#. WvCRG
-#: include/svx/strings.hrc:47
+#: include/svx/strings.hrc:48
msgctxt "STR_ObjNamePluralPARALRND"
msgid "Rounded parallelograms"
msgstr "متوازيات أضلاع مستديرة الزوايا"
#. NDXG6
-#: include/svx/strings.hrc:48
+#: include/svx/strings.hrc:49
msgctxt "STR_ObjNameSingulCIRC"
msgid "Circle"
msgstr "دائرة"
#. Bzk99
-#: include/svx/strings.hrc:49
+#: include/svx/strings.hrc:50
msgctxt "STR_ObjNamePluralCIRC"
msgid "Circles"
msgstr "دوائر"
#. 2CxVR
-#: include/svx/strings.hrc:50
+#: include/svx/strings.hrc:51
msgctxt "STR_ObjNameSingulSECT"
msgid "Circle sector"
msgstr "قطاع دائري"
#. djBb7
-#: include/svx/strings.hrc:51
+#: include/svx/strings.hrc:52
msgctxt "STR_ObjNamePluralSECT"
msgid "Circle sectors"
msgstr "قطاعات دائرية"
#. KAhqG
-#: include/svx/strings.hrc:52
+#: include/svx/strings.hrc:53
msgctxt "STR_ObjNameSingulCARC"
msgid "Arc"
msgstr "قوس"
#. ZtPEx
-#: include/svx/strings.hrc:53
+#: include/svx/strings.hrc:54
msgctxt "STR_ObjNamePluralCARC"
msgid "Arcs"
msgstr "أقواس"
#. 7mXtq
-#: include/svx/strings.hrc:54
+#: include/svx/strings.hrc:55
msgctxt "STR_ObjNameSingulCCUT"
msgid "Circle segment"
msgstr "قطاع من دائرة"
#. YkhbA
-#: include/svx/strings.hrc:55
+#: include/svx/strings.hrc:56
msgctxt "STR_ObjNamePluralCCUT"
msgid "Circle segments"
msgstr "قطاعات من دائرة"
#. QsEuy
-#: include/svx/strings.hrc:56
+#: include/svx/strings.hrc:57
msgctxt "STR_ObjNameSingulCIRCE"
msgid "Ellipse"
msgstr "علامة حذف"
#. rUFxb
-#: include/svx/strings.hrc:57
+#: include/svx/strings.hrc:58
msgctxt "STR_ObjNamePluralCIRCE"
msgid "Ellipses"
msgstr "أشكال بيضوية"
#. UADGo
-#: include/svx/strings.hrc:58
+#: include/svx/strings.hrc:59
msgctxt "STR_ObjNameSingulSECTE"
msgid "Ellipse Pie"
msgstr "قطاع دائري للحذف"
#. afCit
-#: include/svx/strings.hrc:59
+#: include/svx/strings.hrc:60
msgctxt "STR_ObjNamePluralSECTE"
msgid "Ellipse Pies"
msgstr "مقاطع من شكل بيضوي"
#. 7FXAW
-#: include/svx/strings.hrc:60
+#: include/svx/strings.hrc:61
msgctxt "STR_ObjNameSingulCARCE"
msgid "Elliptical arc"
msgstr "قوس بيضوي"
#. KdtfM
-#: include/svx/strings.hrc:61
+#: include/svx/strings.hrc:62
msgctxt "STR_ObjNamePluralCARCE"
msgid "Elliptical arcs"
msgstr "أقواس بيضوية"
#. C4jME
-#: include/svx/strings.hrc:62
+#: include/svx/strings.hrc:63
msgctxt "STR_ObjNameSingulCCUTE"
msgid "Ellipse Segment"
msgstr "قطعة من شكل بيضوي"
#. wKC5F
-#: include/svx/strings.hrc:63
+#: include/svx/strings.hrc:64
msgctxt "STR_ObjNamePluralCCUTE"
msgid "Ellipse Segments"
msgstr "قطع من شكل بيضوي"
#. ibJ55
-#: include/svx/strings.hrc:64
+#: include/svx/strings.hrc:65
msgctxt "STR_ObjNameSingulPOLY"
msgid "Polygon"
msgstr "مضلّع"
#. AZFuB
-#: include/svx/strings.hrc:65
+#: include/svx/strings.hrc:66
#, fuzzy
msgctxt "STR_ObjNameSingulPOLY_PointCount"
msgid "Polygon %2 corners"
msgstr "مضلع %2 زاوية/زوايا"
#. a6z8j
-#: include/svx/strings.hrc:66
+#: include/svx/strings.hrc:67
msgctxt "STR_ObjNamePluralPOLY"
msgid "Polygons"
msgstr "مضلعات"
#. WSEL3
-#: include/svx/strings.hrc:67
+#: include/svx/strings.hrc:68
msgctxt "STR_ObjNameSingulPLIN"
msgid "Polyline"
msgstr "خط متعدد"
#. eBhxV
-#: include/svx/strings.hrc:68
+#: include/svx/strings.hrc:69
#, fuzzy
msgctxt "STR_ObjNameSingulPLIN_PointCount"
msgid "Polyline with %2 corners"
msgstr "متعدد الخطوط مع %2 زاوية/زوايا"
#. NjP7U
-#: include/svx/strings.hrc:69
+#: include/svx/strings.hrc:70
msgctxt "STR_ObjNamePluralPLIN"
msgid "Polylines"
msgstr "خطوط متعددة"
#. KNPXt
-#: include/svx/strings.hrc:70
+#: include/svx/strings.hrc:71
msgctxt "STR_ObjNameSingulPATHLINE"
msgid "Bézier curve"
msgstr "منحنى Bézier"
#. BhTAu
-#: include/svx/strings.hrc:71
+#: include/svx/strings.hrc:72
msgctxt "STR_ObjNamePluralPATHLINE"
msgid "Bézier curves"
msgstr "منحنيات Bézier"
#. LU3AK
-#: include/svx/strings.hrc:72
+#: include/svx/strings.hrc:73
msgctxt "STR_ObjNameSingulPATHFILL"
msgid "Bézier curve"
msgstr "منحنى Bézier"
#. vLAWh
-#: include/svx/strings.hrc:73
+#: include/svx/strings.hrc:74
msgctxt "STR_ObjNamePluralPATHFILL"
msgid "Bézier curves"
msgstr "منحنيات Bézier"
#. FQeae
-#: include/svx/strings.hrc:74
+#: include/svx/strings.hrc:75
msgctxt "STR_ObjNameSingulFREELINE"
msgid "Freeform Line"
msgstr "منحنى حر"
#. c8gFR
-#: include/svx/strings.hrc:75
+#: include/svx/strings.hrc:76
msgctxt "STR_ObjNamePluralFREELINE"
msgid "Freeform Lines"
msgstr "خطوط حرة"
#. GSmPG
-#: include/svx/strings.hrc:76
+#: include/svx/strings.hrc:77
msgctxt "STR_ObjNameSingulFREEFILL"
msgid "Freeform Line"
msgstr "منحنى حر"
#. 8k7tC
-#: include/svx/strings.hrc:77
+#: include/svx/strings.hrc:78
msgctxt "STR_ObjNamePluralFREEFILL"
msgid "Freeform Lines"
msgstr "خطوط حرة"
#. iwxqj
-#: include/svx/strings.hrc:78
+#: include/svx/strings.hrc:79
msgctxt "STR_ObjNameSingulCOMBLINE"
msgid "Curve"
msgstr "منحنى"
#. CjzRc
-#: include/svx/strings.hrc:79
+#: include/svx/strings.hrc:80
msgctxt "STR_ObjNameSingulNATSPLN"
msgid "Natural Spline"
msgstr "شريحة طبيعية"
#. CSFGL
-#: include/svx/strings.hrc:80
+#: include/svx/strings.hrc:81
msgctxt "STR_ObjNamePluralNATSPLN"
msgid "Natural Splines"
msgstr "شرائح طبيعية"
#. jpijx
-#: include/svx/strings.hrc:81
+#: include/svx/strings.hrc:82
msgctxt "STR_ObjNameSingulPERSPLN"
msgid "Periodic Spline"
msgstr "شريحة دورية"
#. A2GLR
-#: include/svx/strings.hrc:82
+#: include/svx/strings.hrc:83
msgctxt "STR_ObjNamePluralPERSPLN"
msgid "Periodic Splines"
msgstr "شرائح دورية"
#. efEFM
-#: include/svx/strings.hrc:83
+#: include/svx/strings.hrc:84
msgctxt "STR_ObjNameSingulTEXT"
msgid "Text Frame"
msgstr "إطار نص"
#. MdV7N
-#: include/svx/strings.hrc:84
+#: include/svx/strings.hrc:85
msgctxt "STR_ObjNamePluralTEXT"
msgid "Text Frame"
msgstr "إطار نص"
#. 3Pvnw
-#: include/svx/strings.hrc:85
+#: include/svx/strings.hrc:86
msgctxt "STR_ObjNameSingulTEXTLNK"
msgid "Linked text frame"
msgstr "إطار النص المرتبط"
#. EtTZB
-#: include/svx/strings.hrc:86
+#: include/svx/strings.hrc:87
msgctxt "STR_ObjNamePluralTEXTLNK"
msgid "Linked text frames"
msgstr "إطارات النص المرتبطة"
#. mw75y
-#: include/svx/strings.hrc:87
+#: include/svx/strings.hrc:88
msgctxt "STR_ObjNameSingulTITLETEXT"
msgid "Title text"
msgstr "نص العنوان"
#. aAKEp
-#: include/svx/strings.hrc:88
+#: include/svx/strings.hrc:89
msgctxt "STR_ObjNamePluralTITLETEXT"
msgid "Title texts"
msgstr "نصوص العنوان"
#. 3DMmh
-#: include/svx/strings.hrc:89
+#: include/svx/strings.hrc:90
msgctxt "STR_ObjNameSingulOUTLINETEXT"
msgid "Outline Text"
msgstr "نص التقسيم"
#. PDZGm
-#: include/svx/strings.hrc:90
+#: include/svx/strings.hrc:91
msgctxt "STR_ObjNamePluralOUTLINETEXT"
msgid "Outline Texts"
msgstr "نصوص التقسيم"
#. HspAE
-#: include/svx/strings.hrc:91
-#, fuzzy
+#: include/svx/strings.hrc:92
msgctxt "STR_ObjNameSingulGRAF"
msgid "Image"
msgstr "صورة"
#. DzfeY
-#: include/svx/strings.hrc:92
-#, fuzzy
+#: include/svx/strings.hrc:93
msgctxt "STR_ObjNamePluralGRAF"
msgid "Images"
-msgstr "الصور"
+msgstr "صور"
#. E9w8q
-#: include/svx/strings.hrc:93
-#, fuzzy
+#: include/svx/strings.hrc:94
msgctxt "STR_ObjNameSingulGRAFLNK"
msgid "Linked image"
-msgstr "الصور غير المربوطة"
+msgstr "الصور المربوطة"
#. YopD6
-#: include/svx/strings.hrc:94
-#, fuzzy
+#: include/svx/strings.hrc:95
msgctxt "STR_ObjNamePluralGRAFLNK"
msgid "Linked images"
-msgstr "ابحث عن الصور"
+msgstr "صور مربوطة"
#. wWACk
-#: include/svx/strings.hrc:95
+#: include/svx/strings.hrc:96
msgctxt "STR_ObjNameSingulGRAFNONE"
msgid "Blank image object"
msgstr "كائن صورة فارغة"
#. uzsE4
-#: include/svx/strings.hrc:96
+#: include/svx/strings.hrc:97
msgctxt "STR_ObjNamePluralGRAFNONE"
msgid "Blank image objects"
msgstr "كائنات صور فارغة"
#. 8Za3o
-#: include/svx/strings.hrc:97
+#: include/svx/strings.hrc:98
msgctxt "STR_ObjNameSingulGRAFNONELNK"
msgid "Blank linked image"
msgstr "صورة مربوطة فارغة"
#. 8W5JS
-#: include/svx/strings.hrc:98
+#: include/svx/strings.hrc:99
msgctxt "STR_ObjNamePluralGRAFNONELNK"
msgid "Blank linked images"
msgstr "صور مربوطة فارغة"
#. kUuBg
-#: include/svx/strings.hrc:99
+#: include/svx/strings.hrc:100
msgctxt "STR_ObjNameSingulGRAFMTF"
msgid "Metafile"
msgstr "ملف التعريف"
#. w5ykB
-#: include/svx/strings.hrc:100
+#: include/svx/strings.hrc:101
msgctxt "STR_ObjNamePluralGRAFMTF"
msgid "Metafiles"
msgstr "ملفات التعريف"
#. XBDAB
-#: include/svx/strings.hrc:101
+#: include/svx/strings.hrc:102
msgctxt "STR_ObjNameSingulGRAFMTFLNK"
msgid "Linked Metafile"
msgstr "ملف التعريف مربوط"
#. ACpDE
-#: include/svx/strings.hrc:102
+#: include/svx/strings.hrc:103
msgctxt "STR_ObjNamePluralGRAFMTFLNK"
msgid "Linked Metafiles"
msgstr "ملفات التعريف مربوطة"
#. Pbmqw
-#: include/svx/strings.hrc:103
-#, fuzzy
+#: include/svx/strings.hrc:104
msgctxt "STR_ObjNameSingulGRAFBMP"
msgid "Image"
msgstr "صورة"
#. WdAhn
-#: include/svx/strings.hrc:104
-#, fuzzy
+#: include/svx/strings.hrc:105
msgctxt "STR_ObjNameSingulGRAFBMPTRANS"
msgid "Image with transparency"
-msgstr "صور نقطية مع شفافية"
+msgstr "صور مع شفافية"
#. 3FkK6
-#: include/svx/strings.hrc:105
+#: include/svx/strings.hrc:106
#, fuzzy
msgctxt "STR_ObjNameSingulGRAFBMPLNK"
msgid "Linked Image"
msgstr "رابط صورة"
#. ydd77
-#: include/svx/strings.hrc:106
+#: include/svx/strings.hrc:107
#, fuzzy
msgctxt "STR_ObjNameSingulGRAFBMPTRANSLNK"
msgid "Linked image with transparency"
msgstr "صور نقطية مرتبطة مع شفافية"
#. FVJeA
-#: include/svx/strings.hrc:107
-#, fuzzy
+#: include/svx/strings.hrc:108
msgctxt "STR_ObjNamePluralGRAFBMP"
msgid "Images"
-msgstr "الصور"
+msgstr "صور"
#. mjfjF
-#: include/svx/strings.hrc:108
+#: include/svx/strings.hrc:109
#, fuzzy
msgctxt "STR_ObjNamePluralGRAFBMPTRANS"
msgid "Images with transparency"
msgstr "صور نقطية مع شفافية"
#. 8kaaN
-#: include/svx/strings.hrc:109
-#, fuzzy
+#: include/svx/strings.hrc:110
msgctxt "STR_ObjNamePluralGRAFBMPLNK"
msgid "Linked images"
-msgstr "ابحث عن الصور"
+msgstr "صور مربوطة"
#. DKMiE
-#: include/svx/strings.hrc:110
-#, fuzzy
+#: include/svx/strings.hrc:111
msgctxt "STR_ObjNamePluralGRAFBMPTRANSLNK"
msgid "Linked images with transparency"
-msgstr "صور نقطية مرتبطة مع شفافية"
+msgstr "صور مربوطة مع شفافية"
#. aeEoK
-#: include/svx/strings.hrc:111
+#: include/svx/strings.hrc:112
msgctxt "STR_ObjNameSingulCUSTOMSHAPE"
msgid "Shape"
msgstr "شكل"
#. BZmgL
-#: include/svx/strings.hrc:112
+#: include/svx/strings.hrc:113
msgctxt "STR_ObjNamePluralCUSTOMSHAPE"
msgid "Shapes"
msgstr "أشكال"
#. HBYSq
-#: include/svx/strings.hrc:113
+#: include/svx/strings.hrc:114
msgctxt "STR_ObjNameSingulGRAFSVG"
msgid "SVG"
msgstr "SVG"
#. pzxhb
-#: include/svx/strings.hrc:114
+#: include/svx/strings.hrc:115
msgctxt "STR_ObjNamePluralGRAFSVG"
msgid "SVGs"
msgstr "صور SVG"
#. v2DTg
-#: include/svx/strings.hrc:115
+#: include/svx/strings.hrc:116
msgctxt "STR_ObjNameSingulGRAFWMF"
msgid "WMF"
msgstr ""
#. LR2x6
-#: include/svx/strings.hrc:116
+#: include/svx/strings.hrc:117
msgctxt "STR_ObjNamePluralGRAFWMF"
msgid "WMFs"
msgstr ""
#. XcDs2
-#: include/svx/strings.hrc:117
+#: include/svx/strings.hrc:118
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "EMF"
msgstr ""
#. JtdP2
-#: include/svx/strings.hrc:118
+#: include/svx/strings.hrc:119
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "EMFs"
msgstr ""
#. H2FkB
-#: include/svx/strings.hrc:119
+#: include/svx/strings.hrc:120
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
msgstr ""
#. tc3Jb
-#: include/svx/strings.hrc:120
+#: include/svx/strings.hrc:121
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
msgstr ""
#. b3os5
-#: include/svx/strings.hrc:121
+#: include/svx/strings.hrc:122
msgctxt "STR_ObjNameSingulOLE2"
msgid "embedded object (OLE)"
msgstr "كائن مدمج (OLE)"
#. QMF8w
-#: include/svx/strings.hrc:122
+#: include/svx/strings.hrc:123
msgctxt "STR_ObjNamePluralOLE2"
msgid "Embedded objects (OLE)"
-msgstr "كائنات مدمجة (OLE)"
+msgstr "كائنات مضمَّنة (OLE)"
#. mAAWu
-#: include/svx/strings.hrc:123
+#: include/svx/strings.hrc:124
msgctxt "STR_ObjNameSingulUno"
msgid "Control"
msgstr "عنصر تحكم"
#. KrTeo
-#: include/svx/strings.hrc:124
+#: include/svx/strings.hrc:125
msgctxt "STR_ObjNamePluralUno"
msgid "Controls"
msgstr "عناصر تحكم"
#. wfVg2
-#: include/svx/strings.hrc:125
+#: include/svx/strings.hrc:126
msgctxt "STR_ObjNameSingulFrame"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. q72EC
-#: include/svx/strings.hrc:126
+#: include/svx/strings.hrc:127
msgctxt "STR_ObjNamePluralFrame"
msgid "Frames"
msgstr "إطارات"
#. gYhqY
-#: include/svx/strings.hrc:127
+#: include/svx/strings.hrc:128
msgctxt "STR_ObjNameSingulEDGE"
msgid "Object Connectors"
msgstr "روابط الكائن"
#. 9XiCG
-#: include/svx/strings.hrc:128
+#: include/svx/strings.hrc:129
msgctxt "STR_ObjNamePluralEDGE"
msgid "Object Connectors"
msgstr "روابط الكائن"
#. HSDBo
-#: include/svx/strings.hrc:129
+#: include/svx/strings.hrc:130
msgctxt "STR_ObjNameSingulCAPTION"
msgid "Callout"
msgstr "تعليق تفسيري"
#. BdAJu
-#: include/svx/strings.hrc:130
+#: include/svx/strings.hrc:131
msgctxt "STR_ObjNamePluralCAPTION"
msgid "Callouts"
msgstr "تعليقات تفسيرية"
#. Ezpif
-#: include/svx/strings.hrc:131
+#: include/svx/strings.hrc:132
msgctxt "STR_ObjNameSingulPAGE"
msgid "Preview object"
msgstr "كائن معاينة"
#. UCECt
-#: include/svx/strings.hrc:132
+#: include/svx/strings.hrc:133
msgctxt "STR_ObjNamePluralPAGE"
msgid "Preview objects"
msgstr "كائنات معاينة"
#. GCVKi
-#: include/svx/strings.hrc:133
+#: include/svx/strings.hrc:134
msgctxt "STR_ObjNameSingulMEASURE"
msgid "Dimension line"
msgstr "خط قياس"
#. DokjU
-#: include/svx/strings.hrc:134
+#: include/svx/strings.hrc:135
msgctxt "STR_ObjNamePluralMEASURE"
msgid "Dimensioning objects"
msgstr "كائنات القياس"
#. iBQEy
-#: include/svx/strings.hrc:135
+#: include/svx/strings.hrc:136
msgctxt "STR_ObjNamePlural"
msgid "Drawing objects"
msgstr "كائنات رسومية"
#. xHrgo
-#: include/svx/strings.hrc:136
+#: include/svx/strings.hrc:137
msgctxt "STR_ObjNameNoObj"
msgid "No draw object"
msgstr "بدون كائن رسومي"
#. EEKnk
-#: include/svx/strings.hrc:137
+#: include/svx/strings.hrc:138
#, fuzzy
msgctxt "STR_ObjNameSingulPlural"
msgid "Draw object(s)"
msgstr "رسم كائن(ات)"
#. LYyRP
-#: include/svx/strings.hrc:138
+#: include/svx/strings.hrc:139
msgctxt "STR_ObjNameSingulCube3d"
msgid "3D cube"
msgstr "مكعب ثلاثي الأبعاد"
#. ZsF4T
-#: include/svx/strings.hrc:139
+#: include/svx/strings.hrc:140
msgctxt "STR_ObjNamePluralCube3d"
msgid "3D cubes"
msgstr "مكعبات ثلاثية الأبعاد"
#. h9hf7
-#: include/svx/strings.hrc:140
+#: include/svx/strings.hrc:141
msgctxt "STR_ObjNameSingulExtrude3d"
msgid "Extrusion object"
msgstr "كائن منبثق"
#. Ag6Pu
-#: include/svx/strings.hrc:141
+#: include/svx/strings.hrc:142
msgctxt "STR_ObjNamePluralExtrude3d"
msgid "Extrusion objects"
msgstr "كائنات منبثقة"
#. L3B8v
-#: include/svx/strings.hrc:142
+#: include/svx/strings.hrc:143
msgctxt "STR_ObjNameSingulLathe3d"
msgid "Rotation object"
msgstr "كائن دوران"
#. e3vFm
-#: include/svx/strings.hrc:143
+#: include/svx/strings.hrc:144
msgctxt "STR_ObjNamePluralLathe3d"
msgid "Rotation objects"
msgstr "كائنات دوران"
#. CE5Gk
-#: include/svx/strings.hrc:144
+#: include/svx/strings.hrc:145
msgctxt "STR_ObjNameSingulObj3d"
msgid "3D object"
msgstr "كائن ثلاثي الأبعاد"
#. pECo3
-#: include/svx/strings.hrc:145
+#: include/svx/strings.hrc:146
msgctxt "STR_ObjNamePluralObj3d"
msgid "3D objects"
msgstr "كائنات ثلاثية الأبعاد"
#. Wuqvb
-#: include/svx/strings.hrc:146
+#: include/svx/strings.hrc:147
msgctxt "STR_ObjNameSingulScene3d"
msgid "3D scene"
msgstr "مشهد ثلاثي الأبعاد"
#. tH8BD
-#: include/svx/strings.hrc:147
+#: include/svx/strings.hrc:148
msgctxt "STR_ObjNamePluralScene3d"
msgid "3D scenes"
msgstr "مشاهد ثلاثية الأبعاد"
#. WdWuw
-#: include/svx/strings.hrc:148
+#: include/svx/strings.hrc:149
msgctxt "STR_ObjNameSingulSphere3d"
msgid "Sphere"
msgstr "كرة"
#. YNXv5
-#: include/svx/strings.hrc:149
+#: include/svx/strings.hrc:150
#, fuzzy
msgctxt "STR_ObjNamePluralSphere3d"
msgid "Spheres"
msgstr "كرات"
#. h4GBf
-#: include/svx/strings.hrc:150
+#: include/svx/strings.hrc:151
msgctxt "STR_EditWithCopy"
msgid "with copy"
msgstr "مع النسخ"
#. NrVyW
-#: include/svx/strings.hrc:151
+#: include/svx/strings.hrc:152
msgctxt "STR_EditPosSize"
msgid "Set position and size for %1"
msgstr "تعيين موضع %1 وحجمه"
#. ac4yY
-#: include/svx/strings.hrc:152
+#: include/svx/strings.hrc:153
msgctxt "STR_EditDelete"
msgid "Delete %1"
msgstr "حذف %1"
#. AweBA
-#: include/svx/strings.hrc:153
+#: include/svx/strings.hrc:154
msgctxt "STR_EditMovToTop"
msgid "Move %1 forward"
msgstr "نقل %1 للأمام"
#. G7EUR
-#: include/svx/strings.hrc:154
+#: include/svx/strings.hrc:155
msgctxt "STR_EditMovToBtm"
msgid "Move %1 further back"
msgstr "نقل %1 للخلف"
#. B83UQ
-#: include/svx/strings.hrc:155
+#: include/svx/strings.hrc:156
msgctxt "STR_EditPutToTop"
msgid "Move %1 to front"
msgstr "نقل %1 للمقدمة"
#. aHzgz
-#: include/svx/strings.hrc:156
+#: include/svx/strings.hrc:157
msgctxt "STR_EditPutToBtm"
msgid "Move %1 to back"
msgstr "نقل %1 للخلف"
#. Q6nSk
-#: include/svx/strings.hrc:157
+#: include/svx/strings.hrc:158
msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "عكس ترتيب %1"
#. rpJs7
-#: include/svx/strings.hrc:158
+#: include/svx/strings.hrc:159
msgctxt "STR_SortShapes"
msgid "Sort shapes"
msgstr ""
#. cALbH
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "نقل %1"
#. dskGp
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "تغيير حجم %1"
#. 5QxCS
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "دوّر %1"
#. BD8aF
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "قلب %1 أفقيًا"
#. g7Qgy
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "قلب %1 رأسيًا"
#. 8MR5T
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "قلب %1 قطريًا"
#. zDbgU
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "قلب %1 يدويًا"
#. AFUeA
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "تشويه %1 (مائل)"
#. QRoy3
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "تنظيم %1 في دائرة"
#. wvGVC
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "ثني %1 في دائرة"
#. iUJAq
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "تشويه %1"
#. GRiqx
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "تراجع %1"
#. sE8PU
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "تعديل خصائص bézier لـ %1"
#. CzVVY
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "تعديل خصائص bézier لـ %1"
#. 5KcDa
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "تعيين اتجاه الخروج لـ %1"
#. Gbbmq
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "تعيين الصفة النسبية عند %1"
#. Auc4o
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "تعيين نقطة مرجع لـ %1"
#. M5Jac
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "تجميع %1"
#. wEEok
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "ألغِ تجميع %1"
#. XochA
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "تطبيق الصفات على %1"
#. kzth3
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "تطبيق الطُرُز على %1"
#. PDT8V
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "أزِل الطراز من %1"
#. 5DwCY
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "تحويل %1 إلى مضلع"
#. TPv7Q
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "تحويل %1 إلى مضلعات"
#. ompqC
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "تحويل %1 إلى منحنى"
#. gax8J
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "تحويل %1 إلى منحنيات"
#. s96Mt
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "تحويل %1 إلى شبه منحرف"
#. LAyEj
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "تحويل %1 إلى أشباه منحرف"
#. jzxvB
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "محاذاة %1"
#. jocJd
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "محاذاة %1 إلى أعلى"
#. WFGbz
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "محاذاة %1 إلى أسفل"
#. SyXzE
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "توسيط %1 أفقيًا"
#. TgGUN
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "محاذاة %1 إلى اليسار"
#. s3Erz
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "محاذاة %1 إلى اليمين"
#. apfuW
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "توسيط %1 رأسيًا"
#. ttEmT
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "توسيط %1"
#. xkGug
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "تحويل %1"
#. smiFA
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "ضم %1"
#. PypoU
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "دمج %1"
#. 2KfaD
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "طرح %1"
#. gKFow
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "تداخل %1"
#. M8onz
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "توزيع الكائنات المحددة"
#. CnGYu
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
#, fuzzy
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr "~ناغم العرض"
#. zBTZe
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
#, fuzzy
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr "نا~غم الارتفاع"
#. JWmM2
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "ضم %1"
#. k5kFN
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "تقسيم %1"
#. weAmr
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "تقسيم %1"
#. Yofeq
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "تقسيم %1"
#. hWuuR
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "أدرِج كائن(ات)"
#. EaVu8
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "إدراج نقطة إلى %1"
#. G3DCW
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragInsertGluePoint"
msgid "Insert gluepoint to %1"
msgstr ""
#. 6JqED
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "إزاحة النقطة المرجعية"
#. o8CAF
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "تغيير %1 هندسيًا"
#. ghkib
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "نقل %1"
#. BCrkD
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "تغيير حجم %1"
#. xonh6
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "دوّر %1"
#. kBYzN
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "قلب %1 أفقيًا"
#. CBBXE
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "قلب %1 رأسيًا"
#. uHCGD
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "قلب %1 قطريًا"
#. vRwXA
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "قلب %1 يدويًا"
#. 9xhJw
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "تدرج تفاعلي لـ %1"
#. Fst87
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "شفافية تفاعلية لـ %1"
#. jgbKK
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "تشويه %1 (مائل)"
#. Eo8H6
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "تنظيم %1 في دائرة"
#. stAcK
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "ثني %1 في دائرة"
#. VbA6t
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "تشويه %1"
#. YjghP
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
#, fuzzy
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "تجميع %1"
#. ViifK
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "تبديل شعاع لـ %1"
#. usEq4
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "تغيير %1"
#. X4GFU
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "تغيير حجم %1"
#. qF4Px
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "نقل %1"
#. fKuKa
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "نقل النقطة النهائية لـ %1"
#. ewcHx
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "ضبط زاوية بنسبة %1"
#. L8rCz
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "تغيير %1"
#. UxCCc
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "تحرير نص: الفقرة %1، الصف %2، العمود %3"
#. 23tL7
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 محدد"
#. yQkFZ
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "نقطة من %1"
#. RGnTk
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 نقطة/نقاط من %1"
#. YxpLB
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoint"
msgid "Gluepoint from %1"
msgstr ""
#. qCFmV
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 gluepoints from %1"
msgstr ""
#. CDqRQ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "تحديد كائنات"
#. SLrPJ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "تحديد كائنات إضافية"
#. hczKZ
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "تحديد نقاط"
#. 778bF
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "تحديد نقاط إضافية"
#. BLEE8
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark gluepoints"
msgstr ""
#. eH9Vs
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional gluepoints"
msgstr ""
#. D5ZZA
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "إنشاء %1"
#. 7FoxD
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "إدراج %1"
#. 9hXBp
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "نسخ %1"
#. arzhD
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "تغيير ترتيب كائن %1"
#. QTZxE
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "تحرر نص %1"
#. un957
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "إدراج صفحة"
#. vBvUC
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "حذف صفحة"
#. rFgUQ
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "نسخ الصفحة"
#. EYfZc
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "تغيير ترتيب الصفحات"
#. BQRVo
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "إزالة تعيين صفحات الخلفية"
#. 79Cxu
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "تغيير تعيين صفحات الخلفية"
#. 9P8JF
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "إدراج مستند"
#. w3W7h
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "أدرِج طبقة"
#. 7pifL
-#: include/svx/strings.hrc:258
+#: include/svx/strings.hrc:259
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "حذف طبقة"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "تغيير اسم كائن %1 إلى"
#. D4AsZ
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "تغيير عنوان كائن %1"
#. tqeMT
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "تغيير وصف كائن %1"
#. XcY5w
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValON"
msgid "on"
msgstr "في"
#. e6RAB
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "إيقاف"
#. gaXKQ
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "نعم"
#. 65SoV
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "لا"
#. aeEuB
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "النوع 1"
#. BFaLY
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "النوع 2"
#. KFMjw
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "النوع 3"
#. 48UKA
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "النوع 4"
#. DVm64
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "أفقي"
#. ZYYeS
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "رأسي"
#. HcoYN
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "تلقائي"
#. uZNFq
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "إيقاف تشغيل"
#. 2ZQvA
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "تناسبي"
#. Ej4Ya
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "ملائمة الحجم (جميع الصفوف على حدة) "
#. Wr4kE
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "استخدام صفات يدوية"
#. 73uL2
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "أعلى"
#. 3Cde5
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "وسط"
#. AR3n7
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "أسفل"
#. UmBBe
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "استغلال كامل الارتفاع"
#. dRtWD
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "ممطوط"
#. kGXVu
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "يسار"
#. bDPBk
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "وسط"
#. tVhNN
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "يمين"
#. K8NiD
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "استغلال كامل العرض"
#. H7dgd
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "ممطوط"
#. q5eQw
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "إيقاف"
#. Roba3
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "وميض"
#. UDFFC
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "تمرير عبر"
#. A9BQL
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "متناوب"
#. EkPkn
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "تمرير داخل"
#. x3Yd5
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "يسار"
#. w7PTQ
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "أعلى"
#. oMaiF
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "يمين"
#. tQTCd
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "أسفل"
#. 6MMYx
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "رابط قياسي"
#. SLdM8
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "موصل خطي"
#. ZAtDC
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "موصل مباشر"
#. 9qXds
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "موصل المنحيات"
#. MGEse
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "قياسي"
#. sNziy
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "نصف قُطر"
#. zGpyM
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "تلقائي"
#. jA4pb
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "على الخط"
#. iqYjg
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "خط مقطوع"
#. h8npu
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "أسفل الخط"
#. WL8XG
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "توسيط"
#. hy9eX
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "دائرة ممتلئة"
#. 6BdZt
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "قطاع دائري"
#. j6Bc3
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "قطاع من دائرة"
#. 7sN8d
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "قوس"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "صفة مجهولة"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:315
+#: include/svx/strings.hrc:316
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "نمط الخط"
#. BbP7X
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "نقش الخط"
#. 4NCnS
-#: include/svx/strings.hrc:317
+#: include/svx/strings.hrc:318
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "سُمك الخط"
#. NuJkv
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "لون الخط"
#. NgaPV
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "بداية الخط"
#. UYBDU
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "نهاية الخط"
#. DJkAF
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "عرض بداية الخط"
#. QqA6b
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "عرض نهاية الخط"
#. FcHDB
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "توسيط بداية الخط"
#. KnFtT
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "توسيط نهاية الخط"
#. 2UZUA
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "شفافية الخط"
#. 5MLYD
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "وصلة خطوط"
#. ArqSC
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "صفات الخط"
#. dufaT
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "نمط التعبئة"
#. RDcH6
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "لون التعبئة"
#. DJM9B
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "تدرج اللون"
#. gbABb
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "نقش"
#. GE68t
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "صورة تعبئة نقطية"
#. DV2Ss
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "الشفافية"
#. eK8kh
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "عدد خطوات تدرج اللون"
#. AVtYF
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "تعبئة البلاطة"
#. D7T2o
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "موضع صور تعبئة نقطية"
#. NVLGP
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "عرض صورة التعبئة النقطية"
#. PSCTE
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "ارتفاع صورة التعبئة النقطية"
#. zW4zt
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "تدرج شفّاف"
#. DBBgQ
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "التعبئة محجوزة لـ2"
#. PaSqp
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "حجم البلاطة بغير %"
#. fwikV
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "إزاحة البلاطة س بمقدار %"
#. FQgvE
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "إزاحة البلاطة ص بمقدار %"
#. NUEGF
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "تحجيم صورة نقطية"
#. pc9yk
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "موضع البلاطة س بمقدار %"
#. DH43F
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "موضع البلاطة ص بمقدار %"
#. 8GFpS
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "تعبئة الخلفية"
#. 2SvhA
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "صفات التعبئة"
#. TE8CS
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "نمط Fontwork"
#. qMnRZ
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "محاذاة Fontwork"
#. fpGEZ
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "تباعد Fontwork"
#. CUBXL
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "بداية خط Fontwork"
#. JSVHo
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "الكتابة المنعكسة لـ Fontwork"
#. P5W29
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "الخط المحيط لـ Fontwork"
#. LKCDD
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "ظل Fontwork"
#. oDiYn
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "لون ظل Fontwork"
#. sFLRA
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "إزاحة س لظل معمل الخطوط"
#. daERW
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "إزاحة ص لظل معمل الخطوط"
#. LdeJZ
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "إخفاء الخط المحيط لـ Fontwork"
#. 3sPPg
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "شفافية ظل Fontwork"
#. q6MHs
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "ظل"
#. dSwen
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "لون الظل"
#. HcLrC
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "تباعد الظل (س)"
#. TMGmk
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "تباعد الظل (ص)"
#. u5baB
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "شفافية الظل"
#. AtDxf
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "ظل ثلاثي الأبعاد"
#. FGU8f
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "ظل منظوري"
#. MV529
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "نوع التعليق"
#. GAtWb
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "زاوية ثابتة للتعليق"
#. SgHKq
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "زاوية التعليق"
#. gwcQp
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "فاصل سطور التعليق"
#. 6uEae
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "محاذاة تعليق الخروج"
#. TXjGv
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "موضع خروج نسبي"
#. Z5bQB
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "موضع خروج نسبي"
#. 4TmFK
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "تعليق الخروج المطلق"
#. V9TG8
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "طول سطر التعليق"
#. haQgi
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "الطول التلقائي لسطور التعليق"
#. 8sDXi
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CORNER_RADIUS"
msgid "Corner radius"
msgstr ""
#. GEA3m
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "الارتفاع الأدنى للإطار"
#. 3jdRR
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "ملاءمة الارتفاع تلقائيًا"
#. NoJR4
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "ملاءمة النص للإطار"
#. EexDC
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "التباعد الأيسر لإطار النص"
#. 3thvB
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "تباعد الإطار الأيمن النص"
#. 8x2Xa
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "تباعد الإطار العلوي النص"
#. WyymX
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "تباعد الإطار الأسفل النص"
#. vdbvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
#, fuzzy
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "مربط النص الرأسي"
#. QzTNc
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "الارتفاع الأقصى للإطار"
#. CcAnR
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "العرض الأدنى للإطار"
#. i6nqD
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "العرض الأقصى للإطار"
#. irtVb
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "ملاءمة العرض تلقائيًا"
#. BGR8n
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
#, fuzzy
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "مربط النص الأفقي"
#. ruk5J
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "الساعة"
#. cvDiA
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "اتجاه الساعة"
#. GuCC5
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "الساعة تبدأ في الداخل"
#. ipog5
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "الساعة تتوقف في الداخل"
#. pWAHL
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "عدد مرات تشغيل الساعة"
#. vGEjP
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "سرعة الساعة"
#. SdHEU
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "حجم خطوة الساعة"
#. LzoA5
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "سريان نص الخط الخارجي"
#. tNbcC
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXTCOLUMNS_NUMBER"
msgid "Columns number"
msgstr ""
#. DxZkZ
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXTCOLUMNS_SPACING"
msgid "Columns spacing"
msgstr ""
#. HDtDf
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "صفات يعرّفها المستخدم"
#. F9FzF
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "استخدام تباعد سطر غير مرتبط بالخط"
#. jTAhz
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "لف النص في الشكل"
#. QDaB6
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "نوع الرابط"
#. CoYH2
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "كائن التباعد الأفقي 1"
#. xdvs2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "كائن التباعد الرأسي 1"
#. FB4Cj
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "تباعد الكائن الأفقي 2"
#. uGKvj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "تباعد الكائن الرأسي 2"
#. FSkBP
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "تباعد الكائن الملصق 1"
#. 845KH
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "تباعد الكائن الملصق 2"
#. FEDAf
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "عدد الخطوط القابلة للإزاحة"
#. EnGaG
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "خط الإزاحة 1"
#. 5XFzK
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "خط الإزاحة 2"
#. nBFrd
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "خط الإزاحة 3"
#. x7oEC
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "نوع القياس"
#. 2XCPo
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "قيمة القياس - الموضع الأفقي"
#. DxA8Z
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "قيمة القياس - الموضع الرأسي"
#. LQCsj
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "تباعد خط القياس"
#. jZBoK
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "قياس سطر المساعدة المتدلي"
#. Bhboy
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "تباعد سطر مساعدة القياس"
#. jw9E7
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "ركيزة قياس خط المساعدة 1"
#. CYFg6
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "ركيزة قياس خط المساعدة 2"
#. ocvCK
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "مقياس الحافة السفلى"
#. cFVVA
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "قيمة القياس عبر سطر القياس"
#. VVAgC
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "دوّر قيمة القياس ١٨٠ درجة"
#. iFX7y
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "قياس الخط المتدلي"
#. DoBGo
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "وحدة القياس"
#. 2NBMp
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "معيار قياسي إضافي"
#. 4yTAW
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "عرض وحدة القياس"
#. NFDC3
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "تنسيق قيمة القياس"
#. UBjQk
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
-msgstr "موضع تلقائي لنص القياس"
+msgstr "تموضع تلقائي لقيمة القياس"
#. GDQC3
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
-msgstr "عرض الزاوية التلقائية لقيمة القياس"
+msgstr "الزاوية للتموضع التلقائي لقيمة القياس"
#. DB243
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "تعيين زاوية قيمة القياس"
#. i3Bah
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "زاوية قيمة القياس"
#. qWKC7
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "المنازل العشرية"
#. wkrNX
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "نوع الدائرة"
#. FRFU8
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "زاوية البدء"
#. FmSKG
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "زاوية النهاية"
#. ejn6F
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "موضع كائن محمي"
#. ZPEB9
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "حجم كائن محمي"
#. BN5CM
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "الكائن قابل للطباعة"
#. 3Digj
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "كائن، مرئي"
#. nZLtM
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "معرف الطبقة"
#. f3ed2
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "طبقة"
#. rb6GC
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "اسم الكائن"
#. 5zRFi
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "الموضع س، بالكامل"
#. 5enZ7
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "الموضع ص، بالكامل"
#. 2V5Mn
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "كامل العرض"
#. P6Y6W
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "كامل الارتفاع"
#. yFnnC
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "الموضع س مفرد"
#. jEGfd
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "الموضع ص مفرد"
#. YJFnY
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "عرض مفرد"
#. bZFkM
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "ارتفاع فردي"
#. K5Xuq
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "العرض المنطقي"
#. 9Niyk
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "الارتفاع المنطقي"
#. yFmvh
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "زاوية دوران فردية"
#. zNyKY
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "زاوية القص المفرد"
#. bJv8D
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "إزاحة أفقيًا"
#. z7EPp
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "إزاحة رأسيًا"
#. Qn4GS
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "تغيير حجم فردي (س)"
#. VCtZa
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "تغيير حجم فردي (ص)"
#. NxatH
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "دوران مفرد"
#. gNVw9
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "قص أفقي مفرد"
#. iCzED
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "قص أفقي رأسي"
#. HQcJt
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "تغيير حجم س كليًا"
#. VcK8z
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "تغيير حجم ص كليًا"
#. vgGU4
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "دوّر الكل"
#. 3faE4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "قص أفقي كلي"
#. RAEPz
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "قص رأسي كلي"
#. gtXM3
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "النقطة المرجعية 1 س"
#. YpQDc
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "النقطة المرجعية 1 ص"
#. Hp5EK
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "النقطة المرجعية 2 س"
#. Rty4j
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "النقطة المرجعية 2 ص"
#. JdeqL
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
-msgstr "فصل المقاطع"
+msgstr "وصل الكلمات"
#. HMmA6
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "إظهار التنقيط"
#. 8Q88u
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
-msgstr "عمل إزاحات عند التعداد"
+msgstr "إزاحات التعداد"
#. inGxX
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "مستوى التعداد"
#. 2CtLK
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "تنقيط وترقيم"
#. hCE5d
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "الإزاحات"
#. Y5YFm
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "تباعدات الفقرة"
#. feirn
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "تباعد الأسطر"
#. gjAVE
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "محاذاة الفقرة"
#. offnT
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "علامات الجدولة"
#. kpiTD
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "لون الخط"
#. X535C
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "طقم المحارف"
#. AEbEz
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "حجم الخط"
#. UKHSM
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "عرض الخط"
#. SQWpD
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
-msgstr "عريض (السّمْك)"
+msgstr "ثخين (السُّمْك)"
#. AUR7N
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "تسطير"
#. v2AEJ
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "خط علوي"
#. ARvwR
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "شطب"
#. gcVzb
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "مائل"
#. kJVaV
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "المخطط"
#. CZR4e
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "ظل الخط"
#. PFSUR
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "مرتفع/منخفض"
#. DrBio
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "التقنين"
#. tUVvP
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "تقنين يدوي"
#. S9QCU
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "الفراغات بدون تسطير"
#. GuTzF
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "علامة جدولة"
#. U4qgA
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "فاصل أسطر تلقائي"
#. jzBEA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "أحرف غير قابلة للتحويل"
#. tZd9C
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
-msgstr "الحقول"
+msgstr "حقول"
#. GeKPD
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "أحمر"
#. EzAu7
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "أخضر"
#. TmBML
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "أزرق"
#. 7Gqzs
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "الإضاءة"
#. rziVW
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "التباين"
#. CHepz
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "جاما"
#. 2ESVA
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "الشفافية"
#. uZYFG
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "عكس"
#. 6aFx2
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "طور الصورة"
#. Ni9KZ
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "اقتصاص"
#. kVnke
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr "نصف قطر مؤثر التوهج"
#. 3hvai
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr "لون مؤثر التوهج"
#. eCSE2
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr "شفافية مؤثر التوهج"
#. 8qNHk
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr "نصف قطر مؤثر الحافة الرقيقة"
#. nVcjU
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "كائن وسائطي"
#. nbHgw
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "كائنات الأوساط"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:523
+#: include/svx/strings.hrc:524
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "إدراج عمود"
#. SAmd8
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "إدراج صف"
#. yFDYp
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
-msgstr "حذف عمود"
+msgstr "احذف العمود"
#. 9SF9L
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "حذف صف"
#. iBbtT
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "تقسيم الخلايا"
#. vmzqf
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "دمج الخلايا"
#. 3VVmF
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "تنسيق خلية"
#. pSCJC
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "توزيع الصفوف"
#. GdLHf
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "توزيع الأعمدة"
#. fGNto
-#: include/svx/strings.hrc:532
-#, fuzzy
+#: include/svx/strings.hrc:533
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
-msgstr "حذف المحتويات"
+msgstr "احذف محتويات الخلية"
#. B33Cb
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "طراز الجدول"
#. ZHBAC
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "إعدادات طراز الجدول"
#. eERmE
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. XjgSV
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "الجداول"
#. mLDqP
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
#, fuzzy
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
@@ -3104,3628 +3100,3627 @@ msgstr "معمل الخطوط"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:539
+#: include/svx/strings.hrc:540
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "متواصل"
#. uNL7M
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "تدرج اللون"
#. a8YoL
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "صورة نقطية"
#. FDmra
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "نمط"
#. HcGBQ
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr "نمط بلا عنوان"
#. GHj4Q
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "نمط الخط"
#. fa7EG
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. mrTdk
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "اللون"
#. 5bjE5
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "نقش"
#. yGRGW
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "رؤوس الأسهم"
#. snuCi
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "سهم"
#. 6EvQ7
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "مربع"
#. i6cva
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "دائرة"
#. emz9g
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- بلا -"
#. hGaEK
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "الشفافية"
#. X4EFw
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "موسَّط"
#. FFe8m
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "غير موسّط"
#. hFhmH
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "المبدئيّ"
#. DdAzc
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "تدرج رمادي"
#. RHEXM
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "أسود/أبيض"
#. bcXbA
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "علامة مائيّة"
#. ZWz8Y
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr "انقر يساراً لتطبيقه كلون خلفية، انقر يميناً لتعيّن لون الخط"
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:562
+#: include/svx/strings.hrc:563
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr "أحمر غامق 2"
#. Rw7nG
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr "أزرق"
#. UdEYr
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "أصفر"
#. 9AUDK
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr "أزرق داكن 1"
#. aSWwv
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr "أزرق فاتح 1"
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:568
+#: include/svx/strings.hrc:569
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "أسود"
#. PwGvV
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "رمادي"
#. Dp9Az
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "أبيض"
#. TGLmD
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "أصفر"
#. YpDke
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "ذهبي"
#. 7aJCZ
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "برتقالي"
#. mZMFN
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr "آجُريّ"
#. juJeM
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "أحمر"
#. 7xMrN
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "أرجواني"
#. ELXiM
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "بنفسجي"
#. UTexf
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr "نيلي"
#. qbcF9
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "أزرق"
#. hQ44j
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "فيروزي"
#. JpxBr
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "أخضر"
#. A3aCJ
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
msgstr "ليموني"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:584
+#: include/svx/strings.hrc:585
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "رمادي فاتح"
#. YF2ud
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr "أصفر فاتح"
#. BaXBj
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr "ذهبي فاتح"
#. masPL
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr "برتقالي فاتح"
#. k5GY4
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr "طوبي فاتح"
#. KGDDj
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "أحمر فاتح"
#. nvB2W
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr "أرجواني فاتح"
#. 8Bg8h
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr "نيلي فاتح"
#. suGUh
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "أزرق فاتح"
#. 5VFSV
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr "فيروزي فاتح"
#. 3Z7KA
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "أخضر فاتح"
#. HVPnD
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr "ليموني فاتح"
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:598
+#: include/svx/strings.hrc:599
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr "رمادي غامق"
#. EaFik
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr "أصفر غامق"
#. AFByn
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr "ذهبي غامق"
#. qAGnF
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr "برتقالي غامق"
#. NC62Q
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr "طوبي غامق"
#. st4Zy
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "أحمر غامق"
#. indkC
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr "أرجواني غامق"
#. VFKuJ
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr "نيلي غامق"
#. U3qfW
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr "أزرق غامق"
#. dYdEW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr "فيروزي غامق"
#. qFAAB
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr "أخضر غامق"
#. C3U7v
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr "ليموني غامق"
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:612
+#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "بنفسجي"
#. GgboW
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "سماوي"
#. 583vY
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:628
+#: include/svx/strings.hrc:629
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:653
+#: include/svx/strings.hrc:654
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "أزرق كلاسيكي"
#. CWbzY
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "رمادي مزرق"
#. DkKFF
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "أحمر قانٍ"
#. 5hZu8
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "أصفر شاحب"
#. wSEGQ
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "أخضر شاحب"
#. pUEkF
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "بنفسجي داكن"
#. qVhW9
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "قرنفلي"
#. QV77P
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "أزرق نيلي"
#. gYFV6
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "المخطط البياني"
#. LXcFL
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "أزرق سماوي"
#. QbGU3
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "أخضر مصفر"
#. UDfTh
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "وردي"
#. FXDuA
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "تركوازي"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:667
+#: include/svx/strings.hrc:668
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "ثلاثي الأبعاد"
#. GtMuR
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "أسود 1"
#. AhPLy
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "أسود 2"
#. jVxFC
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "أزرق"
#. FacjB
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "بني"
#. uQSDF
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "عملة"
#. sQpNL
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "عملة ثلاثية الأبعاد"
#. ACACr
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "عملة رمادية"
#. yy7mJ
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "عملة أرجوانية فاتحة"
#. 4THUt
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "عملة تركوازية"
#. a8AGf
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "رمادي"
#. B4e9f
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "أخضر"
#. 3mz4G
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "أرجواني فاتح"
#. gdfFF
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "أحمر"
#. GsAVb
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "تركوازي"
#. sZbit
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "أصفر"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:684
+#: include/svx/strings.hrc:685
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
-msgstr ""
+msgstr "أكاديمي"
#. CYMbi
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr "قائمة صندوقية زرقاء"
#. njUDn
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr "قائمة صندوقية خضراء"
#. GUk5r
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr "قائمة صندوقية حمراء"
#. oNMgD
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr "قائمة صندوقية صفراء"
#. YVY2f
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "أنيق"
#. Q9rDT
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "المالية"
#. 3qSCd
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
-msgstr ""
+msgstr "أعمدة شبكة بسيطة"
#. hksaM
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
-msgstr ""
+msgstr "صفوف شبكة بسيطة"
#. CHXkk
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
-msgstr ""
+msgstr "قائمة بسيطة مظللة"
#. XrHFB
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "وصلة خطوط متوسطة"
#. zbAG7
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "وصلة خطوط متصلة"
#. EtQJT
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "وصلة خطوط متقاطعة"
#. YUtBv
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "وصلة خطوط دائرية"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:699
+#: include/svx/strings.hrc:700
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "خط سقف مسطح"
#. zKt6C
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "خط سقف مدور"
#. 5Lbx4
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "خط سقف مربع"
#. YXbPg
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "تدرج اللون"
#. mZwMD
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "خطي أزرق/أبيض"
#. WyGuh
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "خطي أرجواني/أخضر"
#. cLHvA
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "خطي أصفر/بني"
#. Kfkbm
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "شعاعي أخضر/أسود"
#. uiTTS
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "شعاعي أحمر/أصفر"
#. SsUvr
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "مستطيل أحمر/أبيض"
#. CKwQP
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "مربع أصفر/أبيض"
#. hi3tb
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "بيضوي رمادي مزرق/أزرق فاتح"
#. b6AwV
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "محوري أحمر فاتح/أبيض"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:713
+#: include/svx/strings.hrc:714
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "قطري 1 يسار"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:715
+#: include/svx/strings.hrc:716
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "قطري 1 يمين"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:717
+#: include/svx/strings.hrc:718
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "قطري 2 يسار"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:719
+#: include/svx/strings.hrc:720
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "قطري 2 يمين"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:721
+#: include/svx/strings.hrc:722
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "قطري 3 يسار"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:723
+#: include/svx/strings.hrc:724
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "قطري 3 يمين"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:725
+#: include/svx/strings.hrc:726
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "قطري 4 بسار"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:727
+#: include/svx/strings.hrc:728
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "قطري 4 يمين"
#. yqda8
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "قطري أزرق"
#. GCtJC
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "قطري أخضر"
#. LCQEB
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "قطري برتقالي"
#. oD7FW
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "قطري أحمر"
#. vuyUG
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "قطري فيروزي"
#. mGtyc
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "قطري بنفسجي"
#. cArVy
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "من زاوية"
#. gvXLL
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "من زاويةـ أزرق"
#. GaTPh
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "من زاويةـ أخضر"
#. GE5vm
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "من زاوية، برتقالي"
#. BFTnr
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "من زاوية، أحمر"
#. AFKRL
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "من زاوية، فيروزي"
#. djBGe
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "من زاوية، بنفسجي"
#. pwDuE
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "من الوسط"
#. y8qpL
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "من الوسط، أزرق"
#. PGt5w
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "من الوسط، أخضر"
#. CyLXB
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "من الوسط، برتقالي"
#. vkERJ
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "من الوسط، أحمر"
#. Sq2SE
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "من الوسط، فيروزي"
#. DoSmH
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "من الوسط، بنفسجي"
#. 9XHkg
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "أفقي"
#. FDG7B
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "أفقي أزرق"
#. ZEfzF
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "أفقي أخضر"
#. GFRCF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "أفقي برتقالي"
#. iouxG
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "أفقي أحمر"
#. Gta9k
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "أفقي فيروزي"
#. Tdpw4
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "أفقي بنفسجي"
#. DyVEP
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "شعاعي"
#. Uyhuj
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "شعاعي أزرق"
#. MA6Qs
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "شعاعي أخضر"
#. Pt24U
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "شعاعي برتقالي"
#. 37T3A
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "شعاعي أحمر"
#. gLwZp
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "شعاعي فيروزي"
#. gka9C
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "شعاعي بنفسجي"
#. BaGs9
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "رأسي"
#. DqGbG
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "رأسي أزرق"
#. FCa2X
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "رأسي أخضر"
#. BNSiE
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "رأسي برتقالي"
#. DfiaF
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "رأسي أحمر"
#. 4htXp
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "رأسي فيروزي"
#. FVCCq
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "رأسي بنفسجي"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:770
+#: include/svx/strings.hrc:771
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "تدرّج رمادي"
#. CDxDN
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "تدرّج أصفر"
#. amMze
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "تدرّج برتقالي"
#. bodAW
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "تدرّج أحمر"
#. Zn2x3
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "تدرّج وردي"
#. xXMfH
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "سماء"
#. RYfTi
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "تدرّج سيان"
#. jAu7g
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "تدرّج أزرق"
#. idyKS
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "أنبوب بنفسجي"
#. fFZia
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "مساء"
#. 4ECED
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "تدرّج أخضر"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:782
+#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:798
+#: include/svx/strings.hrc:799
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "فارغ"
#. Q4jUs
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
-msgstr ""
+msgstr "تجمُّع"
#. Co6U3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "صورة نقطية"
#. KFEX5
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr "مسافة"
#. FzVch
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "٥ بالمئة"
#. AAn36
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr "١٠ بالمئة"
#. NLTbt
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr "٢٠ بالمئة"
#. vx2XC
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr "٢٥ بالمئة"
#. weQqs
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr "٣٠ بالمئة"
#. CAdAS
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr "٤٠ بالمئة"
#. 5T5vP
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr "٥٠ بالمئة"
#. aNdJE
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr "٦٠ بالمئة"
#. 3vD8U
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr "٧٠ بالمئة"
#. UJmCD
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr "٧٥ بالمئة"
#. i9RCR
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr "٨٠ بالمئة"
#. 2oEkC
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr "٩٠ بالمئة"
#. a3yZ5
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr "قُطري فاتح لأسفل"
#. oiGTx
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr "قُطري فاتح لأعلى"
#. CGpy7
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr "قُطري داكن لأسفل"
#. cucpa
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr "قُطري داكن لأعلى"
#. EFDcT
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr "قُطري واسع لأسفل"
#. CWmH5
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr "قُطري واسع لأعلى"
#. BZJUK
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr "رأسي فاتح"
#. B5FVF
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "أفقي فاتح"
#. daP9i
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr "رأسي ضيّق"
#. JD5FJ
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr "أفقي ضيّق"
#. eB4wk
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr "رأسي داكن"
#. MeoCx
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "أفقي داكن"
#. gAqnG
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr "شُرط قُطرية لأسفل"
#. DGB5k
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr "شُرط قُطرية لأعلى"
#. JC7je
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr "شُرط أفقية"
#. iFiBq
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr "شُرط رأسية"
#. gWDnG
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr "حلوى صغيرة"
#. vbh6h
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr "حلوى كبيرة"
#. XFemm
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr "متعرّج"
#. mC3BE
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "متموّج"
#. icCPR
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr "قرميد قُطري"
#. 8CqPG
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "قرميد أفقي"
#. GFUZF
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "حياكة"
#. bp9ZY
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "نسيج نقش"
#. ZrVMS
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr "عشب"
#. tFas9
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr "شبكة منقّطة"
#. SECdZ
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr "ماس منقّط"
#. ri3Ge
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "قرميد خشبي"
#. jD9er
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr "تعريشة"
#. aemFS
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "كرة"
#. Ds8Ae
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr "شبكة صغيرة"
#. a33Ci
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr "شبكة كبيرة"
#. BCSZY
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr "رقعة شطرنج صغيرة"
#. Bgczw
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr "رقعة شطرنج كبيرة"
#. sD7Mf
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr "حدود الماس"
#. RNNkR
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr "ماس مملوء"
#. HJkgr
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "رأسي"
#. ED3Ga
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "أفقي"
#. ENYtZ
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr "قُطري لأسفل"
#. mbjPX
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr "قُطري لأعلى"
#. TxAfM
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "متقاطع"
#. 4mGJX
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr "قُطري متقاطع"
#. J4CJa
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. tHgFv
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH2"
msgid "Dot (Rounded)"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
-msgstr ""
+msgstr "مقطَّع"
#. T7sVF
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr "3 شَرْطات 3 نقاط"
#. H7iUz
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr "نقطتان 3 شَرْطات فائقة النعومة"
#. KpCzr
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr "نقطتان شَرْطة واحدة"
#. zbWk3
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr "خط بنقاط ناعمة"
#. qqS4v
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH20"
msgid "Dash Dot"
msgstr "شَرْطة نقطة"
#. 5ZGZy
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH21"
msgid "Long Dot (Rounded)"
msgstr "نقطة طويلة (مستديرة)"
#. Ac2F2
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH22"
msgid "Dash Dot Dot"
msgstr "شَرْطة نقطة نقطة"
#. mWMXG
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_DASH23"
msgid "Dash (Rounded)"
msgstr "شَرْطة (مستديرة)"
#. B6fd2
-#: include/svx/strings.hrc:931
+#: include/svx/strings.hrc:932
msgctxt "RID_SVXSTR_DASH24"
msgid "Long Dash (Rounded)"
msgstr "شَرْطة طويلة (مستديرة)"
#. ds2VE
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_DASH25"
msgid "Double Dash (Rounded)"
msgstr "شَرْطة مزدوجة (مستديرة)"
#. qtCkm
-#: include/svx/strings.hrc:933
+#: include/svx/strings.hrc:934
msgctxt "RID_SVXSTR_DASH26"
msgid "Dash Dot (Rounded)"
msgstr "شَرْطة نقطة (مستديرة)"
#. psNix
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_DASH27"
msgid "Long Dash Dot (Rounded)"
msgstr "شَرْطة طويلة نقطة (مستديرة)"
#. FWkBJ
-#: include/svx/strings.hrc:935
+#: include/svx/strings.hrc:936
msgctxt "RID_SVXSTR_DASH28"
msgid "Double Dash Dot (Rounded)"
msgstr "شَرْطة مزدوجة نقطة (مستديرة)"
#. eiCNz
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_DASH29"
msgid "Dash Dot Dot (Rounded)"
msgstr "شَرْطة نقطة نقطة (مستديرة)"
#. BbE5B
-#: include/svx/strings.hrc:937
+#: include/svx/strings.hrc:938
msgctxt "RID_SVXSTR_DASH30"
msgid "Double Dash Dot Dot (Rounded)"
msgstr "شَرْطة مزدوجة نقطة نقطة (مستديرة)"
#. iKAwD
-#: include/svx/strings.hrc:939
+#: include/svx/strings.hrc:940
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr "جميع الأنساق"
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:941
+#: include/svx/strings.hrc:942
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr "مقعَّر قصير"
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:943
+#: include/svx/strings.hrc:944
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "مربع 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:945
+#: include/svx/strings.hrc:946
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr "سهم قصير"
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:947
+#: include/svx/strings.hrc:948
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr "خطوط أبعاد"
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:949
+#: include/svx/strings.hrc:950
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "سهم مزدوج"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:951
+#: include/svx/strings.hrc:952
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr "مثلث"
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:953
+#: include/svx/strings.hrc:954
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr "مقعّر"
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:955
+#: include/svx/strings.hrc:956
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr "مثلث كبير"
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:957
+#: include/svx/strings.hrc:958
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr "خط الأبعاد"
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:959
+#: include/svx/strings.hrc:960
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "دائرة"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:961
+#: include/svx/strings.hrc:962
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "مربع"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:963
+#: include/svx/strings.hrc:964
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "سهم"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:965
+#: include/svx/strings.hrc:966
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr "نصف دائرة"
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:967
+#: include/svx/strings.hrc:968
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "مثلث غير معبأ"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:969
+#: include/svx/strings.hrc:970
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "معين غير معبأ"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:971
+#: include/svx/strings.hrc:972
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "معين"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:973
+#: include/svx/strings.hrc:974
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "دائرة مفرغة"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:975
+#: include/svx/strings.hrc:976
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "مربع قائم غير معبأ"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:977
+#: include/svx/strings.hrc:978
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "مربع مفرغ"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:979
+#: include/svx/strings.hrc:980
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:981
+#: include/svx/strings.hrc:982
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:983
+#: include/svx/strings.hrc:984
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:985
+#: include/svx/strings.hrc:986
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr "الخط"
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:987
+#: include/svx/strings.hrc:988
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:989
+#: include/svx/strings.hrc:990
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:991
+#: include/svx/strings.hrc:992
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:993
+#: include/svx/strings.hrc:994
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1003
+#: include/svx/strings.hrc:1004
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "الشفافية"
#. hGytB
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "علامة نقطية خضراء"
#. opj2M
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "علامة نقطية زرقاء"
#. tC5jE
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "علامة نقطية برتقالية"
#. 3T9pJ
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "بنفسجي"
#. N5FWG
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "علامة نقطية بنفسجية"
#. Nhtbq
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "علامة نقطية صفراء"
#. apBBr
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "سمة المعرض"
#. BseGn
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "نجحت الاستعادة"
#. LfjDh
-#: include/svx/strings.hrc:1015
+#: include/svx/strings.hrc:1016
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "استُعيد المستند الأصلي"
#. BEAbm
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "فشلت الاستعادة"
#. 5ye7z
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "تقدّم الاستعادة"
#. tEbUT
-#: include/svx/strings.hrc:1018
+#: include/svx/strings.hrc:1019
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "لم تتم الاستعادة بعد"
#. EaAMF
-#: include/svx/strings.hrc:1019
+#: include/svx/strings.hrc:1020
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "بدأ %PRODUCTNAME %PRODUCTVERSION باستعادة مستنداتك. يختلف وقت انتهاء العملية حسب حجم المستندات."
#. AicJe
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "اكتملت استعادة مستنداتك. انقر ’إنهاء‘ لرؤيتها."
#. ZbeCG
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
-msgstr "إ~نهاء"
+msgstr "إنها~ء"
#. BBeKk
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
#, fuzzy
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "القيم المخصّصة الأخيرة"
#. mENBU
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "نقطة"
#. fRyqX
-#: include/svx/strings.hrc:1025
+#: include/svx/strings.hrc:1026
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "تصدير الصورة"
#. xXhtG
-#: include/svx/strings.hrc:1026
+#: include/svx/strings.hrc:1027
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr "احفظ كصورة"
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "أدرِج كائن(ات)"
#. Heqmn
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "تدوير الكائن ثلاثي الأبعاد"
#. AC56T
-#: include/svx/strings.hrc:1031
+#: include/svx/strings.hrc:1032
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "إنشاء كائن نتوء"
#. 4DonY
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "إنشاء كائن الدوران"
#. EL9V9
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "تقسيم كائن ثلاثي الأبعاد"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[All]"
#. RZVDm
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "مرشّح الرسوم"
#. YNjeD
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "سمة جديدة"
#. 5uYha
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "تأثيرات ثلاثية الأبعاد"
#. 78DGx
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "حركات"
#. zGEez
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "نقطيات"
#. MwX9z
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "مكتب"
#. dAwiC
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "أعلام"
#. Ccn8V
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "تخطيطات انسيابية"
#. 6ouMS
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "صور تعبيرية"
#. 8GPFu
-#: include/svx/strings.hrc:1048
-#, fuzzy
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
-msgstr "الصور"
+msgstr "صور"
#. sqh2w
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "خلفيات"
#. B3KuT
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "الصفحة الرئيسية"
#. WR8JQ
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "تفاعل"
#. EbEZ6
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "خرائط"
#. GALA8
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "أشخاص"
#. ZMoiA
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "أسطح"
#. hNaiH
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "الحواسيب"
#. mrvvG
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "مخططات"
#. HhrDx
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "بيئة"
#. 2jVzE
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "مالية"
#. cmF3B
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "نقل"
#. as3XM
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "أشكال نصية"
#. gGyFP
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "أصوات"
#. 5NrPj
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "رموز"
#. AiXUK
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "سِمَتي"
#. uRxP4
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "الأسهم"
#. c3WXh
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "بالونات"
#. pmiE7
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "لوحة المفاتيح"
#. LYdAf
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "الوقت"
#. 4UGrY
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "عرض تقديمي"
#. a46Xm
-#: include/svx/strings.hrc:1069
+#: include/svx/strings.hrc:1070
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "التقويم"
#. YpuGv
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "الملاحة"
#. gAJH4
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "اتصال"
#. ETEJu
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "مالية"
#. rNez6
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "الحواسيب"
#. ioX7y
-#: include/svx/strings.hrc:1074
+#: include/svx/strings.hrc:1075
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "الطقس"
#. MmYFp
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "المدرسة والجامعة"
#. EKFgg
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "حل المشاكل"
#. GgrBp
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Screen Beans"
#. E6onK
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "طباعة التحديد"
#. HzX9m
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "هل تريد طباعة التحديد فقط أم المستند بأكمله؟"
#. 3UyC8
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "ال~كل"
#. UxfS3
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "ال~تحديد"
#. KTgDd
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "نتوء شمالي-غربي"
#. N6KLd
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "نتوء شمالي"
#. AB6Vj
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "نتوء شمالي-شرقي"
#. NBBEB
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "نتوء غربي"
#. d9n5U
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "نتوء للخلف"
#. A2mcf
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "نتوء شرقي"
#. onGib
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "نتوء جنوبي-غربي"
#. XLQFD
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "نتوء جنوبي"
#. v5wRm
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "نتوء جنوبي-شرقي"
#. 4DGjm
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 سم"
#. kRzVE
-#: include/svx/strings.hrc:1094
+#: include/svx/strings.hrc:1095
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 سم"
#. CSmTh
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2.5 سم"
#. eYrvo
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 سم"
#. G4Ckx
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~سم"
#. LGHsL
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 إنش"
#. HPevm
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0.~5 إنش"
#. GvKjC
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 إنش"
#. gmzHb
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 إنش"
#. DE5kt
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 إنش"
#. K5dY9
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
-msgstr "بلا تعبئة"
+msgstr "بِلا تعبئة"
#. TFBK3
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
#, fuzzy
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "الشفافية"
#. c7adj
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "المبدئيّ"
#. djHis
-#: include/svx/strings.hrc:1107
+#: include/svx/strings.hrc:1108
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "الحدود"
#. PURr6
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "نمط الحدود"
#. 9Ckww
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "بقية أنواع الترقيم…"
#. cDG4s
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr "تنقيطات أكثر..."
#. uDT6G
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
#, fuzzy
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "حسب المؤلف"
#. q2Le9
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
-msgstr "الصفحات"
+msgstr "صفحات"
#. jfL9n
-#: include/svx/strings.hrc:1113
+#: include/svx/strings.hrc:1114
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "مسح التنسيق"
#. f6nP8
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "مزيد من الطُرُز..."
#. DPbrc
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "خيارات أكثر..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "اسم الخط"
#. SKCYy
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "اسم الخط. اسم الخط الحالي غير متوفّر وسيُستبْدَل."
#. CVvXU
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "مخصّصة"
#. xqzJj
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "ألوان المستند"
#. aVTAG
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_THEME_COLORS"
msgid "Theme colors"
msgstr "ألوان السِّمَة"
#. 6BoWp
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "لون المستند"
#. D6gmu
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_THEME_COLOR1"
msgid "Background - Dark 1"
msgstr "خلفية - غامق 1"
#. JBJhM
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_THEME_COLOR2"
msgid "Text - Light 1"
msgstr "نص - فاتح 1"
#. C7MSY
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_THEME_COLOR3"
msgid "Background - Dark 2"
msgstr "خلفية - غامق 2"
#. YdMAB
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_THEME_COLOR4"
msgid "Text - Light 2"
msgstr "نص - فاتح 2"
#. NAAZJ
-#: include/svx/strings.hrc:1127
+#: include/svx/strings.hrc:1128
msgctxt "RID_SVXSTR_THEME_COLOR5"
msgid "Accent 1"
msgstr "تشديد 1"
#. 6txaB
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXSTR_THEME_COLOR6"
msgid "Accent 2"
msgstr "تشديد 2"
#. fECsk
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXSTR_THEME_COLOR7"
msgid "Accent 3"
msgstr "تشديد 3"
#. 4DH3P
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXSTR_THEME_COLOR8"
msgid "Accent 4"
msgstr "تشديد 4"
#. dUUDX
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXSTR_THEME_COLOR9"
msgid "Accent 5"
msgstr "تشديد 5"
#. 73ZEk
-#: include/svx/strings.hrc:1132
+#: include/svx/strings.hrc:1133
msgctxt "RID_SVXSTR_THEME_COLOR10"
msgid "Accent 6"
msgstr "تشديد 6"
#. VKjfB
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVXSTR_THEME_COLOR11"
msgid "Hyperlink"
msgstr "رابط تشعبي"
#. DBfXC
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_THEME_COLOR12"
msgid "Followed Hyperlink"
msgstr ""
#. sNGoN
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_THEME_EFFECT1"
msgid "%1, 80% Lighter"
msgstr "%1، 80% أفتح"
#. uQBgP
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_THEME_EFFECT2"
msgid "%1, 60% Lighter"
msgstr "%1، 60% أفتح"
#. sEpvU
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_THEME_EFFECT3"
msgid "%1, 40% Lighter"
msgstr "%1، 40% أفتح"
#. XSfNG
-#: include/svx/strings.hrc:1138
+#: include/svx/strings.hrc:1139
msgctxt "RID_SVXSTR_THEME_EFFECT4"
msgid "%1, 25% Darker"
msgstr "%1، 25% أغمق"
#. 3xjEA
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_THEME_EFFECT5"
msgid "%1, 50% Darker"
msgstr "%1، 50% أغمق"
#. DJGyY
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "النتوء"
#. TyWTi
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "تطبيق تشغيل/إيقاف النتوء"
#. DKFYE
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "إمالة لأسفل"
#. 2Rrxc
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "إمالة لأعلى"
#. eDpJK
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "إمالة لليسار"
#. CWDSN
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "إمالة لليمين"
#. CxYgt
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "تغيير عمق النتوء"
#. c5JCp
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "تغيير الاتجاه"
#. KDSyh
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "تغيير نوع التوجيه"
#. JpzeS
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "تغيير الإضاءة"
#. j4AR9
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "تغيير البياض"
#. yA2xm
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "تغيير سطح النتوء"
#. DFEZP
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "تغيير لون النتوء"
#. uPyWe
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "أحمر:"
#. UMMJN
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "أخضر:"
#. ocdkG
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "أزرق:"
#. L962H
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "معمل الخطوط"
#. 7RVov
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "تطبيق شكل معمل الخطوط"
#. h3CLw
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "تطبيق ارتفاع الأحرف نفسه لمعمل الخطوط"
#. 6h2dG
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "تطبيق محاذاة معمل الخطوط"
#. eKHcV
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "تطبيق تباعد أحرف معمل الخطوط"
#. oo88Y
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "مع"
#. 4sz83
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "الطراز"
#. fEHXC
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "و"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "عنصر تحكم الزاوية"
#. CUEEW
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "تحديد نقطة زاوية."
#. cQmVp
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "أعلى اليسار"
#. TtnJn
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "أعلى الوسط"
#. UERVC
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "أعلى اليمين"
#. CznfN
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "يسار الوسط"
#. jvzC7
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "وسط"
#. HPtYD
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "يمين الوسط"
#. v4SqB
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "أسفل يساراً"
#. daA8a
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "أسفل الوسط"
#. DGWf8
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "أسفل اليمين"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "عنصر تحكم خط كفافي"
#. aMva8
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "يمكنك هنا تعديل الخط الكفافي."
#. DXEuF
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "اختيار الأحرف الخاصة"
#. JfRzP
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "اختيار الأحرف الخاصة في هذه المساحة."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "رمز الحرف "
#. HECeC
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "مطلوب إدخال في الحقل '#'. الرجاء كتابة قيمة."
#. w4wm8
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "النماذج"
#. cz8aS
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "لم يتم تحديد عنصر تحكم"
#. JG7Es
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "الخصائص: "
#. YQvBF
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "خصائص النموذج"
#. qS9Rn
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "ملاح النموذج"
#. PzEVD
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "النموذج"
#. FWPxF
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "مخفي"
#. DnoDH
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "النموذج"
#. Ba4Gy
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "وحدة تحكم مخفية"
#. wtZqP
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "عنصر تحكم"
#. HvXRK
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "السجل"
#. HmTfB
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "من"
#. NZ68L
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "إضافة حقل:"
#. vGXiw
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "حدث خطأ أثناء الكتابة في قاعدة البيانات"
#. zzFRi
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "خطأ في بنية عبارة الاستعلام"
#. fS8JJ
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "تنوي حذف سجل واحد."
#. Qb4Gk
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "سيتم حذف # سجل."
#. zSJQe
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6735,337 +6730,337 @@ msgstr ""
"هل تريد المتابعة على أي حال؟"
#. Kb7sF
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "شريط الملاحة"
#. pKEQb
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "العمود"
#. FXRKA
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "تعيين الخاصية '#'"
#. hXjTN
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "إدراج في حاوية"
#. BWpyC
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "حذف #"
#. ZeaDk
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "حذف # كائن"
#. VgGrE
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1214
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "استبدال أحد عناصر الحاوية"
#. FoXgt
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "استبدال عنصر تحكم"
#. ZGDAr
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "مربع نص"
#. CBmAL
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "خانة اختيار"
#. xwuJF
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
-msgstr "مربع تحرير وسرد"
+msgstr "مربع مركّب"
#. WiNUf
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "مربع قائمة"
#. a7gAj
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
-msgstr "حقل التاريخ"
+msgstr "حقل تاريخ"
#. EaBTj
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "حقل الوقت"
#. DWfsm
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "حقل رقمي"
#. TYjnr
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "حقل العملة"
#. B6MEP
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "حقل النمط"
#. DEn9D
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "حقل مُنسَّق"
#. V4iMu
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "زر الضغط"
#. TreFC
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "زر خيار"
#. NFysA
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "حقل لصيقة"
#. E5mMK
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "مربع مجموعة"
#. 5474w
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "زر صورة"
#. qT2Ed
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "التحكم بالصورة"
#. 6Qvho
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "تحديد الملف"
#. uEYBR
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "التحكم بالجدول "
#. 3SUEn
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "شريط التمرير"
#. VtEN6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "زر زيادة ونقصان"
#. eGgm4
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "شريط الملاحة"
#. yME46
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "تحديد متعدد"
#. s94UU
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr ""
#. PzA5d
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "لا يوجد عناصر تحكم مرتبطة في النموذج الحالية!"
#. ZyBEz
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (التاريخ)"
#. guA5u
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (الوقت)"
#. 2wgdY
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "ملاح الترشيح"
#. BUYuD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "مرشّح"
#. AcTBB
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "أو"
#. 6RPtu
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "في النموذج الحالي، لا توجد عناصر تحكم صالحة يمكن استخدامها في طريقة عرض الجدول!"
#. iEoGb
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<حقل تلقائي>"
#. Da6gx
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "خطأ في بناء الجملة بعبارة SQL"
#. ZoEuu
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "لا يمكن استخدام القيمة #1 مع LIKE."
#. 75ECE
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "لا يمكن استخدام LIKE في هذا الحقل."
#. tzFv5
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "القيمة المدخلة ليست بالتاريخ الصالح. الرجاء إدخال تاريخ بتنسيق صالح على سبيل المثال MM/DD/YY."
#. y6Z26
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "لا يمكن مقارنة الحقل بعدد صحيح."
#. F8FgA
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "قاعدة البيانات لا تحتوي على الجدول المسمى \"#\"."
#. EDcU7
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "قاعدة البيانات لا تحتوي على جدول مسمى أو حتى استعلام \"#\"."
#. YBFF5
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "قاعدة البيانات تحتوي مسبقا على جدول أو عرض باسم \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "قاعدة البيانات تحتوي مسبقا على استعلام باسم \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "العمود \"#1\" مجهول في الجدول \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "لا يمكن مقارنة الحقل مع رقم ذي نقطة عائمة!"
#. CEg85
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "لا يمكن مقارنة المعيار الذي تم إدخاله بهذا الحقل."
#. ZGAAQ
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "ملاح البيانات"
#. W4uM2
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (للقراءة فقط)"
#. DgfNh
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "الملف موجود بالفعل. هل تريد استبداله؟"
#. dSYCi
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "تسمية #object#"
#. JpaM6
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -7075,7 +7070,7 @@ msgstr ""
"أتريد حقًّا حذف هذا النّموذج؟"
#. y5Dyt
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -7085,7 +7080,7 @@ msgstr ""
"أمتأكد من حذف السيرورة؟"
#. VEzGF
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -7095,13 +7090,13 @@ msgstr ""
"أمتأكد من حذف العنصر؟"
#. 3hF6H
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "هل ترغب بالفعل في حذف الصفة '$ATTRIBUTENAME'؟"
#. AWEbJ
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -7113,7 +7108,7 @@ msgstr ""
"أمتأكد من حذف التسليم؟"
#. SGiK5
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -7125,1014 +7120,1013 @@ msgstr ""
"أمتأكد من حذف الرابط؟"
#. 2zzHP
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "الاسم '%1' غير صالح في XML. الرجاء إدخال اسم مختلف."
#. 4nAtc
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "البادئة '%1' غير صالحة في XML. الرجاء إدخال بادئة مختلفة."
#. qrFQD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "الاسم '%1' موجود بالفعل. الرجاء إدخال اسم جديد."
#. DKkaw
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "التسليم يجب أن يكون له اسم."
#. xcAaD
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "إرسال"
#. XGRQA
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr ""
#. tkRR3
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "إحضار"
#. fsyAL
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. Bjxmg
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "السيرورة"
#. affmF
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "مستند"
#. gJLHj
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "الربط: "
#. AEHco
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "مرجع: "
#. iLaBC
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "إجراء: "
#. HBV5Q
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "طريقة: "
#. dAN2F
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "استبدال: "
#. QMiqA
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "إضافة عنصر"
#. C9YBB
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "تحرير العنصر"
#. XAh7B
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "حذف العنصر"
#. CLHER
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "أضف صفة"
#. 6Ycoo
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "حرّر الصفة"
#. 6dSAd
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "احذف الصفة"
#. Ljhja
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "إضافة ربط"
#. CHTrw
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "تحرير الربط"
#. yYwEG
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "حذف الربط"
#. yVch8
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "إضافة طلب"
#. AX58u
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "تحرير التسليم"
#. DFxmD
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "حذف التسليم"
#. qvvD7
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "العنصر"
#. U4Btb
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "الصفة"
#. Prceg
-#: include/svx/strings.hrc:1302
-#, fuzzy
+#: include/svx/strings.hrc:1303
msgctxt "RID_STR_BINDING"
msgid "Binding"
-msgstr "روابط"
+msgstr "ربط"
#. iFARB
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
#, fuzzy
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "ت_عبير الرّبط:"
#. BTmNa
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
-msgstr "أتريد حقًّا إهمال استرجاع مستند %PRODUCTNAME؟"
+msgstr "أتريد حقًّا استبعاد استرجاع مستند %PRODUCTNAME؟"
#. 5WjQZ
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "يسار"
#. JC7pc
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "يمين"
#. MhfuC
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "وسط"
#. kX7GR
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "عشري"
#. 7vecp
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "وضع الإدراج. انقر للتّغيير إلى وضع الكتابة الفوقيّة."
#. ZCWNC
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "وضع الكتابة الفوقيّة. انقر للتّغيير إلى وضع الإدراج."
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "الكتابة على"
#. qqCSF
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
-msgstr "أدرِج"
+msgstr "أدرج"
#. 2BBEb
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr "%1. انقر لتغيّر نمط التحديد."
#. Dh5A2
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "التوقيع الرقمي: توقيع المستند مقبول."
#. xZprv
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "التوقيع الرقمي: توقيع المستند مقبول ولكن الشهادات تعذر تحقق منها."
#. Yydkh
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr "التوقيع الرقمي: توقيع المستند لا يطابق محتوى المستند. نوصي بشدة عدم الثقة بهذا المستند."
#. X7CjP
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "التوقيع الرقمي: هذا المستند غير موقع."
#. BRmFY
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "التوقيع الرقمي: توقيع المستند والشهادة صحيحان، لكن لم يتم توقيع جميع أجزاء المستند."
#. Swq5S
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "لقد عُدّل المستند. انقر لحفظه."
#. tRWKa
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "لم يتم أي تعديل في المستند منذ آخر عملية حفظ."
#. 7C8GH
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "يحمّل المستند..."
#. YbNsP
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "لائم الشّريحة إلى النّافذة الحاليّة."
#. Fpkx2
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "لم يمكن تحميل كل كائنات الرسم الذكي SmartArt. الحفظ بـ مايكروسوفت أوفيس 2010 أو ما بعده سيتجنّب هذه المشكلة."
#. Bc5Sg
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "عامل التكبير. انقر يميناً لتغيير عامل التكبير او انقر لتفتح حواريّ التكبير."
#. HCjAM
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "قرّب"
#. 2YBJE
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "بعّد"
#. n9EyG
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "٥٠٪"
#. D6jxs
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "١٠٠٪"
#. E5Xj8
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "١٥٠٪"
#. DjBVG
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "٢٠٠٪"
#. 6Axop
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "صفحة كاملة"
#. 2UBAF
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "عُرض الصفحة"
#. YBg9X
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "المعاينة المُثلى"
#. Wi5Fy
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "بما في ذلك الطُرُز"
#. BJSzf
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "~طُرُز الفقرات"
#. ARuQM
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "~طُرُز الخلايا"
#. 7ChAu
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "ابحث عن تنسيق"
#. K6Ave
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "استبدل بالتنسيق"
#. USdBy
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "وصلت إلى نهاية المستند"
#. CVSwo
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "وصلت إلى نهاية المستند، مستمراً من البداية"
#. yCJzd
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "وصلت إلى نهاية الورقة"
#. Diftw
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "لم يُعثر على مفتاح البحث"
#. xACuY
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "لم يُعثر على عنصر الإبحار"
#. CGo5w
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "وصلت إلى بداية المستند"
#. nDCC4
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "وصلنا إلى بداية المستند، مستمراً من النهاية"
#. FNdxE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr "وصلت إلى أول تذكير، مستمراً من الأخير"
#. hAzCn
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr "وصلت إلى آخِر تذكير، مستمراً من الأول"
#. ihDqY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "لوح الألوان"
#. sDL47
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "مستبدل الألوان"
#. 7FcWA
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr "تأثيرات ثلاثية الأبعاد 3D"
#. j6dA6
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1362
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "كلمة السر غير صحيحة"
#. JGJ9F
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "كلمتا السر غير متطابقتين"
#. VHTRb
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "تنقيط دائرية صغيرة صلبة"
#. AiNrB
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "تنقيط دائرية كبيرة صلبة"
#. Vtk8J
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
-msgstr "تنقيط ألماس صلب"
+msgstr "تنقيط ماس صلب"
#. bQFBw
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "تنقيط مربعة كبيرة صلبة"
#. 5eJDd
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "تنقيط سهم مملوء يشير يميناً"
#. D8zQC
-#: include/svx/strings.hrc:1369
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "تنقيط سهم يشير يميناً"
#. QCULV
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "تنقيط علامة صليب"
#. XuXC7
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "تنقيط علامة تأشير"
#. cUEoG
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "رقم 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "رقم 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "رقم (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "أرقام رومانية كبيرة I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "أحرف كبيرة ‪A) B) C)‬"
#. GooHz
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "أحرف صغيرة ‪a) b) c)‬"
#. k6waJ
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1379
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "أحرف صغيرة ‪(a) (b) (c)‬"
#. ZiWKK
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1380
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "أرقام رومانية صغيرة ‪i. ii. iii.‬"
#. oDTBg
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "عددي وعددي وأحرف صغيرة ونقطة دائرية صغيرة صلبة"
#. m56fN
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "عددي وأحرف صغيرة ونقطة دائرية صغيرة صلبة"
#. RyTLW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "عددي - حروف صغيرة - رومانية صغيرة - حروف كبيرة نقط دائرية صغيرة صلبة"
#. GAfTp
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "عددي"
#. gjEgN
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "حروف رومانية كبيرة - حروف صغيرة - حروف رومانية صغيرة - حروف صغيرة - نقطة دائرية صغيرة صلبة"
#. DZ2kE
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "حروف كبيرة - حروف رومانية كبيرة - حروف صغيرة - حروف رومانية صغيرة - نقطة دائرية صغيرة صلبة"
#. TV9Mc
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "عددي مع كل المستويات الفرعية"
#. tiXu5
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
-msgstr "نقطة تأشير يمين، نقطة سهم تأشير يمين، نقطة ألماسية صلبة، نقطة دائرية صغيرة صلبة"
+msgstr "نقطة تأشير يمين، نقطة سهم تأشير يمين، نقطة ماسية صلبة، نقطة دائرية صغيرة صلبة"
#. nEJiF
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1390
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "تعذر إنشاء ملف zip."
#. CC6Sw
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "أنماط تصميم الجدول"
#. c69eB
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "الإجراءات التي سيتم التراجع عنها: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "الإجراءات التي سيتم التراجع عنها: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "الإجراءات التي ستتم إعادتها: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "الإجراءات التي ستتم إعادتها: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. WbEFL
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "مطابقة الحالة"
#. 59ENV
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) f بكسل)"
#. JEkzY
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1404
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) x $(HEIGHT) بدقّة $(DPI) نقطة لكل بوصة"
#. n8VBe
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) ك.بايت"
#. Xgeqc
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr "صورة GIF"
#. G2q7M
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr "صورة JPEG"
#. oGKBg
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1409
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "صورة PNG"
#. Fkrjs
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "صورة TIFF"
#. VWyEb
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "صورة WMF"
#. pCpoE
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "صورة MET"
#. DELaB
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1413
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "صورة PCT"
#. 3AZAG
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "صورة SVG"
#. aCEJW
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "صورة BMP"
#. NBoWH
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
-msgstr "مجهول"
+msgstr "غير معروف"
#. 8LBFX
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "حوّل"
#. xLF42
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "وضع الصورة"
#. fw5hA
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "أحمر"
#. CiQvY
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "أخضر"
#. BhvBe
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "أزرق"
#. HSP36
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "الإضاءة"
#. w5BYP
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "التباين"
#. EZUjS
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "جاما"
#. ernMB
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "الشفافية"
#. LdkNB
-#: include/svx/strings.hrc:1428
+#: include/svx/strings.hrc:1429
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "اقتصاص"
#. TJmBu
-#: include/svx/strings.hrc:1430
+#: include/svx/strings.hrc:1431
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "الاتجاه المبدئيّ"
#. WQqju
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "من أعلى إلى أسفل"
#. ipfz6
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "من أسفل إلى أعلى"
#. MLR44
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "متراكم"
#. vUDeh
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "الهامش الأيسر: "
#. EFBbE
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "الهامش العلوي: "
#. 7HeyP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "الهامش الأيمن: "
#. HCuWQ
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "الهامش السفلي: "
#. zD9BB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "وصف الصفحة: "
#. a4eSJ
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "أحرف كبيرة"
#. DuQGP
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1441
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "أحرف صغيرة"
#. nWQ7R
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "أحرف استهلالية رومانية"
#. PxkPZ
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "أحرف صغيرة رومانية"
#. B7YEa
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "العربية"
#. vPbGB
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. akGGo
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "بالعرض"
#. bbcaZ
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "بالطول"
#. BQtGg
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "يسار"
#. JWFLj
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "يمين"
#. bxvGx
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "الكل"
#. S3nm4
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "منعكس"
#. dcvEJ
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "المؤلف: "
#. 2siC9
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "التاريخ: "
#. pWoLe
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "النص: "
#. pAABc
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "خلفية الحرف"
#. Deknh
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "لوح الألوان"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8140,2131 +8134,2131 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "لاتيني أساسي"
#. bcjRA
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "لاتيني-1"
#. h6THj
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "لاتيني موسّع-A"
#. o4EF9
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "لاتيني موسّع-A"
#. W3CGs
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "ملحقات IPA"
#. yZjF6
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "أحرف معدّل المسافات"
#. EASZR
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "ضم علامات المميزة"
#. wBjC4
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "يوناني أساسي"
#. Dh8Es
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "رموز يونانية وقبطية"
#. jGT5E
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "السيريلية"
#. DQgLS
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "الأرمنية"
#. kXEQY
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "عبري أساسي"
#. Cb8g4
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "عبري موسّع"
#. ZmDCd
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "عربي أساسي"
#. hZDFV
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "عربي موسّع"
#. c3CqD
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "ديفاناغاري"
#. EfVnG
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "البنغالية"
#. iWzLc
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "غورموكي"
#. omacG
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "الجيوجاراتية"
#. Cdwzw
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "الأورية"
#. BhEGN
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "التاميلية"
#. 6YkEo
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "التيلوجو"
#. J5qn4
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "الكانادية"
#. 4UEFU
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "المالايلامية"
#. C5yzo
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "التايلاندية"
#. EvjbD
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "اللاوية"
#. HqFTh
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "الجورجية الأساسية"
#. npAc8
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "الجورجية الموسّعة"
#. AHAB4
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "هانغول جامو"
#. gMEFL
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "إضافات لاتينية موسعة"
#. uVYXp
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "يوناني موسّع"
#. LEQg6
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "علامات تنقيط عامّة"
#. D9KFj
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "مرتفع ومنخفض"
#. yaxYV
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "رموز العملة"
#. jzA5i
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "ضم الرموز المميزة"
#. CHNBZ
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "رموز كالأحرف"
#. cDkEd
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "أشكال الأرقام"
#. j25Fp
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "الأسهم"
#. p5Tbx
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "مُعاملات رياضية"
#. ckgof
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "تقنية متنوعة"
#. 8rXdw
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "تحكم بالصور"
#. D4J8A
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "تعرف بصري على الأحرف"
#. hXwgf
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "تضمين النظام الذي يحوي الحروف والأرقام معا"
#. AD9HJ
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "رسم مربع"
#. vViaR
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "عناصر الكتلة"
#. ok7ks
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "أشكال هندسية"
#. sKty5
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "رموز مختلفة"
#. yDpNT
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "رموز تزيينية"
#. Cth4P
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "رموز وعلامات تنقيط صينية ويابانية وكورية"
#. Bo4iK
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "هيراجانا"
#. i2Cdr
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "كاتاكانا"
#. 9YYLD
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "بوبوموفو"
#. F9UFG
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "جامو المتوافق مع هانغول"
#. yeRDE
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "متفرقات صينية ويابانية وكورية"
#. kPFs9
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "أحرف وأشهر صينية ويابانية وكورية في دائرة"
#. 6tAx6
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "توافق الصينية واليابانية والكورية"
#. VakXP
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "هانغول"
#. XzS6D
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "أيديوغرام موحّد صيني وياباني وكوري"
#. JVCP5
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات أ)"
#. Y33VK
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "منطقة استعمال خاص"
#. 8yYiM
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "توافق إيديوغرام الصينية واليابانية والكورية"
#. BEfFQ
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "نماذج عروض تقديمية أبجدية"
#. NCsAG
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "نماذج عروض تقديمية عربية-A"
#. adi8G
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "ضم علامات النصف"
#. vLBhn
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "نماذج توافق الصينية واليابانية والكورية"
#. i6R3B
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "أنواع النماذج الصغيرة"
#. 7EDCh
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "نماذج عروض تقديمية عربية-B"
#. WWoWx
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "نماذج نصف العرض وكامل العرض"
#. dkDXh
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "خاصة"
#. GQSEx
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "مقاطع يي"
#. BL66x
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "جذور يي"
#. cuQ2k
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "إيطالي قديم"
#. wtKAB
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "القوطية"
#. GPFqC
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "الديسيريت"
#. 7AovD
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "رموز موسيقية بيزنطية"
#. G3GQF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "رموز موسيقية"
#. YzBDD
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "رموز رياضية أبجدية رقمية"
#. 3XZRw
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات ب)"
#. nZnQc
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات ج)"
#. HBwZE
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات د)"
#. TTFkh
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "إديوگرافات ص‌ي‌ك توافقية (تكميلي)"
#. 2jALB
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "الوسوم"
#. 2iHJN
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "سريلي تكميلي"
#. ABgr9
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "تحديدات مختلفة"
#. a4q6S
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "مساحة تكميلية للاستعمال الخاص-أ"
#. k638K
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "مساحة تكميلية للاستعمال الخاص-ب"
#. pKFTg
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "اللمبو"
#. TJHGp
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "تاي لي"
#. nujxa
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "رموز الخمارية"
#. neD93
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "امتدادات صوتية"
#. C6LwC
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "رموز وأسهم متفرقة"
#. giR4r
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "رموز يي جِن السداسية"
#. EqFxm
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "مقاطع خطية ب"
#. VeZNe
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "صور معنوية خطية ب"
#. Tvkgh
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "أرقام إيجية"
#. CuThH
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "الأوغاريتية"
#. nBtk5
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "الشفيانية"
#. vvMNk
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "العثمانية"
#. aiySp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "سينهالا"
#. PEGiu
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "التيبتية"
#. tRBTP
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "ميانمار"
#. 8sgGF
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "الخميرية"
#. CdXvH
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "الأوغمية"
#. jFWRQ
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "روني"
#. jhzoc
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "السريانية"
#. B66QG
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "تانا"
#. j8cuG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "الحبشية"
#. AE5wq
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "شيروكي"
#. 9mgNF
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "مقاطع الأرومي الكاناديين"
#. d5JWE
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "المنغولية"
#. XnzyB
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "رموز رياضية متفرقة-A"
#. R5W9H
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "أسهم إضافية-A"
#. QYf7A
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "أحرف بريل"
#. 63BBg
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "أسهم إضافية-B"
#. ykowm
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "رموز رياضية متفرقة-B"
#. GGdze
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "تحميل العلامات الجذرية الصينية واليابانية والكورية"
#. WLLAP
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "جذور كانغ سي"
#. EyZR2
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "أحرف وصف إيديوغرامية"
#. o3AQ6
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "فلبينية"
#. BVieL
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "هانونو"
#. DwAEz
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "تاغبانوا"
#. 3GDP5
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "بوهِد"
#. BfGBm
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "كانبَن"
#. cL7Vo
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "بوبوموفو موسّع"
#. MQoBs
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "صوتيّات كاتاكانا"
#. fCpRM
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "تركيبات ص‌ي‌ك"
#. zyW2q
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "مقاطع القبرصية"
#. GWxb8
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "رموز تاي زوان دجن"
#. 8ZJmr
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "تكميليات منتقيات التنويعات"
#. RR6Er
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "رموز موسيقية يونانية قديمة"
#. K3GsF
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "أرقام يونانية قديمة"
#. y4HCg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "عربي تكميلي"
#. KUnXb
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "البجينيزية"
#. zDaXa
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "تكميلة علامات تشكيل مركبة"
#. 9Z24A
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "القبطية"
#. CANHf
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "إثيوبي ممتد"
#. X8DEc
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "إثيوبي تكميلي"
#. fYpFz
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "جورجي تكميلي"
#. 3Gzxx
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "گلاگولي"
#. zKCVG
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "خاروشذي"
#. U8zrU
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "حروف النغمات المغيرة"
#. B2yF8
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "تاي لو الجديد"
#. J4KdA
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "فارسية قديمة"
#. eGPjC
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "امتدادات صوتية تكميلية"
#. XboFE
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "ترقيم تكميلي"
#. tBJi3
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "سيولتي ناگري"
#. Qrowh
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "تيفيناغ"
#. aZKS5
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "نماذج رأسية"
#. ihUDF
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "إنكو"
#. Z3AAi
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "بالينية"
#. 428ER
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "لاتيني موسّع-ج"
#. SqFfT
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "لاتيني موسّع-د"
#. yMmow
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "فاگس-با"
#. V6CsB
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "فينيقية"
#. GNBwz
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "مسماري"
#. VBPZE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "أعداد وترقيم مسماري"
#. 9msGJ
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "تعداد أرقام رود"
#. i6Gx9
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "سُنداني"
#. WrXXX
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "ليبشا"
#. FhhAQ
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "أُول تشيكي"
#. eHvUh
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "سريلي موسّع-أ"
#. ZkKwE
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "ڤاي"
#. pBASG
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "سريلي موسّع-ب"
#. GoQpd
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "سوراشترا"
#. 6pufg
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "كاياه لي"
#. bmFny
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "ريجانگ"
#. EaXay
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "تشام"
#. qYaAV
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "رموز أثرية"
#. At8Tk
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "قرص فستوس"
#. ryGAF
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "ليشياني"
#. EYLa8
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "كاريان"
#. TPN6m
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "ليديان"
#. G5GLd
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "مربعات ماهجونغ"
#. EyMaF
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "مربعات دومينو"
#. r2YQs
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "سامري"
#. feZ2Q
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "مقاطع الكنديين الأصليين موسع"
#. H4FpF
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "تاي ثام"
#. BgKLG
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "امتدادات ڤيدية"
#. bVNYf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "ليسو"
#. riEM3
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "باموم"
#. CQMqK
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "أشكال الأعداد الهندية الشائعة"
#. gDEUp
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "ديفاناغاري موسّع"
#. UsAq2
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "هنگول جامو موسّع-أ"
#. g5H7j
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "جاوية"
#. upBjC
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "ميانمار موسّع-أ"
#. GQ3XX
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "تاي ڤيت"
#. HGVSu
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "ميتي مايك"
#. ryvor
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "هنگول جامو موسّع-ب"
#. RTxUc
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "آرامي ملكي"
#. 7E6G8
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "عربي جنوبي قديم"
#. Ab3wu
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "أڤستانية"
#. 5gN8e
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "بارثيان نحتي"
#. D7rcV
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "بهلوي نحتي"
#. d44Dq
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "تركي قديم"
#. CLuJC
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "رموز أرقام رومية"
#. FpFeH
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "كياثي"
#. Swfzy
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "هيروغليفي مصري"
#. bMYVC
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "أبجدي رقمي محاط تكميلي"
#. Dqcpa
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "إديوگرافات محاطة تكميلي"
#. 8eCZn
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "مندياني"
#. 8LVFp
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "باتاك"
#. 9SrgK
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "إثيوبي موسّع-أ"
#. cQEzt
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "برهمي"
#. n4oND
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "باموم تكميلي"
#. xibkG
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "كانا تكميلي"
#. xyswt
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "أوراق لعب"
#. TqExt
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "رموز وبكتوجرافات متنوعة"
#. wtMts
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "صور تعبيرية"
#. WgGuX
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "رموز السفر والخرائط"
#. fBitP
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "رموز الخيميا"
#. CWvjP
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "عربي موسّع-أ"
#. D7mEf
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "رموز رياضية عربية أبجدية"
#. 8ouWH
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "شاكما"
#. z3gG4
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "ميتي مايك تكميلي"
#. mFAeA
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "مروية متصلة"
#. b5m8K
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "مروية هيروغليفية"
#. Xrkei
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "مياو"
#. hG9Na
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "شارادا"
#. rTKpL
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "سورا سُمپِنگ"
#. CAKEC
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "سُنداني تكميلي"
#. pTsMT
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "تاكري"
#. HNCk9
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "تكميلة علامات تشكيل مركبة"
#. 8TGuM
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "لاتيني موسّع-A"
#. wNozk
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "خطّي"
#. SjAev
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "وضع"
#. jC4Ue
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "ميانمار موسّع-أ"
#. y7tCX
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "عربي جنوبي قديم"
#. EZADa
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "أسهم إضافية-A"
#. iGUzh
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات أ)"
#. ho93C
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "سريلي موسّع-أ"
#. S69GG
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "جورجي تكميلي"
#. RTgGA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "جديد"
#. JJrpR
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "الإستخدام"
#. o3qMt
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "إديوگرافات ص‌ي‌ك الموحدة (امتدادات أ)"
#. DH39v
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "ميانمار موسّع-أ"
#. jPSFu
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "سريلي تكميلي"
#. rbMNp
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. 9UAmW
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr ""
#. QFLaj
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr ""
#. CYEeS
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr ""
#. ABqB6
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr ""
#. DmagG
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr ""
#. tjuhJ
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr ""
#. naYAA
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr ""
#. JGVtT
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr ""
#. pkBYF
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr ""
#. SEVKT
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr ""
#. NpBis
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr ""
#. ssh5F
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "من اليسار إلى اليمين (LTR)"
#. Ct9UG
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "من اليمين إلى اليسار (RTL)"
#. XFhAz
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "استخدم إعدادات الكائن الرئيسي"
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "من اليسار إلى اليمين (أفقي)"
#. b6Guf
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "من اليمين إلى اليسار (أفقي)"
#. yQGoC
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "من اليمين إلى اليسار (عمودي)"
#. k7B2r
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "من اليسار إلى اليمين (عمودي)"
#. DF4B8
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr "من أسفل لأعلى، اليسار إلى اليمين (عمودي)"
#. siSmL
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr "الشفافية:"
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "لا حدود"
#. LzhYZ
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
-msgstr ""
+msgstr "الحد الخارجي فقط"
#. EniNF
-#: include/svx/strings.hrc:1806
+#: include/svx/strings.hrc:1807
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1812
+#: include/svx/strings.hrc:1813
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1814
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "كل الحدود الأربعة"
#. o8fB8
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr "الحدود اليسرى واليمنى فقط"
#. 6NnM2
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr "الحدود العليا والسفلى فقط"
#. KTYVW
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
#. fRcEu
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr "الحد الأيسر فقط"
#. uqzE7
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
-msgstr ""
+msgstr "الحد الأيمن فقط"
#. 6ecLB
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
-msgstr ""
+msgstr "الحد العلوي فقط"
#. B6KZc
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
-msgstr ""
+msgstr "الحد السفلي فقط"
#. aCMGz
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "الحدود العليا والسفلى، وكل الخطوط الداخلية"
#. t38dT
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "الحدود اليسرى واليمنى، وكل الخطوط الداخلية"
@@ -10273,19 +10267,19 @@ msgstr "الحدود اليسرى واليمنى، وكل الخطوط الدا
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
#. Q2kMw
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
@@ -10503,7 +10497,7 @@ msgstr "فاصل صفحات"
#: include/svx/svxitems.hrc:58
msgctxt "RID_ATTR_NAMES"
msgid "Hyphenation"
-msgstr "فصل المقاطع"
+msgstr "وصل الكلمات"
#. ZCVVC
#: include/svx/svxitems.hrc:59
@@ -10531,10 +10525,9 @@ msgstr "تباعدات الفقرة"
#. Z7Kxv
#: include/svx/svxitems.hrc:63
-#, fuzzy
msgctxt "RID_ATTR_NAMES"
msgid "Paragraph indent"
-msgstr "محاذاة الفقرة"
+msgstr "إزاحة الفقرة"
#. cffCk
#: include/svx/svxitems.hrc:64
@@ -10699,454 +10692,453 @@ msgid "Vertical text alignment"
msgstr "محاذاة النص الرأسية"
#. DPZws
-#: svx/inc/fieldunit.hrc:30
+#: svx/inc/fieldunit.hrc:31
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Millimeter"
msgstr "ميليمتر"
#. RWGZH
-#: svx/inc/fieldunit.hrc:31
+#: svx/inc/fieldunit.hrc:32
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Centimeter"
msgstr "سنتيمتر"
#. Uy6BJ
-#: svx/inc/fieldunit.hrc:32
+#: svx/inc/fieldunit.hrc:33
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Meter"
msgstr "متر"
#. ej2m5
-#: svx/inc/fieldunit.hrc:33
+#: svx/inc/fieldunit.hrc:34
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Kilometer"
msgstr "كيلومتر"
#. EFSC2
-#: svx/inc/fieldunit.hrc:34
+#: svx/inc/fieldunit.hrc:35
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Inch"
msgstr "بوصة"
#. pcGHS
-#: svx/inc/fieldunit.hrc:35
+#: svx/inc/fieldunit.hrc:36
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Foot"
msgstr "قدم"
#. 5a3Dq
-#: svx/inc/fieldunit.hrc:36
+#: svx/inc/fieldunit.hrc:37
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Miles"
msgstr "ميل"
#. zpCki
-#: svx/inc/fieldunit.hrc:37
+#: svx/inc/fieldunit.hrc:38
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Pica"
msgstr "بيكا"
#. aTBVj
-#: svx/inc/fieldunit.hrc:38
+#: svx/inc/fieldunit.hrc:39
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Point"
msgstr "نقطة"
#. tkSdX
-#: svx/inc/fieldunit.hrc:39
+#: svx/inc/fieldunit.hrc:40
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Char"
msgstr "حرف"
#. DyFjJ
-#: svx/inc/fieldunit.hrc:40
+#: svx/inc/fieldunit.hrc:41
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Line"
msgstr "الخط"
#. QYjeZ
-#: svx/inc/fmstring.hrc:27
+#: svx/inc/fmstring.hrc:29
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "LIKE"
msgstr "LIKE"
#. iRDFU
-#: svx/inc/fmstring.hrc:28
+#: svx/inc/fmstring.hrc:30
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "NOT"
msgstr "NOT"
#. JBngM
-#: svx/inc/fmstring.hrc:29
+#: svx/inc/fmstring.hrc:31
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "EMPTY"
msgstr "EMPTY"
#. zpTCG
-#: svx/inc/fmstring.hrc:30
+#: svx/inc/fmstring.hrc:32
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "TRUE"
msgstr "TRUE"
#. DYBeJ
-#: svx/inc/fmstring.hrc:31
+#: svx/inc/fmstring.hrc:33
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "FALSE"
msgstr "FALSE"
#. mtAA5
-#: svx/inc/fmstring.hrc:32
+#: svx/inc/fmstring.hrc:34
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "IS"
msgstr "IS"
#. YWtNJ
-#: svx/inc/fmstring.hrc:33
+#: svx/inc/fmstring.hrc:35
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "BETWEEN"
msgstr "BETWEEN"
#. 47bZX
-#: svx/inc/fmstring.hrc:34
+#: svx/inc/fmstring.hrc:36
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "OR"
-msgstr "OR"
+msgstr "أو"
#. 9ZBAf
-#: svx/inc/fmstring.hrc:35
+#: svx/inc/fmstring.hrc:37
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "AND"
-msgstr "وَ"
+msgstr "و"
#. xZ65E
-#: svx/inc/fmstring.hrc:36
+#: svx/inc/fmstring.hrc:38
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Average"
msgstr "المتوسط"
#. cTfDS
-#: svx/inc/fmstring.hrc:37
+#: svx/inc/fmstring.hrc:39
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Count"
msgstr "العدد"
#. TFaGE
-#: svx/inc/fmstring.hrc:38
+#: svx/inc/fmstring.hrc:40
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Maximum"
msgstr "الحد الأقصى"
#. gGpDF
-#: svx/inc/fmstring.hrc:39
+#: svx/inc/fmstring.hrc:41
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Minimum"
msgstr "الحد الأدنى"
#. 3YcTD
-#: svx/inc/fmstring.hrc:40
+#: svx/inc/fmstring.hrc:42
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Sum"
msgstr "المجموع"
#. GwMS7
-#: svx/inc/fmstring.hrc:41
+#: svx/inc/fmstring.hrc:43
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Every"
msgstr "كل"
#. M6DCS
-#: svx/inc/fmstring.hrc:42
+#: svx/inc/fmstring.hrc:44
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Any"
-msgstr ""
+msgstr "أيُّ"
#. AyNgd
-#: svx/inc/fmstring.hrc:43
+#: svx/inc/fmstring.hrc:45
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Some"
msgstr "بعض"
#. QYQ2c
-#: svx/inc/fmstring.hrc:44
+#: svx/inc/fmstring.hrc:46
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_POP"
msgstr "STDDEV_POP"
#. DsDPW
-#: svx/inc/fmstring.hrc:45
+#: svx/inc/fmstring.hrc:47
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_SAMP"
msgstr "STDDEV_SAMP"
#. RqHwF
-#: svx/inc/fmstring.hrc:46
+#: svx/inc/fmstring.hrc:48
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_SAMP"
msgstr "VAR_SAMP"
#. id43S
-#: svx/inc/fmstring.hrc:47
+#: svx/inc/fmstring.hrc:49
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_POP"
msgstr "VAR_POP"
#. mjjoD
-#: svx/inc/fmstring.hrc:48
+#: svx/inc/fmstring.hrc:50
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Collect"
msgstr "تجميع"
#. GcZBA
-#: svx/inc/fmstring.hrc:49
+#: svx/inc/fmstring.hrc:51
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Fusion"
msgstr "اندماج"
#. gpKQz
-#: svx/inc/fmstring.hrc:50
-#, fuzzy
+#: svx/inc/fmstring.hrc:52
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Intersection"
-msgstr "تفاعل"
+msgstr "تقاطع"
#. 8DMsd
-#: svx/inc/formnavi.hrc:27
+#: svx/inc/formnavi.hrc:29
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit"
msgid "~Text Box"
msgstr ""
#. LaRik
-#: svx/inc/formnavi.hrc:28
+#: svx/inc/formnavi.hrc:30
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
msgid "~Button"
msgstr ""
#. qjKaG
-#: svx/inc/formnavi.hrc:29
+#: svx/inc/formnavi.hrc:31
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
msgid "La~bel field"
msgstr ""
#. sq3AT
-#: svx/inc/formnavi.hrc:30
+#: svx/inc/formnavi.hrc:32
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
msgid "L~ist Box"
msgstr ""
#. agpbk
-#: svx/inc/formnavi.hrc:31
+#: svx/inc/formnavi.hrc:33
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
msgid "~Check Box"
msgstr ""
#. 9WA4B
-#: svx/inc/formnavi.hrc:32
+#: svx/inc/formnavi.hrc:34
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
msgid "~Radio Button"
msgstr ""
#. PpgmW
-#: svx/inc/formnavi.hrc:33
+#: svx/inc/formnavi.hrc:35
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
msgid "G~roup Box"
msgstr ""
#. A8Dbz
-#: svx/inc/formnavi.hrc:34
+#: svx/inc/formnavi.hrc:36
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
msgstr ""
#. HRAoH
-#: svx/inc/formnavi.hrc:35
+#: svx/inc/formnavi.hrc:37
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
msgid "I~mage Button"
msgstr "زر صو~رة"
#. gZZqq
-#: svx/inc/formnavi.hrc:36
+#: svx/inc/formnavi.hrc:38
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
msgid "~File Selection"
msgstr ""
#. EEADE
-#: svx/inc/formnavi.hrc:37
+#: svx/inc/formnavi.hrc:39
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
msgid "~Date Field"
msgstr ""
#. gDr8N
-#: svx/inc/formnavi.hrc:38
+#: svx/inc/formnavi.hrc:40
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
msgid "Tim~e Field"
msgstr ""
#. jAbfP
-#: svx/inc/formnavi.hrc:39
+#: svx/inc/formnavi.hrc:41
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
msgid "~Numerical Field"
msgstr ""
#. ryXjj
-#: svx/inc/formnavi.hrc:40
+#: svx/inc/formnavi.hrc:42
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
msgid "C~urrency Field"
msgstr ""
#. GXHFr
-#: svx/inc/formnavi.hrc:41
+#: svx/inc/formnavi.hrc:43
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
msgid "~Pattern Field"
msgstr ""
#. a7jCc
-#: svx/inc/formnavi.hrc:42
+#: svx/inc/formnavi.hrc:44
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
msgid "Ima~ge Control"
msgstr ""
#. WDsBh
-#: svx/inc/formnavi.hrc:43
+#: svx/inc/formnavi.hrc:45
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
msgid "Fo~rmatted Field"
msgstr ""
#. aEXn5
-#: svx/inc/formnavi.hrc:44
+#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
msgstr ""
#. cGxjA
-#: svx/inc/formnavi.hrc:45
+#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
msgstr ""
#. HYbc6
-#: svx/inc/formnavi.hrc:46
+#: svx/inc/formnavi.hrc:48
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
#. d7vkX
-#: svx/inc/frmsel.hrc:30
+#: svx/inc/frmsel.hrc:31
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Border setting"
msgstr "إعداد الحد"
#. CBSYv
-#: svx/inc/frmsel.hrc:31
+#: svx/inc/frmsel.hrc:32
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Left border line"
msgstr "خط حد أيسر"
#. YAWUD
-#: svx/inc/frmsel.hrc:32
+#: svx/inc/frmsel.hrc:33
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Right border line"
msgstr "خط حد أيمن"
#. VH67W
-#: svx/inc/frmsel.hrc:33
+#: svx/inc/frmsel.hrc:34
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Top border line"
msgstr "خط حد علوي"
#. MLMaA
-#: svx/inc/frmsel.hrc:34
+#: svx/inc/frmsel.hrc:35
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Bottom border line"
msgstr "خط حد سفلي"
#. ZqTGF
-#: svx/inc/frmsel.hrc:35
+#: svx/inc/frmsel.hrc:36
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Horizontal border line"
msgstr "خط حد أفقي"
#. jzGHA
-#: svx/inc/frmsel.hrc:36
+#: svx/inc/frmsel.hrc:37
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Vertical border line"
msgstr "خط حد رأسي"
#. DodCu
-#: svx/inc/frmsel.hrc:37
+#: svx/inc/frmsel.hrc:38
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from top left to bottom right"
msgstr "خط حد قطري من أعلى اليسار إلى أسفل اليمين"
#. wfJ23
-#: svx/inc/frmsel.hrc:38
+#: svx/inc/frmsel.hrc:39
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from bottom left to top right"
msgstr "خط حد قطري من أسفل اليسار إلى أعلى اليمين"
#. dTBRy
-#: svx/inc/frmsel.hrc:43
+#: svx/inc/frmsel.hrc:44
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Border setting"
msgstr "إعداد الحد"
#. LhEua
-#: svx/inc/frmsel.hrc:44
+#: svx/inc/frmsel.hrc:45
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Left border line"
msgstr "خط حد أيسر"
#. DAuHi
-#: svx/inc/frmsel.hrc:45
+#: svx/inc/frmsel.hrc:46
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Right border line"
msgstr "خط حد أيمن"
#. BYUTR
-#: svx/inc/frmsel.hrc:46
+#: svx/inc/frmsel.hrc:47
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Top border line"
msgstr "خط حد علوي"
#. QAnid
-#: svx/inc/frmsel.hrc:47
+#: svx/inc/frmsel.hrc:48
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Bottom border line"
msgstr "خط حد سفلي"
#. kDBDR
-#: svx/inc/frmsel.hrc:48
+#: svx/inc/frmsel.hrc:49
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Horizontal border line"
msgstr "خط حد أفقي"
#. Em9YX
-#: svx/inc/frmsel.hrc:49
+#: svx/inc/frmsel.hrc:50
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Vertical border line"
msgstr "خط حد رأسي"
#. oDFKb
-#: svx/inc/frmsel.hrc:50
+#: svx/inc/frmsel.hrc:51
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from top left to bottom right"
msgstr "خط حد قطري من أعلى اليسار إلى أسفل اليمين"
#. 5EYDA
-#: svx/inc/frmsel.hrc:51
+#: svx/inc/frmsel.hrc:52
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "خط حد قطري من أسفل اليسار إلى أعلى اليمين"
@@ -11178,7 +11170,7 @@ msgstr "مائل"
#: svx/inc/inspectorvalues.hrc:25
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "False"
-msgstr "خاطيء"
+msgstr "خطأ"
#. 67Lpi
#: svx/inc/inspectorvalues.hrc:26
@@ -11188,15 +11180,14 @@ msgstr "صحيح"
#. hPpj7
#. SVX_NUM_NUMBER_NONE
-#: svx/inc/numberingtype.hrc:29
-#, fuzzy
+#: svx/inc/numberingtype.hrc:31
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "None"
-msgstr "لا شيء"
+msgstr "بِلا"
#. dQWBh
#. SVX_NUM_CHAR_SPECIAL
-#: svx/inc/numberingtype.hrc:30
+#: svx/inc/numberingtype.hrc:32
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Bullet"
@@ -11204,14 +11195,14 @@ msgstr "نقاط"
#. GfQQK
#. SVX_NUM_BITMAP
-#: svx/inc/numberingtype.hrc:31
+#: svx/inc/numberingtype.hrc:33
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Graphics"
-msgstr "الرسومات"
+msgstr "رسوميات"
#. DfEKa
#. SVX_NUM_BITMAP|0x80
-#: svx/inc/numberingtype.hrc:32
+#: svx/inc/numberingtype.hrc:34
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Linked graphics"
@@ -11219,472 +11210,472 @@ msgstr "الصور المرتبطة"
#. AF3ts
#. SVX_NUM_ARABIC
-#: svx/inc/numberingtype.hrc:33
+#: svx/inc/numberingtype.hrc:35
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1, 2, 3, ..."
msgstr "‏1، ‏2، ‏3، ‏..."
#. bBGa7
#. SVX_NUM_CHARS_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:34
+#: svx/inc/numberingtype.hrc:36
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, B, C, ..."
msgstr "‏A، ‏B، ‏C، ‏..."
#. 5MDDu
#. SVX_NUM_CHARS_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:35
+#: svx/inc/numberingtype.hrc:37
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, b, c, ..."
msgstr "‏a، ‏b، ‏c، ‏..."
#. qGL48
#. SVX_NUM_ROMAN_UPPER
-#: svx/inc/numberingtype.hrc:36
+#: svx/inc/numberingtype.hrc:38
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "I, II, III, ..."
msgstr "‏I، ‏II، ‏III، ‏..."
#. tZAzS
#. SVX_NUM_ROMAN_LOWER
-#: svx/inc/numberingtype.hrc:37
+#: svx/inc/numberingtype.hrc:39
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "i, ii, iii, ..."
msgstr "‏i، ‏ii، ‏iii، ‏..."
#. hbCEG
#. TEXT_NUMBER
-#: svx/inc/numberingtype.hrc:38
+#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
msgstr "أولاً، ثانياً، ثالثاً، ..."
#. ymefj
#. TEXT_CARDINAL
-#: svx/inc/numberingtype.hrc:39
+#: svx/inc/numberingtype.hrc:41
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
msgstr "واحد، إثنان، ثلاثة، ..."
#. uPBZs
#. TEXT_ORDINAL
-#: svx/inc/numberingtype.hrc:40
+#: svx/inc/numberingtype.hrc:42
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
msgstr "الأول، الثاني، الثالث، ..."
#. 2QoAG
#. SVX_NUM_CHARS_UPPER_LETTER_N
-#: svx/inc/numberingtype.hrc:41
+#: svx/inc/numberingtype.hrc:43
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, .., AA, .., AAA, ..."
msgstr "‏A، ..، ‏AA، ..، ‏AAA، ‏..."
#. 7Snqt
#. SVX_NUM_CHARS_LOWER_LETTER_N
-#: svx/inc/numberingtype.hrc:42
+#: svx/inc/numberingtype.hrc:44
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, .., aa, .., aaa, ..."
msgstr "‏a، ..، ‏aa، ..، ‏aaa، ‏..."
#. 2jYQi
#. SYMBOL_CHICAGO
-#: svx/inc/numberingtype.hrc:43
+#: svx/inc/numberingtype.hrc:45
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "*, †, ‡, §, **, ††, ..."
msgstr "*، †، ‡، §، **، ††، ..."
#. GG8gr
#. NATIVE_NUMBERING
-#: svx/inc/numberingtype.hrc:44
+#: svx/inc/numberingtype.hrc:46
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Native Numbering"
msgstr "الأرقام المحلية"
#. yLB7R
#. CHARS_CYRILLIC_UPPER_LETTER_BG
-#: svx/inc/numberingtype.hrc:45
+#: svx/inc/numberingtype.hrc:47
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "‏А، ‏Б، ..، ‏Аа، ‏Аб، ‏... (بلغاري)"
#. JHskj
#. CHARS_CYRILLIC_LOWER_LETTER_BG
-#: svx/inc/numberingtype.hrc:46
+#: svx/inc/numberingtype.hrc:48
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "‏а، ‏б، ..، ‏аа، аб، ‏... (بلغاري)"
#. sqKyt
#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:47
+#: svx/inc/numberingtype.hrc:49
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "‏А، ‏Б، ..، ‏Аа، ‏Бб، ‏... (بلغاري)"
#. QtcCE
#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:48
+#: svx/inc/numberingtype.hrc:50
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "‏а، ‏б، ..، ‏аа، ‏бб، ‏... (بلغاري)"
#. DeUDb
#. CHARS_CYRILLIC_UPPER_LETTER_RU
-#: svx/inc/numberingtype.hrc:49
+#: svx/inc/numberingtype.hrc:51
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "‏А، ‏Б، ..، ‏Аа، ‏Аб، ‏... (روسي)"
#. kAHJb
#. CHARS_CYRILLIC_LOWER_LETTER_RU
-#: svx/inc/numberingtype.hrc:50
+#: svx/inc/numberingtype.hrc:52
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "‏а، ‏б، ..، ‏аа، ‏аб، ‏... (روسي)"
#. kHAr7
#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:51
+#: svx/inc/numberingtype.hrc:53
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "‏А، ‏Б، ..، ‏Аа، ‏Бб، ‏... (روسي)"
#. Dkve7
#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:52
+#: svx/inc/numberingtype.hrc:54
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "‏а، ‏б، ..، ‏аа، ‏бб، ‏... (روسي)"
#. EdfYn
#. CHARS_CYRILLIC_UPPER_LETTER_SR
-#: svx/inc/numberingtype.hrc:53
+#: svx/inc/numberingtype.hrc:55
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "‏А، ‏Б، ..، ‏Аа، ‏Аб، ‏... (صربي)"
#. oFJkn
#. CHARS_CYRILLIC_LOWER_LETTER_SR
-#: svx/inc/numberingtype.hrc:54
+#: svx/inc/numberingtype.hrc:56
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "‏а، ‏б، ..، ‏аа، ‏аб، ‏... (صربي)"
#. oA7CM
#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:55
+#: svx/inc/numberingtype.hrc:57
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "‏А، ‏Б، ..، ‏Аа، ‏Бб، ‏... (صربي)"
#. Eom7M
#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:56
+#: svx/inc/numberingtype.hrc:58
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "‏а، ‏б، ..، ‏аа، ‏бб، ‏... (صربي)"
#. SDSQ6
#. CHARS_GREEK_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:57
+#: svx/inc/numberingtype.hrc:59
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Α, Β, Γ, ... (Greek)"
msgstr ""
#. CMFjw
#. CHARS_GREEK_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:58
+#: svx/inc/numberingtype.hrc:60
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "α, β, γ, ... (Greek)"
msgstr ""
#. 8Cxkk
#. NUMBER_HEBREW
-#: svx/inc/numberingtype.hrc:59
+#: svx/inc/numberingtype.hrc:61
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...י, יא...כ, ..."
msgstr ""
#. n2sV8
#. CHARS_HEBREW
-#: svx/inc/numberingtype.hrc:60
+#: svx/inc/numberingtype.hrc:62
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...ת, אא...תת, ..."
msgstr ""
#. nR8RG
#. NUMBER_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:61
+#: svx/inc/numberingtype.hrc:63
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "١, ٢, ٣, ٤, ... (Arabic)"
msgstr "١، ٢، ٣، ٤، … (عربي)"
#. jEE4r
#. NUMBER_EAST_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:62
+#: svx/inc/numberingtype.hrc:64
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "۱, ۲, ۳, ۴, ... (Farsi)"
msgstr "۱، ۲، ۳، ۴، … (فارسي)"
#. YFYp2
#. NUMBER_INDIC_DEVANAGARI
-#: svx/inc/numberingtype.hrc:63
+#: svx/inc/numberingtype.hrc:65
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "१, २, ३, ..."
msgstr "‏१، ‏२، ‏३، ..."
#. Vd6uV
#. enum SvxRotateMode ----------------------------------------------------
-#: svx/inc/rotationstrings.hrc:18
+#: svx/inc/rotationstrings.hrc:20
msgctxt "RID_SVXITEMS_ROTATE_MODE_STANDARD"
msgid "Rotation only within cell"
msgstr ""
#. r8WzF
-#: svx/inc/rotationstrings.hrc:19
+#: svx/inc/rotationstrings.hrc:21
msgctxt "RID_SVXITEMS_ROTATE_MODE_TOP"
msgid "From upper cell edge"
msgstr ""
#. E7EVi
-#: svx/inc/rotationstrings.hrc:20
+#: svx/inc/rotationstrings.hrc:22
msgctxt "RID_SVXITEMS_ROTATE_MODE_CENTER"
msgid "From vertical middle cell"
msgstr ""
#. NEwyu
-#: svx/inc/rotationstrings.hrc:21
+#: svx/inc/rotationstrings.hrc:23
msgctxt "RID_SVXITEMS_ROTATE_MODE_BOTTOM"
msgid "From lower cell edge"
msgstr ""
#. Je56M
-#: svx/inc/samecontent.hrc:18
+#: svx/inc/samecontent.hrc:20
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
msgstr "كلّ الصّفحات"
#. kKCQR
-#: svx/inc/samecontent.hrc:19
+#: svx/inc/samecontent.hrc:21
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First Page"
msgstr "الصفحة الأولى"
#. MHuCA
-#: svx/inc/samecontent.hrc:20
+#: svx/inc/samecontent.hrc:22
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "Left and Right Pages"
msgstr "الصفحات اليسار و اليمين"
#. XH8p4
-#: svx/inc/samecontent.hrc:21
+#: svx/inc/samecontent.hrc:23
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First, Left and Right Pages"
msgstr "الصفحات الأولى و اليسار و اليمين"
#. F9hHK
-#: svx/inc/spacing.hrc:24
+#: svx/inc/spacing.hrc:26
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. GAuJk
-#: svx/inc/spacing.hrc:25
+#: svx/inc/spacing.hrc:27
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. DB9aM
-#: svx/inc/spacing.hrc:26
+#: svx/inc/spacing.hrc:28
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small (1/8″)"
msgstr ""
#. 5PhsT
-#: svx/inc/spacing.hrc:27
+#: svx/inc/spacing.hrc:29
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. 3LSyH
-#: svx/inc/spacing.hrc:28
+#: svx/inc/spacing.hrc:30
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. NzRZJ
-#: svx/inc/spacing.hrc:29
+#: svx/inc/spacing.hrc:31
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. JBwJZ
-#: svx/inc/spacing.hrc:30
+#: svx/inc/spacing.hrc:32
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Large (3/4″)"
msgstr ""
#. AwWUq
-#: svx/inc/spacing.hrc:31
+#: svx/inc/spacing.hrc:33
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. SGERK
-#: svx/inc/spacing.hrc:38
+#: svx/inc/spacing.hrc:40
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. ZAZbV
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:40
+#: svx/inc/spacing.hrc:42
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Small (%1)"
msgstr "بالغ الصغر (%1)"
#. DJAZx
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:42
+#: svx/inc/spacing.hrc:44
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small (%1)"
msgstr "صغير (%1)"
#. scXTX
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:44
+#: svx/inc/spacing.hrc:46
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small Medium (%1)"
msgstr ""
#. zN8GJ
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:46
+#: svx/inc/spacing.hrc:48
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium (%1)"
msgstr "متوسط (%1)"
#. cbhBF
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:48
+#: svx/inc/spacing.hrc:50
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium Large (%1)"
msgstr "كبير متوسط (%1)"
#. 8kTDK
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:50
+#: svx/inc/spacing.hrc:52
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Large (%1)"
msgstr "كبير (%1)"
#. etG35
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:52
+#: svx/inc/spacing.hrc:54
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Large (%1)"
msgstr "بالغ الكبر (%1)"
#. F7GxF
-#: svx/inc/spacing.hrc:59
+#: svx/inc/spacing.hrc:61
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. ZNunF
-#: svx/inc/spacing.hrc:60
+#: svx/inc/spacing.hrc:62
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. BUnaC
-#: svx/inc/spacing.hrc:61
+#: svx/inc/spacing.hrc:63
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small (1/8″)"
msgstr ""
#. oBhFP
-#: svx/inc/spacing.hrc:62
+#: svx/inc/spacing.hrc:64
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. tDBA3
-#: svx/inc/spacing.hrc:63
+#: svx/inc/spacing.hrc:65
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. fDRCW
-#: svx/inc/spacing.hrc:64
+#: svx/inc/spacing.hrc:66
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. Ls2Jq
-#: svx/inc/spacing.hrc:65
+#: svx/inc/spacing.hrc:67
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4″)"
msgstr ""
#. DLXcU
-#: svx/inc/spacing.hrc:66
+#: svx/inc/spacing.hrc:68
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. phGfi
-#: svx/inc/spacing.hrc:73
+#: svx/inc/spacing.hrc:75
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. XVMbm
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:75
+#: svx/inc/spacing.hrc:77
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Small (%1)"
msgstr "بالغ الصغر (%1)"
#. L3BfG
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:77
+#: svx/inc/spacing.hrc:79
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small (%1)"
msgstr "صغير (%1)"
#. 2VGHi
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:79
+#: svx/inc/spacing.hrc:81
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small Medium (%1)"
msgstr "متوسط صعير (%1)"
#. Z7Wot
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:81
+#: svx/inc/spacing.hrc:83
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium (%1)"
msgstr "متوسط (%1)"
#. CS6Zz
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:83
+#: svx/inc/spacing.hrc:85
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium Large (%1)"
msgstr "كبير متوسط (%1)"
#. BaS7j
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:85
+#: svx/inc/spacing.hrc:87
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Large (%1)"
msgstr "كبير (%1)"
#. gAc3E
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:87
+#: svx/inc/spacing.hrc:89
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Large (%1)"
msgstr "بالغ الكبر (%1)"
@@ -11808,1130 +11799,1130 @@ msgstr ""
"هل تريد حفظ المستند دون الحماية بكلمة سر؟"
#. xnBAZ
-#: svx/inc/swframeposstrings.hrc:28
+#: svx/inc/swframeposstrings.hrc:30
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left"
msgstr "يسار"
#. GHBGu
-#: svx/inc/swframeposstrings.hrc:29
+#: svx/inc/swframeposstrings.hrc:31
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right"
msgstr "يمين"
#. aEeds
-#: svx/inc/swframeposstrings.hrc:30
+#: svx/inc/swframeposstrings.hrc:32
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From left"
msgstr "من اليسار"
#. ivTxP
-#: svx/inc/swframeposstrings.hrc:31
+#: svx/inc/swframeposstrings.hrc:33
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inside"
msgstr "داخل"
#. U5FyC
-#: svx/inc/swframeposstrings.hrc:32
+#: svx/inc/swframeposstrings.hrc:34
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outside"
msgstr "خارج"
#. 67K4H
-#: svx/inc/swframeposstrings.hrc:33
+#: svx/inc/swframeposstrings.hrc:35
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From inside"
msgstr "من الداخل"
#. W2X2D
-#: svx/inc/swframeposstrings.hrc:34
+#: svx/inc/swframeposstrings.hrc:36
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph area"
msgstr "مساحة الفقرة"
#. CrRe5
-#: svx/inc/swframeposstrings.hrc:35 svx/inc/swframeposstrings.hrc:52
+#: svx/inc/swframeposstrings.hrc:37 svx/inc/swframeposstrings.hrc:54
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph text area"
msgstr "مساحة نص الفقرة"
#. MT34e
-#: svx/inc/swframeposstrings.hrc:36
+#: svx/inc/swframeposstrings.hrc:38
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left page border"
msgstr "هامش الصفحة الأيسر"
#. edC8Z
-#: svx/inc/swframeposstrings.hrc:37
+#: svx/inc/swframeposstrings.hrc:39
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right page border"
msgstr "هامش الصفحة الأيمن"
#. dCGE9
-#: svx/inc/swframeposstrings.hrc:38
+#: svx/inc/swframeposstrings.hrc:40
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left paragraph border"
msgstr "هامش الفقرة الأيسر"
#. 3pAVN
-#: svx/inc/swframeposstrings.hrc:39
+#: svx/inc/swframeposstrings.hrc:41
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right paragraph border"
msgstr "هامش الفقرة الأيمن"
#. qvFns
-#: svx/inc/swframeposstrings.hrc:40
+#: svx/inc/swframeposstrings.hrc:42
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner page border"
msgstr "هامش الصفحة الداخلي"
#. XwtPT
-#: svx/inc/swframeposstrings.hrc:41
+#: svx/inc/swframeposstrings.hrc:43
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer page border"
msgstr "هامش الصفحة الخارجي"
#. oF2mP
-#: svx/inc/swframeposstrings.hrc:42
+#: svx/inc/swframeposstrings.hrc:44
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner paragraph border"
msgstr "هامش الفقرة الداخلي"
#. Hffsf
-#: svx/inc/swframeposstrings.hrc:43
+#: svx/inc/swframeposstrings.hrc:45
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer paragraph border"
msgstr "هامش الفقرة الخارجي"
#. ey4rc
-#: svx/inc/swframeposstrings.hrc:44
+#: svx/inc/swframeposstrings.hrc:46
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire page"
msgstr "الصفحة بالكامل"
#. WJocu
-#: svx/inc/swframeposstrings.hrc:45
+#: svx/inc/swframeposstrings.hrc:47
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area"
msgstr "مساحة نص الصفحة"
#. jY8xQ
-#: svx/inc/swframeposstrings.hrc:46
+#: svx/inc/swframeposstrings.hrc:48
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area top"
-msgstr ""
+msgstr "أعلى مساحة نص الصفحة"
#. vWEe2
-#: svx/inc/swframeposstrings.hrc:47
+#: svx/inc/swframeposstrings.hrc:49
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area bottom"
-msgstr ""
+msgstr "أسفل مساحة نص الصفحة"
#. XG9Bj
-#: svx/inc/swframeposstrings.hrc:48
+#: svx/inc/swframeposstrings.hrc:50
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Base line"
msgstr "خط الأساس"
#. A3DbQ
-#: svx/inc/swframeposstrings.hrc:49
+#: svx/inc/swframeposstrings.hrc:51
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Character"
msgstr "المحرف"
#. Qyopb
-#: svx/inc/swframeposstrings.hrc:50
+#: svx/inc/swframeposstrings.hrc:52
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Row"
msgstr "صف"
#. PPkKE
-#: svx/inc/swframeposstrings.hrc:51
+#: svx/inc/swframeposstrings.hrc:53
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Margin"
msgstr "الهامش"
#. FCKGJ
-#: svx/inc/swframeposstrings.hrc:53
+#: svx/inc/swframeposstrings.hrc:55
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left frame border"
msgstr "حد الإطار الأيسر"
#. dvJgp
-#: svx/inc/swframeposstrings.hrc:54
+#: svx/inc/swframeposstrings.hrc:56
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right frame border"
msgstr "حد الإطار الأيمن"
#. 8wUyB
-#: svx/inc/swframeposstrings.hrc:55
+#: svx/inc/swframeposstrings.hrc:57
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire frame"
msgstr "الإطار بأكمله"
#. FRNBs
-#: svx/inc/swframeposstrings.hrc:56
+#: svx/inc/swframeposstrings.hrc:58
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Frame text area"
msgstr "منطقة نص الإطار"
#. CEgLN
-#: svx/inc/swframeposstrings.hrc:57
+#: svx/inc/swframeposstrings.hrc:59
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner frame border"
msgstr "حد الإطار الداخلي"
#. UroG3
-#: svx/inc/swframeposstrings.hrc:58
+#: svx/inc/swframeposstrings.hrc:60
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer frame border"
msgstr "حد الإطار الخارجي"
#. hMCeD
-#: svx/inc/swframeposstrings.hrc:59
+#: svx/inc/swframeposstrings.hrc:61
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top"
msgstr "أعلى"
#. zvKGF
-#: svx/inc/swframeposstrings.hrc:60
+#: svx/inc/swframeposstrings.hrc:62
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom"
msgstr "أسفل"
#. zLzw8
-#: svx/inc/swframeposstrings.hrc:61 svx/inc/swframeposstrings.hrc:62
+#: svx/inc/swframeposstrings.hrc:63 svx/inc/swframeposstrings.hrc:64
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Center"
msgstr "وسط"
#. HKRAf
-#: svx/inc/swframeposstrings.hrc:63
+#: svx/inc/swframeposstrings.hrc:65
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From top"
msgstr "من الأعلى"
#. o7Td5
-#: svx/inc/swframeposstrings.hrc:64
+#: svx/inc/swframeposstrings.hrc:66
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From bottom"
msgstr "من الأسفل"
#. bF2Nd
-#: svx/inc/swframeposstrings.hrc:65
+#: svx/inc/swframeposstrings.hrc:67
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Below"
msgstr "تحت"
#. Q9AZn
-#: svx/inc/swframeposstrings.hrc:66
+#: svx/inc/swframeposstrings.hrc:68
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From right"
msgstr "من اليمين"
#. Y6y4s
-#: svx/inc/swframeposstrings.hrc:67
+#: svx/inc/swframeposstrings.hrc:69
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top page border"
msgstr "حد الصفحة الأعلى"
#. ZyAri
-#: svx/inc/swframeposstrings.hrc:68
+#: svx/inc/swframeposstrings.hrc:70
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom page border"
msgstr "حد الصفحة السفلي"
#. 2vRtm
-#: svx/inc/swframeposstrings.hrc:69
+#: svx/inc/swframeposstrings.hrc:71
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top paragraph border"
msgstr "حد الفقرة الأعلى"
#. AAFLn
-#: svx/inc/swframeposstrings.hrc:70
+#: svx/inc/swframeposstrings.hrc:72
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom paragraph border"
msgstr "حد الفقرة السفلي"
#. dmVNj
-#: svx/inc/swframeposstrings.hrc:71
+#: svx/inc/swframeposstrings.hrc:73
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Line of text"
msgstr "سطر نص"
#. gKq8G
-#: svx/inc/tabwin.hrc:27
+#: svx/inc/tabwin.hrc:29
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. 4mnUW
-#: svx/inc/tabwin.hrc:28
+#: svx/inc/tabwin.hrc:30
#, fuzzy
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Query"
msgstr "الاستعلام"
#. rfs4A
-#: svx/inc/tabwin.hrc:29
+#: svx/inc/tabwin.hrc:31
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "SQL"
msgstr "SQL"
#. QF2ZT
-#: svx/inc/txenctab.hrc:32
+#: svx/inc/txenctab.hrc:33
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Windows-1252/WinLatin 1)"
msgstr "أوروبا الغربية (وندوز-1252/WinLatin 1)"
#. VbWZR
-#: svx/inc/txenctab.hrc:33
+#: svx/inc/txenctab.hrc:34
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh)"
msgstr "أوروبا الغربية (آبل ماكنتوش)"
#. 5yMG7
-#: svx/inc/txenctab.hrc:34
+#: svx/inc/txenctab.hrc:35
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-850/International)"
msgstr "أوروبا الغربية (DOS/OS2-850/دولي)"
#. KYDEk
-#: svx/inc/txenctab.hrc:35
+#: svx/inc/txenctab.hrc:36
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-437/US)"
msgstr "أوروبا الغربية (DOS/OS2-437/الولايات المتحدة)"
#. 3MbrA
-#: svx/inc/txenctab.hrc:36
+#: svx/inc/txenctab.hrc:37
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-860/Portuguese)"
msgstr "أوروبا الغربية (DOS/OS2-860/البرتغالية)"
#. bdxAU
-#: svx/inc/txenctab.hrc:37
+#: svx/inc/txenctab.hrc:38
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-861/Icelandic)"
msgstr "أوروبا الغربية (DOS/OS2-861/الآيسلندية)"
#. kMQ9X
-#: svx/inc/txenctab.hrc:38
+#: svx/inc/txenctab.hrc:39
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-863/French (Can.))"
msgstr "أوروبا الغربية (DOS/OS2-863/الفرنسية (كندا))"
#. YTGtN
-#: svx/inc/txenctab.hrc:39
+#: svx/inc/txenctab.hrc:40
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-865/Nordic)"
msgstr "أوروبا الغربية (دوز/أوأس2-865/شمالي)"
#. 7f2UV
-#: svx/inc/txenctab.hrc:40
+#: svx/inc/txenctab.hrc:41
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ASCII/US)"
msgstr "أوروبا الغربية (ASCII/الولايات المتحدة)"
#. Hksxs
-#: svx/inc/txenctab.hrc:41
+#: svx/inc/txenctab.hrc:42
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-1)"
msgstr "أوروبا الغربية (ISO-8859-1)"
#. PBDdu
-#: svx/inc/txenctab.hrc:42
+#: svx/inc/txenctab.hrc:43
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-2)"
msgstr "أوروبا الشرقية (ISO-8859-2)"
#. MFqWF
-#: svx/inc/txenctab.hrc:43
+#: svx/inc/txenctab.hrc:44
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Latin 3 (ISO-8859-3)"
msgstr "اللاتينية 3 (ISO-8859-3)"
#. WBkLV
-#: svx/inc/txenctab.hrc:44
+#: svx/inc/txenctab.hrc:45
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (ISO-8859-4)"
msgstr "البلطيقية (ISO-8859-4)"
#. b5SPH
-#: svx/inc/txenctab.hrc:45
+#: svx/inc/txenctab.hrc:46
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (ISO-8859-5)"
msgstr "السيريلية (ISO-8859-5)"
#. wFCbj
-#: svx/inc/txenctab.hrc:46
+#: svx/inc/txenctab.hrc:47
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (ISO-8859-6)"
msgstr "العربية (ISO-8859-6)"
#. qTzCE
-#: svx/inc/txenctab.hrc:47
+#: svx/inc/txenctab.hrc:48
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (ISO-8859-7)"
msgstr "اليونانية (ISO-8859-7)"
#. MmChj
-#: svx/inc/txenctab.hrc:48
+#: svx/inc/txenctab.hrc:49
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (ISO-8859-8)"
msgstr "العبرية (ISO-8859-8)"
#. 3bHAV
-#: svx/inc/txenctab.hrc:49
+#: svx/inc/txenctab.hrc:50
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (ISO-8859-9)"
msgstr "التركية (ISO-8859-9)"
#. phdte
-#: svx/inc/txenctab.hrc:50
+#: svx/inc/txenctab.hrc:51
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-14)"
msgstr "أوروبا الغربية (ISO-8859-14)"
#. MpHUZ
-#: svx/inc/txenctab.hrc:51
+#: svx/inc/txenctab.hrc:52
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-15/EURO)"
msgstr "أوروبا الغربية (ISO-8859-15/EURO)"
#. JgVnj
-#: svx/inc/txenctab.hrc:52
+#: svx/inc/txenctab.hrc:53
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-737)"
msgstr "اليونانية (DOS/OS2-737)"
#. EQi6s
-#: svx/inc/txenctab.hrc:53
+#: svx/inc/txenctab.hrc:54
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (DOS/OS2-775)"
msgstr "البلطيقية (DOS/OS2-775)"
#. SDvMf
-#: svx/inc/txenctab.hrc:54
+#: svx/inc/txenctab.hrc:55
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (DOS/OS2-852)"
msgstr "أوروبا الشرقية (DOS/OS2-852)"
#. 3FrUC
-#: svx/inc/txenctab.hrc:55
+#: svx/inc/txenctab.hrc:56
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-855)"
msgstr "السيريلية (DOS/OS2-855)"
#. G8q5c
-#: svx/inc/txenctab.hrc:56
+#: svx/inc/txenctab.hrc:57
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (DOS/OS2-857)"
msgstr "التركية (DOS/OS2-857)"
#. kBvdY
-#: svx/inc/txenctab.hrc:57
+#: svx/inc/txenctab.hrc:58
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (DOS/OS2-862)"
msgstr "العبرية (DOS/OS2-862)"
#. to6H6
-#: svx/inc/txenctab.hrc:58
+#: svx/inc/txenctab.hrc:59
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (DOS/OS2-864)"
msgstr "العربية (DOS/OS2-864)"
#. BH6K4
-#: svx/inc/txenctab.hrc:59
+#: svx/inc/txenctab.hrc:60
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-866/Russian)"
msgstr "السيريلية (DOS/OS2-866/الروسية)"
#. ms8Dk
-#: svx/inc/txenctab.hrc:60
+#: svx/inc/txenctab.hrc:61
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-869/Modern)"
msgstr "اليونانية (DOS/OS2-869/Modern)"
#. U9RbL
-#: svx/inc/txenctab.hrc:61
+#: svx/inc/txenctab.hrc:62
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Windows-1250/WinLatin 2)"
msgstr "أوروبا الشرقية (Windows-1250/WinLatin 2)"
#. fRRMB
-#: svx/inc/txenctab.hrc:62
+#: svx/inc/txenctab.hrc:63
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Windows-1251)"
msgstr "السيريلية (Windows-1251)"
#. 7D9eT
-#: svx/inc/txenctab.hrc:63
+#: svx/inc/txenctab.hrc:64
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Windows-1253)"
msgstr "اليونانية (Windows-1253)"
#. sa8W8
-#: svx/inc/txenctab.hrc:64
+#: svx/inc/txenctab.hrc:65
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Windows-1254)"
msgstr "التركية (Windows-1254)"
#. ZxMJy
-#: svx/inc/txenctab.hrc:65
+#: svx/inc/txenctab.hrc:66
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (Windows-1255)"
msgstr "العبرية (Windows-1255)"
#. 4GLZX
-#: svx/inc/txenctab.hrc:66
+#: svx/inc/txenctab.hrc:67
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (Windows-1256)"
msgstr "العربية (Windows-1256)"
#. errzy
-#: svx/inc/txenctab.hrc:67
+#: svx/inc/txenctab.hrc:68
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (Windows-1257)"
msgstr "البلطيقية (Windows-1257)"
#. SSo9X
-#: svx/inc/txenctab.hrc:68
+#: svx/inc/txenctab.hrc:69
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Vietnamese (Windows-1258)"
msgstr "الفيتنامية (وندوز-1258)"
#. udrZT
-#: svx/inc/txenctab.hrc:69
+#: svx/inc/txenctab.hrc:70
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh)"
msgstr "أوروبا الشرقية (آبل ماكنتوش)"
#. g2Z7z
-#: svx/inc/txenctab.hrc:70
+#: svx/inc/txenctab.hrc:71
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Croatian)"
msgstr "أوروبا الشرقية (آبل ماكنتوش/الكرواتية)"
#. 9jpM6
-#: svx/inc/txenctab.hrc:71
+#: svx/inc/txenctab.hrc:72
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh)"
msgstr "السيريلية (آبل ماكنتوش)"
#. YB8BU
-#: svx/inc/txenctab.hrc:72
+#: svx/inc/txenctab.hrc:73
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Apple Macintosh)"
msgstr "اليونانية (آبل ماكنتوش)"
#. rEWLF
-#: svx/inc/txenctab.hrc:73
+#: svx/inc/txenctab.hrc:74
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh/Icelandic)"
msgstr "أوروبا الغربية (آبل ماكنتوش/الآيسلندية)"
#. eCAET
-#: svx/inc/txenctab.hrc:74
+#: svx/inc/txenctab.hrc:75
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Romanian)"
msgstr "أوروبا الشرقية (آبل ماكنتوش/الرومانية)"
#. T4VVK
-#: svx/inc/txenctab.hrc:75
+#: svx/inc/txenctab.hrc:76
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Apple Macintosh)"
msgstr "التركية (آبل ماكنتوش)"
#. a8GDk
-#: svx/inc/txenctab.hrc:76
+#: svx/inc/txenctab.hrc:77
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh/Ukrainian)"
msgstr "السيريلية (آبل ماكنتوش/الأوكرانية)"
#. 4RBWC
-#: svx/inc/txenctab.hrc:77
+#: svx/inc/txenctab.hrc:78
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Apple Macintosh)"
msgstr "الصينية المبسطة (آبل ماكنتوش)"
#. 6WCbw
-#: svx/inc/txenctab.hrc:78
+#: svx/inc/txenctab.hrc:79
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Apple Macintosh)"
msgstr "الصينية التقليدية (آبل ماكنتوش)"
#. DyADW
-#: svx/inc/txenctab.hrc:79
+#: svx/inc/txenctab.hrc:80
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Apple Macintosh)"
msgstr "اليابانية (آبل ماكنتوش)"
#. BXQq2
-#: svx/inc/txenctab.hrc:80
+#: svx/inc/txenctab.hrc:81
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Apple Macintosh)"
msgstr "الكورية (آبل ماكنتوش)"
#. 6eezP
-#: svx/inc/txenctab.hrc:81
+#: svx/inc/txenctab.hrc:82
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Windows-932)"
msgstr "اليابانية (Windows-932)"
#. FuA86
-#: svx/inc/txenctab.hrc:82
+#: svx/inc/txenctab.hrc:83
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Windows-936)"
msgstr "الصينية المبسطة (Windows-936)"
#. Rgvx2
-#: svx/inc/txenctab.hrc:83
+#: svx/inc/txenctab.hrc:84
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-949)"
msgstr "الكورية (Windows-949)"
#. VrtX4
-#: svx/inc/txenctab.hrc:84
+#: svx/inc/txenctab.hrc:85
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Windows-950)"
msgstr "الصينية التقليدية (Windows-950)"
#. XYyEd
-#: svx/inc/txenctab.hrc:85
+#: svx/inc/txenctab.hrc:86
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Shift-JIS)"
msgstr "اليابانية (Shift-JIS)"
#. k5M56
-#: svx/inc/txenctab.hrc:86
+#: svx/inc/txenctab.hrc:87
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-2312)"
msgstr "الصينية المبسطة (GB-2312)"
#. PFzZY
-#: svx/inc/txenctab.hrc:87
+#: svx/inc/txenctab.hrc:88
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-18030)"
msgstr "الصينية المبسطة (GB-18030)"
#. gb9bm
-#: svx/inc/txenctab.hrc:88
+#: svx/inc/txenctab.hrc:89
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (GBT-12345)"
msgstr "الصينية التقليدية (GBT-12345)"
#. C69XX
-#: svx/inc/txenctab.hrc:89
+#: svx/inc/txenctab.hrc:90
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GBK/GB-2312-80)"
msgstr "الصينية المبسطة (GBK/GB-2312-80)"
#. UP3uw
-#: svx/inc/txenctab.hrc:90
+#: svx/inc/txenctab.hrc:91
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Big5)"
msgstr "الصينية التقليدية (Big5)"
#. DaFZR
-#: svx/inc/txenctab.hrc:91
+#: svx/inc/txenctab.hrc:92
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (BIG5-HKSCS)"
msgstr "الصينية التقليدية (BIG5-HKSCS)"
#. qEQVA
-#: svx/inc/txenctab.hrc:92
+#: svx/inc/txenctab.hrc:93
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (EUC-JP)"
msgstr "اليابانية (EUC-JP)"
#. auzHg
-#: svx/inc/txenctab.hrc:93
+#: svx/inc/txenctab.hrc:94
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (EUC-CN)"
msgstr "الصينية المبسطة (EUC-CN)"
#. ndTrZ
-#: svx/inc/txenctab.hrc:94
+#: svx/inc/txenctab.hrc:95
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (EUC-TW)"
msgstr "الصينية التقليدية (EUC-TW)"
#. 6pPLL
-#: svx/inc/txenctab.hrc:95
+#: svx/inc/txenctab.hrc:96
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (ISO-2022-JP)"
msgstr "اليابانية (ISO-2022-JP)"
#. tWf3P
-#: svx/inc/txenctab.hrc:96
+#: svx/inc/txenctab.hrc:97
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (ISO-2022-CN)"
msgstr "الصينية المبسطة (ISO-2022-CN)"
#. XMFCL
-#: svx/inc/txenctab.hrc:97
+#: svx/inc/txenctab.hrc:98
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-R)"
msgstr "السيريلية (KOI8-R)"
#. 2pFce
-#: svx/inc/txenctab.hrc:98
+#: svx/inc/txenctab.hrc:99
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-7)"
msgstr "شفرة موحدة (UTF-7)"
#. FXEDd
-#: svx/inc/txenctab.hrc:99
+#: svx/inc/txenctab.hrc:100
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-8)"
msgstr "شفرة موحدة (UTF-8)"
#. PKDvB
-#: svx/inc/txenctab.hrc:100
+#: svx/inc/txenctab.hrc:101
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-10)"
msgstr "أوروبا الشرقية (ISO-8859-10)"
#. QGYqt
-#: svx/inc/txenctab.hrc:101
+#: svx/inc/txenctab.hrc:102
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-13)"
msgstr "أوروبا الشرقية (ISO-8859-13)"
#. Vx6bY
-#: svx/inc/txenctab.hrc:102
+#: svx/inc/txenctab.hrc:103
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (EUC-KR)"
msgstr "الكورية (EUC-KR)"
#. 5CBHm
-#: svx/inc/txenctab.hrc:103
+#: svx/inc/txenctab.hrc:104
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (ISO-2022-KR)"
msgstr "الكورية (ISO-2022-KR)"
#. nLGik
-#: svx/inc/txenctab.hrc:104
+#: svx/inc/txenctab.hrc:105
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-Johab-1361)"
msgstr "الكورية (Windows-Johab-1361)"
#. QBgZo
-#: svx/inc/txenctab.hrc:105
+#: svx/inc/txenctab.hrc:106
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-16)"
msgstr "شفرة موحدة (UTF-16)"
#. JGdVV
-#: svx/inc/txenctab.hrc:106
+#: svx/inc/txenctab.hrc:107
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (ISO-8859-11/TIS-620)"
msgstr "التايلندية (ISO-8859-11/TIS-620)"
#. monLB
-#: svx/inc/txenctab.hrc:107
+#: svx/inc/txenctab.hrc:108
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (Windows-874)"
msgstr "التايلندية (Windows-874)"
#. USeUF
-#: svx/inc/txenctab.hrc:108
+#: svx/inc/txenctab.hrc:109
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-U)"
msgstr "السيريلية (KOI8-U)"
#. vrLQe
-#: svx/inc/txenctab.hrc:109
+#: svx/inc/txenctab.hrc:110
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (PT154)"
msgstr "السيريلية (PT154)"
#. rKPau
-#: svx/source/dialog/page.hrc:30
+#: svx/source/dialog/page.hrc:31
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A6"
msgstr "أي6"
#. URac3
-#: svx/source/dialog/page.hrc:31
+#: svx/source/dialog/page.hrc:32
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A5"
msgstr "أي5"
#. EPudF
-#: svx/source/dialog/page.hrc:32
+#: svx/source/dialog/page.hrc:33
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A4"
msgstr "أي4"
#. qdkCd
-#: svx/source/dialog/page.hrc:33
+#: svx/source/dialog/page.hrc:34
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A3"
msgstr "أي3"
#. HTZUv
-#: svx/source/dialog/page.hrc:34
+#: svx/source/dialog/page.hrc:35
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (ISO)"
msgstr "بي6 (آيزو)"
#. cCYrf
-#: svx/source/dialog/page.hrc:35
+#: svx/source/dialog/page.hrc:36
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (ISO)"
msgstr "بي5 (آيزو)"
#. xXp6C
-#: svx/source/dialog/page.hrc:36
+#: svx/source/dialog/page.hrc:37
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (ISO)"
msgstr "بي4 (آيزو)"
#. A5BnL
-#: svx/source/dialog/page.hrc:37
+#: svx/source/dialog/page.hrc:38
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Letter"
msgstr "خطاب"
#. sx5cV
-#: svx/source/dialog/page.hrc:38
+#: svx/source/dialog/page.hrc:39
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Legal"
msgstr "قانوني"
#. Pkxcm
-#: svx/source/dialog/page.hrc:39
+#: svx/source/dialog/page.hrc:40
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Long Bond"
msgstr "سند طويل"
#. JMsqY
-#: svx/source/dialog/page.hrc:40
+#: svx/source/dialog/page.hrc:41
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Tabloid"
msgstr "صحيفة"
#. UBtQK
-#: svx/source/dialog/page.hrc:41
+#: svx/source/dialog/page.hrc:42
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (JIS)"
msgstr "بي6 (JIS)"
#. Ruu59
-#: svx/source/dialog/page.hrc:42
+#: svx/source/dialog/page.hrc:43
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (JIS)"
msgstr "بي5 (JIS)"
#. CFdsg
-#: svx/source/dialog/page.hrc:43
+#: svx/source/dialog/page.hrc:44
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (JIS)"
msgstr "بي4 (JIS)"
#. PCV4H
-#: svx/source/dialog/page.hrc:44
+#: svx/source/dialog/page.hrc:45
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "16 Kai"
msgstr "16 كاي"
#. GfVjG
-#: svx/source/dialog/page.hrc:45
+#: svx/source/dialog/page.hrc:46
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "32 Kai"
msgstr "32 كاي"
#. FJBrB
-#: svx/source/dialog/page.hrc:46
+#: svx/source/dialog/page.hrc:47
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Big 32 Kai"
msgstr "32 كاي كبير"
#. by7kM
-#: svx/source/dialog/page.hrc:47
+#: svx/source/dialog/page.hrc:48
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "User"
msgstr "المستخدِم"
#. EGzYq
-#: svx/source/dialog/page.hrc:48
+#: svx/source/dialog/page.hrc:49
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "DL Envelope"
msgstr "مغلف DL"
#. YFzCy
-#: svx/source/dialog/page.hrc:49
+#: svx/source/dialog/page.hrc:50
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6 Envelope"
msgstr "مغلف سي6"
#. Vcc7P
-#: svx/source/dialog/page.hrc:50
+#: svx/source/dialog/page.hrc:51
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6/5 Envelope"
msgstr "مغلف سي6\\5"
#. XsMRE
-#: svx/source/dialog/page.hrc:51
+#: svx/source/dialog/page.hrc:52
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C5 Envelope"
msgstr "مغلف سي5"
#. uFwGu
-#: svx/source/dialog/page.hrc:52
+#: svx/source/dialog/page.hrc:53
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C4 Envelope"
msgstr "مغلف سي4"
#. dCpd2
-#: svx/source/dialog/page.hrc:53
+#: svx/source/dialog/page.hrc:54
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#6¾ Envelope"
msgstr "مغلف ‪#6¾‬"
#. zy6rP
-#: svx/source/dialog/page.hrc:54
+#: svx/source/dialog/page.hrc:55
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#7¾ (Monarch) Envelope"
msgstr "مغلف ‪#7¾‬ (مَلَكي)"
#. m4N6Q
-#: svx/source/dialog/page.hrc:55
+#: svx/source/dialog/page.hrc:56
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#9 Envelope"
msgstr "مغلف ‫#9‬"
#. JsBkZ
-#: svx/source/dialog/page.hrc:56
+#: svx/source/dialog/page.hrc:57
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#10 Envelope"
msgstr "مغلف ‪#1‬"
#. 7FeU9
-#: svx/source/dialog/page.hrc:57
+#: svx/source/dialog/page.hrc:58
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#11 Envelope"
msgstr "مغلف ‪#11‬"
#. 6sqhV
-#: svx/source/dialog/page.hrc:58
+#: svx/source/dialog/page.hrc:59
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#12 Envelope"
msgstr "مغلف ‪#12‬"
#. 8uXDq
-#: svx/source/dialog/page.hrc:59
+#: svx/source/dialog/page.hrc:60
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Japanese Postcard"
msgstr "بطاقة بريدية يابانية"
#. N2J2b
-#: svx/source/dialog/page.hrc:64
+#: svx/source/dialog/page.hrc:65
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A6"
msgstr "أي6"
#. 78f4A
-#: svx/source/dialog/page.hrc:65
+#: svx/source/dialog/page.hrc:66
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A5"
msgstr "أي5"
#. i6x38
-#: svx/source/dialog/page.hrc:66
+#: svx/source/dialog/page.hrc:67
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A4"
msgstr "أي4"
#. Dmqus
-#: svx/source/dialog/page.hrc:67
+#: svx/source/dialog/page.hrc:68
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A3"
msgstr "أي3"
#. XjWtg
-#: svx/source/dialog/page.hrc:68
+#: svx/source/dialog/page.hrc:69
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A2"
msgstr "أي2"
#. yqBrH
-#: svx/source/dialog/page.hrc:69
+#: svx/source/dialog/page.hrc:70
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A1"
msgstr "أي1"
#. Ao3sz
-#: svx/source/dialog/page.hrc:70
+#: svx/source/dialog/page.hrc:71
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A0"
msgstr "أي0"
#. jvpHD
-#: svx/source/dialog/page.hrc:71
+#: svx/source/dialog/page.hrc:72
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (ISO)"
msgstr "بي6 (آيزو)"
#. DGqE3
-#: svx/source/dialog/page.hrc:72
+#: svx/source/dialog/page.hrc:73
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (ISO)"
msgstr "بي5 (آيزو)"
#. JrZiW
-#: svx/source/dialog/page.hrc:73
+#: svx/source/dialog/page.hrc:74
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (ISO)"
msgstr "بي4 (آيزو)"
#. 8zZQc
-#: svx/source/dialog/page.hrc:74
+#: svx/source/dialog/page.hrc:75
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Letter"
msgstr "خطاب"
#. NKMub
-#: svx/source/dialog/page.hrc:75
+#: svx/source/dialog/page.hrc:76
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Legal"
msgstr "قانوني"
#. GyH6H
-#: svx/source/dialog/page.hrc:76
+#: svx/source/dialog/page.hrc:77
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Long Bond"
msgstr "سند طويل"
#. gWjE2
-#: svx/source/dialog/page.hrc:77
+#: svx/source/dialog/page.hrc:78
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Tabloid"
msgstr "صحيفة"
#. 5Dddp
-#: svx/source/dialog/page.hrc:78
+#: svx/source/dialog/page.hrc:79
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (JIS)"
msgstr "بي6 (JIS)"
#. sYcjZ
-#: svx/source/dialog/page.hrc:79
+#: svx/source/dialog/page.hrc:80
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (JIS)"
msgstr "بي5 (JIS)"
#. f9tD2
-#: svx/source/dialog/page.hrc:80
+#: svx/source/dialog/page.hrc:81
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (JIS)"
msgstr "بي4 (JIS)"
#. DGFbZ
-#: svx/source/dialog/page.hrc:81
+#: svx/source/dialog/page.hrc:82
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "16 Kai"
msgstr "16 كاي"
#. JbFMy
-#: svx/source/dialog/page.hrc:82
+#: svx/source/dialog/page.hrc:83
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "32 Kai"
msgstr "32 كاي"
#. E3CDE
-#: svx/source/dialog/page.hrc:83
+#: svx/source/dialog/page.hrc:84
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Big 32 Kai"
msgstr "32 كاي كبير"
#. rSAv7
-#: svx/source/dialog/page.hrc:84
+#: svx/source/dialog/page.hrc:85
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "User"
msgstr "المستخدِم"
#. z3HXV
-#: svx/source/dialog/page.hrc:85
+#: svx/source/dialog/page.hrc:86
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "DL Envelope"
msgstr "مغلف DL"
#. k2HBd
-#: svx/source/dialog/page.hrc:86
+#: svx/source/dialog/page.hrc:87
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6 Envelope"
msgstr "مغلف سي6"
#. t43Ta
-#: svx/source/dialog/page.hrc:87
+#: svx/source/dialog/page.hrc:88
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6/5 Envelope"
msgstr "مغلف سي6\\5"
#. jfDNz
-#: svx/source/dialog/page.hrc:88
+#: svx/source/dialog/page.hrc:89
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C5 Envelope"
msgstr "مغلف سي5"
#. h2cDh
-#: svx/source/dialog/page.hrc:89
+#: svx/source/dialog/page.hrc:90
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C4 Envelope"
msgstr "مغلف سي4"
#. j4Hms
-#: svx/source/dialog/page.hrc:90
+#: svx/source/dialog/page.hrc:91
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Dia Slide"
msgstr "شريحة Dia"
#. ePYVT
-#: svx/source/dialog/page.hrc:91
+#: svx/source/dialog/page.hrc:92
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 4:3"
msgstr "شاشة ٣:٤"
#. pWa4A
-#: svx/source/dialog/page.hrc:92
+#: svx/source/dialog/page.hrc:93
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:9"
msgstr "شاشة ١٦:٩"
#. T62Dx
-#: svx/source/dialog/page.hrc:93
+#: svx/source/dialog/page.hrc:94
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:10"
msgstr "شاشة ١٦:١٠"
#. hwMzF
-#: svx/source/dialog/page.hrc:94
+#: svx/source/dialog/page.hrc:95
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Widescreen"
msgstr ""
#. HqpFJ
-#: svx/source/dialog/page.hrc:95
+#: svx/source/dialog/page.hrc:96
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (4:3)"
msgstr ""
#. PFU8U
-#: svx/source/dialog/page.hrc:96
+#: svx/source/dialog/page.hrc:97
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:9)"
msgstr ""
#. 48LFY
-#: svx/source/dialog/page.hrc:97
+#: svx/source/dialog/page.hrc:98
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:10)"
msgstr ""
#. ryFz3
-#: svx/source/dialog/page.hrc:98
+#: svx/source/dialog/page.hrc:99
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Japanese Postcard"
msgstr "بطاقة بريدية يابانية"
@@ -13030,7 +13021,7 @@ msgstr "التاريخ"
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:199
msgctxt "acceptrejectchangesdialog|writerdesc"
msgid "Comment"
-msgstr "علّق"
+msgstr "تعليق"
#. Z9yjZ
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:208
@@ -13853,7 +13844,7 @@ msgstr "اسم العائلة"
#: svx/uiconfig/ui/chinesedictionary.ui:309
msgctxt "chinesedictionary|property"
msgid "Title"
-msgstr "عنوان"
+msgstr "اللقب"
#. RvQrD
#: svx/uiconfig/ui/chinesedictionary.ui:310
@@ -13877,13 +13868,13 @@ msgstr "عمل"
#: svx/uiconfig/ui/chinesedictionary.ui:313
msgctxt "chinesedictionary|property"
msgid "Adjective"
-msgstr ""
+msgstr "صفة"
#. VKjdE
#: svx/uiconfig/ui/chinesedictionary.ui:314
msgctxt "chinesedictionary|property"
msgid "Idiom"
-msgstr ""
+msgstr "مَثَل"
#. dB4SG
#: svx/uiconfig/ui/chinesedictionary.ui:315
@@ -13913,19 +13904,19 @@ msgstr "فعل"
#: svx/uiconfig/ui/chinesedictionary.ui:319
msgctxt "chinesedictionary|property"
msgid "Brand name"
-msgstr ""
+msgstr "اسم العلامة التجارية"
#. CsQsq
#: svx/uiconfig/ui/chinesedictionary.ui:323
msgctxt "chinesedictionary|extended_tip|property"
msgid "Defines the class of the selected term."
-msgstr ""
+msgstr "يعرّف فئة العنصر المحدد."
#. GvFwf
#: svx/uiconfig/ui/chinesedictionary.ui:341
msgctxt "chinesedictionary|extended_tip|mapping"
msgid "Enter the text that you want to replace the Term with."
-msgstr ""
+msgstr "أدخِل النص الذي تريد استبدال المصطلح به."
#. SBYjj
#: svx/uiconfig/ui/chinesedictionary.ui:359
@@ -13943,7 +13934,7 @@ msgstr ""
#: svx/uiconfig/ui/classificationdialog.ui:37
msgctxt "classificationdialog|dialogname"
msgid "Classification"
-msgstr ""
+msgstr "التصنيف"
#. c6ZEp
#: svx/uiconfig/ui/classificationdialog.ui:122
@@ -13955,7 +13946,7 @@ msgstr "التصنيف:"
#: svx/uiconfig/ui/classificationdialog.ui:137
msgctxt "classificationdialog|label-InternationalClassification"
msgid "International:"
-msgstr ""
+msgstr "دولي:"
#. T5CsA
#: svx/uiconfig/ui/classificationdialog.ui:158
@@ -13971,23 +13962,21 @@ msgstr ""
#. 2DFQN
#: svx/uiconfig/ui/classificationdialog.ui:189
-#, fuzzy
msgctxt "classificationdialog|label-Marking"
msgid "Marking:"
-msgstr "الهوامش:"
+msgstr "التأشير:"
#. QZAAx
#: svx/uiconfig/ui/classificationdialog.ui:205
-#, fuzzy
msgctxt "classificationdialog|label-Classification"
msgid "Recently Used:"
-msgstr "المستخدمة مؤخرا"
+msgstr "المستخدمة مؤخرا:"
#. nBJnS
#: svx/uiconfig/ui/classificationdialog.ui:226
msgctxt "classificationdialog|extended_tip|recentlyUsedCB"
msgid "Lists the most recently used classification terms."
-msgstr ""
+msgstr "يسرد مصطلحات التصنيف المستخدمة مؤخراً."
#. E4AUF
#: svx/uiconfig/ui/classificationdialog.ui:270
@@ -14004,23 +13993,21 @@ msgstr "المحتوى"
#. rjd94
#: svx/uiconfig/ui/classificationdialog.ui:321
-#, fuzzy
msgctxt "classificationdialog|boldButton"
msgid "Bold"
-msgstr "ذهب"
+msgstr "ثخين"
#. ob6c4
#: svx/uiconfig/ui/classificationdialog.ui:327
msgctxt "classificationdialog|extended_tip|toolboxCB"
msgid "Applies bold character style to the classification contents."
-msgstr ""
+msgstr "يطبّق طراز المحرف الثخين إلى محتوى التصنيف."
#. v8MHF
#: svx/uiconfig/ui/classificationdialog.ui:339
-#, fuzzy
msgctxt "classificationdialog|signButton"
msgid "Sign Paragraph"
-msgstr "فقرة مخفية"
+msgstr "وقّع الفقرة"
#. zGuTE
#: svx/uiconfig/ui/classificationdialog.ui:345
@@ -14038,20 +14025,19 @@ msgstr ""
#: svx/uiconfig/ui/classificationdialog.ui:418
msgctxt "classificationdialog|label-PartNumber"
msgid "License:"
-msgstr ""
+msgstr "الرخصة:"
#. d24J5
#: svx/uiconfig/ui/classificationdialog.ui:433
-#, fuzzy
msgctxt "classificationdialog|label-PartNumber"
msgid "Part Number:"
-msgstr "رقم المن_فذ:"
+msgstr "رقم الجزء:"
#. AEUjh
#: svx/uiconfig/ui/classificationdialog.ui:449
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "نص الجزء:"
#. 9CyuA
#: svx/uiconfig/ui/classificationdialog.ui:472
@@ -14073,10 +14059,9 @@ msgstr ""
#. gdZhQ
#: svx/uiconfig/ui/classificationdialog.ui:576
-#, fuzzy
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
msgid "Add"
-msgstr "أضف"
+msgstr "أضِف"
#. Uy6aW
#: svx/uiconfig/ui/classificationdialog.ui:584
@@ -14086,16 +14071,15 @@ msgstr ""
#. XGQ6V
#: svx/uiconfig/ui/classificationdialog.ui:605
-#, fuzzy
msgctxt "classificationdialog|label-IntellectualProperty"
msgid "Intellectual Property"
-msgstr "الملكية الفكرية:"
+msgstr "الملكية الفكرية"
#. gogLP
#: svx/uiconfig/ui/colorwindow.ui:58
msgctxt "colorwindow|none_color_button"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. HHesw
#: svx/uiconfig/ui/colorwindow.ui:147
@@ -14111,10 +14095,9 @@ msgstr "لون مخصّص…"
#. KzYFV
#: svx/uiconfig/ui/colsmenu.ui:12
-#, fuzzy
msgctxt "colsmenu|insert"
msgid "Insert _Column"
-msgstr "إدراج عمود"
+msgstr "أدرج ع_موداً"
#. WmdqY
#: svx/uiconfig/ui/colsmenu.ui:26
@@ -14126,7 +14109,7 @@ msgstr "ا_ستبدل بِ‍"
#: svx/uiconfig/ui/colsmenu.ui:40
msgctxt "colsmenu|delete"
msgid "Delete column"
-msgstr "حذف عمود"
+msgstr "احذف العمود"
#. 7CkSW
#: svx/uiconfig/ui/colsmenu.ui:48
@@ -14138,13 +14121,13 @@ msgstr "أ_خفِ العمود"
#: svx/uiconfig/ui/colsmenu.ui:56
msgctxt "colsmenu|show"
msgid "_Show Columns"
-msgstr "أ_ظهر العمود"
+msgstr "أ_ظهر الأعمدة"
#. FGgJL
#: svx/uiconfig/ui/colsmenu.ui:66
msgctxt "colsmenu|more"
msgid "_More..."
-msgstr "أ_خرى..."
+msgstr "الم_زيد..."
#. JtMyQ
#: svx/uiconfig/ui/colsmenu.ui:80
@@ -14154,10 +14137,9 @@ msgstr "ال_كل"
#. frYiv
#: svx/uiconfig/ui/colsmenu.ui:92
-#, fuzzy
msgctxt "colsmenu|column"
msgid "Column..."
-msgstr "أع~مدة..."
+msgstr "عمود..."
#. Dmqbu
#: svx/uiconfig/ui/compressgraphicdialog.ui:50
@@ -14185,10 +14167,9 @@ msgstr "ضغط PNG"
#. 75Ef7
#: svx/uiconfig/ui/compressgraphicdialog.ui:168
-#, fuzzy
msgctxt "compressgraphicdialog|radio-lossless|tooltip_text"
msgid "Lossless compression"
-msgstr "ضغط مع فقد البيانات"
+msgstr "ضغط بلا فقد البيانات"
#. a9DSR
#: svx/uiconfig/ui/compressgraphicdialog.ui:287
@@ -14200,7 +14181,7 @@ msgstr "الضغط"
#: svx/uiconfig/ui/compressgraphicdialog.ui:317
msgctxt "compressgraphicdialog|checkbox-reduce-resolution"
msgid "Reduce image resolution to:"
-msgstr ""
+msgstr "قلل مَيز الصورة إلى:"
#. pYRff
#: svx/uiconfig/ui/compressgraphicdialog.ui:334
@@ -14230,7 +14211,7 @@ msgstr "الاستيفاء:"
#: svx/uiconfig/ui/compressgraphicdialog.ui:452
msgctxt "compressgraphicdialog|interpolation-method-store"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. unYWJ
#: svx/uiconfig/ui/compressgraphicdialog.ui:453
@@ -14284,13 +14265,13 @@ msgstr "النوع:"
#: svx/uiconfig/ui/compressgraphicdialog.ui:572
msgctxt "compressgraphicdialog|label7"
msgid "Actual dimensions:"
-msgstr "القياسات الفعلية:"
+msgstr "الأبعاد الفعلية:"
#. BZCWQ
#: svx/uiconfig/ui/compressgraphicdialog.ui:604
msgctxt "compressgraphicdialog|label8"
msgid "Apparent dimensions:"
-msgstr "القياسات الظاهرية:"
+msgstr "الأبعاد الظاهرية:"
#. QzEYW
#: svx/uiconfig/ui/compressgraphicdialog.ui:635
@@ -14522,7 +14503,7 @@ msgstr ""
#: svx/uiconfig/ui/defaultshapespanel.ui:43
msgctxt "defaultshapespanel|label1"
msgid "Lines and Arrows"
-msgstr ""
+msgstr "خطوط و سهام"
#. xvX8C
#: svx/uiconfig/ui/defaultshapespanel.ui:75
@@ -14534,7 +14515,7 @@ msgstr "منحنيات ومضلّعات"
#: svx/uiconfig/ui/defaultshapespanel.ui:107
msgctxt "defaultshapespanel|label3"
msgid "Connectors"
-msgstr "الموصّلات"
+msgstr "الموصلات"
#. uifz8
#: svx/uiconfig/ui/defaultshapespanel.ui:139
@@ -14850,7 +14831,7 @@ msgstr ""
#: svx/uiconfig/ui/docking3deffects.ui:832
msgctxt "tp_3D_SceneIllumination|CTL_LIGHT_PREVIEW|tooltip_text"
msgid "Light Preview"
-msgstr ""
+msgstr "معاينة الضوء"
#. c86Xg
#: svx/uiconfig/ui/docking3deffects.ui:837
@@ -15740,10 +15721,9 @@ msgstr ""
#. EeBXP
#: svx/uiconfig/ui/dockingcolorreplace.ui:446
-#, fuzzy
msgctxt "dockingcolorreplace|label1"
msgid "Colors"
-msgstr "ملوّن"
+msgstr "الألوان"
#. 7cuei
#: svx/uiconfig/ui/dockingcolorreplace.ui:467
@@ -16103,7 +16083,7 @@ msgstr "استعادة مستند %PRODUCTNAME %PRODUCTVERSION"
#: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:41
msgctxt "docrecoveryrecoverdialog|cancel"
msgid "_Discard"
-msgstr "أ_همِل"
+msgstr "اس_تبعِد"
#. fEs2G
#: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:56
@@ -16115,7 +16095,7 @@ msgstr "اب_دأ"
#: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:90
msgctxt "docrecoveryrecoverdialog|desc"
msgid "%PRODUCTNAME will attempt to recover the state of the files you were working on before it crashed. Click 'Start' to begin the process, or click 'Discard' to cancel the recovery."
-msgstr "سيحاول %PRODUCTNAME استعادة حالة الملفات التي عملت عليها قبل أن ينهار. انقر ’ابدأ‘ لبدء العملية أو ’أهمِل‘ لإلغاء عملية الاستعادة."
+msgstr "سيحاول %PRODUCTNAME استعادة حالة الملفات التي عملت عليها قبل أن ينهار. انقر ’ابدأ‘ لبدء العملية أو ’استبعِد‘ لإلغاء عملية الاستعادة."
#. B98AV
#: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:116
@@ -16181,19 +16161,19 @@ msgstr "أدخِل عمق النتوء."
#: svx/uiconfig/ui/fileexporteddialog.ui:8
msgctxt "fileexporteddialog|FileExportedDialog"
msgid "File Exported"
-msgstr ""
+msgstr "صُدّر الملف"
#. H7wJB
#: svx/uiconfig/ui/fileexporteddialog.ui:45
msgctxt "fileexporteddialog|openfolder"
msgid "Open Containing _Folder"
-msgstr ""
+msgstr "افتح المج_لد المحتوي"
#. sthpX
#: svx/uiconfig/ui/fileexporteddialog.ui:69
msgctxt "fileexporteddialog|Filelabel"
msgid "File Name"
-msgstr ""
+msgstr "اسم الملف"
#. HDhiV
#: svx/uiconfig/ui/filtermenu.ui:12
@@ -16205,7 +16185,7 @@ msgstr "اح_ذف"
#: svx/uiconfig/ui/filtermenu.ui:20
msgctxt "filtermenu|edit"
msgid "_Edit"
-msgstr "_حرّر"
+msgstr "ح_رّر"
#. 8w9bC
#: svx/uiconfig/ui/filtermenu.ui:28
@@ -16399,7 +16379,7 @@ msgstr "علامات الب_دل"
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:893
msgctxt "findreplacedialog-mobile|notes"
msgid "_Comments"
-msgstr "الت_عليقات"
+msgstr "ت_عليقات"
#. CABZs
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:914
@@ -16438,19 +16418,19 @@ msgid "Direction:"
msgstr "الاتجاه:"
#. GPC8q
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1009
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1013
msgctxt "findreplacedialog-mobile|rows"
msgid "Ro_ws"
msgstr "ص_فوف"
#. xCeTz
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1028
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1032
msgctxt "findreplacedialog-mobile|cols"
msgid "Colum_ns"
msgstr "أ_عمدة"
#. fPE4f
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1072
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1076
msgctxt "findreplacedialog-mobile|label3"
msgid "Other _options"
msgstr "_خيارات أخرى"
@@ -16781,55 +16761,55 @@ msgid "Search i_n:"
msgstr "ابحث _في:"
#. GGhEA
-#: svx/uiconfig/ui/findreplacedialog.ui:1069
+#: svx/uiconfig/ui/findreplacedialog.ui:1070
msgctxt "findreplacedialog|calcsearchin"
msgid "Formulas"
msgstr "الصيغ"
#. bpBeC
-#: svx/uiconfig/ui/findreplacedialog.ui:1070
+#: svx/uiconfig/ui/findreplacedialog.ui:1071
msgctxt "findreplacedialog|calcsearchin"
msgid "Values"
msgstr "القيم"
#. zSUYq
-#: svx/uiconfig/ui/findreplacedialog.ui:1071
+#: svx/uiconfig/ui/findreplacedialog.ui:1072
msgctxt "findreplacedialog|calcsearchin"
msgid "Comments"
-msgstr "انعليقات"
+msgstr "تعليقات"
#. K4WuW
-#: svx/uiconfig/ui/findreplacedialog.ui:1096
+#: svx/uiconfig/ui/findreplacedialog.ui:1097
msgctxt "findreplacedialog|searchdir"
msgid "Direction:"
msgstr "الاتجاه:"
#. p2HBA
-#: svx/uiconfig/ui/findreplacedialog.ui:1113
+#: svx/uiconfig/ui/findreplacedialog.ui:1119
msgctxt "findreplacedialog|rows"
msgid "Ro_ws"
msgstr "ص_فوف"
#. uib5F
-#: svx/uiconfig/ui/findreplacedialog.ui:1132
+#: svx/uiconfig/ui/findreplacedialog.ui:1138
msgctxt "findreplacedialog|cols"
msgid "Colum_ns"
msgstr "أ_عمدة"
#. Q6fG8
-#: svx/uiconfig/ui/findreplacedialog.ui:1176
+#: svx/uiconfig/ui/findreplacedialog.ui:1182
msgctxt "findreplacedialog|label3"
msgid "Other _options"
msgstr "_خيارات أخرى"
#. CPpFA
-#: svx/uiconfig/ui/findreplacedialog.ui:1183
+#: svx/uiconfig/ui/findreplacedialog.ui:1189
msgctxt "findreplacedialog|extended_tip|label3"
msgid "Shows more or fewer search options. Click this label again to hide the extended search options."
msgstr ""
#. YpLau
-#: svx/uiconfig/ui/findreplacedialog.ui:1219
+#: svx/uiconfig/ui/findreplacedialog.ui:1222
msgctxt "findreplacedialog|extended_tip|FindReplaceDialog"
msgid "Finds or replaces text or formats in the current document."
msgstr "يجد أو يستبدل نصّاً أو أنساقًا في المستند الحالي."
@@ -17151,7 +17131,7 @@ msgstr ""
#: svx/uiconfig/ui/fontworkalignmentcontrol.ui:57
msgctxt "fontworkalignmentcontrol|RID_SVXSTR_ALIGN_CENTER"
msgid "_Center"
-msgstr ""
+msgstr "_وسط"
#. dBoRs
#: svx/uiconfig/ui/fontworkalignmentcontrol.ui:74
@@ -17209,10 +17189,9 @@ msgstr ""
#. 8SKCU
#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
-#, fuzzy
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
-msgstr "معرض معمل الخطوط..."
+msgstr "معرض معمل الخطوط"
#. GB7pa
#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
@@ -17285,14 +17264,13 @@ msgstr ""
#: svx/uiconfig/ui/formlinkwarndialog.ui:26
msgctxt "formlinkwarndialog|ok"
msgid "_Edit"
-msgstr "_حرّر"
+msgstr "ح_رّر"
#. ALATJ
#: svx/uiconfig/ui/formnavimenu.ui:12
-#, fuzzy
msgctxt "formnavimenu|new"
msgid "_New"
-msgstr "ج_ديد"
+msgstr "_جديد"
#. M2EPw
#: svx/uiconfig/ui/formnavimenu.ui:26
@@ -17404,7 +17382,7 @@ msgstr "عدد التحديد"
#: svx/uiconfig/ui/functionmenu.ui:68
msgctxt "functionmenu|none"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. GTGqW
#: svx/uiconfig/ui/gallerymenu1.ui:12
@@ -17451,17 +17429,15 @@ msgstr "أدرِج ك_خلفية"
#. 5kjGH
#: svx/uiconfig/ui/gallerymenu2.ui:40
-#, fuzzy
msgctxt "gallerymenu2|preview"
msgid "_Preview"
-msgstr "معاينة"
+msgstr "معاي_نة"
#. AbxBp
#: svx/uiconfig/ui/gallerymenu2.ui:54
-#, fuzzy
msgctxt "gallerymenu2|title"
msgid "_Title"
-msgstr "عنوان"
+msgstr "ال_عنوان"
#. BJRWa
#: svx/uiconfig/ui/gallerymenu2.ui:68
@@ -17479,13 +17455,13 @@ msgstr "ا_نسخ"
#: svx/uiconfig/ui/gallerymenu2.ui:90
msgctxt "gallerymenu2|paste"
msgid "_Paste"
-msgstr ""
+msgstr "أل_صق"
#. YHL6E
#: svx/uiconfig/ui/genericcheckentry.ui:31
msgctxt "genericcheckentry|markButton"
msgid "Mark"
-msgstr ""
+msgstr "أشّر"
#. wgUGR
#: svx/uiconfig/ui/genericcheckentry.ui:44
@@ -17497,7 +17473,7 @@ msgstr "الخصائص"
#: svx/uiconfig/ui/headfootformatpage.ui:63
msgctxt "headfootformatpage|checkHeaderOn"
msgid "Hea_der on"
-msgstr "_فعّل الترويسة"
+msgstr "الترويس م_فعّل"
#. MXxAd
#: svx/uiconfig/ui/headfootformatpage.ui:79
@@ -17533,7 +17509,7 @@ msgstr "الهامش الأي_من:"
#: svx/uiconfig/ui/headfootformatpage.ui:207
msgctxt "headfootformatpage|labelSpacing"
msgid "_Spacing:"
-msgstr "التبا_عد:"
+msgstr "ال_تباعد:"
#. xNArq
#: svx/uiconfig/ui/headfootformatpage.ui:234
@@ -17770,10 +17746,9 @@ msgstr ""
#. WS3NJ
#: svx/uiconfig/ui/imapdialog.ui:423
-#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
-msgstr "خ_صائص..."
+msgstr "الخصائص..."
#. CBpCj
#: svx/uiconfig/ui/imapdialog.ui:427
@@ -17844,10 +17819,9 @@ msgstr "نشط"
#. FiF8Z
#: svx/uiconfig/ui/imapmenu.ui:42
-#, fuzzy
msgctxt "imapmenu|arrange"
msgid "_Arrange"
-msgstr "تنظيم"
+msgstr "_رتّب"
#. 97MAj
#: svx/uiconfig/ui/imapmenu.ui:52
@@ -18020,7 +17994,7 @@ msgstr "السّاب_قة"
#: svx/uiconfig/ui/namespacedialog.ui:209
msgctxt "namespacedialog|url"
msgid "URL"
-msgstr "الرابط"
+msgstr "رابط"
#. c6DzL
#: svx/uiconfig/ui/namespacedialog.ui:220
@@ -18685,7 +18659,7 @@ msgstr ""
#: svx/uiconfig/ui/redlinefilterpage.ui:106
msgctxt "redlinefilterpage|commentedit-atkobject"
msgid "Comment"
-msgstr "التعليق"
+msgstr "تعليق"
#. QXgua
#: svx/uiconfig/ui/redlinefilterpage.ui:107
@@ -19351,10 +19325,9 @@ msgstr "نوع التدرج"
#. yG7qD
#: svx/uiconfig/ui/sidebararea.ui:156
-#, fuzzy
msgctxt "sidebararea|bmpimport"
msgid "_Import"
-msgstr "ا_ستيراد"
+msgstr "ا_ستورد"
#. egzhb
#: svx/uiconfig/ui/sidebararea.ui:189
@@ -19421,7 +19394,7 @@ msgstr "اختر نوع الشفافية الذي سيُطبّق."
#: svx/uiconfig/ui/sidebararea.ui:318
msgctxt "sidebararea|transtype"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. AAqxT
#: svx/uiconfig/ui/sidebararea.ui:319
@@ -19795,7 +19768,7 @@ msgstr "محاذاة عامودي"
#: svx/uiconfig/ui/sidebarparagraph.ui:204
msgctxt "sidebarparagraph|spacinglabel"
msgid "_Spacing:"
-msgstr "التبا_عد:"
+msgstr "ال_تباعد:"
#. FUUE6
#: svx/uiconfig/ui/sidebarparagraph.ui:219
@@ -19855,7 +19828,7 @@ msgstr "زِد الإزاحة"
#: svx/uiconfig/ui/sidebarparagraph.ui:424
msgctxt "sidebarparagraph|decreaseindent|tooltip_text"
msgid "Decrease Indent"
-msgstr "أنقص الإزاحة"
+msgstr "أنقِص الإزاحة"
#. nEeZ4
#: svx/uiconfig/ui/sidebarparagraph.ui:435
@@ -19965,7 +19938,7 @@ msgstr "أدخل عرضًا للكائن المحدد."
#: svx/uiconfig/ui/sidebarpossize.ui:140
msgctxt "sidebarpossize|selectwidth"
msgid "Width"
-msgstr ""
+msgstr "العُرض"
#. BrACQ
#: svx/uiconfig/ui/sidebarpossize.ui:153
@@ -19983,14 +19956,13 @@ msgstr "أدخل ارتفاعًا للكائن المحدد."
#: svx/uiconfig/ui/sidebarpossize.ui:174
msgctxt "sidebarpossize|selectheight"
msgid "Height"
-msgstr ""
+msgstr "الارتفاع"
#. nLGDu
#: svx/uiconfig/ui/sidebarpossize.ui:185
-#, fuzzy
msgctxt "sidebarpossize|ratio"
msgid "_Keep ratio"
-msgstr "إب_قاء التناسب"
+msgstr "أب_قِ التناسب"
#. 2ka9i
#: svx/uiconfig/ui/sidebarpossize.ui:189
@@ -20105,13 +20077,13 @@ msgstr "فعّل"
#: svx/uiconfig/ui/sidebartextcolumnspanel.ui:35
msgctxt "sidebartextcolumns|labelColNumber"
msgid "_Number of columns:"
-msgstr ""
+msgstr "_عدد الأعمدة:"
#. b7QHr
#: svx/uiconfig/ui/sidebartextcolumnspanel.ui:49
msgctxt "sidebartextcolumns|labelColSpacing"
msgid "_Spacing:"
-msgstr ""
+msgstr "ال_تباعد:"
#. Es5Bi
#: svx/uiconfig/ui/sidebartextcolumnspanel.ui:70
@@ -20261,7 +20233,7 @@ msgstr "فقرة"
#: svx/uiconfig/ui/textcontrolparadialog.ui:136
msgctxt "textcontrolparadialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
-msgstr "الإزاحة و التباعد"
+msgstr "الإزاحات والتباعد"
#. EGGHM
#: svx/uiconfig/ui/textcontrolparadialog.ui:183
@@ -20286,7 +20258,7 @@ msgstr "تبويبات"
#: svx/uiconfig/ui/textunderlinecontrol.ui:75
msgctxt "textunderlinecontrol|none"
msgid "(Without)"
-msgstr "(بدون)"
+msgstr "(بِلا)"
#. 9VDo4
#: svx/uiconfig/ui/textunderlinecontrol.ui:93
@@ -20302,10 +20274,9 @@ msgstr "مزدوج"
#. DBg8Y
#: svx/uiconfig/ui/textunderlinecontrol.ui:125
-#, fuzzy
msgctxt "textunderlinecontrol|bold|tooltip_text"
msgid "Bold"
-msgstr "ذهب"
+msgstr "ثخين"
#. fNrBz
#: svx/uiconfig/ui/textunderlinecontrol.ui:141
@@ -20317,7 +20288,7 @@ msgstr "منقّط"
#: svx/uiconfig/ui/textunderlinecontrol.ui:157
msgctxt "textunderlinecontrol|dotbold|tooltip_text"
msgid "Dotted (Bold)"
-msgstr "منقّط (عريض)"
+msgstr "منقّط (ثخين)"
#. 46nci
#: svx/uiconfig/ui/textunderlinecontrol.ui:173
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index ef33f2c8391..49094c519f3 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/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: 2022-02-09 16:46+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1544511256.000000\n"
#. v3oJv
@@ -32,7 +32,7 @@ msgstr "الجدول '%OBJECT_NAME%' يحتوي عمليات دمج أو انق
#: sw/inc/AccessibilityCheckStrings.hrc:18
msgctxt "STR_FAKE_NUMBERING"
msgid "Fake numbering '%NUMBERING%'"
-msgstr "ترقيم زائف '%NUMBERING%'"
+msgstr "تعداد زائف '%NUMBERING%'"
#. zE4PU
#: sw/inc/AccessibilityCheckStrings.hrc:19
@@ -68,7 +68,7 @@ msgstr "تجنّب الملاحظات النهائية."
#: sw/inc/AccessibilityCheckStrings.hrc:24
msgctxt "STR_HEADINGS_NOT_IN_ORDER"
msgid "Headings not in order."
-msgstr "الترويسات ليست بانتظام."
+msgstr "خطوط العناوين ليست بانتظام."
#. Ryz5w
#: sw/inc/AccessibilityCheckStrings.hrc:25
@@ -92,13 +92,13 @@ msgstr "تجنّب النص الطافي."
#: sw/inc/AccessibilityCheckStrings.hrc:28
msgctxt "STR_HEADING_IN_TABLE"
msgid "Tables must not contain headings."
-msgstr "يجب أن لا تحتوي الجداول على ترويسات."
+msgstr "يجب أن لا تحتوي الجداول على خطوط عناوين."
#. LxJKy
#: sw/inc/AccessibilityCheckStrings.hrc:29
msgctxt "STR_HEADING_ORDER"
msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%."
-msgstr "حافظ على مستويات الترويس مرتّبة. مستوى الترويس %LEVEL_CURRENT% يجب أن لا يأتي بعد %LEVEL_PREV%."
+msgstr "حافظ على مستويات خطوط العناوين مرتّبة. مستوى خط العنوان %LEVEL_CURRENT% يجب أن لا يأتي بعد %LEVEL_PREV%."
#. TBXjj
#: sw/inc/AccessibilityCheckStrings.hrc:30
@@ -116,13 +116,13 @@ msgstr "اللغة المبدئية للمستند غير معدّة"
#: sw/inc/AccessibilityCheckStrings.hrc:33
msgctxt "STR_STYLE_NO_LANGUAGE"
msgid "Style '%STYLE_NAME%' has no language set"
-msgstr ""
+msgstr "ليس للطراز '%STYLE_NAME%' لغة معيَّنة"
#. FG4Vn
#: sw/inc/AccessibilityCheckStrings.hrc:34
msgctxt "STR_DOCUMENT_TITLE"
msgid "Document title is not set"
-msgstr ""
+msgstr "لم يعيَّن عنوان المستند"
#. wH3TZ
msgctxt "stock"
@@ -190,193 +190,193 @@ msgid "_Yes"
msgstr "_نعم"
#. DdjvG
-#: sw/inc/app.hrc:29
+#: sw/inc/app.hrc:31
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "All Styles"
msgstr "كل الطُرُز"
#. aF6kb
-#: sw/inc/app.hrc:30
+#: sw/inc/app.hrc:32
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "الطُرُز المخفية"
#. Sn6Pr
-#: sw/inc/app.hrc:31
+#: sw/inc/app.hrc:33
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Applied Styles"
msgstr "الطُرُز المطبَّقة"
#. dPsnN
-#: sw/inc/app.hrc:32
+#: sw/inc/app.hrc:34
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Custom Styles"
msgstr "الطُرُز المخصَّصة"
#. LL8tn
-#: sw/inc/app.hrc:33
+#: sw/inc/app.hrc:35
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Automatic"
msgstr "تلقائي"
#. W2ZFq
-#: sw/inc/app.hrc:34
+#: sw/inc/app.hrc:36
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Text Styles"
msgstr "طُرُز النص"
#. j6CkD
-#: sw/inc/app.hrc:35
+#: sw/inc/app.hrc:37
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Chapter Styles"
msgstr "طُرُز الفصول"
#. KgUsu
-#: sw/inc/app.hrc:36
+#: sw/inc/app.hrc:38
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "List Styles"
msgstr "طُرُز القوائم"
#. ZYAsP
-#: sw/inc/app.hrc:37
+#: sw/inc/app.hrc:39
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Index Styles"
msgstr "أنماط الفهارس"
#. CXarp
-#: sw/inc/app.hrc:38
+#: sw/inc/app.hrc:40
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Special Styles"
msgstr "طُرُز خاصة"
#. M9it7
-#: sw/inc/app.hrc:39
+#: sw/inc/app.hrc:41
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "HTML Styles"
msgstr "طُرُز HTML"
#. TeuD3
-#: sw/inc/app.hrc:40
+#: sw/inc/app.hrc:42
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Conditional Styles"
msgstr "الطُرُز الشرطيّة"
#. EBcnz
-#: sw/inc/app.hrc:46
+#: sw/inc/app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "All Styles"
msgstr "كل الطُرُز"
#. vmFjs
-#: sw/inc/app.hrc:47
+#: sw/inc/app.hrc:49
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "الطُرُز المخفية"
#. NG33n
-#: sw/inc/app.hrc:48
+#: sw/inc/app.hrc:50
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Applied Styles"
msgstr "الطُرُز المطبَّقة"
#. yubqD
-#: sw/inc/app.hrc:49
+#: sw/inc/app.hrc:51
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Custom Styles"
msgstr "الطُرُز المخصَّصة"
#. hPACX
-#: sw/inc/app.hrc:55
+#: sw/inc/app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "All Styles"
msgstr "كل الطُرُز"
#. NPGpT
-#: sw/inc/app.hrc:56
+#: sw/inc/app.hrc:58
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "الطُرُز المخفية"
#. R8bb3
-#: sw/inc/app.hrc:57
+#: sw/inc/app.hrc:59
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Applied Styles"
msgstr "الطُرُز المطبَّقة"
#. RFmiE
-#: sw/inc/app.hrc:58
+#: sw/inc/app.hrc:60
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Custom Styles"
msgstr "الطُرُز المخصَّصة"
#. ADhCx
-#: sw/inc/app.hrc:64
+#: sw/inc/app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
msgid "All Styles"
msgstr "كل الطُرُز"
#. kGzjB
-#: sw/inc/app.hrc:65
+#: sw/inc/app.hrc:67
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "الطُرُز المخفية"
#. CAEy6
-#: sw/inc/app.hrc:66
+#: sw/inc/app.hrc:68
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Applied Styles"
msgstr "الطُرُز المطبَّقة"
#. jQvqy
-#: sw/inc/app.hrc:67
+#: sw/inc/app.hrc:69
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Custom Styles"
msgstr "الطُرُز المخصَّصة"
#. xFSbd
-#: sw/inc/app.hrc:73
+#: sw/inc/app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
msgid "All Styles"
msgstr "كل الطُرُز"
#. DCRLB
-#: sw/inc/app.hrc:74
+#: sw/inc/app.hrc:76
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "الطُرُز المخفية"
#. 4BdCR
-#: sw/inc/app.hrc:75
+#: sw/inc/app.hrc:77
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Applied Styles"
msgstr "الطُرُز المطبَّقة"
#. A4VNy
-#: sw/inc/app.hrc:76
+#: sw/inc/app.hrc:78
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Custom Styles"
msgstr "الطُرُز المخصَّصة"
#. DwpVB
-#: sw/inc/app.hrc:82
+#: sw/inc/app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
msgid "All Styles"
msgstr "كل الطُرُز"
#. TPRKY
-#: sw/inc/app.hrc:83
+#: sw/inc/app.hrc:85
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "الطُرُز المخفية"
#. Y9EKT
-#: sw/inc/app.hrc:84
+#: sw/inc/app.hrc:86
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Applied Styles"
msgstr "الطُرُز المطبَّقة"
#. UFVRD
-#: sw/inc/app.hrc:85
+#: sw/inc/app.hrc:87
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Custom Styles"
msgstr "الطُرُز المخصَّصة"
@@ -487,7 +487,7 @@ msgstr "هاتف العمل"
#: sw/inc/dbui.hrc:59
msgctxt "SA_ADDRESS_HEADER"
msgid "Email Address"
-msgstr ""
+msgstr "عنوان البريد الالكتروني"
#. XdigY
#: sw/inc/dbui.hrc:60
@@ -518,19 +518,19 @@ msgstr "ليس هذا بملف WinWord6 صالح."
#: sw/inc/error.hrc:39
msgctxt "RID_SW_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr "اكُتشف خطأ في تنسيق الملف في $(ARG1)(صف،عمود)."
+msgstr "عُثر على خطأ في نسَق الملف في $(ARG1)(صف،عمود)."
#. FWd22
#: sw/inc/error.hrc:40
msgctxt "RID_SW_ERRHDL"
msgid "This is not a valid WinWord97 file."
-msgstr "ليس هذا بملف WinWord97 صالح."
+msgstr "ليس هذا بملف وندوز وورد97 صالح."
#. UyAsq
#: sw/inc/error.hrc:41 sw/inc/error.hrc:60
msgctxt "RID_SW_ERRHDL"
msgid "Format error discovered in the file in sub-document $(ARG1) at $(ARG2)(row,col)."
-msgstr "اكتُشف خطأ في تنسيق الملف الموجود بالمستند الفرعي $(ARG1) عند $(ARG2)(الصف،العمود)."
+msgstr "اكتُشف خطأ في نسَق الملف في المستند الفرعي $(ARG1) عند $(ARG2)(الصف،العمود)."
#. xsBuE
#. Export-Errors
@@ -617,55 +617,55 @@ msgstr ""
"وهي لم تُحفَظ بإعدادات التصدير الحالية."
#. daCFp
-#: sw/inc/flddinf.hrc:27
+#: sw/inc/flddinf.hrc:29
msgctxt "flddocinfopage|liststore1"
msgid "Author"
msgstr "المؤلف"
#. syKG4
-#: sw/inc/flddinf.hrc:28
+#: sw/inc/flddinf.hrc:30
msgctxt "flddocinfopage|liststore1"
msgid "Time"
msgstr "الوقت"
#. YVmE7
-#: sw/inc/flddinf.hrc:29
+#: sw/inc/flddinf.hrc:31
msgctxt "flddocinfopage|liststore1"
msgid "Date"
msgstr "التاريخ"
#. 2J6uc
-#: sw/inc/flddinf.hrc:30
+#: sw/inc/flddinf.hrc:32
msgctxt "flddocinfopage|liststore1"
msgid "Date Time Author"
msgstr "التاريخ الوقت المؤلف"
#. FzXBo
-#: sw/inc/fldref.hrc:27
+#: sw/inc/fldref.hrc:29
msgctxt "fldrefpage|liststore1"
msgid "Bookmarks"
msgstr "العلامات"
#. aGQG8
-#: sw/inc/fldref.hrc:28
+#: sw/inc/fldref.hrc:30
msgctxt "fldrefpage|liststore1"
msgid "Footnotes"
msgstr "الحواشي"
#. DyZeU
-#: sw/inc/fldref.hrc:29
+#: sw/inc/fldref.hrc:31
msgctxt "fldrefpage|liststore1"
msgid "Endnotes"
msgstr "الحواشي الختامية"
#. Cit9Z
-#: sw/inc/fldref.hrc:30
+#: sw/inc/fldref.hrc:32
msgctxt "fldrefpage|liststore1"
msgid "Headings"
-msgstr "ترويسات"
+msgstr "خطوط العناوين"
#. 95WGQ
-#: sw/inc/fldref.hrc:31
+#: sw/inc/fldref.hrc:33
msgctxt "fldrefpage|liststore1"
msgid "Numbered Paragraphs"
msgstr "الفقرات المرقمة"
@@ -1706,31 +1706,31 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:204
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para First Line Indent Relative"
-msgstr ""
+msgstr "إزاحة السطر الأول للفقرة نسبي"
#. z47wS
#: sw/inc/inspectorproperties.hrc:205
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Hyphens"
-msgstr ""
+msgstr "أقصى واصلات للتوصيلات في الفقرة"
#. nFxKY
#: sw/inc/inspectorproperties.hrc:206
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Leading Chars"
-msgstr ""
+msgstr "أقصى محارف بادئة للتوصيلات في الفقرة"
#. agdzD
#: sw/inc/inspectorproperties.hrc:207
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation Max Trailing Chars"
-msgstr ""
+msgstr "أقصى محارف منهية للتوصيلات في الفقرة"
#. hj7Fp
#: sw/inc/inspectorproperties.hrc:208
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Hyphenation No Caps"
-msgstr ""
+msgstr "لا حروف كبيرة للتوصيلات في الفقرة"
#. 4bemD
#: sw/inc/inspectorproperties.hrc:209
@@ -1742,13 +1742,13 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:210
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Auto First Line Indent"
-msgstr ""
+msgstr "الفقرة ذات سطر أول تلقائي الإزاحة"
#. Q68Bx
#: sw/inc/inspectorproperties.hrc:211
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Character Distance"
-msgstr ""
+msgstr "الفقرة ذات تباعد محارف"
#. FGVAd
#: sw/inc/inspectorproperties.hrc:212
@@ -1790,19 +1790,19 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:218
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Last Line Adjust"
-msgstr "ضبط ما بعد السطر الأخير"
+msgstr "تضبيط السطر الأخير للفقرة"
#. 6CaHh
#: sw/inc/inspectorproperties.hrc:219
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Left Margin"
-msgstr ""
+msgstr "الحاشية اليسرى للفقرة"
#. ZDnZk
#: sw/inc/inspectorproperties.hrc:220
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Left Margin Relative"
-msgstr ""
+msgstr "الحاشية اليسرى للفقرة نسبية"
#. G43XB
#: sw/inc/inspectorproperties.hrc:221
@@ -1820,7 +1820,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:223
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Line Spacing"
-msgstr ""
+msgstr "تباعد أسطر الفقرة"
#. kczeF
#: sw/inc/inspectorproperties.hrc:224
@@ -1838,31 +1838,31 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:226
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Right Margin"
-msgstr ""
+msgstr "الحاشية اليمنى للفقرة"
#. r2ao2
#: sw/inc/inspectorproperties.hrc:227
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Right Margin Relative"
-msgstr ""
+msgstr "الحاشية اليمنى للفقرة نسبية"
#. FC9mA
#: sw/inc/inspectorproperties.hrc:228
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Shadow Format"
-msgstr ""
+msgstr "نسَق ظلّ الفقرة"
#. VXwD2
#: sw/inc/inspectorproperties.hrc:229
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Split"
-msgstr ""
+msgstr "شطر الفقرة"
#. gXoCF
#: sw/inc/inspectorproperties.hrc:230
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Style Name"
-msgstr ""
+msgstr "اسم طراز الفقرة"
#. sekLv
#: sw/inc/inspectorproperties.hrc:231
@@ -1874,7 +1874,7 @@ msgstr ""
#: sw/inc/inspectorproperties.hrc:232
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Top Margin"
-msgstr ""
+msgstr "الحاشية العُليا للفقرة"
#. wHuj4
#: sw/inc/inspectorproperties.hrc:233
@@ -2033,181 +2033,181 @@ msgid "Writing Mode"
msgstr "نمط الكتابة"
#. QBR3s
-#: sw/inc/mmaddressblockpage.hrc:27
+#: sw/inc/mmaddressblockpage.hrc:29
msgctxt "RA_SALUTATION"
msgid "Dear"
msgstr "عزيزي"
#. xc8LH
-#: sw/inc/mmaddressblockpage.hrc:28
+#: sw/inc/mmaddressblockpage.hrc:30
msgctxt "RA_SALUTATION"
msgid "Hello"
msgstr "مرحبًا"
#. 3dVR9
-#: sw/inc/mmaddressblockpage.hrc:29
+#: sw/inc/mmaddressblockpage.hrc:31
msgctxt "RA_SALUTATION"
msgid "Hi"
msgstr "أهلًا"
#. G4dAq
-#: sw/inc/mmaddressblockpage.hrc:34
+#: sw/inc/mmaddressblockpage.hrc:36
msgctxt "RA_PUNCTUATION"
msgid ","
msgstr "،"
#. xpSNV
-#: sw/inc/mmaddressblockpage.hrc:35
+#: sw/inc/mmaddressblockpage.hrc:37
msgctxt "RA_PUNCTUATION"
msgid ":"
msgstr ":"
#. CBNXb
-#: sw/inc/mmaddressblockpage.hrc:36
+#: sw/inc/mmaddressblockpage.hrc:38
msgctxt "RA_PUNCTUATION"
msgid "!"
msgstr "!"
#. av4Wm
-#: sw/inc/mmaddressblockpage.hrc:37
+#: sw/inc/mmaddressblockpage.hrc:39
msgctxt "RA_PUNCTUATION"
msgid "(none)"
msgstr "(لا شيء)"
#. ujBVU
-#: sw/inc/optload.hrc:30
+#: sw/inc/optload.hrc:31
msgctxt "STR_ARR_METRIC"
msgid "Millimeter"
msgstr "مليمتر"
#. a9SsD
-#: sw/inc/optload.hrc:31
+#: sw/inc/optload.hrc:32
msgctxt "STR_ARR_METRIC"
msgid "Centimeter"
msgstr "سنتيمتر"
#. 2RuJU
-#: sw/inc/optload.hrc:32
+#: sw/inc/optload.hrc:33
msgctxt "STR_ARR_METRIC"
msgid "Meter"
msgstr "متر"
#. s4zrG
-#: sw/inc/optload.hrc:33
+#: sw/inc/optload.hrc:34
msgctxt "STR_ARR_METRIC"
msgid "Kilometer"
msgstr "كيلومتر"
#. SGXPk
-#: sw/inc/optload.hrc:34
+#: sw/inc/optload.hrc:35
msgctxt "STR_ARR_METRIC"
msgid "Inch"
msgstr "بوصة"
#. 3kDJD
-#: sw/inc/optload.hrc:35
+#: sw/inc/optload.hrc:36
msgctxt "STR_ARR_METRIC"
msgid "Foot"
msgstr "قدم"
#. Z9v2E
-#: sw/inc/optload.hrc:36
+#: sw/inc/optload.hrc:37
msgctxt "STR_ARR_METRIC"
msgid "Miles"
msgstr "ميل"
#. ngFw4
-#: sw/inc/optload.hrc:37
+#: sw/inc/optload.hrc:38
msgctxt "STR_ARR_METRIC"
msgid "Pica"
msgstr "بيكا"
#. C2njC
-#: sw/inc/optload.hrc:38
+#: sw/inc/optload.hrc:39
msgctxt "STR_ARR_METRIC"
msgid "Point"
msgstr "نقطة"
#. FcXWG
-#: sw/inc/optload.hrc:39
+#: sw/inc/optload.hrc:40
msgctxt "STR_ARR_METRIC"
msgid "Char"
msgstr "حرف"
#. ZZCxd
-#: sw/inc/optload.hrc:40
+#: sw/inc/optload.hrc:41
msgctxt "STR_ARR_METRIC"
msgid "Line"
msgstr "الخط"
#. qQBCu
-#: sw/inc/outline.hrc:27
+#: sw/inc/outline.hrc:29
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 1"
msgstr "بلا عنوان 1"
#. fJyA3
-#: sw/inc/outline.hrc:28
+#: sw/inc/outline.hrc:30
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 2"
msgstr "بلا عنوان 2"
#. MLeBF
-#: sw/inc/outline.hrc:29
+#: sw/inc/outline.hrc:31
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 3"
msgstr "بلا عنوان 3"
#. reXad
-#: sw/inc/outline.hrc:30
+#: sw/inc/outline.hrc:32
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 4"
msgstr "بلا عنوان 4"
#. Fgpbv
-#: sw/inc/outline.hrc:31
+#: sw/inc/outline.hrc:33
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 5"
msgstr "بلا عنوان 5"
#. Ea4d6
-#: sw/inc/outline.hrc:32
+#: sw/inc/outline.hrc:34
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 6"
msgstr "بلا عنوان 6"
#. UcAcC
-#: sw/inc/outline.hrc:33
+#: sw/inc/outline.hrc:35
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 7"
msgstr "بلا عنوان 7"
#. Dv26U
-#: sw/inc/outline.hrc:34
+#: sw/inc/outline.hrc:36
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 8"
msgstr "بلا عنوان 8"
#. XxC5o
-#: sw/inc/outline.hrc:35
+#: sw/inc/outline.hrc:37
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 9"
msgstr "بلا عنوان 9"
#. TTBSc
-#: sw/inc/pageformatpanel.hrc:23
+#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. eNMWm
-#: sw/inc/pageformatpanel.hrc:24
+#: sw/inc/pageformatpanel.hrc:26
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
msgstr "ضيقة"
#. MHtci
-#: sw/inc/pageformatpanel.hrc:25
+#: sw/inc/pageformatpanel.hrc:27
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
msgstr "معتدلة"
@@ -2216,38 +2216,38 @@ msgstr "معتدلة"
#. Normal (0.75")
#. Normal (1")
#. Normal (1.25")
-#: sw/inc/pageformatpanel.hrc:27 sw/inc/pageformatpanel.hrc:29
-#: sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:29 sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (%1)"
msgstr "اعتيادية (%1)"
#. DjCNK
-#: sw/inc/pageformatpanel.hrc:32
+#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
msgstr "عريضة"
#. JDMQe
-#: sw/inc/pageformatpanel.hrc:33
+#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Mirrored"
msgstr "منعكس"
#. J9o3y
-#: sw/inc/pageformatpanel.hrc:39
+#: sw/inc/pageformatpanel.hrc:41
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. LxZSX
-#: sw/inc/pageformatpanel.hrc:40
+#: sw/inc/pageformatpanel.hrc:42
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
msgstr "ضيقة"
#. EDy4U
-#: sw/inc/pageformatpanel.hrc:41
+#: sw/inc/pageformatpanel.hrc:43
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
msgstr "معتدلة"
@@ -2256,20 +2256,20 @@ msgstr "معتدلة"
#. Normal (1.9 cm)
#. Normal (2.54 cm)
#. Normal (3.18 cm)
-#: sw/inc/pageformatpanel.hrc:43 sw/inc/pageformatpanel.hrc:45
-#: sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:45 sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:49
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (%1)"
msgstr "اعتيادية (%1)"
#. oJfxD
-#: sw/inc/pageformatpanel.hrc:48
+#: sw/inc/pageformatpanel.hrc:50
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
msgstr "عريضة"
#. H9Qqx
-#: sw/inc/pageformatpanel.hrc:49
+#: sw/inc/pageformatpanel.hrc:51
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr "منعكس"
@@ -2303,7 +2303,7 @@ msgstr "صفّر"
#: sw/inc/strings.hrc:31
msgctxt "STR_RESET_TOOLTIP"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "يُتراجَع عن التعديلات غير المحفوظة في هذا اللسان."
#. Sju8m
#: sw/inc/strings.hrc:32
@@ -2327,7 +2327,7 @@ msgstr ""
#: sw/inc/strings.hrc:35
msgctxt "STR_APPLY_EXTENDEDTIP"
msgid "Applies all modifications without closing dialog. Values are saved and cannot be reverted with Reset."
-msgstr ""
+msgstr "يطبّق كل التغييرات دون إغلاق الحوار. تُحفظ القيم ولا يمكن التراجع عنها بـ ’تصفير‘."
#. FezFo
#. Format names
@@ -2412,7 +2412,7 @@ msgstr "ترقيم الأسطر"
#: sw/inc/strings.hrc:51
msgctxt "STR_POOLCHR_IDX_MAIN_ENTRY"
msgid "Main Index Entry"
-msgstr "مُدخل في الفهرس الرئيسي"
+msgstr "مُدخل فهرس رئيسي"
#. ALgMD
#: sw/inc/strings.hrc:52
@@ -2449,7 +2449,7 @@ msgstr "تشديد"
#: sw/inc/strings.hrc:58
msgctxt "STR_POOLCHR_HTML_CITATION"
msgid "Quotation"
-msgstr ""
+msgstr "تنصيص"
#. 6DAii
#: sw/inc/strings.hrc:59
@@ -2534,7 +2534,7 @@ msgstr "علامة مائيّة"
#: sw/inc/strings.hrc:73
msgctxt "STR_POOLFRM_LABEL"
msgid "Labels"
-msgstr "تسميات"
+msgstr "اللصائق"
#. JV6pZ
#. Template names
@@ -2583,7 +2583,7 @@ msgstr "توقيع"
#: sw/inc/strings.hrc:82
msgctxt "STR_POOLCOLL_HEADLINE_BASE"
msgid "Heading"
-msgstr "عنوان رئيسي"
+msgstr "خط العنوان"
#. xoDcy
#: sw/inc/strings.hrc:83
@@ -2613,61 +2613,61 @@ msgstr "تلويحة"
#: sw/inc/strings.hrc:87
msgctxt "STR_POOLCOLL_HEADLINE1"
msgid "Heading 1"
-msgstr "عنوان رئيسي ١"
+msgstr "خط عنوان 1"
#. 9Qw5C
#: sw/inc/strings.hrc:88
msgctxt "STR_POOLCOLL_HEADLINE2"
msgid "Heading 2"
-msgstr "عنوان رئيسي ٢"
+msgstr "خط عنوان 2"
#. x44Y5
#: sw/inc/strings.hrc:89
msgctxt "STR_POOLCOLL_HEADLINE3"
msgid "Heading 3"
-msgstr "عنوان رئيسي ٣"
+msgstr "خط عنوان ٣"
#. Q4MBD
#: sw/inc/strings.hrc:90
msgctxt "STR_POOLCOLL_HEADLINE4"
msgid "Heading 4"
-msgstr "عنوان رئيسي ٤"
+msgstr "خط عنوان ٤"
#. aQXm6
#: sw/inc/strings.hrc:91
msgctxt "STR_POOLCOLL_HEADLINE5"
msgid "Heading 5"
-msgstr "عنوان رئيسي ٥"
+msgstr "خط عنوان ٥"
#. mSpb6
#: sw/inc/strings.hrc:92
msgctxt "STR_POOLCOLL_HEADLINE6"
msgid "Heading 6"
-msgstr "عنوان رئيسي ٦"
+msgstr "خط عنوان ٦"
#. 6w9CD
#: sw/inc/strings.hrc:93
msgctxt "STR_POOLCOLL_HEADLINE7"
msgid "Heading 7"
-msgstr "عنوان رئيسي ٧"
+msgstr "خط عنوان ٧"
#. kJGtA
#: sw/inc/strings.hrc:94
msgctxt "STR_POOLCOLL_HEADLINE8"
msgid "Heading 8"
-msgstr "عنوان رئيسي ٨"
+msgstr "خط عنوان ٨"
#. 56aJ7
#: sw/inc/strings.hrc:95
msgctxt "STR_POOLCOLL_HEADLINE9"
msgid "Heading 9"
-msgstr "عنوان رئيسي ٩"
+msgstr "خط عنوان ٩"
#. Z6AjF
#: sw/inc/strings.hrc:96
msgctxt "STR_POOLCOLL_HEADLINE10"
msgid "Heading 10"
-msgstr "عنوان رئيسي ١٠"
+msgstr "خط عنوان ١٠"
#. 3JoRA
#: sw/inc/strings.hrc:97
@@ -2913,7 +2913,7 @@ msgstr "متابعة القائمة ٥"
#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
-msgstr "الترويس والتذييل"
+msgstr "الرأس والتذييل"
#. qfrao
#: sw/inc/strings.hrc:138
@@ -2925,13 +2925,13 @@ msgstr "الرأس"
#: sw/inc/strings.hrc:139
msgctxt "STR_POOLCOLL_HEADERL"
msgid "Header Left"
-msgstr "الترويسة اليسرى"
+msgstr "يسار الرأس"
#. uEbyw
#: sw/inc/strings.hrc:140
msgctxt "STR_POOLCOLL_HEADERR"
msgid "Header Right"
-msgstr "الترويسة اليمنى"
+msgstr "يمين الرأس"
#. LVGLN
#: sw/inc/strings.hrc:141
@@ -2961,7 +2961,7 @@ msgstr "محتويات الجدول"
#: sw/inc/strings.hrc:145
msgctxt "STR_POOLCOLL_TABLE_HDLN"
msgid "Table Heading"
-msgstr "رأس الجدول"
+msgstr "خط عنوان الجدول"
#. R9Q7p
#: sw/inc/strings.hrc:146
@@ -2997,7 +2997,7 @@ msgstr "رسم توضيحي"
#: sw/inc/strings.hrc:151
msgctxt "STR_POOLCOLL_LABEL_TABLE"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. QFfEo
#: sw/inc/strings.hrc:152
@@ -3033,7 +3033,7 @@ msgstr "المرسِل"
#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
-msgstr "عنوان الفهرس"
+msgstr "خط عنوان الفهرس"
#. sDGWT
#: sw/inc/strings.hrc:158
@@ -3063,7 +3063,7 @@ msgstr "فاصل الفهرس"
#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
-msgstr "عنوان المحتويات"
+msgstr "خط عنوان المحتويات"
#. 2kfKD
#: sw/inc/strings.hrc:163
@@ -3129,7 +3129,7 @@ msgstr "المحتويات ١٠"
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
-msgstr "عنوان فهرس المستخدم"
+msgstr "خط عنوان فهرس المستخدم"
#. p2GRv
#: sw/inc/strings.hrc:174
@@ -3201,7 +3201,7 @@ msgstr "اقتباس"
#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
-msgstr "عنوان فهرس الأشكال"
+msgstr "خط عنوان فهرس الأشكال"
#. rA84j
#: sw/inc/strings.hrc:186
@@ -3213,7 +3213,7 @@ msgstr "فهرس الأشكال ١"
#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
-msgstr "عنوان فهرس الكائنات"
+msgstr "خط عنوان فهرس الكائنات"
#. AAAot
#: sw/inc/strings.hrc:188
@@ -3225,7 +3225,7 @@ msgstr "فهرس الكائنات ١"
#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
-msgstr "عنوان فهرس الجداول"
+msgstr "خط عنوان فهرس الجداول"
#. 5EQKp
#: sw/inc/strings.hrc:190
@@ -3237,7 +3237,7 @@ msgstr "فهرس الجداول ١"
#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
-msgstr "عنوان ثبَت المراجع"
+msgstr "خط عنوان ثبَت المراجع"
#. 7aSPU
#: sw/inc/strings.hrc:192
@@ -3268,7 +3268,7 @@ msgstr "ملحق"
#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Quotations"
-msgstr "الاقتباسات"
+msgstr "تنصيصات"
#. FPDvM
#: sw/inc/strings.hrc:198
@@ -3292,7 +3292,7 @@ msgstr "محتويات القائمة"
#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
-msgstr "عنوان القائمة"
+msgstr "خط عنوان القائمة"
#. DHZmi
#. page style names
@@ -3372,13 +3372,13 @@ msgstr "ترقيم ٣٢١"
#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
-msgstr "ترقيم ABC"
+msgstr "ترقيم أب‌ج"
#. k2FEN
#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
-msgstr "ترقيم abc"
+msgstr "ترقيم أبـ‌جـ"
#. 4Cgku
#: sw/inc/strings.hrc:218
@@ -3397,35 +3397,35 @@ msgstr "ترقيم ivx"
#: sw/inc/strings.hrc:221
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
-msgstr ""
+msgstr "النقطية •"
#. BAvrf
#. Bullet \u2013
#: sw/inc/strings.hrc:223
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
-msgstr ""
+msgstr "النقطية –"
#. hDdJw
#. Bullet \uE4C4
#: sw/inc/strings.hrc:225
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
-msgstr ""
+msgstr "النقطية "
#. uBKzE
#. Bullet \uE49E
#: sw/inc/strings.hrc:227
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
-msgstr ""
+msgstr "النقطية "
#. 54eoC
#. Bullet \uE20B
#: sw/inc/strings.hrc:229
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
-msgstr ""
+msgstr "النقطية "
#. J7DDZ
#: sw/inc/strings.hrc:230
@@ -3462,7 +3462,7 @@ msgstr "عمودين غير متساويين (الثاني أكبر من الأ
#: sw/inc/strings.hrc:236
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
-msgstr ""
+msgstr "طراز الجدول المبدئي"
#. fCbrD
#: sw/inc/strings.hrc:238
@@ -3510,7 +3510,7 @@ msgstr "مظروف"
#: sw/inc/strings.hrc:245
msgctxt "STR_LAB_TITLE"
msgid "Labels"
-msgstr "التسميات"
+msgstr "اللصائق"
#. 2otxp
#: sw/inc/strings.hrc:247
@@ -3534,7 +3534,7 @@ msgstr "تعذّر إنشاء المستند."
#: sw/inc/strings.hrc:250
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
-msgstr "تعذر العثور على المُرشّح."
+msgstr "لم يُعثر على المُرشّح."
#. HhLap
#: sw/inc/strings.hrc:251
@@ -3582,7 +3582,7 @@ msgstr ""
#: sw/inc/strings.hrc:258
msgctxt "SW_STR_NONE"
msgid "[None]"
-msgstr "[بلا]"
+msgstr "[بِلا]"
#. C4tz3
#: sw/inc/strings.hrc:259
@@ -3715,7 +3715,7 @@ msgstr "تكييف الكائنات..."
#: sw/inc/strings.hrc:281
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. J4m7R
#: sw/inc/strings.hrc:282
@@ -3751,7 +3751,7 @@ msgstr "قسم"
#: sw/inc/strings.hrc:287
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. Vk8M5
#: sw/inc/strings.hrc:288
@@ -4116,7 +4116,7 @@ msgstr "الفأرة فوق الكائن"
#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
-msgstr "شغل الرابط"
+msgstr "إطلاق الارتباط التشعبي"
#. BXpj4
#: sw/inc/strings.hrc:354
@@ -4170,7 +4170,7 @@ msgstr "تحريك الإطار"
#: sw/inc/strings.hrc:362
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
-msgstr "عناوين رئيسية"
+msgstr "خطوط العناوين"
#. S3JCM
#: sw/inc/strings.hrc:363
@@ -4182,13 +4182,13 @@ msgstr "جداول"
#: sw/inc/strings.hrc:364
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
-msgstr ""
+msgstr "إطارات"
#. YFZFi
#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
-msgstr "الصّور"
+msgstr "صور"
#. bq6DJ
#: sw/inc/strings.hrc:366
@@ -4212,7 +4212,7 @@ msgstr "الأقسام"
#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
-msgstr "روابط"
+msgstr "ارتباطات تشعبية"
#. wMqRF
#: sw/inc/strings.hrc:370
@@ -4236,13 +4236,13 @@ msgstr "كائنات رسومية"
#: sw/inc/strings.hrc:373
msgctxt "STR_CONTENT_TYPE_TEXTFIELD"
msgid "Fields"
-msgstr ""
+msgstr "حقول"
#. F5aQ8
#: sw/inc/strings.hrc:374
msgctxt "STR_CONTENT_TYPE_FOOTNOTE"
msgid "Footnotes and Endnotes"
-msgstr ""
+msgstr "حواشي وحواشي ختامية"
#. KRE4o
#: sw/inc/strings.hrc:375
@@ -4254,31 +4254,31 @@ msgstr "تعليقات"
#: sw/inc/strings.hrc:376
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
-msgstr "عنوان رئيسي ١"
+msgstr "خط عنوان 1"
#. kbfiB
#: sw/inc/strings.hrc:377
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
-msgstr "هذا المحتوى من الفصل الأول. هذا مدخل دليل المستخدم."
+msgstr "هذا المحتوى من الفصل الأول. هذا مُدخَل دليل ملفات المستخدم."
#. wcSRn
#: sw/inc/strings.hrc:378
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
-msgstr "عنوان رئيسي ١.١"
+msgstr "خط عنوان ١.١"
#. BqQGK
#: sw/inc/strings.hrc:379
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from chapter 1.1. This is the entry for the table of contents."
-msgstr "هذا المحتوى من الفصل ١.١. هذا مدخل جدول المحتويات."
+msgstr "هذا المحتوى من الفصل ١.١. هذا هو مُدخَل جدول المحتويات."
#. bymGA
#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
-msgstr "عنوان رئيسي ١.٢"
+msgstr "خط عنوان ١.٢"
#. 6MLmL
#: sw/inc/strings.hrc:381
@@ -4302,19 +4302,19 @@ msgstr "صورة ١: هذه هي الصّورة ١"
#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
-msgstr ""
+msgstr "فصل"
#. s9w3k
#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
-msgstr ""
+msgstr "كلمة أساسية"
#. 8bbUo
#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
-msgstr ""
+msgstr "مُدخَل دليل ملفات المستخدم"
#. SoBBB
#: sw/inc/strings.hrc:387
@@ -4344,7 +4344,7 @@ msgstr ""
#: sw/inc/strings.hrc:391
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
-msgstr "عنوان رئيسي"
+msgstr "خط العنوان"
#. dGJ5Q
#: sw/inc/strings.hrc:392
@@ -4356,7 +4356,7 @@ msgstr "جدول"
#: sw/inc/strings.hrc:393
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
-msgstr ""
+msgstr "إطار"
#. o2wx8
#: sw/inc/strings.hrc:394
@@ -4416,7 +4416,7 @@ msgstr "كائن درو"
#: sw/inc/strings.hrc:403
msgctxt "STR_CONTENT_TYPE_SINGLE_TEXTFIELD"
msgid "Field"
-msgstr ""
+msgstr "حقل"
#. mbDG4
#: sw/inc/strings.hrc:404
@@ -4468,19 +4468,19 @@ msgstr ""
#: sw/inc/strings.hrc:411
msgctxt "STR_HYPH_TITLE"
msgid "Hyphenation"
-msgstr "فصل المقاطع"
+msgstr "وصل الكلمات"
#. EDxsk
#: sw/inc/strings.hrc:412
msgctxt "STR_HYPH_MISSING"
msgid "Missing hyphenation data"
-msgstr ""
+msgstr "بيانات وصل مفقودة"
#. TEP66
#: sw/inc/strings.hrc:413
msgctxt "STR_HYPH_MISSING"
msgid "Please install the hyphenation package for locale “%1”."
-msgstr ""
+msgstr "لطفًا ثبّت حزمة الوصل للمحلية “%1”."
#. bJFYS
#: sw/inc/strings.hrc:414
@@ -4510,7 +4510,7 @@ msgstr ""
#: sw/inc/strings.hrc:418
msgctxt "STR_HEADER_FOOTER"
msgid "Header/Footer"
-msgstr ""
+msgstr "رأس\\تذييل"
#. MEN2d
#. Undo
@@ -4697,7 +4697,7 @@ msgstr "تنسيق تلقائي"
#: sw/inc/strings.hrc:451
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
-msgstr "رأس الجدول"
+msgstr "خط عنوان الجدول"
#. gnndv
#: sw/inc/strings.hrc:452
@@ -4751,43 +4751,43 @@ msgstr "تصحيح النص"
#: sw/inc/strings.hrc:460
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline level"
-msgstr ""
+msgstr "رقِّ/أنزِل مستوى المخطط"
#. Mmk22
#: sw/inc/strings.hrc:461
msgctxt "STR_OUTLINE_UD"
msgid "Move chapter up/down"
-msgstr ""
+msgstr "انقل الفصل لأعلى/لأسفل"
#. 3UGKP
#: sw/inc/strings.hrc:462
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
-msgstr ""
+msgstr "عدّل المخطط"
#. RjcRH
#: sw/inc/strings.hrc:463
msgctxt "STR_INSNUM"
msgid "Insert numbering"
-msgstr "إدراج ترقيم"
+msgstr "إدراج تعداداً"
#. RdWjx
#: sw/inc/strings.hrc:464
msgctxt "STR_NUMUP"
msgid "Demote list level"
-msgstr ""
+msgstr "خفّض مستوى القائمة"
#. VpBDP
#: sw/inc/strings.hrc:465
msgctxt "STR_NUMDOWN"
msgid "Promote list level"
-msgstr ""
+msgstr "رقِّ مستوى القائمة"
#. FGciC
#: sw/inc/strings.hrc:466
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
-msgstr "نقل الفقرات"
+msgstr "انقل الفقرات"
#. WdMCK
#: sw/inc/strings.hrc:467
@@ -4805,13 +4805,13 @@ msgstr "تشغيل/إيقاف الترقيم"
#: sw/inc/strings.hrc:469
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
-msgstr "زيادة الإزاحة"
+msgstr "زِد الإزاحة"
#. aJxcG
#: sw/inc/strings.hrc:470
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
-msgstr "تقليل الإزاحة"
+msgstr "قلّل الإزاحة"
#. 4GP7c
#: sw/inc/strings.hrc:471
@@ -4949,7 +4949,7 @@ msgstr "حذف صف/عمود"
#: sw/inc/strings.hrc:493
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
-msgstr "حذف عمود"
+msgstr "احذف العمود"
#. 9SF9L
#: sw/inc/strings.hrc:494
@@ -5249,7 +5249,7 @@ msgstr "أعِد تسمية طراز الصفحة: $1 $2 $3"
#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
-msgstr "تغيّر الترويس/التذييل"
+msgstr "تغيّرَ الرأس/التذييل"
#. tGyeC
#: sw/inc/strings.hrc:542
@@ -5339,13 +5339,13 @@ msgstr "تغيير اسم العلامة: $1 $2 $3"
#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
-msgstr "إدراج مدخل في الفهرس"
+msgstr "أدرج مُدخَل فهرس"
#. fbidx
#: sw/inc/strings.hrc:557
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
-msgstr "حذف مدخل من الفهرس"
+msgstr "احذف مُدخَل فهرس"
#. WCDy7
#: sw/inc/strings.hrc:558
@@ -5502,13 +5502,13 @@ msgstr "تحديث نمط الجدول: $1"
#: sw/inc/strings.hrc:583
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
-msgstr "حذف الجدول"
+msgstr "احذف الجدول"
#. KSMpJ
#: sw/inc/strings.hrc:584
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
-msgstr ""
+msgstr "أدرِج من حقل"
#. 2zJmG
#: sw/inc/strings.hrc:585
@@ -5532,13 +5532,13 @@ msgstr "عرض المستند"
#: sw/inc/strings.hrc:589
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
-msgstr "الترويسة $(ARG1)"
+msgstr "الرأس $(ARG1)"
#. zKdDR
#: sw/inc/strings.hrc:590
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
-msgstr "صفحة الترويسة $(ARG1)"
+msgstr "صفحة الرأس $(ARG1)"
#. NhFrV
#: sw/inc/strings.hrc:591
@@ -5694,13 +5694,13 @@ msgstr "الفقرات"
#: sw/inc/strings.hrc:619
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
-msgstr "الإطارات"
+msgstr "إطار"
#. Cqjn8
#: sw/inc/strings.hrc:620
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
-msgstr "الصّفحات"
+msgstr "صفحات"
#. FFZEr
#: sw/inc/strings.hrc:621
@@ -5712,7 +5712,7 @@ msgstr ""
#: sw/inc/strings.hrc:622
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
-msgstr "الجداول"
+msgstr "جدول"
#. XUhuM
#: sw/inc/strings.hrc:623
@@ -5760,7 +5760,7 @@ msgstr "خل~فية الصفحة"
#: sw/inc/strings.hrc:631
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
-msgstr ""
+msgstr "~صور وكائنات رسومية أخرى"
#. L6GSj
#: sw/inc/strings.hrc:632
@@ -5886,7 +5886,7 @@ msgstr "ضعها في الحواف"
#: sw/inc/strings.hrc:653
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
-msgstr "دالّات"
+msgstr "الدوال"
#. D3RCG
#: sw/inc/strings.hrc:654
@@ -5964,7 +5964,7 @@ msgstr "المبدئيّ"
#: sw/inc/strings.hrc:667
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
-msgstr ""
+msgstr "تركيز"
#. BYRpF
#: sw/inc/strings.hrc:668
@@ -6030,7 +6030,7 @@ msgstr ""
#: sw/inc/strings.hrc:679
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
-msgstr "أدرج كرابط"
+msgstr "أدرج كارتباط تشعبي"
#. sdfGe
#: sw/inc/strings.hrc:680
@@ -6048,7 +6048,7 @@ msgstr "أدرج كنسخة"
#: sw/inc/strings.hrc:682
msgctxt "STR_DISPLAY"
msgid "Display"
-msgstr "عرض"
+msgstr "عَرض"
#. 3VXp5
#: sw/inc/strings.hrc:683
@@ -6289,7 +6289,7 @@ msgstr "خطأ: لم يُعثر على مصدر المرجع"
#: sw/inc/strings.hrc:727
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. KRD6s
#: sw/inc/strings.hrc:728
@@ -6596,7 +6596,7 @@ msgstr "عنوان الكتاب"
#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
-msgstr "الفصل"
+msgstr "فصل"
#. GXqxF
#: sw/inc/strings.hrc:780
@@ -6705,7 +6705,7 @@ msgstr "السنة"
#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
-msgstr "المسار"
+msgstr "رابط"
#. xFG3c
#: sw/inc/strings.hrc:798
@@ -6747,19 +6747,19 @@ msgstr "ISBN"
#: sw/inc/strings.hrc:804
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
-msgstr ""
+msgstr "نسخة محلية"
#. eFnnx
#: sw/inc/strings.hrc:806
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
-msgstr "حرّر مُدخل في الفهرس"
+msgstr "حرّر مُدخَل فهرس"
#. EHTHH
#: sw/inc/strings.hrc:807
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
-msgstr "أدرج مُدخل في الفهرس"
+msgstr "أدرج مُدخَل فهرس"
#. D2gkA
#: sw/inc/strings.hrc:808
@@ -6801,7 +6801,7 @@ msgstr "هل تريد حذف النص التلقائي؟"
#: sw/inc/strings.hrc:816
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
-msgstr "هل تريد حذف الفئة "
+msgstr "حذف الصنف "
#. qndNh
#: sw/inc/strings.hrc:817
@@ -7071,7 +7071,7 @@ msgstr "‏dBase‏ (*.dbf)"
#: sw/inc/strings.hrc:865
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel (*.xls;*.xlsx)"
-msgstr "ميكروسوفت إكسل (*.xls;*.xlsx)"
+msgstr "ميكروسوفت أكسل (*.xls;*.xlsx)"
#. zAUu8
#: sw/inc/strings.hrc:866
@@ -7164,7 +7164,7 @@ msgstr "استثنِ المستلم"
#: sw/inc/strings.hrc:881
msgctxt "ST_FINISH"
msgid "~Finish"
-msgstr "أ~نهِ"
+msgstr "إنها~ء"
#. L5FEG
#: sw/inc/strings.hrc:882
@@ -7176,7 +7176,7 @@ msgstr "مرشد دمج المراسلات"
#: sw/inc/strings.hrc:884
msgctxt "ST_TABLE"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. v9hEB
#: sw/inc/strings.hrc:885
@@ -7234,7 +7234,7 @@ msgstr "اسم قاعدة البيانات"
#: sw/inc/strings.hrc:899
msgctxt "STR_CHAPTERFLD"
msgid "Chapter"
-msgstr "الفصل"
+msgstr "فصل"
#. wYWy2
#: sw/inc/strings.hrc:900
@@ -7665,7 +7665,7 @@ msgstr "اسم الملف"
#: sw/inc/strings.hrc:986
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
-msgstr "اسم الملف بدون امتداد"
+msgstr "اسم الملف بِلا امتداد"
#. BCzy8
#: sw/inc/strings.hrc:987
@@ -7881,7 +7881,7 @@ msgstr "رقم الصفحة (بلا طراز)"
#: sw/inc/strings.hrc:1037
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
-msgstr "الفصل"
+msgstr "فصل"
#. VBMno
#: sw/inc/strings.hrc:1038
@@ -7893,13 +7893,13 @@ msgstr "\"أعلى\"/\"أسفل\""
#: sw/inc/strings.hrc:1039
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
-msgstr "رقم الصفحة (ذو طراز)"
+msgstr "رقم الصفحة (بطراز)"
#. CQitd
#: sw/inc/strings.hrc:1040
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
-msgstr "الفئة و الرقم"
+msgstr "الصنف و الرقم"
#. BsvCn
#: sw/inc/strings.hrc:1041
@@ -7911,7 +7911,7 @@ msgstr "نص الواصفة"
#: sw/inc/strings.hrc:1042
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. QBGit
#: sw/inc/strings.hrc:1043
@@ -8067,7 +8067,7 @@ msgstr "انحدار رأسي"
#: sw/inc/strings.hrc:1076
msgctxt "STR_WIDTH"
msgid "Width"
-msgstr "العرض"
+msgstr "العُرض"
#. rdxcb
#: sw/inc/strings.hrc:1077
@@ -8230,19 +8230,19 @@ msgstr "الرأس"
#: sw/inc/strings.hrc:1106
msgctxt "STR_NO_HEADER"
msgid "No header"
-msgstr "لا ترويسة"
+msgstr "لا رأس"
#. 8Jgfg
#: sw/inc/strings.hrc:1107
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
-msgstr ""
+msgstr "الأمثل"
#. HEuGy
#: sw/inc/strings.hrc:1108
msgctxt "STR_SURROUND_NONE"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. 4tA4q
#: sw/inc/strings.hrc:1109
@@ -8254,7 +8254,7 @@ msgstr "خلال"
#: sw/inc/strings.hrc:1110
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
-msgstr ""
+msgstr "موازٍ"
#. hyEQ5
#: sw/inc/strings.hrc:1111
@@ -8450,7 +8450,7 @@ msgstr "تقسيم"
#: sw/inc/strings.hrc:1142
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
-msgstr ""
+msgstr "طراز القائمة: (%LISTSTYLENAME)"
#. HvZBm
#: sw/inc/strings.hrc:1143
@@ -8550,10 +8550,9 @@ msgstr "وضع الرسوم: "
#. RXuUF
#: sw/inc/strings.hrc:1159
-#, fuzzy
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
-msgstr "_قياسي"
+msgstr "قياسي"
#. kbALJ
#: sw/inc/strings.hrc:1160
@@ -8585,7 +8584,7 @@ msgstr "اقتباس"
#: sw/inc/strings.hrc:1164
msgctxt "STR_GRID_NONE"
msgid "No grid"
-msgstr "بدون شبكة"
+msgstr "بِلا شبكة"
#. HEuEv
#: sw/inc/strings.hrc:1165
@@ -8625,20 +8624,18 @@ msgstr "لا تدمج الحدود"
#. 3874B
#: sw/inc/strings.hrc:1172
-#, fuzzy
msgctxt "ST_TBL"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. T9JAj
#: sw/inc/strings.hrc:1173
msgctxt "ST_FRM"
msgid "Frame"
-msgstr ""
+msgstr "إطار"
#. Fsnm6
#: sw/inc/strings.hrc:1174
-#, fuzzy
msgctxt "ST_PGE"
msgid "Page"
msgstr "الصفحة"
@@ -8682,10 +8679,9 @@ msgstr "كائن OLE"
#. h5QQ8
#: sw/inc/strings.hrc:1181
-#, fuzzy
msgctxt "ST_OUTL"
msgid "Headings"
-msgstr "عناوين رئيسية"
+msgstr "خطوط العناوين"
#. Cbktp
#: sw/inc/strings.hrc:1182
@@ -8703,7 +8699,7 @@ msgstr "حاشية ذيلية"
#: sw/inc/strings.hrc:1184
msgctxt "ST_MARK"
msgid "Reminder"
-msgstr ""
+msgstr "تذكير"
#. nDFKa
#: sw/inc/strings.hrc:1185
@@ -8713,46 +8709,45 @@ msgstr "تعليق"
#. qpbDE
#: sw/inc/strings.hrc:1186
-#, fuzzy
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
-msgstr "تكرار البحث"
+msgstr "كرر البحث"
#. ipxfH
#: sw/inc/strings.hrc:1187
msgctxt "ST_INDEX_ENTRY"
msgid "Index entry"
-msgstr ""
+msgstr "مُدخَل فهرس"
#. sfmff
#: sw/inc/strings.hrc:1188
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
-msgstr ""
+msgstr "صيغة جدول"
#. DtkuT
#: sw/inc/strings.hrc:1189
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
-msgstr ""
+msgstr "صيغة جدول خاطئة"
#. A6Vgk
#: sw/inc/strings.hrc:1190
msgctxt "ST_RECENCY"
msgid "Recency"
-msgstr ""
+msgstr "حديثًا"
#. pCp7u
#: sw/inc/strings.hrc:1191
msgctxt "ST_FIELD"
msgid "Field"
-msgstr ""
+msgstr "حقل"
#. LYuHA
#: sw/inc/strings.hrc:1192
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
-msgstr ""
+msgstr "الحقل بحسب النوع"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
@@ -8765,7 +8760,7 @@ msgstr "الجدول التالي"
#: sw/inc/strings.hrc:1195
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
-msgstr ""
+msgstr "الإطار التالي"
#. M4BCA
#: sw/inc/strings.hrc:1196
@@ -8813,13 +8808,13 @@ msgstr "كائن OLE التالي"
#: sw/inc/strings.hrc:1203
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
-msgstr "العنوان الرئيسي التالي"
+msgstr "خط العنوان التالي"
#. skdRc
#: sw/inc/strings.hrc:1204
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
-msgstr ""
+msgstr "التحديد التالي"
#. RBFga
#: sw/inc/strings.hrc:1205
@@ -8831,7 +8826,7 @@ msgstr "الحاشية التالية"
#: sw/inc/strings.hrc:1206
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
-msgstr ""
+msgstr "التذكير التالي"
#. mFCfp
#: sw/inc/strings.hrc:1207
@@ -8847,10 +8842,9 @@ msgstr ""
#. TXYkA
#: sw/inc/strings.hrc:1209
-#, fuzzy
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
-msgstr "إدراج مدخل في الفهرس"
+msgstr "مُدخَل الفهرس التالي"
#. EyvbV
#: sw/inc/strings.hrc:1210
@@ -8910,7 +8904,7 @@ msgstr "كائن OLE السابق"
#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
-msgstr "العنوان الرئيسي السابق"
+msgstr "خط العنوان السابق"
#. CzLBr
#: sw/inc/strings.hrc:1220
@@ -8946,43 +8940,43 @@ msgstr "تابع البحث خلفًا"
#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
-msgstr "مدخلة الفهرس السابقة"
+msgstr "مُدخَل الفهرس السابق"
#. VR6DX
#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
-msgstr "معادلة الجدول السابقة"
+msgstr "صيغة الجدول السابقة"
#. GqESF
#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
-msgstr "معادلة الجدول التالية"
+msgstr "صيغة الجدول التالية"
#. gBgxo
#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
-msgstr "معادلة الجدول الخاطئة السابقة"
+msgstr "صيغة الجدول الخاطئة السابقة"
#. UAon9
#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
-msgstr "معادلة الجدول الخاطئة التالية"
+msgstr "صيغة الجدول الخاطئة التالية"
#. L2Apv
#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
-msgstr ""
+msgstr "ارجع"
#. jCsGs
#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
-msgstr ""
+msgstr "تقدم"
#. o3BBz
#: sw/inc/strings.hrc:1232
@@ -9107,25 +9101,25 @@ msgstr ""
#: sw/inc/strings.hrc:1252
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
-msgstr "الترويسة (%1)"
+msgstr "الرأس (%1)"
#. AYjgB
#: sw/inc/strings.hrc:1253
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
-msgstr "ترويسة الصفحة الأولى (%1)"
+msgstr "رأس الصفحة الأولى (%1)"
#. qVX2k
#: sw/inc/strings.hrc:1254
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
-msgstr "ترويسة الصفحة اليسرى (%1)"
+msgstr "رأس الصفحة اليسرى (%1)"
#. DSg3b
#: sw/inc/strings.hrc:1255
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
-msgstr "ترويسة الصفحة اليمنى (%1)"
+msgstr "رأس الصفحة اليمنى (%1)"
#. 6GzuM
#: sw/inc/strings.hrc:1256
@@ -9155,13 +9149,13 @@ msgstr "تذييل الصفحة اليمنى (%1)"
#: sw/inc/strings.hrc:1260
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
-msgstr "احذف الترويسة..."
+msgstr "احذف الرأس..."
#. wL3Fr
#: sw/inc/strings.hrc:1261
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
-msgstr "نسّق الترويسة..."
+msgstr "نسّق الرأس..."
#. DrAUe
#: sw/inc/strings.hrc:1262
@@ -9215,7 +9209,7 @@ msgstr "إصدارة ملفّ الصّورة هذا غير مدعومة"
#: sw/inc/strings.hrc:1273
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
-msgstr "تعذّر العثور على مرشّح الصورة"
+msgstr "لم يُعثر على مرشّح الصورة"
#. tEqyq
#: sw/inc/strings.hrc:1274
@@ -9271,280 +9265,292 @@ msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "أنماط الفقرة المُطبّقة"
-#. sgEbW
+#. WghdP
#: sw/inc/strings.hrc:1283
+msgctxt "STR_REDLINE_COMMENT_ADDED"
+msgid "Comment added"
+msgstr ""
+
+#. 2KNu9
+#: sw/inc/strings.hrc:1284
+msgctxt "STR_REDLINE_COMMENT_DELETED"
+msgid "Comment deleted"
+msgstr ""
+
+#. sgEbW
+#: sw/inc/strings.hrc:1285
msgctxt "STR_PAGE"
msgid "Page "
msgstr "الصفحة "
#. 3DpEx
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1286
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "الصفحة %1 من %2"
#. HSbzS
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1287
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "الصفحة %1 من %2 (الصّفحة %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1288
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:1288
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "فقرة"
#. aAtmp
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "صورة"
#. UBDMK
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "كائن OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "إطار"
#. hfJns
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "جدول"
#. GRqNY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1295
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "صف جدول"
#. CDQY4
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1296
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "خلية جدول"
#. 2Db9T
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1297
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "الصفحة"
#. 63FuG
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1298
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "الرأس"
#. aDuAY
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1299
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "تذييل"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1302
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "ملف %PRODUCTNAME %PRODUCTVERSION HTML"
#. y2GBv
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TITLE"
msgid "Title"
msgstr "العنوان"
#. AipGR
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1305
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "الفاصل"
#. CoSEf
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1306
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "المستوى "
#. JdTF4
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1307
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
-msgstr "تعذر العثور على الملف ”%1“ في المسار ”%2“."
+msgstr "لم يُعثر على الملف، ”%1“ في مسار ”%2“."
#. zRWDZ
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1308
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "فهرس معرف من المستخدم"
#. t5uWs
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1309
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<لا شيء>"
#. vSSnJ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1310
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<لا شيء>"
#. NSx98
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1311
msgctxt "STR_DELIM"
msgid "S"
msgstr ""
#. hK8CX
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr ""
#. pGAb4
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr ""
#. XWaFn
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr ""
#. 5A4jw
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "رقم الفصل"
#. FH365
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "مُدخَل"
#. xZjtZ
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
-msgstr "علامة جدولة"
+msgstr "توقُّف مفتاح التبويب"
#. aXW8y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "النص"
#. MCUd2
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1324
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "رقم الصفحة"
#. pXqw3
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "معلومات الفصل"
#. DRBSD
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1326
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "بداية الرابط"
#. Ytn5g
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1327
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "نهاية الرابط"
#. hRo3J
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1328
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "مُدخل ثبَت المراجع: "
#. ZKG5v
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1329
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "نمط الأحرف: "
#. d9BES
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1330
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1331
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:1330
+#: sw/inc/strings.hrc:1332
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1333
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:1332
+#: sw/inc/strings.hrc:1334
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr ""
@@ -9553,259 +9559,259 @@ msgstr ""
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "أ~على الخط الأساسي"
#. 5GiEA
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "أ~سفل الخط الأساسي"
#. sdyVF
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "و~سط الخط الأساسي"
#. NAXyZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1342
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "أدرج كائن"
#. 5C6Rc
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1343
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "حرّر الكائن"
#. 3QFYB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1344
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (قالب: "
#. oUhnK
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1345
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "الحدود"
#. T2SH2
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1346
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "الخلفية"
#. K6Yvs
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1348
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(نمط الفقرة: "
#. Fsanh
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1349
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 "لا يمكن تطبيق أرقام الصفحات على الصفحة الحالية. الأرقام الفردية للصفحات اليمنى والأرقام الزوجية للصفحات اليسرى."
+msgstr "لا يمكن تطبيق أرقام الصفحات على الصفحة الحالية. يمكن استخدام الأرقام الزوجية على الصفحات اليمنى والأرقام الفردية على الصفحات اليسرى."
#. VZnJf
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1351
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "مستند %PRODUCTNAME‏ %PRODUCTVERSION رئيسي"
#. kWe9j
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1353
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
-msgstr "سيحذف اتّصال الملفّ متحويات القسم الحاليّ. أأتّصل بأيّ حال؟"
+msgstr "الاتصال بالملفّ سيحذف محتويات القسم الحالي. أتّصل بأيّ حال؟"
#. dLuAF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1354
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "كلمة السر المدخلة غير صالحة."
#. oUR7Y
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1355
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "لم تُضبط كلمة السر."
#. GBVqD
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1357
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
-msgstr ""
+msgstr "اكتمل الوصل"
#. rZBXF
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1358
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "بلا (لا تدقّق الإملاء)"
#. Z8EjG
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1359
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "صفّر إلى اللغة المبدئيّة"
#. YEXdS
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1360
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "أكثر..."
#. QecQ3
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1361
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "ت~جاهل"
#. aaiBM
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1362
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "التّفسيرات..."
#. kSDGu
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1364
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "تعذّر دمج المستندات."
#. FqsCt
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1366
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:1365
+#: sw/inc/strings.hrc:1367
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "تعذّر تحميل المصدر."
#. K9qMS
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1368
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "لم تعيَّن طابعة تحت أدوات/خيارات/%1/طباعة."
#. XWQ8w
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1369
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "مستند HTML"
#. qVZBx
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1370
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "مستند نصّيّ"
#. qmmPU
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "المصدر غير محدّد."
#. 2LgDJ
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1372
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "المستوى "
#. AcAD8
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1373
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "المخطط العام "
#. DE9FZ
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1374
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "حرّر الحاشية/الحاشية الختامية"
#. EzBCZ
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1375
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "استُبدل مفتاح البحث XX مرّة."
#. fgywB
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1376
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "الصّفّ "
#. GUc4a
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1377
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "العمود "
#. yMyuo
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~صدّر المصدر..."
#. ywFCb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1379
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~صدّر نسخة عن المصدر…"
#. BT3M3
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1381
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~تابع"
#. ZR9aw
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1382
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "يرسل إلى: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1383
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "نجح الإرسال"
#. fmHmE
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1384
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "فشل الإرسال"
#. yAAPM
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1386
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:1386
+#: sw/inc/strings.hrc:1388
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "صيغة نص"
#. RmBFW
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1390
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "لا عناصر محددة"
@@ -9814,7 +9820,7 @@ msgstr "لا عناصر محددة"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1396
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9823,268 +9829,254 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1401
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1402
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1403
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1404
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "وقّعها"
#. BK7ub
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1405
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "توقيع الفقرة"
#. kZKCf
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1407
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "بطاقات عمل"
#. ECFij
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1409
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "إعدادات البريد الالكتروني"
#. PwrB9
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1411
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "أدرج"
#. NL48o
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1412
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "احذف"
#. PW4Bz
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1413
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "الصفات"
#. yfgiq
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "ابحث عن مصطلح"
#. fhLzk
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "مُدخلة بديلة"
#. gD4D3
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "المفتاح الأول"
#. BFszo
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "المفتاح الثاني"
#. EoAB8
-#: sw/inc/strings.hrc:1417
-#, fuzzy
+#: sw/inc/strings.hrc:1419
msgctxt "createautomarkdialog|comment"
msgid "Comment"
-msgstr "التعليقات"
+msgstr "تعليق"
#. Shstx
-#: sw/inc/strings.hrc:1418
+#: sw/inc/strings.hrc:1420
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "طابق حالة الأحرف"
#. 8Cjvb
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1421
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "الكلمة فقط"
#. zD8rb
-#: sw/inc/strings.hrc:1420
+#: sw/inc/strings.hrc:1422
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "نعم"
#. 4tTop
-#: sw/inc/strings.hrc:1421
+#: sw/inc/strings.hrc:1423
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "لا"
#. KhKwa
-#: sw/inc/strings.hrc:1423
+#: sw/inc/strings.hrc:1425
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "مخصص"
#. YiRsr
-#: sw/inc/utlui.hrc:27
+#: sw/inc/utlui.hrc:29
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Remove empty paragraphs"
msgstr "أزِل الفقرات الخالية"
#. zWFE6
-#: sw/inc/utlui.hrc:28
+#: sw/inc/utlui.hrc:30
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Use replacement table"
msgstr "استخدم جدول الاستبدال"
#. EQfLp
-#: sw/inc/utlui.hrc:29
+#: sw/inc/utlui.hrc:31
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Correct TWo INitial CApitals"
-msgstr "تصحيح الحرفين الاستهلاليين"
+msgstr "تصحيح الحرفين الاستهلاليين الكبيرين"
#. JBCDA
-#: sw/inc/utlui.hrc:30
+#: sw/inc/utlui.hrc:32
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Capitalize first letter of sentences"
msgstr "ابدأ كل جملة بحرف كبير"
#. eGLb9
-#: sw/inc/utlui.hrc:31
+#: sw/inc/utlui.hrc:33
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace \"standard\" quotes with %1custom%2 quotes"
msgstr "استبدال علامات الاقتباس \"القياسية\" بعلامات اقتباس %1 \\bمخصصة%2"
#. dgZCx
-#: sw/inc/utlui.hrc:32
+#: sw/inc/utlui.hrc:34
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace Custom Styles"
msgstr "استبدل الطُرُز المخصصة"
#. zXHk9
-#: sw/inc/utlui.hrc:33
-#, fuzzy
+#: sw/inc/utlui.hrc:35
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Bullets replaced"
-msgstr "استبدلِت النقاط"
+msgstr "النقاط المستبدَلة"
#. p7V6t
-#: sw/inc/utlui.hrc:34
-#, fuzzy
+#: sw/inc/utlui.hrc:36
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic _underline_"
-msgstr "_خط تحتي_ تلقائي"
+msgstr "_تسطير تلقائي_"
#. Hzt7q
-#: sw/inc/utlui.hrc:35
-#, fuzzy
+#: sw/inc/utlui.hrc:37
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic *bold*"
-msgstr "*عريض* تلقائي"
+msgstr "*ثخين* تلقائي"
#. oMfhs
-#: sw/inc/utlui.hrc:36
-#, fuzzy
+#: sw/inc/utlui.hrc:38
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1/2 ... with ½ ..."
-msgstr "استبدال 1/2 ... بـ½..."
+msgstr "استبدل 1\\2 ... بـ ½..."
#. UCK6y
-#: sw/inc/utlui.hrc:37
-#, fuzzy
+#: sw/inc/utlui.hrc:39
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "URL recognition"
-msgstr "التعرف على المسارات"
+msgstr "التعرف على الروابط"
#. MD9fC
-#: sw/inc/utlui.hrc:38
+#: sw/inc/utlui.hrc:40
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace dashes"
msgstr "استبدل الشُرَط"
#. YABTx
-#: sw/inc/utlui.hrc:39
-#, fuzzy
+#: sw/inc/utlui.hrc:41
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1st... with 1^st..."
-msgstr "استبدال 1st ... بـ1^st..."
+msgstr "استبدل 1st ... بـ 1^st..."
#. ebBjY
-#: sw/inc/utlui.hrc:40
-#, fuzzy
+#: sw/inc/utlui.hrc:42
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine single line paragraphs"
-msgstr "دمج الفقرات ذات السطر الواحد"
+msgstr "ركّب الفقرات ذات السطر الواحد"
#. Gtaxa
-#: sw/inc/utlui.hrc:41
-#, fuzzy
+#: sw/inc/utlui.hrc:43
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body\" Style"
-msgstr "اختر النمط ”متن النص“"
+msgstr "عيّن طراز ”متن النص“"
#. P8xFp
-#: sw/inc/utlui.hrc:42 sw/inc/utlui.hrc:44
-#, fuzzy
+#: sw/inc/utlui.hrc:44 sw/inc/utlui.hrc:46
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body indent\" Style"
-msgstr "اختر النمط ”إزاحة متن النص“"
+msgstr "عيّن طراز ”إزاحة متن النص“"
#. UUEwQ
-#: sw/inc/utlui.hrc:43
-#, fuzzy
+#: sw/inc/utlui.hrc:45
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Hanging indent\" Style"
-msgstr "اختر النمط ”إزاحة معلّقة“"
+msgstr "عيّن طراز ”إزاحة معلّقة“"
#. qv2KD
-#: sw/inc/utlui.hrc:45
-#, fuzzy
+#: sw/inc/utlui.hrc:47
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Heading $(ARG1)\" Style"
-msgstr "اختر النمط ”عنوان رئيسي $(ARG1)“"
+msgstr "عيّن طراز ”خط عنوان $(ARG1)“"
#. orFXE
-#: sw/inc/utlui.hrc:46
-#, fuzzy
+#: sw/inc/utlui.hrc:48
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Bullet\" or \"Numbering\" Style"
-msgstr "اختر نمط ”نقاط“ أو ”ترقيم“"
+msgstr "عيّن طراز ”نقاط“ أو ”تعداد“"
#. yGoaB
-#: sw/inc/utlui.hrc:47
-#, fuzzy
+#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine paragraphs"
-msgstr "ضمّ الفقرات"
+msgstr "ركّب الفقرات"
#. rpT9U
-#: sw/inc/utlui.hrc:48
+#: sw/inc/utlui.hrc:50
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "أضف مسافة غير فاصلة"
#. FHPwi
-#: sw/inc/utlui.hrc:49
+#: sw/inc/utlui.hrc:51
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
msgstr ""
@@ -10189,7 +10181,7 @@ msgstr "انقل لأعلى"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:218
msgctxt "addressblockdialog|extended_tip|up"
msgid "Select an item in the list and click an arrow button to move the item."
-msgstr ""
+msgstr "حدد عنصراً في القائمة وانقر زرّ سهم لتنقل العنصر."
#. WaKFt
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:232
@@ -10201,7 +10193,7 @@ msgstr "انقل لليسار"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:237
msgctxt "addressblockdialog|extended_tip|left"
msgid "Select an item in the list and click an arrow button to move the item."
-msgstr ""
+msgstr "حدد عنصراً في القائمة وانقر زرّ سهم لتنقل العنصر."
#. 8SHCH
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:251
@@ -10213,7 +10205,7 @@ msgstr "انقل لليمين"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:256
msgctxt "addressblockdialog|extended_tip|right"
msgid "Select an item in the list and click an arrow button to move the item."
-msgstr ""
+msgstr "حدد عنصراً في القائمة وانقر زرّ سهم لتنقل العنصر."
#. 3qGSH
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:270
@@ -10225,7 +10217,7 @@ msgstr "انقل لأسفل"
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:275
msgctxt "addressblockdialog|extended_tip|down"
msgid "Select an item in the list and click an arrow button to move the item."
-msgstr ""
+msgstr "حدد عنصراً في القائمة وانقر زرّ سهم لتنقل العنصر."
#. VeEDs
#: sw/uiconfig/swriter/ui/addressblockdialog.ui:309
@@ -10441,7 +10433,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:272
msgctxt "asciifilterdialog|extended_tip|language"
msgid "Specifies the language of the text, if this has not already been defined. This setting is only available when importing."
-msgstr ""
+msgstr "يحدد اللغة للنص، إذا لم يعرَّف هذا مسبقًا. هذا الإعداد متاح عند الاستيراد فقط."
#. BMvpA
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:283
@@ -10531,7 +10523,7 @@ msgstr "_عيّن الطُرز"
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:197
msgctxt "assignstylesdialog|left|tooltip_text"
msgid "Promote outline level"
-msgstr ""
+msgstr "رقِّ مستوى المخطط"
#. szu9U
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:202
@@ -10549,7 +10541,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:218
msgctxt "assignstylesdialog|right|tooltip_text"
msgid "Demote outline level"
-msgstr ""
+msgstr "أنزِل مستوى المخطط"
#. 6aqvE
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:223
@@ -10795,7 +10787,7 @@ msgstr "يسرد طُرُز التنسيق المتاحة للجداول. انق
#: sw/uiconfig/swriter/ui/autoformattable.ui:206
msgctxt "autoformattable|extended_tip|add"
msgid "Adds a new table style to the list."
-msgstr ""
+msgstr "يضيف طراز جدول جديد إلى القائمة."
#. DYbCK
#: sw/uiconfig/swriter/ui/autoformattable.ui:225
@@ -11125,7 +11117,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/bibliofragment.ui:45
msgctxt "bibliofragment|browse"
msgid "Browse..."
-msgstr ""
+msgstr "تصفّح…"
#. ni4Mj
#: sw/uiconfig/swriter/ui/bibliofragment.ui:68
@@ -11245,7 +11237,7 @@ msgstr "مُدخَل"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:345
msgctxt "bibliographyentry|extended_tip|BibliographyEntryDialog"
msgid "Inserts a bibliography reference."
-msgstr ""
+msgstr "أدخِل مرجع ثبَت مراجع."
#. 7gBGN
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:8
@@ -11323,7 +11315,7 @@ msgstr "الموضع"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:358
msgctxt "bulletsandnumbering|position"
msgid "Modify indent, spacing, and alignment options for ordered and unordered lists."
-msgstr ""
+msgstr "عدّل خيارات الإزاحة والتباعد والمحاذاة للقوائم المرتَّبة وغير المرتَّبة."
#. nFfDs
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:406
@@ -11335,7 +11327,7 @@ msgstr "خصّص"
#: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:407
msgctxt "bulletsandnumbering|customize"
msgid "Design your own bullet or numbering scheme."
-msgstr ""
+msgstr "صمّم مخططك الخاص للنقاط أو التعداد."
#. rK9Jk
#: sw/uiconfig/swriter/ui/businessdatapage.ui:26
@@ -11863,7 +11855,7 @@ msgstr "المحرف"
#: sw/uiconfig/swriter/ui/characterproperties.ui:33
msgctxt "characterproperties|reset"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "يُتراجَع عن التعديلات غير المحفوظة في هذا اللسان."
#. tLVfC
#: sw/uiconfig/swriter/ui/characterproperties.ui:36
@@ -11917,7 +11909,7 @@ msgstr "الحدود"
#: sw/uiconfig/swriter/ui/charurlpage.ui:30
msgctxt "charurlpage|label36"
msgid "URL:"
-msgstr "ال_عنوان:"
+msgstr "الرابط:"
#. m8wNo
#: sw/uiconfig/swriter/ui/charurlpage.ui:44
@@ -12079,7 +12071,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/columnpage.ui:269
msgctxt "columnpage|distft"
msgid "Spacing:"
-msgstr "التّباعد:"
+msgstr "التباعد:"
#. rneea
#: sw/uiconfig/swriter/ui/columnpage.ui:302
@@ -12112,163 +12104,163 @@ msgid "Width and Spacing"
msgstr "العرض والتباعد"
#. aBAZn
-#: sw/uiconfig/swriter/ui/columnpage.ui:442
+#: sw/uiconfig/swriter/ui/columnpage.ui:439
msgctxt "columnpage|linestyleft"
msgid "St_yle:"
msgstr "ال_طراز:"
#. iTh5i
-#: sw/uiconfig/swriter/ui/columnpage.ui:456
+#: sw/uiconfig/swriter/ui/columnpage.ui:453
msgctxt "columnpage|linewidthft"
msgid "_Width:"
msgstr "ال_عرض:"
#. fEm38
-#: sw/uiconfig/swriter/ui/columnpage.ui:470
+#: sw/uiconfig/swriter/ui/columnpage.ui:467
msgctxt "columnpage|lineheightft"
msgid "H_eight:"
-msgstr "الا_رتفاع:"
+msgstr "الارت_فاع:"
#. vKEyi
-#: sw/uiconfig/swriter/ui/columnpage.ui:484
+#: sw/uiconfig/swriter/ui/columnpage.ui:481
msgctxt "columnpage|lineposft"
msgid "_Position:"
msgstr "الم_وضع:"
#. yhqBe
-#: sw/uiconfig/swriter/ui/columnpage.ui:507
+#: sw/uiconfig/swriter/ui/columnpage.ui:504
msgctxt "columnpage|extended_tip|linestylelb"
msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"."
msgstr ""
#. DcSGt
-#: sw/uiconfig/swriter/ui/columnpage.ui:521
+#: sw/uiconfig/swriter/ui/columnpage.ui:518
msgctxt "columnpage|lineposlb"
msgid "Top"
msgstr "أعلى"
#. MKcWL
-#: sw/uiconfig/swriter/ui/columnpage.ui:522
+#: sw/uiconfig/swriter/ui/columnpage.ui:519
msgctxt "columnpage|lineposlb"
msgid "Centered"
msgstr "موسَّط"
#. CxCJF
-#: sw/uiconfig/swriter/ui/columnpage.ui:523
+#: sw/uiconfig/swriter/ui/columnpage.ui:520
msgctxt "columnpage|lineposlb"
msgid "Bottom"
msgstr "أسفل"
#. Akv5r
-#: sw/uiconfig/swriter/ui/columnpage.ui:527
+#: sw/uiconfig/swriter/ui/columnpage.ui:524
msgctxt "columnpage|extended_tip|lineposlb"
msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%."
msgstr ""
#. FMShH
-#: sw/uiconfig/swriter/ui/columnpage.ui:545
+#: sw/uiconfig/swriter/ui/columnpage.ui:542
msgctxt "columnpage|extended_tip|lineheightmf"
msgid "Enter the length of the separator line as a percentage of the height of the column area."
msgstr ""
#. kkGNR
-#: sw/uiconfig/swriter/ui/columnpage.ui:589
+#: sw/uiconfig/swriter/ui/columnpage.ui:586
msgctxt "columnpage|linecolorft"
msgid "_Color:"
msgstr "ال_لون:"
#. 9o7DQ
-#: sw/uiconfig/swriter/ui/columnpage.ui:623
+#: sw/uiconfig/swriter/ui/columnpage.ui:620
msgctxt "columnpage|label11"
msgid "Separator Line"
msgstr "سطر الفاصل"
#. 7SaDT
-#: sw/uiconfig/swriter/ui/columnpage.ui:672
+#: sw/uiconfig/swriter/ui/columnpage.ui:669
msgctxt "columnpage|label3"
msgid "Columns:"
msgstr "الأعمدة:"
#. aF466
-#: sw/uiconfig/swriter/ui/columnpage.ui:691
+#: sw/uiconfig/swriter/ui/columnpage.ui:688
msgctxt "columnpage|extended_tip|colsnf"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr ""
#. X9vG6
-#: sw/uiconfig/swriter/ui/columnpage.ui:714
+#: sw/uiconfig/swriter/ui/columnpage.ui:711
msgctxt "columnpage|balance"
msgid "Evenly distribute contents _to all columns"
msgstr "توزيع المحتويات على _كل الأعمدة بالتساوي"
#. BYYDE
-#: sw/uiconfig/swriter/ui/columnpage.ui:722
+#: sw/uiconfig/swriter/ui/columnpage.ui:719
msgctxt "columnpage|extended_tip|balance"
msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically."
msgstr ""
#. bV6Pg
-#: sw/uiconfig/swriter/ui/columnpage.ui:742
+#: sw/uiconfig/swriter/ui/columnpage.ui:739
msgctxt "columnpage|liststore2"
msgid "Selection"
msgstr "التحديد"
#. qA5MH
-#: sw/uiconfig/swriter/ui/columnpage.ui:743
+#: sw/uiconfig/swriter/ui/columnpage.ui:740
msgctxt "columnpage|liststore2"
msgid "Current Section"
msgstr "القسم الحالي"
#. VSvpa
-#: sw/uiconfig/swriter/ui/columnpage.ui:744
+#: sw/uiconfig/swriter/ui/columnpage.ui:741
msgctxt "columnpage|liststore2"
msgid "Selected section"
msgstr "الأقسام المحددة"
#. Mo9GL
-#: sw/uiconfig/swriter/ui/columnpage.ui:745
+#: sw/uiconfig/swriter/ui/columnpage.ui:742
msgctxt "columnpage|liststore2"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. mBmAm
-#: sw/uiconfig/swriter/ui/columnpage.ui:746
+#: sw/uiconfig/swriter/ui/columnpage.ui:743
msgctxt "columnpage|liststore2"
msgid "Page Style: "
msgstr "طراز الصفحة: "
#. F7MQT
-#: sw/uiconfig/swriter/ui/columnpage.ui:750
+#: sw/uiconfig/swriter/ui/columnpage.ui:747
msgctxt "columnpage|extended_tip|applytolb"
msgid "Select the item that you want to apply the column layout to."
msgstr ""
#. AJFqx
-#: sw/uiconfig/swriter/ui/columnpage.ui:763
+#: sw/uiconfig/swriter/ui/columnpage.ui:760
msgctxt "columnpage|applytoft"
msgid "_Apply to:"
msgstr "_طبّق على:"
#. rzBnm
-#: sw/uiconfig/swriter/ui/columnpage.ui:790
+#: sw/uiconfig/swriter/ui/columnpage.ui:787
msgctxt "columnpage|textdirectionft"
msgid "Text _direction:"
msgstr "اتّ_جاه النّصّ:"
#. dcDde
-#: sw/uiconfig/swriter/ui/columnpage.ui:834
+#: sw/uiconfig/swriter/ui/columnpage.ui:831
msgctxt "columnpage|extended_tip|valueset"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr ""
#. fEbMc
-#: sw/uiconfig/swriter/ui/columnpage.ui:849
+#: sw/uiconfig/swriter/ui/columnpage.ui:846
msgctxt "columnpage|label2"
msgid "Settings"
msgstr "إعدادات"
#. 3dGYz
-#: sw/uiconfig/swriter/ui/columnpage.ui:904
+#: sw/uiconfig/swriter/ui/columnpage.ui:901
msgctxt "columnpage|extended_tip|ColumnPage"
msgid "Specifies the number of columns and the column layout for a page style, frame, or section."
msgstr ""
@@ -12277,7 +12269,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/columnwidth.ui:15
msgctxt "columnwidth|ColumnWidthDialog"
msgid "Column Width"
-msgstr "عرض العمود"
+msgstr "عُرض العمود"
#. 5xLXA
#: sw/uiconfig/swriter/ui/columnwidth.ui:102
@@ -12307,13 +12299,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/columnwidth.ui:168
msgctxt "columnwidth|label1"
msgid "Width"
-msgstr "عرض"
+msgstr "العُرض"
#. PKRsa
#: sw/uiconfig/swriter/ui/columnwidth.ui:193
msgctxt "columnwidth|extended_tip|ColumnWidthDialog"
msgid "Changes the width of the selected column(s)."
-msgstr ""
+msgstr "يغير عُرض العمود (الأعمدة) المحدد."
#. X8yvA
#: sw/uiconfig/swriter/ui/conditionpage.ui:75
@@ -12361,19 +12353,19 @@ msgstr ""
#: sw/uiconfig/swriter/ui/conditionpage.ui:225
msgctxt "conditionpage|filter"
msgid "Table Header"
-msgstr "ترويسة الجدول"
+msgstr "ترويس الجدول"
#. wmRS4
#: sw/uiconfig/swriter/ui/conditionpage.ui:226
msgctxt "conditionpage|filter"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. pwWnz
#: sw/uiconfig/swriter/ui/conditionpage.ui:227
msgctxt "conditionpage|filter"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. C9Z9x
#: sw/uiconfig/swriter/ui/conditionpage.ui:228
@@ -12625,25 +12617,25 @@ msgstr "افصل النّصّ عند"
#: sw/uiconfig/swriter/ui/converttexttable.ui:270
msgctxt "converttexttable|headingcb"
msgid "Heading"
-msgstr "عنوان رئيسي"
+msgstr "خط العنوان"
#. dqVGr
#: sw/uiconfig/swriter/ui/converttexttable.ui:278
msgctxt "converttexttable|extended_tip|headingcb"
msgid "Formats the first row of the new table as a heading."
-msgstr "ينسّق الصف الأول من الجدول كترويس."
+msgstr "ينسّق الصف الأول من الجدول الجديد كخط عنوان."
#. XqGoL
#: sw/uiconfig/swriter/ui/converttexttable.ui:289
msgctxt "converttexttable|repeatheading"
msgid "Repeat heading"
-msgstr "إعادة العنوان الرئيسي"
+msgstr "كرر خط العنوان"
#. YhBhC
#: sw/uiconfig/swriter/ui/converttexttable.ui:299
msgctxt "converttexttable|extended_tip|repeatheading"
msgid "Repeats the table header on each page that the table spans."
-msgstr ""
+msgstr "يكرر خط عنوان الجدول على كل صفحة يمتد عبرها الجدول."
#. URvME
#: sw/uiconfig/swriter/ui/converttexttable.ui:310
@@ -12727,7 +12719,7 @@ msgstr "|<"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:212
msgctxt "createaddresslist|extended_tip|START"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "انقر الأزرار لتبحر عبر السجلات أو أدخِل رقم سجلّ لتعرض سجلاً."
#. XAhXo
#: sw/uiconfig/swriter/ui/createaddresslist.ui:223
@@ -12739,7 +12731,7 @@ msgstr "<"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:229
msgctxt "createaddresslist|extended_tip|PREV"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "انقر الأزرار لتبحر عبر السجلات أو أدخِل رقم سجلّ لتعرض سجلاً."
#. BFEtt
#: sw/uiconfig/swriter/ui/createaddresslist.ui:240
@@ -12751,7 +12743,7 @@ msgstr ">|"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:246
msgctxt "createaddresslist|extended_tip|END"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "انقر الأزرار لتبحر عبر السجلات أو أدخِل رقم سجلّ لتعرض سجلاً."
#. vzQvB
#: sw/uiconfig/swriter/ui/createaddresslist.ui:257
@@ -12763,19 +12755,19 @@ msgstr ">"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:263
msgctxt "createaddresslist|extended_tip|NEXT"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "انقر الأزرار لتبحر عبر السجلات أو أدخِل رقم سجلّ لتعرض سجلاً."
#. r6T84
#: sw/uiconfig/swriter/ui/createaddresslist.ui:287
msgctxt "createaddresslist|extended_tip|SETNOSB"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "انقر الأزرار لتبحر عبر السجلات أو أدخِل رقم سجلّ لتعرض سجلاً."
#. KdhEt
#: sw/uiconfig/swriter/ui/createaddresslist.ui:305
msgctxt "createaddresslist|extended_tip|SETNOED"
msgid "Click the buttons to navigate through the records or enter a record number to display a record."
-msgstr ""
+msgstr "انقر الأزرار لتبحر عبر السجلات أو أدخِل رقم سجلّ لتعرض سجلاً."
#. hPwMj
#: sw/uiconfig/swriter/ui/createaddresslist.ui:349
@@ -12787,13 +12779,13 @@ msgstr "ج_ديد"
#: sw/uiconfig/swriter/ui/createaddresslist.ui:356
msgctxt "createaddresslist|extended_tip|NEW"
msgid "Adds a new blank record to the address list."
-msgstr ""
+msgstr "يضيف سجلاً جديداً فارغًا إلى قائمة العناوين."
#. jt8fG
#: sw/uiconfig/swriter/ui/createaddresslist.ui:368
msgctxt "createaddresslist|DELETE"
msgid "_Delete"
-msgstr "ح_ذف"
+msgstr "اح_ذف"
#. 9BCh5
#: sw/uiconfig/swriter/ui/createaddresslist.ui:375
@@ -12883,25 +12875,25 @@ msgstr "أ_ضف..."
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:118
msgctxt "customizeaddrlistdialog|extended_tip|add"
msgid "Inserts a new text field."
-msgstr ""
+msgstr "يُدرِج حقل نص جديد."
#. zesMS
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:137
msgctxt "customizeaddrlistdialog|extended_tip|delete"
msgid "Deletes the selected field."
-msgstr ""
+msgstr "يحذف الحقل المحدد."
#. 8TKnG
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:149
msgctxt "customizeaddrlistdialog|rename"
msgid "_Rename..."
-msgstr "_غيّر الاسم..."
+msgstr "أع_دْ التسمية…"
#. 8QggP
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:156
msgctxt "customizeaddrlistdialog|extended_tip|rename"
msgid "Renames the selected text field."
-msgstr ""
+msgstr "يعيد تسمية حقل النص المحدد."
#. RRdew
#: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:184
@@ -13255,7 +13247,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:154
msgctxt "editsectiondialog|extended_tip|curname"
msgid "Type a name for the new section."
-msgstr ""
+msgstr "اكتب اسمًا للقسم الجديد"
#. qwvCU
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:202
@@ -13381,7 +13373,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:550
msgctxt "editsectiondialog|label6"
msgid "Write Protection"
-msgstr "حماية ضدّ الكتابة"
+msgstr "حماية من الكتابة"
#. W4aLX
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:582
@@ -13435,7 +13427,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/endnotepage.ui:38
msgctxt "endnotepage|label19"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. pP3Tn
#: sw/uiconfig/swriter/ui/endnotepage.ui:50
@@ -13513,7 +13505,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/endnotepage.ui:241
msgctxt "endnotepage|label27"
msgid "Text area"
-msgstr "منطقة نص"
+msgstr "مساحة النص"
#. GwJMG
#: sw/uiconfig/swriter/ui/endnotepage.ui:253
@@ -13573,7 +13565,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/envaddresspage.ui:144
msgctxt "envaddresspage|label7"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. GSeM5
#: sw/uiconfig/swriter/ui/envaddresspage.ui:161
@@ -13669,7 +13661,7 @@ msgstr "التنسيق"
#: sw/uiconfig/swriter/ui/envdialog.ui:258
msgctxt "envdialog|printer"
msgid "Printer"
-msgstr "الطّابعة"
+msgstr "الطابعة"
#. 6CKbN
#: sw/uiconfig/swriter/ui/envformatpage.ui:44
@@ -13807,7 +13799,7 @@ msgstr "المرسِل"
#: sw/uiconfig/swriter/ui/envformatpage.ui:524
msgctxt "envformatpage|label12"
msgid "F_ormat"
-msgstr "التّن_سيق"
+msgstr "ن_سَق"
#. Ay9BJ
#: sw/uiconfig/swriter/ui/envformatpage.ui:538
@@ -14129,7 +14121,7 @@ msgstr "إسنادات ترافقية"
#: sw/uiconfig/swriter/ui/fielddialog.ui:238
msgctxt "fielddialog|functions"
msgid "Functions"
-msgstr "دالّات"
+msgstr "الدوال"
#. Fg9q6
#: sw/uiconfig/swriter/ui/fielddialog.ui:286
@@ -14171,19 +14163,19 @@ msgstr ""
#: sw/uiconfig/swriter/ui/findentrydialog.ui:97
msgctxt "findentrydialog|label1"
msgid "F_ind"
-msgstr "ا_بحث"
+msgstr "جِ_د"
#. svGxx
#: sw/uiconfig/swriter/ui/findentrydialog.ui:116
msgctxt "findentrydialog|extended_tip|entry"
msgid "Enter the search term."
-msgstr ""
+msgstr "أدخِل مصطلح البحث."
#. CHJAa
#: sw/uiconfig/swriter/ui/findentrydialog.ui:139
msgctxt "findentrydialog|findin"
msgid "Find _only in"
-msgstr "ابحث ف_قط في"
+msgstr "جِد ف_قط في"
#. vXdjr
#: sw/uiconfig/swriter/ui/findentrydialog.ui:150
@@ -14207,7 +14199,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/flddbpage.ui:89
msgctxt "flddbpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. A5HF3
#: sw/uiconfig/swriter/ui/flddbpage.ui:100
@@ -14255,13 +14247,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/flddbpage.ui:314
msgctxt "flddbpage|browseft"
msgid "Add database file"
-msgstr "إضافة ملف قاعدة بيانات"
+msgstr "أضِف ملف قاعدة بيانات"
#. qGJaf
#: sw/uiconfig/swriter/ui/flddbpage.ui:326
msgctxt "flddbpage|browse"
msgid "Browse..."
-msgstr "استعراض..."
+msgstr "تصفّح…"
#. FnCPc
#: sw/uiconfig/swriter/ui/flddbpage.ui:332
@@ -14315,7 +14307,7 @@ msgstr "التنسيق"
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:77
msgctxt "flddocinfopage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. 5B97z
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:88
@@ -14363,7 +14355,7 @@ msgstr "النسَق"
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:98
msgctxt "flddocumentpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. pmEvX
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:109
@@ -14453,7 +14445,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:79
msgctxt "fldfuncpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. GvXix
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:90
@@ -14525,7 +14517,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:403
msgctxt "fldfuncpage|cond2ft"
msgid "Else"
-msgstr "أو"
+msgstr "وإلّا"
#. EACKA
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:422
@@ -14543,7 +14535,7 @@ msgstr "ب_ند"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:473
msgctxt "fldfuncpage|extended_tip|item"
msgid "Enter a new item."
-msgstr ""
+msgstr "أدخِل اسمًا جديداً."
#. F6LmM
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:498
@@ -14567,7 +14559,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:588
msgctxt "fldfuncpage|extended_tip|remove"
msgid "Removes the selected item from the list."
-msgstr ""
+msgstr "يُزيل العنصر المحدد من القائمة."
#. 4oMDF
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:600
@@ -14681,7 +14673,7 @@ msgstr "الاس_م"
#: sw/uiconfig/swriter/ui/fldrefpage.ui:453
msgctxt "fldrefpage|extended_tip|name"
msgid "Type the name of the user-defined field that you want to create."
-msgstr ""
+msgstr "اكتب اسم الحقل الذي يعرّفه المستخدم والذي تريد إنشاءﻩ."
#. NYEnx
#: sw/uiconfig/swriter/ui/fldrefpage.ui:485
@@ -14693,7 +14685,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr ""
+msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. MYGxL
#: sw/uiconfig/swriter/ui/fldvarpage.ui:118
@@ -14741,7 +14733,7 @@ msgstr "ح_في"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:374
msgctxt "fldvarpage|extended_tip|invisible"
msgid "Hides the field contents in the document."
-msgstr ""
+msgstr "يُخفي محتويات الحقل في المستند."
#. hapyp
#: sw/uiconfig/swriter/ui/fldvarpage.ui:405
@@ -14759,7 +14751,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/fldvarpage.ui:433
msgctxt "fldvarpage|level"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. g5LQE
#: sw/uiconfig/swriter/ui/fldvarpage.ui:437
@@ -14795,7 +14787,7 @@ msgstr "الاس_م"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:530
msgctxt "fldvarpage|extended_tip|name"
msgid "Type the name of the user-defined field that you want to create."
-msgstr ""
+msgstr "اكتب اسم الحقل الذي يعرّفه المستخدم والذي تريد إنشاءﻩ."
#. 5qBE2
#: sw/uiconfig/swriter/ui/fldvarpage.ui:543
@@ -14807,7 +14799,7 @@ msgstr "ال_قيمة"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:563
msgctxt "fldvarpage|extended_tip|value"
msgid "Enter the contents that you want to add to a user-defined field."
-msgstr ""
+msgstr "أدخِل المحتويات التي تريد إضافتها إلى حقل يعرّفه المستخدم."
#. BLiKH
#: sw/uiconfig/swriter/ui/fldvarpage.ui:584
@@ -14819,7 +14811,7 @@ msgstr "طبّق"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:590
msgctxt "fldvarpage|extended_tip|apply"
msgid "Adds the user-defined field to the Select list."
-msgstr ""
+msgstr "يضيف الحقل الذي عرّفه المستخدم إلى قائمة ⟪حدد⟫ ."
#. GKfDe
#: sw/uiconfig/swriter/ui/fldvarpage.ui:604
@@ -14831,25 +14823,25 @@ msgstr "احذف"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:610
msgctxt "fldvarpage|extended_tip|delete"
msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document."
-msgstr ""
+msgstr "يُزيل الحقل الذي عرّفه المستخدم من قائمة ⟪حدد⟫. يمكنك فقط إزالة الحقول غير المستخدمة في المستند الحالي."
#. b5iXT
#: sw/uiconfig/swriter/ui/floatingsync.ui:7
msgctxt "floatingsync|FloatingSync"
msgid "Synchronize"
-msgstr "المزامنة"
+msgstr "زامِن"
#. ooBrL
#: sw/uiconfig/swriter/ui/floatingsync.ui:34
msgctxt "floatingsync|sync"
msgid "Synchronize Labels"
-msgstr "مزامنة اللصائق"
+msgstr "زامِن اللصائق"
#. fiqsh
#: sw/uiconfig/swriter/ui/footendnotedialog.ui:8
msgctxt "footendnotedialog|FootEndnoteDialog"
msgid "Settings of Footnotes and Endnotes"
-msgstr ""
+msgstr "إعدادات الحواشي والحواشي الختامية"
#. hBdgx
#: sw/uiconfig/swriter/ui/footendnotedialog.ui:135
@@ -15017,7 +15009,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/footnotepage.ui:38
msgctxt "footnotepage|label6"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. GDDSE
#: sw/uiconfig/swriter/ui/footnotepage.ui:50
@@ -15038,181 +15030,181 @@ msgid "Position"
msgstr "الموضع"
#. okHEF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:86
+#: sw/uiconfig/swriter/ui/footnotepage.ui:92
msgctxt "footnotepage|offset"
msgid "Start at"
msgstr "بداية من"
#. T7pFk
-#: sw/uiconfig/swriter/ui/footnotepage.ui:98
+#: sw/uiconfig/swriter/ui/footnotepage.ui:104
msgctxt "footnotepage|label11"
msgid "After"
msgstr "بعد"
#. iA9We
-#: sw/uiconfig/swriter/ui/footnotepage.ui:108
+#: sw/uiconfig/swriter/ui/footnotepage.ui:114
msgctxt "footnotepage|pospagecb"
msgid "End of page"
msgstr "نهاية الصفحة"
#. zqfGN
-#: sw/uiconfig/swriter/ui/footnotepage.ui:120
+#: sw/uiconfig/swriter/ui/footnotepage.ui:126
msgctxt "footnotepage|extended_tip|pospagecb"
msgid "Displays footnotes at the bottom of the page."
msgstr ""
#. 8zwoB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:131
+#: sw/uiconfig/swriter/ui/footnotepage.ui:137
msgctxt "footnotepage|posdoccb"
msgid "End of document"
msgstr "نهاية المستند"
#. xvD3V
-#: sw/uiconfig/swriter/ui/footnotepage.ui:143
+#: sw/uiconfig/swriter/ui/footnotepage.ui:149
msgctxt "footnotepage|extended_tip|posdoccb"
msgid "Displays footnotes at the end of the document as endnotes."
msgstr ""
#. BGVTw
-#: sw/uiconfig/swriter/ui/footnotepage.ui:161
+#: sw/uiconfig/swriter/ui/footnotepage.ui:167
msgctxt "footnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box."
msgstr ""
#. RWgzD
-#: sw/uiconfig/swriter/ui/footnotepage.ui:175
+#: sw/uiconfig/swriter/ui/footnotepage.ui:181
msgctxt "footnotepage|liststore1"
msgid "Per page"
msgstr "للصفحة"
#. MELvZ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:176
+#: sw/uiconfig/swriter/ui/footnotepage.ui:182
msgctxt "footnotepage|liststore1"
msgid "Per chapter"
msgstr "للفصل"
#. oD7zV
-#: sw/uiconfig/swriter/ui/footnotepage.ui:177
+#: sw/uiconfig/swriter/ui/footnotepage.ui:183
msgctxt "footnotepage|liststore1"
msgid "Per document"
msgstr "للمستند"
#. BDrKx
-#: sw/uiconfig/swriter/ui/footnotepage.ui:181
+#: sw/uiconfig/swriter/ui/footnotepage.ui:187
msgctxt "footnotepage|extended_tip|countinglb"
msgid "Select the numbering option for the footnotes."
msgstr ""
#. 7GqFA
-#: sw/uiconfig/swriter/ui/footnotepage.ui:198
+#: sw/uiconfig/swriter/ui/footnotepage.ui:204
msgctxt "footnotepage|extended_tip|prefix"
msgid "Enter the text that you want to display in front of the footnote number in the note text."
msgstr ""
#. 7rE4w
-#: sw/uiconfig/swriter/ui/footnotepage.ui:215
+#: sw/uiconfig/swriter/ui/footnotepage.ui:221
msgctxt "footnotepage|extended_tip|suffix"
msgid "Enter the text that you want to display after the footnote number in the note text."
msgstr ""
#. YAUrj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:230
+#: sw/uiconfig/swriter/ui/footnotepage.ui:236
msgctxt "footnotepage|extended_tip|numberinglb"
msgid "Select the numbering scheme that you want to use."
msgstr ""
#. Gzv4E
-#: sw/uiconfig/swriter/ui/footnotepage.ui:248
+#: sw/uiconfig/swriter/ui/footnotepage.ui:254
msgctxt "footnotepage|label3"
msgid "Autonumbering"
msgstr "ترقيم آلي"
#. NRpEM
-#: sw/uiconfig/swriter/ui/footnotepage.ui:281
+#: sw/uiconfig/swriter/ui/footnotepage.ui:287
msgctxt "footnotepage|label17"
msgid "End of footnote"
msgstr "نهاية الحاشية"
#. cQefG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:293
+#: sw/uiconfig/swriter/ui/footnotepage.ui:299
msgctxt "footnotepage|label18"
msgid "Start of next page"
msgstr "عند بداية الصفحة التالية"
#. CUWNP
-#: sw/uiconfig/swriter/ui/footnotepage.ui:311
+#: sw/uiconfig/swriter/ui/footnotepage.ui:317
msgctxt "footnotepage|extended_tip|contfromed"
msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". Writer automatically inserts the number of the previous page."
msgstr ""
#. 2X7QW
-#: sw/uiconfig/swriter/ui/footnotepage.ui:330
+#: sw/uiconfig/swriter/ui/footnotepage.ui:336
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". Writer automatically inserts the number of the following page."
msgstr ""
#. ZEhG2
-#: sw/uiconfig/swriter/ui/footnotepage.ui:345
+#: sw/uiconfig/swriter/ui/footnotepage.ui:351
msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "ملاحظة الاستكمال"
#. jHwyG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:376
+#: sw/uiconfig/swriter/ui/footnotepage.ui:382
msgctxt "footnotepage|label4"
msgid "Paragraph"
msgstr "فقرة"
#. 95fCg
-#: sw/uiconfig/swriter/ui/footnotepage.ui:388
+#: sw/uiconfig/swriter/ui/footnotepage.ui:394
msgctxt "footnotepage|pagestyleft"
msgid "Page"
msgstr "الصفحة"
#. RFDnB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:403
+#: sw/uiconfig/swriter/ui/footnotepage.ui:409
msgctxt "footnotepage|extended_tip|parastylelb"
msgid "Select the paragraph style for the footnote text. Only special styles can be selected."
msgstr ""
#. bhosj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:419
+#: sw/uiconfig/swriter/ui/footnotepage.ui:425
msgctxt "footnotepage|extended_tip|pagestylelb"
msgid "Select the page style that you want to use for footnotes."
msgstr ""
#. ESqR9
-#: sw/uiconfig/swriter/ui/footnotepage.ui:435
+#: sw/uiconfig/swriter/ui/footnotepage.ui:441
msgctxt "footnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for footnote anchors in the text area of your document."
msgstr ""
#. EfWvJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:451
+#: sw/uiconfig/swriter/ui/footnotepage.ui:457
msgctxt "footnotepage|extended_tip|charstylelb"
msgid "Select the character style that you want to use for the footnote numbers in the footnote area."
msgstr ""
#. ZP5bQ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:464
+#: sw/uiconfig/swriter/ui/footnotepage.ui:470
msgctxt "footnotepage|label15"
msgid "Text area"
-msgstr "منطقة النص"
+msgstr "مساحة النص"
#. aYFwJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:476
+#: sw/uiconfig/swriter/ui/footnotepage.ui:482
msgctxt "footnotepage|label16"
msgid "Footnote area"
msgstr "منطقة الحاشية"
#. j8ZuF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:490
+#: sw/uiconfig/swriter/ui/footnotepage.ui:496
msgctxt "footnotepage|label12"
msgid "Styles"
msgstr "الطُرُز"
#. soD9k
-#: sw/uiconfig/swriter/ui/footnotepage.ui:504
+#: sw/uiconfig/swriter/ui/footnotepage.ui:510
msgctxt "footnotepage|extended_tip|FootnotePage"
msgid "Specifies the formatting for footnotes."
msgstr ""
@@ -15563,7 +15555,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/formattablepage.ui:454
msgctxt "formattablepage|center"
msgid "_Center"
-msgstr "ت_وسيط"
+msgstr "_وسط"
#. j2nPx
#: sw/uiconfig/swriter/ui/formattablepage.ui:463
@@ -15611,7 +15603,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/framedialog.ui:8
msgctxt "framedialog|FrameDialog"
msgid "Frame"
-msgstr "الإطار"
+msgstr "إطار"
#. LTfL7
#: sw/uiconfig/swriter/ui/framedialog.ui:111
@@ -16145,7 +16137,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/frmtypepage.ui:740
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "حافظ على حدود النص الداخلية"
#. 55hUf
#: sw/uiconfig/swriter/ui/frmtypepage.ui:749
@@ -16223,32 +16215,31 @@ msgstr "الربط إلى"
#: sw/uiconfig/swriter/ui/frmurlpage.ui:205
msgctxt "frmurlpage|server"
msgid "_Server-side image map"
-msgstr "تخطيط صورة لجهة ال_خادوم"
+msgstr "خريطة صورية لجهة ال_خادوم"
#. b7kPv
#: sw/uiconfig/swriter/ui/frmurlpage.ui:214
msgctxt "frmurlpage|extended_tip|server"
msgid "Uses a server-side image map."
-msgstr ""
+msgstr "يستخدم خريطة صورية لجهة الخادوم."
#. MWxs6
#: sw/uiconfig/swriter/ui/frmurlpage.ui:225
msgctxt "frmurlpage|client"
msgid "_Client-side image map"
-msgstr "تخطيط صورة لجهة ال_عميل"
+msgstr "خريطة صورية لجهة ال_عميل"
#. FxBbu
#: sw/uiconfig/swriter/ui/frmurlpage.ui:234
msgctxt "frmurlpage|extended_tip|client"
msgid "Uses the image map that you created for the selected object."
-msgstr ""
+msgstr "يستخدم خريطة صورية أنشأتَها للكائن المحدد."
#. Y49PK
#: sw/uiconfig/swriter/ui/frmurlpage.ui:249
-#, fuzzy
msgctxt "frmurlpage|label2"
msgid "Image Map"
-msgstr "تخطيط الصورة"
+msgstr "خريطة صورية"
#. SB3EF
#: sw/uiconfig/swriter/ui/frmurlpage.ui:264
@@ -16332,7 +16323,7 @@ msgstr "مثال"
#: sw/uiconfig/swriter/ui/indexentry.ui:46
msgctxt "indexentry|IndexEntryDialog"
msgid "Insert Index Entry"
-msgstr "إدراج مُدخل فهرسي"
+msgstr "أدرج مُدخَل فهرس"
#. 8dTXx
#: sw/uiconfig/swriter/ui/indexentry.ui:80
@@ -16359,127 +16350,127 @@ msgid "New User-defined Index"
msgstr "فهرس جديد عرّفه المستخدم"
#. zTEFk
-#: sw/uiconfig/swriter/ui/indexentry.ui:213
+#: sw/uiconfig/swriter/ui/indexentry.ui:210
msgctxt "indexentry|label3"
msgid "Entry"
msgstr "مُدخَل"
#. jcbjL
-#: sw/uiconfig/swriter/ui/indexentry.ui:229
+#: sw/uiconfig/swriter/ui/indexentry.ui:226
msgctxt "indexentry|key1ft"
msgid "1st key"
msgstr "المفتاح الأول"
#. B47KE
-#: sw/uiconfig/swriter/ui/indexentry.ui:245
+#: sw/uiconfig/swriter/ui/indexentry.ui:242
msgctxt "indexentry|key2ft"
msgid "2nd key"
msgstr "المفتاح الثاني"
#. ReqDn
-#: sw/uiconfig/swriter/ui/indexentry.ui:260
+#: sw/uiconfig/swriter/ui/indexentry.ui:257
msgctxt "indexentry|levelft"
msgid "Level"
msgstr "مستوى"
#. QybEJ
-#: sw/uiconfig/swriter/ui/indexentry.ui:291
+#: sw/uiconfig/swriter/ui/indexentry.ui:288
msgctxt "indexentry|phonetic0ft"
msgid "Phonetic reading"
msgstr "قراءة لفظية"
#. JCtnw
-#: sw/uiconfig/swriter/ui/indexentry.ui:307
+#: sw/uiconfig/swriter/ui/indexentry.ui:304
msgctxt "indexentry|phonetic1ft"
msgid "Phonetic reading"
msgstr "قراءة لفظية"
#. C6FQC
-#: sw/uiconfig/swriter/ui/indexentry.ui:323
+#: sw/uiconfig/swriter/ui/indexentry.ui:320
msgctxt "indexentry|phonetic2ft"
msgid "Phonetic reading"
msgstr "قراءة لفظية"
#. JbXGT
-#: sw/uiconfig/swriter/ui/indexentry.ui:413
+#: sw/uiconfig/swriter/ui/indexentry.ui:410
msgctxt "indexentry|sync|tooltip_text"
msgid "Update entry from selection"
msgstr "حدث المُدخل من التحديد"
#. B5PWe
-#: sw/uiconfig/swriter/ui/indexentry.ui:462
+#: sw/uiconfig/swriter/ui/indexentry.ui:459
msgctxt "indexentry|mainentrycb"
msgid "Main entry"
msgstr "المُدخل الرئيسي"
#. 4QfoT
-#: sw/uiconfig/swriter/ui/indexentry.ui:476
+#: sw/uiconfig/swriter/ui/indexentry.ui:473
msgctxt "indexentry|applytoallcb"
msgid "Apply to all similar texts"
msgstr "طبّق على كل النصوص المشابهة"
#. ZdMSz
-#: sw/uiconfig/swriter/ui/indexentry.ui:490
+#: sw/uiconfig/swriter/ui/indexentry.ui:487
msgctxt "indexentry|searchcasesensitivecb"
msgid "Match case"
msgstr "طابق حالة الأحرف"
#. 8Q9RW
-#: sw/uiconfig/swriter/ui/indexentry.ui:505
+#: sw/uiconfig/swriter/ui/indexentry.ui:502
msgctxt "indexentry|searchcasewordonlycb"
msgid "Whole words only"
msgstr "كلمات كاملة فقط"
#. 62yyk
-#: sw/uiconfig/swriter/ui/indexentry.ui:539
+#: sw/uiconfig/swriter/ui/indexentry.ui:536
msgctxt "indexentry|previous|tooltip_text"
msgid "Previous entry"
-msgstr ""
+msgstr "المُدخَل السابق"
#. Vd86J
-#: sw/uiconfig/swriter/ui/indexentry.ui:542
+#: sw/uiconfig/swriter/ui/indexentry.ui:539
msgctxt "indexentry|extended_tip|previous"
msgid "Jumps to the previous index entry of the same type in the document."
msgstr ""
#. VsuQU
-#: sw/uiconfig/swriter/ui/indexentry.ui:560
+#: sw/uiconfig/swriter/ui/indexentry.ui:557
msgctxt "indexentry|next|tooltip_text"
msgid "Next entry"
-msgstr ""
+msgstr "المُدخَل التالي"
#. WsgJC
-#: sw/uiconfig/swriter/ui/indexentry.ui:563
+#: sw/uiconfig/swriter/ui/indexentry.ui:560
msgctxt "indexentry|extended_tip|next"
msgid "Jumps to the next index entry of the same type in the document."
msgstr ""
#. KnhCr
-#: sw/uiconfig/swriter/ui/indexentry.ui:581
+#: sw/uiconfig/swriter/ui/indexentry.ui:578
msgctxt "indexentry|first|tooltip_text"
msgid "Previous entry (same name)"
-msgstr ""
+msgstr "المُدخَل السابق (نفس الاسم)"
#. 3dGEa
-#: sw/uiconfig/swriter/ui/indexentry.ui:584
+#: sw/uiconfig/swriter/ui/indexentry.ui:581
msgctxt "indexentry|extended_tip|first"
msgid "Jumps to the previous index entry of the same type and with the same name in the document."
msgstr ""
#. 2mkMr
-#: sw/uiconfig/swriter/ui/indexentry.ui:602
+#: sw/uiconfig/swriter/ui/indexentry.ui:599
msgctxt "indexentry|last|tooltip_text"
msgid "Next entry (same name)"
msgstr ""
#. gYHoh
-#: sw/uiconfig/swriter/ui/indexentry.ui:605
+#: sw/uiconfig/swriter/ui/indexentry.ui:602
msgctxt "indexentry|extended_tip|last"
msgid "Jumps to the next index entry of the same type and with the same name in the document."
msgstr ""
#. dLE2B
-#: sw/uiconfig/swriter/ui/indexentry.ui:633
+#: sw/uiconfig/swriter/ui/indexentry.ui:630
msgctxt "indexentry|label1"
msgid "Selection"
msgstr "التحديد"
@@ -16488,7 +16479,7 @@ msgstr "التحديد"
#: sw/uiconfig/swriter/ui/infonotfounddialog.ui:7
msgctxt "infonotfounddialog|InfoNotFoundDialog"
msgid "Find"
-msgstr "بحث"
+msgstr "جِد"
#. HBW5g
#: sw/uiconfig/swriter/ui/infonotfounddialog.ui:13
@@ -16661,7 +16652,7 @@ msgstr "لا يساوي"
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:117
msgctxt "inputwinmenu|extended_tip|neq"
msgid "Tests for inequality between selected values."
-msgstr ""
+msgstr "فحوص لعدم التساوي بين القيم المحددة."
#. 9y6jk
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:126
@@ -16673,7 +16664,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:130
msgctxt "inputwinmenu|extended_tip|leq"
msgid "Tests for values less than or equal to a specified value."
-msgstr ""
+msgstr "فحوص لقيم أقل من أو مساوية لقيمة محددة."
#. mDjkK
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:139
@@ -16686,7 +16677,7 @@ msgstr "أكبر من أو تساوي"
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:143
msgctxt "inputwinmenu|extended_tip|geq"
msgid "Tests for values greater than or equal to a specified value"
-msgstr ""
+msgstr "فحوص لقيم أكبر من أو مساوية لقيمة محددة."
#. FBmuE
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:152
@@ -16699,7 +16690,7 @@ msgstr "أ~قل"
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:156
msgctxt "inputwinmenu|extended_tip|l"
msgid "Tests for values less than a specified value"
-msgstr ""
+msgstr "فحوص لقيم أقل من قيمة محددة."
#. WUGeb
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:165
@@ -16711,7 +16702,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:169
msgctxt "inputwinmenu|extended_tip|g"
msgid "Tests for values greater than a specified value"
-msgstr ""
+msgstr "فحوص لقيم أكبر من قيمة محددة."
#. ufZCg
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:184
@@ -16724,7 +16715,7 @@ msgstr "”أو“ منطقية"
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:188
msgctxt "inputwinmenu|extended_tip|or"
msgid "Tests for values matching the Boolean OR"
-msgstr ""
+msgstr "فحوص لقيم تطابِق المنطقية ’أَو‘ OR"
#. kqdjD
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:197
@@ -16736,7 +16727,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:201
msgctxt "inputwinmenu|extended_tip|xor"
msgid "Tests for values matching the Boolean exclusive OR"
-msgstr ""
+msgstr "فحوص لقيم تطابِق المنطقية ’أَو الشاملة‘ exclusive OR"
#. eXMSG
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:210
@@ -16749,7 +16740,7 @@ msgstr "”و“ منطقية"
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:214
msgctxt "inputwinmenu|extended_tip|and"
msgid "Tests for values matching the Boolean AND"
-msgstr ""
+msgstr "فحوص لقيم تطابِق المنطقية ’وَ‘ AND"
#. 6fFN5
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:223
@@ -16762,7 +16753,7 @@ msgstr "”ليس“ منطقية"
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:227
msgctxt "inputwinmenu|extended_tip|not"
msgid "Tests for values matching the Boolean NOT"
-msgstr ""
+msgstr "فحوص لقيم تطابِق المنطقية ’لا‘ NOT"
#. 8EE7z
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:236
@@ -16836,7 +16827,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:319
msgctxt "inputwinmenu|functions"
msgid "Functions"
-msgstr "دالّات"
+msgstr "الدوال"
#. CGyzt
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:329
@@ -17061,74 +17052,104 @@ msgctxt "insertbreak|linerb-atkobject"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr ""
+#. 88jq6
+#: sw/uiconfig/swriter/ui/insertbreak.ui:122
+msgctxt "insertbreak|clearft"
+msgid "Restart Location:"
+msgstr ""
+
+#. fJEqu
+#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+msgctxt "insertbreak|clearlb0"
+msgid "[None]"
+msgstr ""
+
+#. dGBC7
+#: sw/uiconfig/swriter/ui/insertbreak.ui:141
+msgctxt "insertbreak|clearlb1"
+msgid "Left"
+msgstr ""
+
+#. HbijZ
+#: sw/uiconfig/swriter/ui/insertbreak.ui:142
+msgctxt "insertbreak|clearlb2"
+msgid "Right"
+msgstr ""
+
+#. AAg7H
+#: sw/uiconfig/swriter/ui/insertbreak.ui:143
+msgctxt "insertbreak|clearlb3"
+msgid "Next Full Line"
+msgstr ""
+
#. gqCuB
-#: sw/uiconfig/swriter/ui/insertbreak.ui:119
+#: sw/uiconfig/swriter/ui/insertbreak.ui:154
msgctxt "insertbreak|columnrb"
msgid "Column break"
msgstr "فاصل أعمدة"
#. poiJj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:128
+#: sw/uiconfig/swriter/ui/insertbreak.ui:163
msgctxt "insertbreak|columnrb-atkobject"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column."
msgstr ""
#. 9GAAp
-#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+#: sw/uiconfig/swriter/ui/insertbreak.ui:175
msgctxt "insertbreak|pagerb"
msgid "Page break"
msgstr "فاصل صفحات"
#. G7e9T
-#: sw/uiconfig/swriter/ui/insertbreak.ui:149
+#: sw/uiconfig/swriter/ui/insertbreak.ui:184
msgctxt "insertbreak|pagerb-atkobject"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
msgstr ""
#. qAj3x
-#: sw/uiconfig/swriter/ui/insertbreak.ui:164
+#: sw/uiconfig/swriter/ui/insertbreak.ui:199
msgctxt "insertbreak|styleft"
msgid "Page Style:"
msgstr "طراز الصفحة:"
#. BWnND
-#: sw/uiconfig/swriter/ui/insertbreak.ui:181
+#: sw/uiconfig/swriter/ui/insertbreak.ui:216
msgctxt "insertbreak|liststore1"
msgid "[None]"
-msgstr "[بدون]"
+msgstr "[بِلا]"
#. 8WDUc
-#: sw/uiconfig/swriter/ui/insertbreak.ui:185
+#: sw/uiconfig/swriter/ui/insertbreak.ui:220
msgctxt "insertbreak|stylelb-atkobject"
msgid "Select the page style for the page that follows the manual page break."
msgstr ""
#. LbNq3
-#: sw/uiconfig/swriter/ui/insertbreak.ui:197
+#: sw/uiconfig/swriter/ui/insertbreak.ui:232
msgctxt "insertbreak|pagenumcb"
msgid "Change page number"
msgstr "تغيير رقم الصفحة"
#. cfsdj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:206
+#: sw/uiconfig/swriter/ui/insertbreak.ui:241
msgctxt "insertbreak|pagenumcb-atkobject"
msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break."
msgstr ""
#. iWGZG
-#: sw/uiconfig/swriter/ui/insertbreak.ui:229
+#: sw/uiconfig/swriter/ui/insertbreak.ui:264
msgctxt "insertbreak|pagenumsb-atkobject"
msgid "Enter the new page number for the page that follows the manual page break."
msgstr ""
#. uAMAX
-#: sw/uiconfig/swriter/ui/insertbreak.ui:245
+#: sw/uiconfig/swriter/ui/insertbreak.ui:280
msgctxt "insertbreak|label1"
msgid "Type"
msgstr "النوع"
#. fYmmW
-#: sw/uiconfig/swriter/ui/insertbreak.ui:269
+#: sw/uiconfig/swriter/ui/insertbreak.ui:304
msgctxt "insertbreak|extended_tip|BreakDialog"
msgid "Inserts a manual line break, column break or a page break at the current cursor position."
msgstr ""
@@ -17227,7 +17248,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/insertcaption.ui:297
msgctxt "insertcaption|label4"
msgid "Category:"
-msgstr "الفئة:"
+msgstr "الصنف:"
#. LySa4
#: sw/uiconfig/swriter/ui/insertcaption.ui:320
@@ -17257,7 +17278,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/insertcaption.ui:434
msgctxt "insertcaption|liststore1"
msgid "[None]"
-msgstr "[بدون]"
+msgstr "[بِلا]"
#. hKFSr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:57
@@ -17461,10 +17482,9 @@ msgstr ""
#. sDwyx
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:788
-#, fuzzy
msgctxt "insertdbcolumnsdialog|userdefined"
msgid "_User-defined"
-msgstr "مستخدم-معرف"
+msgstr "ع_رّفه المستخدم"
#. KRqrf
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:800
@@ -17560,7 +17580,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/insertfootnote.ui:253
msgctxt "insertfootnote|label1"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. dFGBy
#: sw/uiconfig/swriter/ui/insertfootnote.ui:282
@@ -17638,7 +17658,7 @@ msgstr "أدخل نوع السكربت الذي تريد إدراجه."
#: sw/uiconfig/swriter/ui/insertscript.ui:178
msgctxt "insertscript|url"
msgid "URL:"
-msgstr "ال_عنوان:"
+msgstr "الرابط:"
#. sYT47
#: sw/uiconfig/swriter/ui/insertscript.ui:188
@@ -17734,7 +17754,7 @@ msgstr "الحواشي/الحواشي الختامية"
#: sw/uiconfig/swriter/ui/inserttable.ui:37
msgctxt "inserttable|InsertTableDialog"
msgid "Insert Table"
-msgstr "إدراج جدول"
+msgstr "أدرج جدولاً"
#. 6HSVJ
#: sw/uiconfig/swriter/ui/inserttable.ui:53
@@ -17816,10 +17836,9 @@ msgstr ""
#. 7obXo
#: sw/uiconfig/swriter/ui/inserttable.ui:306
-#, fuzzy
msgctxt "inserttable|repeatcb"
msgid "Repeat heading rows on new _pages"
-msgstr "تكرار صفوف العناوين على _الصفحات الجديدة"
+msgstr "كرر صفوف خط العنوان على الصفحات ال_جديدة"
#. LdEem
#: sw/uiconfig/swriter/ui/inserttable.ui:317
@@ -17843,14 +17862,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/inserttable.ui:363
msgctxt "inserttable|extended_tip|repeatheaderspin"
msgid "Select the number of rows that you want to use for the heading."
-msgstr ""
+msgstr "حدد عدد الصفوف التي تريد استخدامها للرأس."
#. kkA32
#: sw/uiconfig/swriter/ui/inserttable.ui:376
-#, fuzzy
msgctxt "inserttable|repeatheaderafter"
msgid "Heading ro_ws:"
-msgstr "ترويسات الص_فوف:"
+msgstr "ص_فوف خط العنوان:"
#. D26kf
#: sw/uiconfig/swriter/ui/inserttable.ui:397
@@ -17904,7 +17922,7 @@ msgstr "ينشئ مستنداً جديداً للتحرير."
#: sw/uiconfig/swriter/ui/labeldialog.ui:141
msgctxt "labeldialog|medium"
msgid "Medium"
-msgstr "مادة"
+msgstr "متوسط"
#. hJSCq
#: sw/uiconfig/swriter/ui/labeldialog.ui:188
@@ -18163,7 +18181,7 @@ msgstr "اسم الطّابعة"
#: sw/uiconfig/swriter/ui/labeloptionspage.ui:278
msgctxt "labeloptionspage|label2"
msgid "Printer"
-msgstr "الطّابعة"
+msgstr "الطابعة"
#. BxCVt
#: sw/uiconfig/swriter/ui/labeloptionspage.ui:293
@@ -18283,7 +18301,7 @@ msgstr "أسطر"
#: sw/uiconfig/swriter/ui/linenumbering.ui:334
msgctxt "linenumbering|view"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. D8TER
#: sw/uiconfig/swriter/ui/linenumbering.ui:365
@@ -18886,7 +18904,7 @@ msgstr "النص"
#: sw/uiconfig/swriter/ui/mastercontextmenu.ui:126
msgctxt "mastercontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. Gnk7X
#: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:8
@@ -18940,7 +18958,7 @@ msgstr "دمج مع ال_جدول التالي"
#: sw/uiconfig/swriter/ui/mergetabledialog.ui:126
msgctxt "mergetabledialog|label1"
msgid "Mode"
-msgstr "وضع"
+msgstr "الوضع"
#. wCSht
#: sw/uiconfig/swriter/ui/mergetabledialog.ui:151
@@ -19030,7 +19048,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:291
msgctxt "mmaddressblockpage|settings"
msgid "_More..."
-msgstr "أ_خرى..."
+msgstr "الم_زيد..."
#. irYyv
#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:299
@@ -19215,7 +19233,7 @@ msgstr "وضع"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:263
msgctxt "mmlayoutpage|up"
msgid "_Up"
-msgstr ""
+msgstr "أعل_ى"
#. UAeYJ
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:270
@@ -19271,7 +19289,7 @@ msgstr "معاينة"
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:398
msgctxt "mmlayoutpage|extended_tip|example"
msgid "Provides a preview of the salutation positioning on the page."
-msgstr ""
+msgstr "يتيح معاينة لتموضُع التحية في الصفحة."
#. 2EvMJ
#: sw/uiconfig/swriter/ui/mmlayoutpage.ui:423
@@ -20249,215 +20267,227 @@ msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr "حدد"
-#. dajzZ
+#. iH6Pr
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
+msgctxt "navigatorcontextmenu|STR_COPY_ENTRY"
+msgid "_Copy"
+msgstr ""
+
+#. dajzZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr "احذف"
#. axFMf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Move Chapter Up"
msgstr "انقل الفصل لأعلى"
#. Radwp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Move Chapter Down"
msgstr "انقل الفصل لأسفل"
#. FJZdw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Outline Level"
msgstr "رقِّ مستوى المخطط"
#. GRZmf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr "أنزِل مستوى المخطط"
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "حرّر..."
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
-msgstr ""
+msgstr "أع_دْ التسمية…"
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:162
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr "أظهِر الكل"
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:170
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr "أخفِ الكل"
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:178
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr "احذف الكل"
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:192
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr "طيّ المخطط"
-#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
-msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
-msgid "Outline Level"
-msgstr "مستوى المخطط"
-
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:212
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "تعقُّب المخطط"
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr "تعقُّب الجدول"
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr "تعقُّب القسم"
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:242
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr "تعقُّب الإطار"
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:250
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr "تعقُّب الصورة"
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:258
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr "تعقُّب كائن OLE"
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:266
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr "تعقُّب العلامة"
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:274
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
-msgstr ""
+msgstr "تعقُّب الارتباطات التشعبية"
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:282
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
-msgstr ""
+msgstr "تعقُّب المراجع"
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:290
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
-msgstr ""
+msgstr "تعقُّب الفهارس"
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:298
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
-msgstr ""
+msgstr "تتبُّع التعليقات"
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:306
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
-msgstr ""
+msgstr "تعقُّب الكائنات الرسومية"
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:314
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
-msgstr ""
+msgstr "تعقُّب الحقل"
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:322
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
+msgstr "تعقُّب الحواشي"
+
+#. vBGAw
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:330
+msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
+msgid "Sort Alphabetically"
msgstr ""
+#. cECoG
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:344
+msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
+msgid "Outline Level"
+msgstr "مستوى المخطط"
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:358
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr "وضع السحب"
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:372
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
-msgstr ""
+msgstr "عَرض"
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:392
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
-msgstr ""
+msgstr "اطوِ كل الأصناف"
#. ba8wC
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:18
msgctxt "navigatorpanel|hyperlink"
msgid "Insert as Hyperlink"
-msgstr "أدرج كرابط"
+msgstr "أدرج كارتباط تشعبي"
#. YFPAS
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:28
@@ -20571,7 +20601,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:490
msgctxt "navigatorpanel|reminder|tooltip_text"
msgid "Set Reminder"
-msgstr ""
+msgstr "عيّن التذكير"
#. d2Bnv
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:494
@@ -20607,7 +20637,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:570
msgctxt "navigatorpanel|promote|tooltip_text"
msgid "Promote outline level"
-msgstr ""
+msgstr "رقِّ مستوى المخطط"
#. dvQYH
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
@@ -20619,7 +20649,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:586
msgctxt "navigatorpanel|demote|tooltip_text"
msgid "Demote outline level"
-msgstr ""
+msgstr "أنزِل مستوى المخطط"
#. NHBAZ
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:590
@@ -20631,7 +20661,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
msgctxt "navigatorpanel|chapterup|tooltip_text"
msgid "Move chapter up"
-msgstr ""
+msgstr "انقل الفصل لأعلى"
#. mwCBQ
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:606
@@ -20643,7 +20673,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:618
msgctxt "navigatorpanel|chapterdown|tooltip_text"
msgid "Move chapter down"
-msgstr ""
+msgstr "انقل الفصل لأسفل"
#. sGNbn
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:622
@@ -20661,7 +20691,7 @@ msgstr "وضع السحب"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:648
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Sets the drag and drop options for inserting items from the Navigator into a document, for example, as a hyperlink. Click this icon, and then choose the option that you want to use."
-msgstr "يعيّن خيارات السحب والأسقاط لإدراج العناصر من الملاح إلى المستند، مثلا كرابط. انقر هذه الأيقونة ثم اختر الخيار الذي تريد استخدامه."
+msgstr "يعيّن خيارات السحب والأسقاط لإدراج العناصر من الملاح إلى المستند، مثلا كارتباط تشعبي. انقر هذه الأيقونة ثم اختر الخيار الذي تريد استخدامه."
#. 3rY8r
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:680
@@ -20848,7 +20878,7 @@ msgstr "أ~درج"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6899
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
-msgstr "الم_خطط"
+msgstr "م_خطط"
#. 4sDuv
#: sw/uiconfig/swriter/ui/notebookbar.ui:6984
@@ -20908,25 +20938,25 @@ msgstr "جد~ول"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12170
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
-msgstr "_صورة"
+msgstr "صور_ة"
#. tfZvk
#: sw/uiconfig/swriter/ui/notebookbar.ui:12267
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
-msgstr "~صورة"
+msgstr "صور~ة"
#. CAFm3
#: sw/uiconfig/swriter/ui/notebookbar.ui:13586
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr "_رسمة"
+msgstr "_درو"
#. eBYpc
#: sw/uiconfig/swriter/ui/notebookbar.ui:13693
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
-msgstr "~رسمة"
+msgstr "~درو"
#. UPA2b
#: sw/uiconfig/swriter/ui/notebookbar.ui:14560
@@ -20944,13 +20974,13 @@ msgstr "~كائن"
#: sw/uiconfig/swriter/ui/notebookbar.ui:15424
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
-msgstr "وسي_طة"
+msgstr "و_سائط"
#. A9AmF
#: sw/uiconfig/swriter/ui/notebookbar.ui:15528
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
-msgstr "وسي~طة"
+msgstr "و~سائط"
#. SDFU4
#: sw/uiconfig/swriter/ui/notebookbar.ui:15959
@@ -21082,7 +21112,7 @@ msgstr "معاي_نة"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9055
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "معاي~نة"
#. W5JNf
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10364
@@ -21094,55 +21124,55 @@ msgstr "_جدول"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10416
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "ج~دول"
#. fDEwj
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11754
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Im_age"
-msgstr ""
+msgstr "_صورة"
#. ekWoX
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11807
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "صور~ة"
#. 8eQN8
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13189
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. FBf68
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13244
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~درو"
#. DoVwy
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14277
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "كائن"
#. JXKiY
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14333
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~كائن"
#. q8wnS
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15074
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. 7HDt3
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15130
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "و~سائط"
#. vSDok
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15789
@@ -21228,7 +21258,7 @@ msgstr "الطُرُ_ز"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5375
msgctxt "notebookbar_groupedbar_compact|FormatButton"
msgid "F_ont"
-msgstr ""
+msgstr "ال_خط"
#. wUssG
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4278
@@ -21281,19 +21311,19 @@ msgstr "ام_تداد"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5791
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
-msgstr ""
+msgstr "جد_ول"
#. GHcYf
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6265
msgctxt "notebookbar_groupedbar_compact|CalculateButton"
msgid "_Calc"
-msgstr ""
+msgstr "_كالك"
#. DC7Hv
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6521
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. ncAKi
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6895
@@ -21302,13 +21332,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10585
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "_رتّب"
#. 8pLR3
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7299
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
-msgstr ""
+msgstr "شك_ل"
#. NM63T
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7547
@@ -21320,13 +21350,13 @@ msgstr "_جمّع"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7669
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
-msgstr ""
+msgstr "3_الأبعاد"
#. BTzDn
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7896
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "م_عمل‌خطوط"
#. PLqyG
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8007
@@ -21334,7 +21364,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10109
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_شبكة"
#. jWoME
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8144
@@ -21346,37 +21376,37 @@ msgstr "_صورة"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8851
msgctxt "notebookbar_groupedbar_compact|ColorButton"
msgid "Fi_lter"
-msgstr ""
+msgstr "مرشّ_ح"
#. 5a4zV
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9258
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
-msgstr ""
+msgstr "_كائن"
#. q3Fbm
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9996
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "إط_ار"
#. Ghwp6
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10356
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. bRfaC
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10986
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "م_خطط"
#. PhCFL
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11378
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Print"
-msgstr ""
+msgstr "ط_باعة"
#. fczCB
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11522
@@ -21394,13 +21424,13 @@ msgstr "مر_اجعة"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11777
msgctxt "notebookbar_groupedbar_compact|CommentsButton"
msgid "_Comments"
-msgstr ""
+msgstr "ت_عليقات"
#. bCPNM
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11880
msgctxt "notebookbar_groupedbar_compact|CompareButton"
msgid "Com_pare"
-msgstr ""
+msgstr "_قارن"
#. RC7F3
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:12848
@@ -21457,7 +21487,7 @@ msgstr "الطُرُ_ز"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9360
msgctxt "notebookbar_groupedbar_full|FormatButton"
msgid "F_ormat"
-msgstr ""
+msgstr "ن_سَق"
#. RFMpm
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5129
@@ -21479,7 +21509,7 @@ msgstr "أ_درج"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8159
msgctxt "notebookbar_groupedbar_full|ReferenceButton"
msgid "Referen_ce"
-msgstr ""
+msgstr "مر_جع"
#. 8XawJ
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5784
@@ -21527,13 +21557,13 @@ msgstr "اد_مج"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7711
msgctxt "notebookbar_groupedbar_full|SelectButton"
msgid "Sele_ct"
-msgstr ""
+msgstr "ح_دد"
#. NZWw8
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7935
msgctxt "notebookbar_groupedbar_full|CalculateButton"
msgid "_Calc"
-msgstr ""
+msgstr "_كالك"
#. cyjNn
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8294
@@ -21545,19 +21575,19 @@ msgstr "الل_غة"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8726
msgctxt "notebookbar_groupedbar_full|CommentsButton"
msgid "_Comments"
-msgstr ""
+msgstr "ت_عليقات"
#. mvE4u
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8925
msgctxt "notebookbar_groupedbar_full|CompareButton"
msgid "Com_pare"
-msgstr ""
+msgstr "_قارن"
#. YtBAd
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10255
msgctxt "notebookbar_groupedbar_full|DrawButton"
msgid "D_raw"
-msgstr ""
+msgstr "در_و"
#. gPK7A
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10557
@@ -21566,7 +21596,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15179
msgctxt "notebookbar_groupedbar_full|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "_رتّب"
#. dkXBa
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11254
@@ -21581,7 +21611,7 @@ msgstr "ح_رّر"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:15631
msgctxt "notebookbar_groupedbar_full|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_شبكة"
#. 4BrBg
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11631
@@ -21593,7 +21623,7 @@ msgstr "_جمّع"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11803
msgctxt "notebookbar_groupedbar_full|3DButton"
msgid "3_D"
-msgstr ""
+msgstr "3_الأبعاد"
#. fDD7F
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12090
@@ -21605,37 +21635,37 @@ msgstr "صورة"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13046
msgctxt "notebookbar_groupedbar_full|ColorButton"
msgid "C_olor"
-msgstr ""
+msgstr "ل_ون"
#. DzzAv
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13565
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_كائن"
#. W7NR4
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14420
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "F_rame"
-msgstr ""
+msgstr "إط_ار"
#. DhFZG
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14890
msgctxt "notebookbar_groupedbar_full|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "و_سائط"
#. LRxDK
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:16704
msgctxt "notebookbar_groupedbar_full|PrintMenuButton"
msgid "Slide Layout"
-msgstr ""
+msgstr "مخطط الشريحة"
#. 8J3Bt
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:17176
msgctxt "notebookbar_groupedbar_full|PrintMenuButton"
msgid "_Print"
-msgstr ""
+msgstr "ط_باعة"
#. BHK39
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:34
@@ -21778,19 +21808,19 @@ msgstr "اللّقب"
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:335
msgctxt "notebookbar_groups|heading1"
msgid "Heading 1"
-msgstr "عنوان رئيسي ١"
+msgstr "خط عنوان 1"
#. G4VHC
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:344
msgctxt "notebookbar_groups|heading2"
msgid "Heading 2"
-msgstr "عنوان رئيسي ٢"
+msgstr "خط عنوان 2"
#. sQPo5
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:353
msgctxt "notebookbar_groups|heading3"
msgid "Heading 3"
-msgstr "عنوان رئيسي ٣"
+msgstr "خط عنوان ٣"
#. vixA6
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:368
@@ -21815,7 +21845,7 @@ msgstr "تشديد قوي"
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:404
msgctxt "notebookbar_groups|tablestylenone"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. 2EFPh
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:412
@@ -21831,10 +21861,9 @@ msgstr ""
#. AWqDR
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:428
-#, fuzzy
msgctxt "notebookbar_groups|tablestyle2"
msgid "Style 2"
-msgstr "النمط2"
+msgstr "الطراز 2"
#. vHoey
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:436
@@ -21917,7 +21946,6 @@ msgstr "الطراز"
#. nyg3m
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1445
-#, fuzzy
msgctxt "notebookbar_groups|formatgrouplabel"
msgid "Text"
msgstr "النص"
@@ -21962,10 +21990,9 @@ msgstr "الأعمدة"
#. bvYvp
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2007
-#, fuzzy
msgctxt "notebookbar_groups|tablegrouplabel"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. Du8Qw
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2043
@@ -22002,21 +22029,19 @@ msgstr "صورة"
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2262
msgctxt "notebookbar_groups|wrapoff"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. MCMXX
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2271
-#, fuzzy
msgctxt "notebookbar_groups|wrapideal"
msgid "Optimal"
-msgstr "الأ_مثل"
+msgstr "الأمثل"
#. EpwrB
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2280
-#, fuzzy
msgctxt "notebookbar_groups|wrapon"
msgid "Parallel"
-msgstr "_موازي"
+msgstr "موازٍ"
#. fAfKA
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2289
@@ -22032,10 +22057,9 @@ msgstr "بعد"
#. PGXfq
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2307
-#, fuzzy
msgctxt "notebookbar_groups|wrapthrough"
msgid "Through"
-msgstr "_خلال"
+msgstr "خلال"
#. WEBWT
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:2322
@@ -22373,7 +22397,7 @@ msgstr "ماكرو"
#: sw/uiconfig/swriter/ui/optcaptionpage.ui:60
msgctxt "optcaptionpage|label7"
msgid "Category:"
-msgstr "الفئة:"
+msgstr "الصنف:"
#. kbdFC
#: sw/uiconfig/swriter/ui/optcaptionpage.ui:74
@@ -22457,7 +22481,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcaptionpage.ui:308
msgctxt "optcaptionpage|level"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. yKguf
#: sw/uiconfig/swriter/ui/optcaptionpage.ui:312
@@ -22482,7 +22506,7 @@ msgstr "طراز المحارف:"
#: sw/uiconfig/swriter/ui/optcaptionpage.ui:376
msgctxt "optcaptionpage|charstyle"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. rMSSd
#: sw/uiconfig/swriter/ui/optcaptionpage.ui:380
@@ -22669,7 +22693,7 @@ msgstr "استخدم لف النص حول الكائنات كما في OpenOffic
#: sw/uiconfig/swriter/ui/optcompatpage.ui:234
msgctxt "optcompatpage|format"
msgid "Consider wrapping style when positioning objects"
-msgstr "راعِ نمط اللف عند تموضع الكائنات"
+msgstr "راعِ طراز اللف عند تموضع الكائنات"
#. XMp2J
#: sw/uiconfig/swriter/ui/optcompatpage.ui:235
@@ -22753,7 +22777,7 @@ msgstr "ال_مبدئيّ:"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:75
msgctxt "optfonttabpage|heading_label"
msgid "Headin_g:"
-msgstr "ع_نوان رئيسي:"
+msgstr "خط الع_نوان:"
#. iHgYG
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:89
@@ -22783,7 +22807,7 @@ msgstr "يحدد الخط الذي سيُستخدم لطراز الفقرة ال
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:166
msgctxt "extended_tip|titlebox"
msgid "Specifies the font to be used for headings."
-msgstr "يحدد الخط الذي سيُستخدم للعناوين الرئيسية."
+msgstr "يحدد الخط الذي سيُستخدم لخطوط العناوين."
#. hEhde
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:190
@@ -23004,7 +23028,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optformataidspage.ui:416
msgctxt "optformataidspage|fillmode"
msgid "Insert:"
-msgstr ""
+msgstr "أدرِج:"
#. ACvNA
#: sw/uiconfig/swriter/ui/optformataidspage.ui:433
@@ -23250,13 +23274,13 @@ msgstr "ا_للون:"
#: sw/uiconfig/swriter/ui/optredlinepage.ui:64
msgctxt "optredlinepage|insert"
msgid "[None]"
-msgstr "[بدون]"
+msgstr "[بِلا]"
#. mhAvC
#: sw/uiconfig/swriter/ui/optredlinepage.ui:65
msgctxt "optredlinepage|insert"
msgid "Bold"
-msgstr "سميك"
+msgstr "ثخين"
#. ECCBC
#: sw/uiconfig/swriter/ui/optredlinepage.ui:66
@@ -23388,7 +23412,7 @@ msgstr "ا_للون:"
#: sw/uiconfig/swriter/ui/optredlinepage.ui:342
msgctxt "extended_tip|changed"
msgid "Defines how changes to text attributes are displayed in the document. These changes affect attributes such as bold, italic or underline."
-msgstr ""
+msgstr "تعرّف كيفية عَرض تغييرات خصائص النص في المستند. هذه التغييرات تؤثر على خصائص مثل الثخين أو المائل أو التسطير."
#. QUmdP
#: sw/uiconfig/swriter/ui/optredlinepage.ui:365
@@ -23437,7 +23461,7 @@ msgstr "ال_لون:"
#: sw/uiconfig/swriter/ui/optredlinepage.ui:525
msgctxt "optredlinepage|markpos"
msgid "[None]"
-msgstr "[بدون]"
+msgstr "[بِلا]"
#. gj7eD
#: sw/uiconfig/swriter/ui/optredlinepage.ui:526
@@ -23564,7 +23588,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/opttablepage.ui:212
msgctxt "opttablepage|numalignment"
msgid "_Alignment"
-msgstr "م_حاذاة"
+msgstr "محا_ذاة"
#. dBHyT
#: sw/uiconfig/swriter/ui/opttablepage.ui:221
@@ -23807,7 +23831,7 @@ msgstr "حمّ_ل/احفظ"
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:260
msgctxt "outlinenumbering|numbering"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. eTpmZ
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:307
@@ -23898,7 +23922,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:274
msgctxt "outlinenumberingpage|label2"
msgid "Numbering"
-msgstr "الترقيم"
+msgstr "التعداد"
#. bFwTy
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:322
@@ -23927,10 +23951,9 @@ msgstr "_قبل"
#. 3KmsV
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:404
-#, fuzzy
msgctxt "outlinenumberingpage|label9"
msgid "After:"
-msgstr "بعد"
+msgstr "بعد:"
#. Vmmga
#: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:420
@@ -24061,10 +24084,9 @@ msgstr ""
#. wnCMF
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:357
-#, fuzzy
msgctxt "outlinepositionpage|alignedat"
msgid "Aligned at:"
-msgstr "محاذاة إلى"
+msgstr "محاذاة عند:"
#. kWMhW
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:378
@@ -24076,7 +24098,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:391
msgctxt "outlinepositionpage|at"
msgid "Tab stop at:"
-msgstr "تتوقّف الجدولة عند:"
+msgstr "يتوقّف مفتاح التبويب عند:"
#. FVvCZ
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:412
@@ -24088,7 +24110,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:427
msgctxt "outlinepositionpage|liststore2"
msgid "Tab stop"
-msgstr "علامة الجدولة"
+msgstr "توقُّف مفتاح التبويب"
#. w6UaR
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:428
@@ -24127,19 +24149,19 @@ msgid "Default"
msgstr "المبدئيّ"
#. 8fEFG
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:469
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:466
msgctxt "outlinepositionpage|extended_tip|standard"
msgid "Resets the indent and the spacing values to the default values."
msgstr ""
#. bLuru
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:490
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:487
msgctxt "outlinepositionpage|label10"
msgid "Position and Spacing"
msgstr "الموضع والتباعد"
#. ogECa
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:534
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:531
msgctxt "outlinepositionpage|label17"
msgid "Preview"
msgstr "معاينة"
@@ -24224,10 +24246,9 @@ msgstr "مخصص"
#. RyvUN
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:36
-#, fuzzy
msgctxt "pagefooterpanel|spacing"
msgid "Spacing:"
-msgstr "التّباعد:"
+msgstr "التباعد:"
#. uCyAR
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:50
@@ -24565,7 +24586,7 @@ msgstr "فقرة"
#: sw/uiconfig/swriter/ui/paradialog.ui:33
msgctxt "paradialog|reset"
msgid "Unsaved modifications to this tab are reverted."
-msgstr ""
+msgstr "يُتراجَع عن التعديلات غير المحفوظة في هذا اللسان."
#. Gw9vR
#: sw/uiconfig/swriter/ui/paradialog.ui:36
@@ -24577,7 +24598,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/paradialog.ui:160
msgctxt "paradialog|labelTP_PARA_STD"
msgid "Indents & Spacing"
-msgstr "إزاحة و تباعد"
+msgstr "الإزاحات والتباعد"
#. PRo68
#: sw/uiconfig/swriter/ui/paradialog.ui:207
@@ -24745,7 +24766,7 @@ msgstr "ا_سم الملف"
#: sw/uiconfig/swriter/ui/picturepage.ui:88
msgctxt "picturepage|label11"
msgid "Link"
-msgstr "الرابط"
+msgstr "ارتباط"
#. hCVDF
#: sw/uiconfig/swriter/ui/picturepage.ui:121
@@ -24905,10 +24926,9 @@ msgstr ""
#. K9pGA
#: sw/uiconfig/swriter/ui/printeroptions.ui:46
-#, fuzzy
msgctxt "printeroptions|pictures"
msgid "Images and other graphic objects"
-msgstr "الصور والكائنات الرسومية الأخرى"
+msgstr "صور وكائنات رسومية أخرى"
#. BWWNC
#: sw/uiconfig/swriter/ui/printeroptions.ui:54
@@ -25167,7 +25187,7 @@ msgstr "صفحات"
#: sw/uiconfig/swriter/ui/printoptionspage.ui:289
msgctxt "printoptionspage|none"
msgid "_None"
-msgstr "_بدون"
+msgstr "_بلا"
#. CDv8b
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
@@ -25227,7 +25247,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/printoptionspage.ui:393
msgctxt "printoptionspage|4"
msgid "Comments"
-msgstr "التعليقات"
+msgstr "تعليقات"
#. hwuKb
#: sw/uiconfig/swriter/ui/printoptionspage.ui:439
@@ -25891,13 +25911,13 @@ msgstr "غيّر اسم الكائن: "
#: sw/uiconfig/swriter/ui/renameobjectdialog.ui:98
msgctxt "renameobjectdialog|label2"
msgid "New name:"
-msgstr ""
+msgstr "الاسم الجديد:"
#. Yffi5
#: sw/uiconfig/swriter/ui/renameobjectdialog.ui:127
msgctxt "renameobjectdialog|label1"
msgid "Change Name"
-msgstr "عدّل الاسم"
+msgstr "غيّر الاسم"
#. NWjKW
#: sw/uiconfig/swriter/ui/rowheight.ui:15
@@ -25909,19 +25929,19 @@ msgstr "ارتفاع الصف"
#: sw/uiconfig/swriter/ui/rowheight.ui:107
msgctxt "rowheight|extended_tip|heightmf"
msgid "Enter the height that you want for the selected row(s)."
-msgstr ""
+msgstr "أدخل الارتفاع الذي تريده للصف (الصفوف) المحددة."
#. 8JFHg
#: sw/uiconfig/swriter/ui/rowheight.ui:119
msgctxt "rowheight|fit"
msgid "_Fit to size"
-msgstr "_ملاءمة تلقائية للحجم"
+msgstr "لائ_م مع الحجم"
#. FFHCd
#: sw/uiconfig/swriter/ui/rowheight.ui:127
msgctxt "rowheight|extended_tip|fit"
msgid "Automatically adjusts the row height to match the contents of the cells."
-msgstr ""
+msgstr "يضبّط ارتفاع الصف تلقائياً ليطابق محتويات الخلايا."
#. 87zor
#: sw/uiconfig/swriter/ui/rowheight.ui:143
@@ -25933,13 +25953,13 @@ msgstr "الارتفاع"
#: sw/uiconfig/swriter/ui/rowheight.ui:168
msgctxt "rowheight|extended_tip|RowHeightDialog"
msgid "Changes the height of the selected row(s)."
-msgstr ""
+msgstr "يغيّر ارتفاع الصف (صفوف) المحدد."
#. nNUFB
#: sw/uiconfig/swriter/ui/saveashtmldialog.ui:7
msgctxt "saveashtmldialog|SaveAsHTMLDialog"
msgid "Save as HTML?"
-msgstr ""
+msgstr "حفظ كـ HTML؟"
#. nnt82
#: sw/uiconfig/swriter/ui/saveashtmldialog.ui:14
@@ -25957,21 +25977,19 @@ msgstr ""
#: sw/uiconfig/swriter/ui/savelabeldialog.ui:8
msgctxt "savelabeldialog|SaveLabelDialog"
msgid "Save Label Format"
-msgstr ""
+msgstr "احفظ نسَق اللصيقة"
#. PkJVz
#: sw/uiconfig/swriter/ui/savelabeldialog.ui:96
-#, fuzzy
msgctxt "savelabeldialog|label2"
msgid "Brand"
-msgstr "العلامة التجارية:"
+msgstr "العلامة التجارية"
#. AwGvc
#: sw/uiconfig/swriter/ui/savelabeldialog.ui:109
-#, fuzzy
msgctxt "savelabeldialog|label3"
msgid "T_ype"
-msgstr "النوع"
+msgstr "ال_نوع"
#. KX58T
#: sw/uiconfig/swriter/ui/savelabeldialog.ui:127
@@ -26007,14 +26025,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:71
msgctxt "printmonitordialog|saving"
msgid "is being saved to"
-msgstr ""
+msgstr "يجري الحفظ إلى"
#. L7P6y
#: sw/uiconfig/swriter/ui/sectionpage.ui:97
-#, fuzzy
msgctxt "sectionpage|label4"
msgid "New Section"
-msgstr "دالة جديدة"
+msgstr "قسم جديد"
#. Z9GeF
#: sw/uiconfig/swriter/ui/sectionpage.ui:105
@@ -26054,7 +26071,6 @@ msgstr "ا_سم الملف"
#. AYDG6
#: sw/uiconfig/swriter/ui/sectionpage.ui:210
-#, fuzzy
msgctxt "sectionpage|ddelabel"
msgid "DDE _command"
msgstr "أ_مر DDE"
@@ -26069,7 +26085,7 @@ msgstr "_مقطع"
#: sw/uiconfig/swriter/ui/sectionpage.ui:244
msgctxt "sectionpage|selectfile"
msgid "Browse..."
-msgstr "استعراض..."
+msgstr "تصفّح…"
#. XjJAi
#: sw/uiconfig/swriter/ui/sectionpage.ui:252
@@ -26087,13 +26103,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/sectionpage.ui:298
msgctxt "sectionpage|extended_tip|sectionname"
msgid "Type a name for the new section."
-msgstr ""
+msgstr "اكتب اسمًا للقسم الجديد"
#. 9GJeE
#: sw/uiconfig/swriter/ui/sectionpage.ui:320
msgctxt "sectionpage|label1"
msgid "Link"
-msgstr "رابط"
+msgstr "ارتباط"
#. zeESA
#: sw/uiconfig/swriter/ui/sectionpage.ui:351
@@ -26133,10 +26149,9 @@ msgstr ""
#. 4rFEh
#: sw/uiconfig/swriter/ui/sectionpage.ui:432
-#, fuzzy
msgctxt "sectionpage|label2"
msgid "Write Protection"
-msgstr "حماية ضد الكتابة"
+msgstr "حماية من الكتابة"
#. eEPSX
#: sw/uiconfig/swriter/ui/sectionpage.ui:463
@@ -26287,7 +26302,7 @@ msgstr "الاسم"
#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:298
msgctxt "selectaddressdialog|table"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. aKnGF
#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:340
@@ -26343,7 +26358,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/selectblockdialog.ui:131
msgctxt "selectblockdialog|delete"
msgid "_Delete"
-msgstr "ح_ذف"
+msgstr "اح_ذف"
#. Xv9Ub
#: sw/uiconfig/swriter/ui/selectblockdialog.ui:138
@@ -26437,10 +26452,9 @@ msgstr ""
#. aGPFr
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:18
-#, fuzzy
msgctxt "selecttabledialog|SelectTableDialog"
msgid "Select Table"
-msgstr "تقسيم الجدول"
+msgstr "حدد الجدول"
#. SfHVd
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:99
@@ -26458,106 +26472,103 @@ msgstr "الاسم"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:149
msgctxt "selecttabledialog|column2"
msgid "Type"
-msgstr ""
+msgstr "النوع"
#. GoUkf
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:160
msgctxt "selecttabledialog|extended_tip|table"
msgid "Select the table that you want to use for mail merge addresses."
-msgstr ""
+msgstr "حدد الجدول الذي تريد استخدامه لعناوين دمج البريد."
#. uRHDQ
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:181
-#, fuzzy
msgctxt "selecttabledialog|preview"
msgid "_Preview"
-msgstr "معاينة"
+msgstr "معاي_نة"
#. Wo98B
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:188
msgctxt "selecttabledialog|extended_tip|preview"
msgid "Opens the Mail Merge Recipients dialog."
-msgstr ""
+msgstr "يفتح حوار مستلمي دمج البريد."
#. HvjeJ
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:224
msgctxt "selecttabledialog|extended_tip|SelectTableDialog"
msgid "Select the table that you want to use for mail merge addresses."
-msgstr ""
+msgstr "حدد الجدول الذي تريد استخدامه لعناوين دمج البريد."
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:34
msgctxt "sidebatableedit|rowheight|tooltip_text"
msgid "Row Height"
-msgstr ""
+msgstr "ارتفاع الصف"
#. McHyF
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:50
msgctxt "sidebartableedit|insert_label"
msgid "Insert:"
-msgstr ""
+msgstr "أدرِج:"
#. WxnPo
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:117
msgctxt "sidebartableedit|select_label"
msgid "Select:"
-msgstr ""
+msgstr "حدد:"
#. iaj7k
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:194
msgctxt "sidebatableedit|columnwidth|tooltip_text"
msgid "Column Width"
-msgstr ""
+msgstr "عُرض العمود"
#. wBi45
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:211
msgctxt "sidebartableedit|row_height_label"
msgid "Row height:"
-msgstr ""
+msgstr "ارتفاع الصف:"
#. A9e3U
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:226
msgctxt "sidebartableedit|column_width_label"
msgid "Column width:"
-msgstr ""
+msgstr "عُرض العمود:"
#. MDyQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:326
msgctxt "sidebartableedit|delete_label"
msgid "Delete:"
-msgstr ""
+msgstr "احذف:"
#. 6wzLa
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:383
msgctxt "sidebartableedit|split_merge_label"
msgid "Split/Merge:"
-msgstr ""
+msgstr "اقسم\\ادمج:"
#. Em3y9
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:484
msgctxt "sidebartableedit|misc_label"
msgid "Miscellaneous:"
-msgstr ""
+msgstr "متنوعة:"
#. zdpW8
#: sw/uiconfig/swriter/ui/sidebartheme.ui:32
-#, fuzzy
msgctxt "sidebartheme|label1"
msgid "Fonts"
-msgstr "الخط"
+msgstr "الخطوط"
#. B25Kd
#: sw/uiconfig/swriter/ui/sidebartheme.ui:85
-#, fuzzy
msgctxt "sidebartheme|label2"
msgid "Colors"
-msgstr "اللون"
+msgstr "الألوان"
#. 9P6rW
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:23
msgctxt "sidebarwrap|label1"
msgid "Spacing:"
-msgstr "التّباعد:"
+msgstr "التباعد:"
#. UfPZU
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:37
@@ -26569,25 +26580,25 @@ msgstr "اضبط المسافة بين الصورة والنص المحيط به
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:49
msgctxt "sidebarwrap|label2"
msgid "Wrap:"
-msgstr ""
+msgstr "لفّ:"
#. CeCh8
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:74
msgctxt "sidebarwrap|wrapoff|tooltip_text"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. BM99o
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:86
msgctxt "sidebarwrap|wrapon|tooltip_text"
msgid "Parallel"
-msgstr ""
+msgstr "موازٍ"
#. 6LvB4
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:98
msgctxt "sidebarwrap|wrapideal|tooltip_text"
msgid "Optimal"
-msgstr ""
+msgstr "الأمثل"
#. 2TrbF
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:110
@@ -26605,7 +26616,7 @@ msgstr "بعد"
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:134
msgctxt "sidebarwrap|wrapthrough|tooltip_text"
msgid "Through"
-msgstr ""
+msgstr "خلال"
#. PqGRt
#: sw/uiconfig/swriter/ui/sortdialog.ui:29
@@ -26632,283 +26643,283 @@ msgid "Order"
msgstr "الترتيب"
#. NioK5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:170
+#: sw/uiconfig/swriter/ui/sortdialog.ui:178
msgctxt "sortdialog|up1"
msgid "Ascending"
msgstr "تصاعدي"
#. ASaRk
-#: sw/uiconfig/swriter/ui/sortdialog.ui:182
+#: sw/uiconfig/swriter/ui/sortdialog.ui:191
msgctxt "sortdialog|extended_tip|up1"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
-msgstr ""
+msgstr "يرتّب بترتيب تصاعدي (مثلا، 1، ‏2، ‏3 أو أ، ب، ج)."
#. yVqST
-#: sw/uiconfig/swriter/ui/sortdialog.ui:193
+#: sw/uiconfig/swriter/ui/sortdialog.ui:202
msgctxt "sortdialog|down1"
msgid "Descending"
msgstr "تنازلي"
#. YS8zz
-#: sw/uiconfig/swriter/ui/sortdialog.ui:205
+#: sw/uiconfig/swriter/ui/sortdialog.ui:215
msgctxt "sortdialog|extended_tip|down1"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
-msgstr ""
+msgstr "يرتّب بترتيب تنازلي (مثلا، 9، ‏8، ‏7 أو ي، و، ه)."
#. P9D2w
-#: sw/uiconfig/swriter/ui/sortdialog.ui:228
+#: sw/uiconfig/swriter/ui/sortdialog.ui:238
msgctxt "sortdialog|up2"
msgid "Ascending"
msgstr "تصاعدي"
#. TMLam
-#: sw/uiconfig/swriter/ui/sortdialog.ui:240
+#: sw/uiconfig/swriter/ui/sortdialog.ui:251
msgctxt "sortdialog|extended_tip|up2"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
-msgstr ""
+msgstr "يرتّب بترتيب تصاعدي (مثلا، 1، ‏2، ‏3 أو أ، ب، ج)."
#. haL8p
-#: sw/uiconfig/swriter/ui/sortdialog.ui:251
+#: sw/uiconfig/swriter/ui/sortdialog.ui:262
msgctxt "sortdialog|down2"
msgid "Descending"
msgstr "تنازلي"
#. HMoq2
-#: sw/uiconfig/swriter/ui/sortdialog.ui:263
+#: sw/uiconfig/swriter/ui/sortdialog.ui:275
msgctxt "sortdialog|extended_tip|down2"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
-msgstr ""
+msgstr "يرتّب بترتيب تنازلي (مثلا، 9، ‏8، ‏7 أو ي، و، ه)."
#. PHxUv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:286
+#: sw/uiconfig/swriter/ui/sortdialog.ui:298
msgctxt "sortdialog|up3"
msgid "Ascending"
msgstr "تصاعدي"
#. jL5gX
-#: sw/uiconfig/swriter/ui/sortdialog.ui:298
+#: sw/uiconfig/swriter/ui/sortdialog.ui:311
msgctxt "sortdialog|extended_tip|up3"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
-msgstr ""
+msgstr "يرتّب بترتيب تصاعدي (مثلا، 1، ‏2، ‏3 أو أ، ب، ج)."
#. zsggE
-#: sw/uiconfig/swriter/ui/sortdialog.ui:309
+#: sw/uiconfig/swriter/ui/sortdialog.ui:322
msgctxt "sortdialog|down3"
msgid "Descending"
msgstr "تنازلي"
#. 8LdjH
-#: sw/uiconfig/swriter/ui/sortdialog.ui:321
+#: sw/uiconfig/swriter/ui/sortdialog.ui:335
msgctxt "sortdialog|extended_tip|down3"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
-msgstr ""
+msgstr "يرتّب بترتيب تنازلي (مثلا، 9، ‏8، ‏7 أو ي، و، ه)."
#. 3yLB6
-#: sw/uiconfig/swriter/ui/sortdialog.ui:338
+#: sw/uiconfig/swriter/ui/sortdialog.ui:352
msgctxt "sortdialog|key1"
msgid "Key 1"
msgstr "مفتاح 1"
#. GXMCr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:348
+#: sw/uiconfig/swriter/ui/sortdialog.ui:368
msgctxt "sortdialog|extended_tip|key1"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. XDgAf
-#: sw/uiconfig/swriter/ui/sortdialog.ui:359
+#: sw/uiconfig/swriter/ui/sortdialog.ui:379
msgctxt "sortdialog|key2"
msgid "Key 2"
msgstr "مفتاح 2"
#. CgEiB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:368
+#: sw/uiconfig/swriter/ui/sortdialog.ui:394
msgctxt "sortdialog|extended_tip|key2"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. 8yfoN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:379
+#: sw/uiconfig/swriter/ui/sortdialog.ui:405
msgctxt "sortdialog|key3"
msgid "Key 3"
msgstr "مفتاح 3"
#. yS2ky
-#: sw/uiconfig/swriter/ui/sortdialog.ui:388
+#: sw/uiconfig/swriter/ui/sortdialog.ui:420
msgctxt "sortdialog|extended_tip|key3"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. pFZY3
-#: sw/uiconfig/swriter/ui/sortdialog.ui:411
+#: sw/uiconfig/swriter/ui/sortdialog.ui:443
msgctxt "sortdialog|extended_tip|colsb1"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr "أدخِل رقم عمود الجدول الذي تريد استخدامه كأساس للترتيب."
#. n2S79
-#: sw/uiconfig/swriter/ui/sortdialog.ui:434
+#: sw/uiconfig/swriter/ui/sortdialog.ui:466
msgctxt "sortdialog|extended_tip|colsb2"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr "أدخِل رقم عمود الجدول الذي تريد استخدامه كأساس للترتيب."
#. ckwsF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:457
+#: sw/uiconfig/swriter/ui/sortdialog.ui:489
msgctxt "sortdialog|extended_tip|colsb3"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr "أدخِل رقم عمود الجدول الذي تريد استخدامه كأساس للترتيب."
#. 5bX9W
-#: sw/uiconfig/swriter/ui/sortdialog.ui:478
+#: sw/uiconfig/swriter/ui/sortdialog.ui:510
msgctxt "sortdialog|typelb1-atkobject"
msgid "Key type"
msgstr "نوع المفتاح"
#. rAGDj
-#: sw/uiconfig/swriter/ui/sortdialog.ui:479
+#: sw/uiconfig/swriter/ui/sortdialog.ui:511
msgctxt "sortdialog|extended_tip|typelb1"
msgid "Select the sorting option that you want to use."
msgstr "حدد خيار الترتيب الذي تريد استخدامه."
#. FxBUC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:501
+#: sw/uiconfig/swriter/ui/sortdialog.ui:533
msgctxt "sortdialog|typelb2-atkobject"
msgid "Key type"
msgstr "نوع المفتاح"
#. efrcu
-#: sw/uiconfig/swriter/ui/sortdialog.ui:502
+#: sw/uiconfig/swriter/ui/sortdialog.ui:534
msgctxt "sortdialog|extended_tip|typelb2"
msgid "Select the sorting option that you want to use."
msgstr "حدد خيار الترتيب الذي تريد استخدامه."
#. 9D3Mg
-#: sw/uiconfig/swriter/ui/sortdialog.ui:523
+#: sw/uiconfig/swriter/ui/sortdialog.ui:555
msgctxt "sortdialog|typelb3-atkobject"
msgid "Key type"
msgstr "نوع المفتاح"
#. RjtNn
-#: sw/uiconfig/swriter/ui/sortdialog.ui:524
+#: sw/uiconfig/swriter/ui/sortdialog.ui:556
msgctxt "sortdialog|extended_tip|typelb3"
msgid "Select the sorting option that you want to use."
msgstr "حدد خيار الترتيب الذي تريد استخدامه."
#. m3EJC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:542
+#: sw/uiconfig/swriter/ui/sortdialog.ui:574
msgctxt "sortdialog|1"
msgid "Sort Criteria"
msgstr "معايير الترتيب"
#. dY8Rr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:580
+#: sw/uiconfig/swriter/ui/sortdialog.ui:612
msgctxt "sortdialog|columns"
msgid "Columns"
msgstr "الأعمدة"
#. PviSN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:589
+#: sw/uiconfig/swriter/ui/sortdialog.ui:621
msgctxt "sortdialog|extended_tip|columns"
msgid "Sorts the columns in the table according to the current sort options."
msgstr "يرتّب الأعمدة في الجدول وفقًا لخيارات الترتيب الحالية."
#. d7odM
-#: sw/uiconfig/swriter/ui/sortdialog.ui:600
+#: sw/uiconfig/swriter/ui/sortdialog.ui:632
msgctxt "sortdialog|rows"
msgid "Rows"
msgstr "الصفوف"
#. vsSra
-#: sw/uiconfig/swriter/ui/sortdialog.ui:609
+#: sw/uiconfig/swriter/ui/sortdialog.ui:641
msgctxt "sortdialog|extended_tip|rows"
msgid "Sorts the rows in the table or the paragraphs in the selection according to the current sort options."
msgstr "يرتّب الصفوف في الجدول أو الفقرات في التحديد وفقًا لخيارات الترتيب الحالية."
#. C4Fuq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:624
+#: sw/uiconfig/swriter/ui/sortdialog.ui:656
msgctxt "sortdialog|label3"
msgid "Direction"
msgstr "الاتجاه"
#. JGBYA
-#: sw/uiconfig/swriter/ui/sortdialog.ui:654
+#: sw/uiconfig/swriter/ui/sortdialog.ui:686
msgctxt "sortdialog|tabs"
msgid "Tabs"
msgstr "تبويبات"
#. dE3Av
-#: sw/uiconfig/swriter/ui/sortdialog.ui:663
+#: sw/uiconfig/swriter/ui/sortdialog.ui:695
msgctxt "sortdialog|extended_tip|tabs"
msgid "If the selected paragraphs correspond to a list separated by tabs, select this option."
msgstr "إذا كانت الفقرات المحددة عائدة إلى قائمة مفصولة بتبويبات، فحدّد هذا الخيار."
#. 7GWNt
-#: sw/uiconfig/swriter/ui/sortdialog.ui:675
+#: sw/uiconfig/swriter/ui/sortdialog.ui:707
msgctxt "sortdialog|character"
msgid "Character "
msgstr "محرف "
#. 9yFT9
-#: sw/uiconfig/swriter/ui/sortdialog.ui:688
+#: sw/uiconfig/swriter/ui/sortdialog.ui:722
msgctxt "sortdialog|extended_tip|character"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr "أدخِل المحرف الذي تريد استخدامه كفاصل في المساحة المحددة."
#. ECCA5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:718
+#: sw/uiconfig/swriter/ui/sortdialog.ui:753
msgctxt "sortdialog|extended_tip|separator"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr "أدخِل المحرف الذي تريد استخدامه كفاصل في المساحة المحددة."
#. XC5zv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:729
+#: sw/uiconfig/swriter/ui/sortdialog.ui:764
msgctxt "sortdialog|delimpb"
msgid "Select..."
msgstr "حدّد..."
#. VhhBB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:739
+#: sw/uiconfig/swriter/ui/sortdialog.ui:774
msgctxt "sortdialog|extended_tip|delimpb"
msgid "Opens the Special Characters dialog, where you can select the character that you want to use as a separator."
msgstr "يفتح حوار المحارف الخاصة، الذي يمكنك منه تحديد المحرف الذي تريد استخدامه كفاصل."
#. BX6Mq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:760
+#: sw/uiconfig/swriter/ui/sortdialog.ui:795
msgctxt "sortdialog|label4"
msgid "Separator"
msgstr "الفاصل"
#. bBbUV
-#: sw/uiconfig/swriter/ui/sortdialog.ui:808
+#: sw/uiconfig/swriter/ui/sortdialog.ui:843
msgctxt "sortdialog|extended_tip|langlb"
msgid "Select the language that defines the sorting rules."
msgstr "حدّد اللغة التي تعرِّف ضوابط الترتيب."
#. gEcoc
-#: sw/uiconfig/swriter/ui/sortdialog.ui:817
+#: sw/uiconfig/swriter/ui/sortdialog.ui:852
msgctxt "sortdialog|label1"
msgid "Language"
msgstr "اللغة"
#. QnviQ
-#: sw/uiconfig/swriter/ui/sortdialog.ui:837
+#: sw/uiconfig/swriter/ui/sortdialog.ui:872
msgctxt "sortdialog|matchcase"
msgid "Match case"
msgstr "طابق حالة الأحرف"
#. Nd8XG
-#: sw/uiconfig/swriter/ui/sortdialog.ui:847
+#: sw/uiconfig/swriter/ui/sortdialog.ui:882
msgctxt "sortdialog|extended_tip|matchcase"
msgid "Distinguishes between uppercase and lowercase letters when you sort a table. For Asian languages special handling applies."
msgstr "يميّز بين الأحرف الكبيرة والصغيرة عندما ترتّب جدولا. بالنسبة للغات الآسيوية ينطبق التولّي الخاص."
#. Adw2Y
-#: sw/uiconfig/swriter/ui/sortdialog.ui:856
+#: sw/uiconfig/swriter/ui/sortdialog.ui:891
msgctxt "sortdialog|label2"
msgid "Setting"
msgstr "الإعداد"
#. pCcXF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:894
+#: sw/uiconfig/swriter/ui/sortdialog.ui:926
msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Sorts the selected paragraphs or table rows alphabetically or numerically."
msgstr "يرتّب الفقرات أو صفوف الجداول المحدد أبجدياً أو رقمياً."
@@ -26923,7 +26934,7 @@ msgstr "ت_جاهل الكل"
#: sw/uiconfig/swriter/ui/spellmenu.ui:20
msgctxt "spellmenu|addmenu"
msgid "Add to _Dictionary"
-msgstr ""
+msgstr "أ_ضِف إلى القاموس"
#. GMjgF
#: sw/uiconfig/swriter/ui/spellmenu.ui:34
@@ -26989,55 +27000,55 @@ msgstr "تقسيم الجدول"
#: sw/uiconfig/swriter/ui/splittable.ui:92
msgctxt "splittable|copyheading"
msgid "Copy heading"
-msgstr "نسخ الترويسة"
+msgstr "انسخ خط العنوان"
#. ajD2B
#: sw/uiconfig/swriter/ui/splittable.ui:101
msgctxt "splittable|extended_tip|copyheading"
msgid "Includes the first row of the original table as the first row of the second table."
-msgstr ""
+msgstr "يضمّن الصف الأول من الجدول الأصلي كصف أول للجدول الثاني."
#. 5qZGL
#: sw/uiconfig/swriter/ui/splittable.ui:112
msgctxt "splittable|customheadingapplystyle"
msgid "Custom heading (apply Style)"
-msgstr "ترويسة مخصّصة (تطبيق نمط)"
+msgstr "خط عنوان مخصّص (طبّق طرازاً)"
#. eq5fU
#: sw/uiconfig/swriter/ui/splittable.ui:121
msgctxt "splittable|extended_tip|customheadingapplystyle"
msgid "Inserts a blank header row in the second table that is formatted with the style of the first row in the original table."
-msgstr ""
+msgstr "أدرِج صف ترويس فارغ في الجدول الثاني منسَّقًا بطراز الصف الأول في الجدول الأصلي."
#. DKd7P
#: sw/uiconfig/swriter/ui/splittable.ui:132
msgctxt "splittable|customheading"
msgid "Custom heading"
-msgstr "ترويسة مخصّصة"
+msgstr "خط عنوان مخصّص"
#. HHsCK
#: sw/uiconfig/swriter/ui/splittable.ui:141
msgctxt "splittable|extended_tip|customheading"
msgid "Inserts an additional blank row in the second table."
-msgstr ""
+msgstr "يُدرج صفًا فارغًا إضافيًا في الجدول الثاني."
#. hiwak
#: sw/uiconfig/swriter/ui/splittable.ui:152
msgctxt "splittable|noheading"
msgid "No heading"
-msgstr "بدون ترويسة"
+msgstr "بِلا خط عنوان"
#. hhmK9
#: sw/uiconfig/swriter/ui/splittable.ui:161
msgctxt "splittable|extended_tip|noheading"
msgid "Splits the table without copying the header row."
-msgstr ""
+msgstr "يقسم الجدول بِلا نسخ صف الترويس."
#. RrS2A
#: sw/uiconfig/swriter/ui/splittable.ui:176
msgctxt "splittable|label1"
msgid "Mode"
-msgstr "وضع"
+msgstr "الوضع"
#. 9DBjn
#: sw/uiconfig/swriter/ui/splittable.ui:198
@@ -27271,7 +27282,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tablecolumnpage.ui:451
msgctxt "tablecolumnpage|label26"
msgid "Column Width"
-msgstr "عرض العمود"
+msgstr "عُرض العمود"
#. fxTCe
#: sw/uiconfig/swriter/ui/tablepreviewdialog.ui:8
@@ -27296,7 +27307,7 @@ msgstr "خصائص الجدول"
#: sw/uiconfig/swriter/ui/tableproperties.ui:137
msgctxt "tableproperties|table"
msgid "Table"
-msgstr "الجدول"
+msgstr "جدول"
#. PgyPz
#: sw/uiconfig/swriter/ui/tableproperties.ui:184
@@ -27329,241 +27340,241 @@ msgid "_Break"
msgstr "_فاصل"
#. LEfit
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:59
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:65
msgctxt "tabletextflowpage|extended_tip|break"
msgid "Select this check box, and then select the type of break that you want to associate with the table."
msgstr ""
#. 85dHS
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:70
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:76
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_صفحة"
#. LUPNA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:82
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:88
msgctxt "tabletextflowpage|extended_tip|page"
msgid "Inserts a page break before or after the table."
msgstr ""
#. ATESc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:93
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:99
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_عمود"
#. bU9Sj
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:105
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:111
msgctxt "tabletextflowpage|extended_tip|column"
msgid "Inserts a column break before or after the table on a multi-column page."
msgstr ""
#. bFvFr
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:116
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:122
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_قبل"
#. wCFtD
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:128
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:134
msgctxt "tabletextflowpage|extended_tip|before"
msgid "Inserts a page or column break before the table."
msgstr ""
#. x9LiQ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:139
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:145
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_بعد"
#. y4ECA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:157
msgctxt "tabletextflowpage|extended_tip|after"
msgid "Inserts a page or column break after the table."
msgstr ""
#. ZKgd9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:183
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "مع طرا_ز الصفحة"
#. NMMdy
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:189
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:195
msgctxt "tabletextflowpage|extended_tip|pagestyle"
msgid "Applies the page style that you specify to the first page that follows the page break."
msgstr ""
#. 4ifHW
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:200
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:206
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "ر_قم الصفحة"
#. b8xXZ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|extended_tip|pagenonf"
msgid "Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked."
msgstr ""
#. 5oC83
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:242
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:248
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "مع طراز صفحة"
#. NENyo
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:243
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:249
msgctxt "tabletextflowpage|extended_tip|pagestylelb"
msgid "Select the page style that you want to apply to the first page that follows the break."
msgstr ""
#. CZpDc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:260
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:266
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "السماح لل_جدول بالانقسام عبر الصفحات والأعمدة"
#. QXXZK
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:268
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
msgctxt "tabletextflowpage|extended_tip|split"
msgid "Allows a page break or column break between the rows of a table."
msgstr ""
#. SKeze
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:279
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:285
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "السماح للصّفّ بالانقسام _عبر الصفحات والأعمدة"
#. HYN9t
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:295
msgctxt "tabletextflowpage|extended_tip|splitrow"
msgid "Allows a page break or column break inside a row of the table."
msgstr ""
#. jGCyC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "إ_بقاء مع الفقرة التالية"
#. iFwuV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:308
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:314
msgctxt "tabletextflowpage|extended_tip|keep"
msgid "Keeps the table and the following paragraph together when you insert the break."
msgstr ""
#. QAY45
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:327
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:333
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "ا_تجاه النص"
#. JsEEP
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:341
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:347
msgctxt "tabletextflowpage|liststore1"
msgid "Horizontal"
msgstr "أفقي"
#. RgbAV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:342
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
msgstr "عمودي (أعلى إلى أسفل)"
#. 7yaYB
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:349
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
msgstr "عمودي (أسفل إلى أعلى)"
#. 5CGH9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:344
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:350
msgctxt "tabletextflowpage|liststore1"
msgid "Use superordinate object settings"
msgstr "استخدم إعدادات الكائن الرئيسي"
#. FJnts
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:354
msgctxt "tabletextflowpage|extended_tip|textorientation"
msgid "Select the orientation for the text in the cells."
msgstr "حدد اتجاه النص في الخلايا."
#. tWodL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:371
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:377
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
-msgstr "تكرار ال_رأس"
+msgstr "ك_رر خط العنوان"
#. EpMSY
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:379
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:385
msgctxt "tabletextflowpage|extended_tip|headline"
msgid "Repeats the table heading on a new page when the table spans more than one page."
msgstr ""
#. 7R7Gn
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:398
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:404
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "أوّل "
#. KEVNR
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:411
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:417
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "صفوف"
#. hLzfu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:427
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:433
msgctxt "tabletextflowpage|extended_tip|repeatheadernf"
msgid "Enter the number of rows to include in the heading."
msgstr "أدخِل عدد الصفوف لتضمينها في الرأس."
#. yLhbA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:454
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "انسياب النص"
#. FRUDs
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:484
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:490
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "م_حاذاة رأسية"
#. YLPEL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:498
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
msgctxt "tabletextflowpage|liststore2"
msgid "Top"
msgstr "أعلى"
#. 5Pb5v
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:499
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:505
msgctxt "tabletextflowpage|liststore2"
msgid "Centered"
msgstr "موسَّط"
#. 4aZFz
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:500
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:506
msgctxt "tabletextflowpage|liststore2"
msgid "Bottom"
msgstr "أسفل"
#. SwHrE
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:510
msgctxt "tabletextflowpage|extended_tip|vertorient"
msgid "Specify the vertical text alignment for the cells in the table."
msgstr ""
#. ZtGTC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:519
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:525
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "محاذاة"
#. GJKSu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:533
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:539
msgctxt "tabletextflowpage|extended_tip|TableTextFlowPage"
msgid "Set the text flow options for the text before and after the table."
msgstr ""
@@ -27612,7 +27623,6 @@ msgstr "تخطيط أسيوي"
#. scr3Z
#: sw/uiconfig/swriter/ui/templatedialog1.ui:412
-#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "الإبراز"
@@ -27627,7 +27637,7 @@ msgstr "الحدود"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:9
msgctxt "templatedialog16|TemplateDialog16"
msgid "List Style"
-msgstr ""
+msgstr "طراز القائمة"
#. tA5vb
#: sw/uiconfig/swriter/ui/templatedialog16.ui:168
@@ -27729,7 +27739,7 @@ msgstr "المنظِّم"
#: sw/uiconfig/swriter/ui/templatedialog2.ui:215
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
-msgstr "إزاحة و تباعد"
+msgstr "الإزاحات والتباعد"
#. UheDe
#: sw/uiconfig/swriter/ui/templatedialog2.ui:263
@@ -28030,7 +28040,7 @@ msgstr "الأخطاء"
#: sw/uiconfig/swriter/ui/textgridpage.ui:66
msgctxt "textgridpage|radioRB_NOGRID"
msgid "No grid"
-msgstr "بدون شبكة"
+msgstr "بِلا شبكة"
#. E4P8y
#: sw/uiconfig/swriter/ui/textgridpage.ui:75
@@ -28185,10 +28195,9 @@ msgstr ""
#. SxFyQ
#: sw/uiconfig/swriter/ui/textgridpage.ui:565
-#, fuzzy
msgctxt "textgridpage|labelFL_DISPLAY"
msgid "Grid Display"
-msgstr "إظهار الشبكة"
+msgstr "عَرض الشبكة"
#. F6YEz
#: sw/uiconfig/swriter/ui/textgridpage.ui:580
@@ -28224,7 +28233,7 @@ msgstr "حوّل الصفحات الموجودة إلى إسم الصفحات"
#: sw/uiconfig/swriter/ui/titlepage.ui:208
msgctxt "titlepage|RB_INSERT_NEW_PAGES"
msgid "Insert new title pages"
-msgstr "إدراج عنوانا جديدا للصفحات"
+msgstr "أدرِج صفحات عنوان جديدة"
#. 9UqEG
#: sw/uiconfig/swriter/ui/titlepage.ui:225
@@ -28355,10 +28364,9 @@ msgstr "ال_مستوى"
#. hJeAG
#: sw/uiconfig/swriter/ui/tocentriespage.ui:136
-#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
-msgstr "النوع"
+msgstr "ال_نوع"
#. fCuFC
#: sw/uiconfig/swriter/ui/tocentriespage.ui:191
@@ -28480,20 +28488,19 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocentriespage.ui:432
msgctxt "tocentriespage|entryoutlinelevelft"
msgid "Evaluate up to level:"
-msgstr ""
+msgstr "قيّم لغاية المستوى:"
#. 5RNAC
#: sw/uiconfig/swriter/ui/tocentriespage.ui:453
msgctxt "tocentriespage|extended_tip|entryoutlinelevel"
msgid "Enter the maximum hierarchy level down to which objects are shown in the generated index."
-msgstr ""
+msgstr "أدخِل أكبر مستوى هرمي نزولاً تظهر فيه الكائنات في الفهرس المولَّد."
#. qtbWw
#: sw/uiconfig/swriter/ui/tocentriespage.ui:466
-#, fuzzy
msgctxt "tocentriespage|numberformatft"
msgid "Format:"
-msgstr "التنسيق"
+msgstr "التنسيق:"
#. 24FSt
#: sw/uiconfig/swriter/ui/tocentriespage.ui:483
@@ -28565,7 +28572,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocentriespage.ui:609
msgctxt "tocentriespage|extended_tip|entrytext"
msgid "Inserts the text of the chapter heading."
-msgstr ""
+msgstr "يُدرج النص لخط عنوان الفصل."
#. BQH4d
#: sw/uiconfig/swriter/ui/tocentriespage.ui:621
@@ -28691,10 +28698,9 @@ msgstr ""
#. 2b5tC
#: sw/uiconfig/swriter/ui/tocentriespage.ui:890
-#, fuzzy
msgctxt "tocentriespage|sortcontents"
msgid "_Content"
-msgstr "المحتويات"
+msgstr "المحتو_ى"
#. 3N4Vm
#: sw/uiconfig/swriter/ui/tocentriespage.ui:899
@@ -28755,7 +28761,7 @@ msgstr "تصاعدي"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1043
msgctxt "tocentriespage|extended_tip|up1cb"
msgid "Sorts the bibliography entries in ascending alphanumerical order."
-msgstr ""
+msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متصاعد."
#. TXjGy
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1057
@@ -28767,7 +28773,7 @@ msgstr "تنازلي"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1063
msgctxt "tocentriespage|extended_tip|down1cb"
msgid "Sorts the bibliography entries in a descending alphanumerical order."
-msgstr ""
+msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل."
#. PJr9b
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1077
@@ -28779,7 +28785,7 @@ msgstr "تصاعدي"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1084
msgctxt "tocentriespage|extended_tip|up2cb"
msgid "Sorts the bibliography entries in ascending alphanumerical order."
-msgstr ""
+msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متصاعد."
#. cU3GF
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1098
@@ -28791,7 +28797,7 @@ msgstr "تصاعدي"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1105
msgctxt "tocentriespage|extended_tip|up3cb"
msgid "Sorts the bibliography entries in ascending alphanumerical order."
-msgstr ""
+msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متصاعد."
#. Ukmme
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1119
@@ -28803,7 +28809,7 @@ msgstr "تنازلي"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1125
msgctxt "tocentriespage|extended_tip|down2cb"
msgid "Sorts the bibliography entries in a descending alphanumerical order."
-msgstr ""
+msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل."
#. VRkA3
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1139
@@ -28815,7 +28821,7 @@ msgstr "تنازلي"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1145
msgctxt "tocentriespage|extended_tip|down3cb"
msgid "Sorts the bibliography entries in a descending alphanumerical order."
-msgstr ""
+msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل."
#. heqgT
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1160
@@ -28908,7 +28914,7 @@ msgstr "جدول الكائنات"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:147
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
-msgstr "ثبَت المراجع"
+msgstr "ثبَت مراجع"
#. zR6VT
#: sw/uiconfig/swriter/ui/tocindexpage.ui:151
@@ -28952,25 +28958,25 @@ msgstr "كل ال~مستند"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:242
msgctxt "tocindexpage|scope"
msgid "Chapter"
-msgstr "الفصل"
+msgstr "فصل"
#. 49Ghe
#: sw/uiconfig/swriter/ui/tocindexpage.ui:246
msgctxt "tocindexpage|extended_tip|scope"
msgid "Select whether to create the index for the document or for the current chapter."
-msgstr ""
+msgstr "حدد فيما لو يُنشَأ الفهرس للمستند أو للفصل الحالي."
#. DGY52
#: sw/uiconfig/swriter/ui/tocindexpage.ui:271
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
-msgstr ""
+msgstr "قيّم لغاية المستوى:"
#. zaoBB
#: sw/uiconfig/swriter/ui/tocindexpage.ui:290
msgctxt "tocindexpage|extended_tip|level"
msgid "Enter the number of heading levels to include in the index."
-msgstr ""
+msgstr "أدخِل عدد مستويات خطوط العناوين التي تضمَّن في الفهرس."
#. GwFGr
#: sw/uiconfig/swriter/ui/tocindexpage.ui:311
@@ -29031,7 +29037,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:427
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
-msgstr "الرسومات"
+msgstr "رسوميات"
#. nDFkz
#: sw/uiconfig/swriter/ui/tocindexpage.ui:435
@@ -29121,10 +29127,9 @@ msgstr ""
#. E8n8f
#: sw/uiconfig/swriter/ui/tocindexpage.ui:641
-#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
-msgstr "فئة"
+msgstr "الصنف:"
#. VADFj
#: sw/uiconfig/swriter/ui/tocindexpage.ui:657
@@ -29149,7 +29154,7 @@ msgstr "مراجع"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:686
msgctxt "tocindexpage|display"
msgid "Category and Number"
-msgstr "الفئة و الرقم"
+msgstr "الصنف و الرقم"
#. nvrHf
#: sw/uiconfig/swriter/ui/tocindexpage.ui:687
@@ -29197,13 +29202,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:858
msgctxt "tocindexpage|extended_tip|numberentries"
msgid "Automatically numbers the bibliography entries."
-msgstr ""
+msgstr "رقّم مُدخَلات ثبت المراجع تلقائيًا."
#. 7joDj
#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
msgctxt "tocindexpage|brackets"
msgid "[none]"
-msgstr "[بدون]"
+msgstr "[بِلا]"
#. hpS6x
#: sw/uiconfig/swriter/ui/tocindexpage.ui:875
@@ -29233,7 +29238,7 @@ msgstr "<>"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:882
msgctxt "tocindexpage|extended_tip|brackets"
msgid "Select the brackets that you want to enclose bibliography entries."
-msgstr ""
+msgstr "حدد الأقواس التي تريد إحاطة مُدخَلات الثبت بها."
#. 2M3ZW
#: sw/uiconfig/swriter/ui/tocindexpage.ui:897
@@ -29492,7 +29497,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:151
msgctxt "viewoptionspage|comments"
msgid "_Comments"
-msgstr "_التعليقات"
+msgstr "ت_عليقات"
#. PYSxn
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:159
@@ -29510,7 +29515,7 @@ msgstr "التعليقات المح_لولة"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:188
msgctxt "viewoptionspage|displaylabel"
msgid "Display"
-msgstr "عرض"
+msgstr "عَرض"
#. Fs7Ah
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:218
@@ -29630,7 +29635,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:503
msgctxt "viewoptionspage|label3"
msgid "View"
-msgstr "شاهد"
+msgstr "المعايَنة"
#. r6Sp2
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:537
@@ -29660,7 +29665,7 @@ msgstr "أ_ظهِر أزرار طي الهيكل"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:603
msgctxt "viewoptionspage|extended_tip|outlinecontentvisibilitybutton"
msgid "Displays outline folding buttons on the left of the outline headings."
-msgstr "يعرض أزرار طي الهيكل إلى يسار خطوط عناوين الهيكل."
+msgstr "يعرض أزرار طي الهيكل إلى يسار خطوط عناوين المخطط."
#. gAXeG
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:614
@@ -29930,7 +29935,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/wrappage.ui:61
msgctxt "wrappage|before"
msgid "Be_fore"
-msgstr ""
+msgstr "_قبل"
#. tE9SC
#: sw/uiconfig/swriter/ui/wrappage.ui:74
@@ -29942,7 +29947,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/wrappage.ui:121
msgctxt "wrappage|after"
msgid "Aft_er"
-msgstr ""
+msgstr "ب_عد"
#. vpZfS
#: sw/uiconfig/swriter/ui/wrappage.ui:134
@@ -29978,7 +29983,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/wrappage.ui:301
msgctxt "wrappage|none"
msgid "_Wrap Off"
-msgstr ""
+msgstr "لفّ بعيداً"
#. KSWRg
#: sw/uiconfig/swriter/ui/wrappage.ui:314
@@ -30110,7 +30115,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/wrappage.ui:703
msgctxt "wrappage|outside"
msgid "Allow overlap"
-msgstr ""
+msgstr "اسمح بالتراكب"
#. FDUUk
#: sw/uiconfig/swriter/ui/wrappage.ui:721
diff --git a/source/ar/swext/mediawiki/help.po b/source/ar/swext/mediawiki/help.po
index 2f67d91cb7a..0d76b0bdea0 100644
--- a/source/ar/swext/mediawiki/help.po
+++ b/source/ar/swext/mediawiki/help.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-02-08 10:50+0000\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/swextmediawikihelp/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: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1542022451.000000\n"
#. 7EFBE
@@ -257,7 +257,7 @@ msgctxt ""
"par_id944853\n"
"help.text"
msgid "Write the content of the wiki page. You can use formatting such as text formats, headings, footnotes, and more. See the <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">list of supported formats</link>."
-msgstr "اكتب محتويات صفحة الويكي. يمكنك تنسيق المحتوى باستخدام تنسيقات النص، و الترويسات، و الحواشي و غيرها. طالع <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">قائمة التنسيقات المدعومة</link>."
+msgstr "اكتب محتويات صفحة الويكي. يمكنك تنسيق المحتوى باستخدام تنسيقات النص، وخطوط العناوين والحواشي وغيرها. طالع <link href=\"com.sun.wiki-publisher/wikiformats.xhp\">قائمة الأنساق المدعومة</link>."
#. sqvcC
#: wiki.xhp
@@ -401,7 +401,7 @@ msgctxt ""
"par_id3112582\n"
"help.text"
msgid "Enter the Internet address of a wiki server in a format like “https://wiki.documentfoundation.org” or copy the URL from a web browser."
-msgstr ""
+msgstr "أدخِل عنوان انترنت لخادوم الويكي بنسَق مثل \"https://wiki.documentfoundation.org\" أو انسخ الرابط من متصفح وَب."
#. boKaA
#: wikiaccount.xhp
@@ -464,7 +464,7 @@ msgctxt ""
"hd_id7178868\n"
"help.text"
msgid "Headings"
-msgstr "الترويسات"
+msgstr "خطوط العناوين"
#. 5nuqC
#: wikiformats.xhp
@@ -473,7 +473,7 @@ msgctxt ""
"par_id508133\n"
"help.text"
msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine."
-msgstr "طبّق طراز عنوان رئيسي للفقرة على العناوين الرئيسة في مستند رايتر. سيعرض الويكي طُرُز العناوين بنفس مستوى المخطط، و منسقة كما يحددها محرّك الويكي."
+msgstr "طبّق خط عنوان للفقرة على خطوط العناوين في مستند رايتر. سيعرض الويكي طُرُز خط العنوان بنفس مستوى المخطط، منسقة كما يحددها محرّك الويكي."
#. YAjYW
#: wikiformats.xhp
@@ -482,7 +482,7 @@ msgctxt ""
"hd_id7217627\n"
"help.text"
msgid "Hyperlinks"
-msgstr "الروابط"
+msgstr "ارتباطات تشعبية"
#. u3Gky
#: wikiformats.xhp
@@ -504,13 +504,12 @@ msgstr "القوائم"
#. Cah9p
#: wikiformats.xhp
-#, fuzzy
msgctxt ""
"wikiformats.xhp\n"
"par_id8942838\n"
"help.text"
msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use <emph>Format - Bullets and Numbering</emph> to define and apply the respective list style."
-msgstr "يمكنك تصدير القوائم بثقة تامة في حال كانت القائمة كاملة تستخدم نمط قوائم ثابت. استخدم أيقونة الترقيم أو التنقيط لتوليد قائمة في رايتر. إن احتجت قائمة دون أرقام أو نقط، استخدم <emph>تنسيق- التنقيط و الترقيم</emph> لتعريف نمط قوائم وتطبيقه."
+msgstr "يمكن تصدير القوائم بثقة تامة في حال كانت القائمة بأكملها تستخدم طراز قوائم ثابت. استخدم أيقونة التعداد الرقمي أو النقطي لتوليد قائمة في رايتر. إن احتجت قائمة دون أرقام أو نقاط، استخدم <emph>تنسيق- تعداد نقطي ورقمي</emph> لتعريف طراز القائمة المعني وتطبيقه."
#. GJaHG
#: wikiformats.xhp
@@ -519,7 +518,7 @@ msgctxt ""
"hd_id7026886\n"
"help.text"
msgid "Paragraphs"
-msgstr "الفقرات"
+msgstr "فقرات"
#. LBFtS
#: wikiformats.xhp
@@ -583,7 +582,7 @@ msgctxt ""
"hd_id9405499\n"
"help.text"
msgid "Images"
-msgstr "الصور"
+msgstr "صور"
#. G3qA6
#: wikiformats.xhp
@@ -611,7 +610,7 @@ msgctxt ""
"par_id3037202\n"
"help.text"
msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored."
-msgstr "الجداول البسيطة مدعومة بشكل جيد. تُترجم ترويسات الجداول إلى نظيراتها بنمط الويكي. إلا أن تنسيق حدود الجدول، و أحجام الأعمدة و ألوان الخلفية يُتجاهل."
+msgstr "الجداول البسيطة مدعومة بشكل جيد. تُترجم رؤوس الجداول إلى نظيراتها بنمط الويكي. إلا أن تنسيق حدود الجدول و أحجام الأعمدة و ألوان الخلفية تُتجاهَل."
#. DF3o9
#: wikiformats.xhp
@@ -652,13 +651,12 @@ msgstr "الحدود"
#. GXBsK
#: wikiformats.xhp
-#, fuzzy
msgctxt ""
"wikiformats.xhp\n"
"par_id1831110\n"
"help.text"
msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header."
-msgstr "بغض النظر عن أنماط الجدول المخصصة للحدود والخلفية، يتم دائماً تصدير الجدول كـ \"<emph>prettytable</emph>\"، والتي تظهر في الويكي بحدود بسيطة وترويسة جدول عريض."
+msgstr "بغض النظر عن أنماط الجدول المخصصة للحدود والخلفية، يتم دائماً تصدير الجدول كـ \"<emph>prettytable</emph>\"، والتي تظهر في الويكي بحدود بسيطة ورأس جدول ثخين."
#. kDcRS
#: wikiformats.xhp
@@ -685,7 +683,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Send to MediaWiki"
-msgstr "الإرسال إلى ميدياويكي"
+msgstr "أرسل إلى ميدياويكي"
#. Uomdh
#: wikisend.xhp
@@ -694,7 +692,7 @@ msgctxt ""
"hd_id108340\n"
"help.text"
msgid "Send to MediaWiki"
-msgstr "الإرسال إلى ميدياويكي"
+msgstr "أرسل إلى ميدياويكي"
#. F4YJF
#: wikisend.xhp
@@ -721,7 +719,7 @@ msgctxt ""
"par_id2794885\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry.</ahelp>"
-msgstr "<ahelp hid=\".\">أدخل عنوان مُدخل الويكي. سيكون هذا أعلى ترويسة للمُدخل. للمدخلات الجديدة، يجب ألا يتكرر العنوان مع غيره في الويكي. إن أدخلت عنوانا موجودا، فسيستبدل المستند المرفوع مُدخلَ الويكي الموجود.</ahelp>"
+msgstr "<ahelp hid=\".\">أدخل عنوان مُدخل الويكي. سيكون هذا أعلى خط عنوان للمُدخل. للمدخلات الجديدة، يجب ألا يتكرر العنوان مع غيره في الويكي. إن أدخلت عنوانا موجودا، فسيستبدِل المستند المرفوع مُدخلَ الويكي الموجود.</ahelp>"
#. ACh6X
#: wikisend.xhp
diff --git a/source/ar/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/source/ar/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 71751e70930..c02721c6720 100644
--- a/source/ar/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/source/ar/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2017-01-19 13:20+0000\n"
-"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-02-26 03:13+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/swextmediawikisrcregistrydataorgopenofficeofficecustom/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"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: 1484832056.000000\n"
#. sc9Hg
@@ -124,7 +124,7 @@ msgctxt ""
"Dlg_SendTitle\n"
"value.text"
msgid "Send to MediaWiki"
-msgstr "الإرسال إلى ميدياويكي"
+msgstr "أرسل إلى ميدياويكي"
#. 84fuf
#: WikiExtension.xcu
diff --git a/source/ar/sysui/desktop/share.po b/source/ar/sysui/desktop/share.po
index 3852ac872f5..eb34445cc51 100644
--- a/source/ar/sysui/desktop/share.po
+++ b/source/ar/sysui/desktop/share.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-01-23 17:39+0000\n"
+"PO-Revision-Date: 2022-03-03 18:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sysuidesktopshare/ar/>\n"
"Language: ar\n"
@@ -275,7 +275,7 @@ msgctxt ""
"ms-excel-sheet\n"
"LngText.text"
msgid "Microsoft Excel Worksheet"
-msgstr "ورقة عمل ميكروسوفت إكسل"
+msgstr "ورقة عمل ميكروسوفت أكسل"
#. GFWsF
#: documents.ulf
@@ -311,7 +311,7 @@ msgctxt ""
"ms-excel-sheet-12\n"
"LngText.text"
msgid "Microsoft Excel Worksheet"
-msgstr "ورقة عمل ميكروسوفت إكسل"
+msgstr "ورقة عمل ميكروسوفت أكسل"
#. YMdW5
#: documents.ulf
@@ -320,7 +320,7 @@ msgctxt ""
"ms-excel-template-12\n"
"LngText.text"
msgid "Microsoft Excel Worksheet Template"
-msgstr "قالب ورقة عمل ميكروسوفت إكسل"
+msgstr "قالب ورقة عمل ميكروسوفت أكسل"
#. kg6D4
#: documents.ulf
@@ -383,7 +383,7 @@ msgctxt ""
"openxmlformats-officedocument-spreadsheetml-sheet\n"
"LngText.text"
msgid "Microsoft Excel Worksheet"
-msgstr "ورقة عمل ميكروسوفت إكسل"
+msgstr "ورقة عمل ميكروسوفت أكسل"
#. Dk7Bj
#: documents.ulf
@@ -392,7 +392,7 @@ msgctxt ""
"openxmlformats-officedocument-spreadsheetml-template\n"
"LngText.text"
msgid "Microsoft Excel Worksheet Template"
-msgstr "قالب ورقة عمل ميكروسوفت إكسل"
+msgstr "قالب ورقة عمل ميكروسوفت أكسل"
#. So2PB
#: documents.ulf
@@ -419,7 +419,7 @@ msgctxt ""
"ms-excel-sheet-binary-12\n"
"LngText.text"
msgid "Microsoft Excel Worksheet"
-msgstr "ورقة عمل ميكروسوفت إكسل"
+msgstr "ورقة عمل ميكروسوفت أكسل"
#. Bpj3J
#: launcher_comment.ulf
@@ -482,7 +482,7 @@ msgctxt ""
"startcenter\n"
"LngText.text"
msgid "The office productivity suite compatible to the open and standardized ODF document format. Supported by The Document Foundation."
-msgstr "الحقيبة اﻻنتاجية المكتبية متوافقة مع صيغ الوثائق المفتوحة المدعومة من مؤسسة الوثائق المفتوحة المصدر."
+msgstr "الحزمة المكتبية الإنتاجية المتوافقة مع نسَق الوثائق المفتوحة ODF المعايَر. تدعمه مؤسسة المستند The Document Foundation."
#. BhNQQ
#: launcher_genericname.ulf
diff --git a/source/ar/uui/messages.po b/source/ar/uui/messages.po
index 37161fbce99..04e5a6f5486 100644
--- a/source/ar/uui/messages.po
+++ b/source/ar/uui/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-11-19 15:45+0100\n"
-"PO-Revision-Date: 2022-02-16 08:40+0000\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
+"PO-Revision-Date: 2022-03-10 18:39+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1522251321.000000\n"
#. DLY8p
@@ -40,17 +40,14 @@ msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "الهدف موجود بالفعل."
-#. KgnBz
+#. KneVX
#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
-"You are about to save/export a password protected basic library containing module(s) \n"
+"You are about to save/export a password protected BASIC library containing module(s) \n"
"$(ARG1)\n"
"which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?"
msgstr ""
-"أنت على وشك حفظ/تصدير مكتبة بيسك محمية بكلمة سر تحتوي على الوحدات \n"
-"$(ARG1)\n"
-"و هي كبيرة جدا لتخزينها في هيئة ثنائية. إذا كنت تريد أن يستطيع للمستخدمين الذين لا يعرفون كلمة سر المكتبة تشغيل الماكرو في هذه الوحدات، فعليك تقسيمها لعدد أصغر من الوحدات. هل ترغب في الاستمرار في حفظ/تصدير هذه المكتبة؟"
#. 3rNDF
#: uui/inc/ids.hrc:42
@@ -647,7 +644,7 @@ msgstr "لا تتطابق كلمة سر التأكيد مع كلمة السر.
#: uui/inc/strings.hrc:32
msgctxt "STR_ALREADYOPEN_TITLE"
msgid "Document in Use"
-msgstr "المستند يُستخدم الآن"
+msgstr "المستند قيد الاستخدام"
#. QU4jD
#: uui/inc/strings.hrc:33
@@ -673,7 +670,7 @@ msgstr "افتح لل~قراءة فقط"
#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_READONLY_NOTIFY_BTN"
msgid "~Notify"
-msgstr ""
+msgstr "إ~بلاغ"
#. ThAZk
#: uui/inc/strings.hrc:36
@@ -745,7 +742,7 @@ msgstr "افتح لل~قراءة فقط"
#: uui/inc/strings.hrc:48
msgctxt "STR_LOCKFAILED_OPENREADONLY_NOTIFY_BTN"
msgid "~Notify"
-msgstr ""
+msgstr "إ~بلاغ"
#. u5nuY
#: uui/inc/strings.hrc:50
@@ -783,7 +780,7 @@ msgstr "افتح لل~قراءة فقط"
#: uui/inc/strings.hrc:54
msgctxt "STR_OPENLOCKED_OPENREADONLY_NOTIFY_BTN"
msgid "~Notify"
-msgstr ""
+msgstr "إ~بلاغ"
#. TsA54
#: uui/inc/strings.hrc:55
@@ -939,13 +936,13 @@ msgstr "افتح لل~قراءة فقط"
#: uui/inc/strings.hrc:81
msgctxt "STR_LOCKCORRUPT_OPENREADONLY_NOTIFY_BTN"
msgid "~Notify"
-msgstr ""
+msgstr "إ~بلاغ"
#. rBAR3
#: uui/inc/strings.hrc:83
msgctxt "STR_RELOADEDITABLE_TITLE"
msgid "Document is now editable"
-msgstr ""
+msgstr "المستند الآن قابل للتعديل"
#. cVZuC
#: uui/inc/strings.hrc:84
diff --git a/source/ar/vcl/messages.po b/source/ar/vcl/messages.po
index a7cd9055bb6..0089799fe0c 100644
--- a/source/ar/vcl/messages.po
+++ b/source/ar/vcl/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-09 16:47+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022451.000000\n"
#. k5jTM
@@ -848,390 +848,268 @@ msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "أي نوع"
-#. FD7Bf
-#: vcl/inc/strings.hrc:70
-msgctxt "STR_FPICKER_AUTO_EXTENSION"
-msgid "~Automatic file name extension"
-msgstr "ام~تداد اسم ملف تلقائي"
-
-#. 9ECLu
-#: vcl/inc/strings.hrc:71
-msgctxt "STR_FPICKER_PASSWORD"
-msgid "Save with pass~word"
-msgstr "احفظ بكلمة ~سر"
-
-#. nyers
-#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:73
-msgctxt "STR_FPICKER_GPGENCRYPT"
-msgid "Encrypt with ~GPG key"
-msgstr "عمِّ بم~فتاح GPG"
-
-#. Z2MmL
-#: vcl/inc/strings.hrc:74
-msgctxt "STR_FPICKER_FILTER_OPTIONS"
-msgid "~Edit filter settings"
-msgstr "~حرّر إعدادات الترشيح"
-
-#. ZDE7y
-#: vcl/inc/strings.hrc:75
-msgctxt "STR_FPICKER_READONLY"
-msgid "~Read-only"
-msgstr "للق~راءة فقط"
-
-#. EYvCH
-#: vcl/inc/strings.hrc:76
-msgctxt "STR_FPICKER_INSERT_AS_LINK"
-msgid "Insert as ~Link"
-msgstr "أدرج ك~رابط"
-
-#. zpPD6
-#: vcl/inc/strings.hrc:77
-msgctxt "STR_FPICKER_SHOW_PREVIEW"
-msgid "Pr~eview"
-msgstr "~معاينة"
-
-#. L7QTs
-#: vcl/inc/strings.hrc:78
-msgctxt "STR_FPICKER_PLAY"
-msgid "~Play"
-msgstr "~شغّل"
-
-#. rPLAU
-#: vcl/inc/strings.hrc:79
-msgctxt "STR_FPICKER_VERSION"
-msgid "~Version:"
-msgstr "الإ~صدارة:"
-
-#. dMPHM
-#: vcl/inc/strings.hrc:80
-msgctxt "STR_FPICKER_TEMPLATES"
-msgid "S~tyles:"
-msgstr "الأن~ماط:"
-
-#. TeuRr
-#: vcl/inc/strings.hrc:81
-msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
-msgid "Frame Style: "
-msgstr "نمط الإطار: "
-
-#. Cq63y
-#: vcl/inc/strings.hrc:82
-msgctxt "STR_FPICKER_IMAGE_ANCHOR"
-msgid "A~nchor: "
-msgstr "المرب~ط: "
-
-#. 7yacA
-#: vcl/inc/strings.hrc:83
-msgctxt "STR_FPICKER_SELECTION"
-msgid "~Selection"
-msgstr "ال~تحديد"
-
-#. QFCuE
-#: vcl/inc/strings.hrc:84
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
-msgid "Select Path"
-msgstr "اختر مسارًا"
-
-#. AoCzG
-#: vcl/inc/strings.hrc:85
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
-msgid "Please select a folder."
-msgstr "رجاء اختر مجلدًا."
-
-#. vcC7G
-#: vcl/inc/strings.hrc:86
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
-msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
-msgstr "يوجد ملف بالاسم \"$filename$\" بالفعل. هل تريد استبداله؟"
-
-#. MKKjJ
-#: vcl/inc/strings.hrc:87
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
-msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
-msgstr "الملف موجود بالفعل في \"$dirname$\". باستبداله تقوم بالكتابة على محتوياته."
-
-#. pF5CC
-#: vcl/inc/strings.hrc:88
-msgctxt "STR_FPICKER_ALLFORMATS"
-msgid "All Formats"
-msgstr "جميع الأنساق"
-
-#. xJLGT
-#: vcl/inc/strings.hrc:89
-msgctxt "STR_FPICKER_OPEN"
-msgid "Open"
-msgstr "افتح"
-
-#. W5xGp
-#: vcl/inc/strings.hrc:90
-msgctxt "STR_FPICKER_SAVE"
-msgid "Save"
-msgstr "احفظ"
-
-#. QxrYy
-#: vcl/inc/strings.hrc:91
-msgctxt "STR_FPICKER_TYPE"
-msgid "File ~type"
-msgstr "~نوع الملف"
-
#. qfg3C
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:70
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "لم يُعثر على أي خطوط في النظام."
#. rWAuM
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:72
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "لا توجد صفحات"
#. SFF7G
-#: vcl/inc/strings.hrc:96
+#: vcl/inc/strings.hrc:73
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr ""
#. xMtCc
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:74
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "اطبع إلى ملف..."
#. GBDRJ
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:75
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "الطابعة المبدئية"
#. 8BSG2
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:76
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "رجاء أدخل رقم الفاكس"
#. GtHUE
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:77
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "مخصص"
#. yPJTL
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:79
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "تجاوز النّصّ المُدرج الطّول الأقصى لحقل النّصّ. اقتُطع النّصّ."
#. Dk4vc
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:81
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr "خيوط المعالج: "
#. 5DyEd
-#: vcl/inc/strings.hrc:105
+#: vcl/inc/strings.hrc:82
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr "نظام التَّشغيل: "
#. Yqrwo
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:83
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr "مصيّر الواجهة: "
#. HnDDn
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:84
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr ""
#. f5k6D
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:85
msgctxt "SV_APP_SKIA_METAL"
msgid "Skia/Metal"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:86
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:87
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "المبدئيّ"
#. 4gWk5
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:89
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "معلومات"
#. 5gAyW
-#: vcl/inc/strings.hrc:113
+#: vcl/inc/strings.hrc:90
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "تحذير"
#. buqyG
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:91
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "خطأ"
#. 3CTTS
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:92
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "التأكيد"
#. drUB5
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:94
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "حذف السطر"
#. cxFKH
-#: vcl/inc/strings.hrc:118
+#: vcl/inc/strings.hrc:95
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "حذف أسطر متعددة"
#. 7KPRL
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:96
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "حذف أسطر متعددة"
#. R2cyr
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:97
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "إدراج '$1'"
#. 66FYV
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:98
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "حذف '$1'"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:124
+#: vcl/inc/strings.hrc:101
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
-msgstr ""
+msgstr "الصف: %1، العمود: %2"
#. 5RjLF
-#: vcl/inc/strings.hrc:125
+#: vcl/inc/strings.hrc:102
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. TcNJT
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:104
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
-msgstr ""
+msgstr "اليوم"
#. DhSTi
-#: vcl/inc/strings.hrc:128
+#: vcl/inc/strings.hrc:105
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
-msgstr ""
+msgstr "الأسبوع"
#. 5Eyy3
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:106
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
-msgstr ""
+msgstr "اليوم"
#. rSVhV
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:108
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "الخطوات"
#. wEp9A
-#: vcl/inc/strings.hrc:132
+#: vcl/inc/strings.hrc:109
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
-msgstr ""
+msgstr "إنها~ء"
#. ygXBw
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:110
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "ال~تالي >"
#. 5MSDe
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:111
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
-msgstr ""
+msgstr "< العو~دة"
#. urFMt
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:113
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr "الفاصل"
#. eCq2K
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:115
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
msgid "Default file formats not registered"
msgstr "نسَق الملف المبدئي غير مسجَّل"
#. TDctx
-#: vcl/inc/strings.hrc:139
+#: vcl/inc/strings.hrc:116
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
msgid ""
"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
"$1\n"
"Select OK if you want to change default file format registrations."
msgstr ""
+"أنساق الملفات التالية غير مسجلة لتُفتح مبدئيًا في %PRODUCTNAME:\n"
+"$1\n"
+"حدد ’موافق‘ إذا أردت تغيير تسجيلات أنساق الملفات المبدئية."
#. EkzSW
-#: vcl/inc/strings.hrc:141
+#: vcl/inc/strings.hrc:118
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
"as some are at a higher level!"
msgstr ""
+"تحذير: ليست كل رسوميات EPS المستورَدة أمكنَ حفظها في المستوى1 level1\n"
+"حيث أنّ بعضها في مستى أعلى!"
#. 4jvA7
-#: vcl/inc/strings.hrc:143
+#: vcl/inc/strings.hrc:120
msgctxt "STR_GBU"
msgid "Graphics Backend used: %1"
-msgstr ""
+msgstr "النهاية الخلفية الرسومية المستخدَمة: %1"
#. FBgmu
-#: vcl/inc/strings.hrc:144
+#: vcl/inc/strings.hrc:121
msgctxt "STR_PASSED"
msgid "Passed Tests: %1"
-msgstr ""
+msgstr "الفحوص الناجحة: %1"
#. 3nqZp
-#: vcl/inc/strings.hrc:145
+#: vcl/inc/strings.hrc:122
msgctxt "STR_QUIRKY"
msgid "Quirky Tests: %1"
-msgstr ""
+msgstr "الفحوص الزائغة: %1"
#. KhjFD
-#: vcl/inc/strings.hrc:146
+#: vcl/inc/strings.hrc:123
msgctxt "STR_FAILED"
msgid "Failed Tests: %1"
-msgstr ""
+msgstr "الفحوص المخفقة: %1"
#. uKGQi
-#: vcl/inc/strings.hrc:147
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SKIPPED"
msgid "Skipped Tests: %1"
-msgstr ""
+msgstr "الفحوص المُتخطّاة: %1"
#. V2EuY
#. To translators: This is the first entry of a sequence of measurement unit names
@@ -1287,7 +1165,7 @@ msgstr "بيكا"
#: vcl/inc/units.hrc:37
msgctxt "SV_FUNIT_STRINGS"
msgid "″"
-msgstr ""
+msgstr "ʺ"
#. AEhCN
#: vcl/inc/units.hrc:38
@@ -1312,7 +1190,7 @@ msgstr "بوصة"
#: vcl/inc/units.hrc:42
msgctxt "SV_FUNIT_STRINGS"
msgid "′"
-msgstr ""
+msgstr "′"
#. RYzjD
#: vcl/inc/units.hrc:43
@@ -1458,7 +1336,7 @@ msgstr "تباعد الحروف الكبيرة"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:35
msgctxt "STR_FONT_FEATURE_ID_CSWH"
msgid "Contextual Swash"
-msgstr ""
+msgstr "تزيين سياقي"
#. Cx9wW
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:36
@@ -1512,7 +1390,7 @@ msgstr "طراز الكسر:"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:44
msgctxt "STR_FONT_FEATURE_ID_FRAC_PARAM_0"
msgid "None"
-msgstr "بدون"
+msgstr "بِلا"
#. nfBTN
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:45
@@ -1566,7 +1444,7 @@ msgstr "هانجا إلى هانجل (متروك)"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:53
msgctxt "STR_FONT_FEATURE_ID_HOJO"
msgid "Hojo Kanji Forms (JIS X 0212-1990 Kanji Forms)"
-msgstr ""
+msgstr "أشكال هوجو كانجي (أشكال كانجي JIS X 0212-1990)"
#. 3BwUo
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:54
@@ -1584,31 +1462,31 @@ msgstr "موائل"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:56
msgctxt "STR_FONT_FEATURE_ID_JALT"
msgid "Justification Alternates"
-msgstr ""
+msgstr "بدائل توسيط"
#. ALP2e
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:57
msgctxt "STR_FONT_FEATURE_ID_JP04"
msgid "JIS2004 Forms"
-msgstr ""
+msgstr "أشكال JIS2004"
#. Dn94C
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:58
msgctxt "STR_FONT_FEATURE_ID_JP78"
msgid "JIS78 Forms"
-msgstr ""
+msgstr "أشكال JIS78"
#. GSewT
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:59
msgctxt "STR_FONT_FEATURE_ID_JP83"
msgid "JIS83 Forms"
-msgstr ""
+msgstr "أشكال JIS83"
#. EQoNN
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:60
msgctxt "STR_FONT_FEATURE_ID_JP90"
msgid "JIS90 Forms"
-msgstr ""
+msgstr "أشكال JIS90"
#. GdAkY
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:61
@@ -1620,7 +1498,7 @@ msgstr "التقنين الأفقي"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:62
msgctxt "STR_FONT_FEATURE_ID_LFBD"
msgid "Left Bounds"
-msgstr ""
+msgstr "مقيدات يسرى"
#. rrBNf
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:63
@@ -1650,13 +1528,13 @@ msgstr "أشكال حواشي بديلة"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:67
msgctxt "STR_FONT_FEATURE_ID_NLCK"
msgid "NLC Kanji Forms"
-msgstr ""
+msgstr "أشكال كانجي لمجلس اللغة الوطني"
#. PkzT4
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:68
msgctxt "STR_FONT_FEATURE_ID_NUMR"
msgid "Numerators"
-msgstr ""
+msgstr "بسوط الكسر"
#. B4kKk
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:69
@@ -1668,169 +1546,169 @@ msgstr "أرقام قديمة الطراز"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:70
msgctxt "STR_FONT_FEATURE_ID_OPBD"
msgid "Optical Bounds"
-msgstr ""
+msgstr "تقييدات بصرية"
#. r5sSu
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:71
msgctxt "STR_FONT_FEATURE_ID_ORDN"
msgid "Ordinals"
-msgstr ""
+msgstr "ترتيبيات"
#. BnfaT
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:72
msgctxt "STR_FONT_FEATURE_ID_ORNM"
msgid "Ornaments"
-msgstr ""
+msgstr "زخارف"
#. FHJCN
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:73
msgctxt "STR_FONT_FEATURE_ID_PALT"
msgid "Proportional Alternate Metrics"
-msgstr ""
+msgstr "مقاييس بديلة متناسبة"
#. 7sRp3
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:74
msgctxt "STR_FONT_FEATURE_ID_PCAP"
msgid "Lowercase to Petite Capitals"
-msgstr ""
+msgstr "الحروف الصغيرة إلى كبيرة شديدة الصغر"
#. EffZT
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:75
msgctxt "STR_FONT_FEATURE_ID_PKNA"
msgid "Proportional Kana"
-msgstr ""
+msgstr "كانا متناسبة"
#. Vc7XH
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:76
msgctxt "STR_FONT_FEATURE_ID_PNUM"
msgid "Proportional Numbers"
-msgstr ""
+msgstr "أعداد متناسبة"
#. FeomG
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:77
msgctxt "STR_FONT_FEATURE_ID_PWID"
msgid "Proportional Widths"
-msgstr ""
+msgstr "أنصاف متناسبة"
#. e9UGp
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:78
msgctxt "STR_FONT_FEATURE_ID_QWID"
msgid "Quarter Widths"
-msgstr ""
+msgstr "أنصاف ربعية"
#. eGa9d
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:79
msgctxt "STR_FONT_FEATURE_ID_RTBD"
msgid "Right Bounds"
-msgstr ""
+msgstr "تقييدات يمنى"
#. 688mW
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:80
msgctxt "STR_FONT_FEATURE_ID_RUBY"
msgid "Ruby Notation Forms"
-msgstr ""
+msgstr "أشكال تعليقات روبي"
#. q8o35
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:81
msgctxt "STR_FONT_FEATURE_ID_SALT"
msgid "Stylistic Alternates"
-msgstr ""
+msgstr "بدائل أسلوبية"
#. Dgbox
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:82
msgctxt "STR_FONT_FEATURE_ID_SINF"
msgid "Scientific Inferiors"
-msgstr ""
+msgstr "توابع علمية"
#. iWL8L
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:83
msgctxt "STR_FONT_FEATURE_ID_SMCP"
msgid "Lowercase to Small Capitals"
-msgstr ""
+msgstr "الحروف الصغيرة إلى كبيرة مصغرة"
#. U8mjQ
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:84
msgctxt "STR_FONT_FEATURE_ID_SMPL"
msgid "Simplified Forms"
-msgstr ""
+msgstr "أشكال مبسطة"
#. 45i5z
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:85
msgctxt "STR_FONT_FEATURE_ID_SSXX"
msgid "Stylistic Set %1"
-msgstr ""
+msgstr "تشكيلة أسلوبية %1"
#. scVBf
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:86
msgctxt "STR_FONT_FEATURE_ID_SUBS"
msgid "Subscript"
-msgstr ""
+msgstr "منخفض"
#. zFXhJ
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:87
msgctxt "STR_FONT_FEATURE_ID_SUPS"
msgid "Superscript"
-msgstr ""
+msgstr "مرتفع"
#. HQF8g
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:88
msgctxt "STR_FONT_FEATURE_ID_SWSH"
msgid "Swash"
-msgstr ""
+msgstr "تزيين"
#. khFYQ
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:89
msgctxt "STR_FONT_FEATURE_ID_TITL"
msgid "Titling"
-msgstr ""
+msgstr "تقطيع"
#. eBecx
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:90
msgctxt "STR_FONT_FEATURE_ID_TNAM"
msgid "Traditional Name Forms"
-msgstr ""
+msgstr "أشكال أسماء تقليدية"
#. ARJtP
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:91
msgctxt "STR_FONT_FEATURE_ID_TNUM"
msgid "Tabular Numbers"
-msgstr ""
+msgstr "أرقام مبسوطة"
#. HcAKS
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:92
msgctxt "STR_FONT_FEATURE_ID_TRAD"
msgid "Traditional Forms"
-msgstr ""
+msgstr "أشكال تقليدية"
#. ZbLR8
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:93
msgctxt "STR_FONT_FEATURE_ID_TWID"
msgid "Third Widths"
-msgstr ""
+msgstr "أنصاف ثلث"
#. pEFRX
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:94
msgctxt "STR_FONT_FEATURE_ID_UNIC"
msgid "Unicase"
-msgstr ""
+msgstr "موحدة حالة الأحرف"
#. fMCzE
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:95
msgctxt "STR_FONT_FEATURE_ID_VALT"
msgid "Alternate Vertical Metrics"
-msgstr ""
+msgstr "مقاييس عمودية بديلة"
#. hQhof
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:96
msgctxt "STR_FONT_FEATURE_ID_VHAL"
msgid "Alternate Vertical Half Metrics"
-msgstr ""
+msgstr "أنصاف مقاييس عمودية بديلة"
#. s9mJa
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:97
msgctxt "STR_FONT_FEATURE_ID_VKNA"
msgid "Vertical Kana Alternates"
-msgstr ""
+msgstr "بدائل كانا رأسية"
#. mEiFj
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:98
@@ -1842,31 +1720,31 @@ msgstr "التقنين الرأسي"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:99
msgctxt "STR_FONT_FEATURE_ID_VPAL"
msgid "Proportional Alternate Vertical Metrics"
-msgstr ""
+msgstr "مقاييس رأسية بديلة متناسبة"
#. qo8GF
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:100
msgctxt "STR_FONT_FEATURE_ID_VRT2"
msgid "Vertical Alternates and Rotation"
-msgstr ""
+msgstr "بدائل وتدوير رأسي"
#. PwgCD
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:101
msgctxt "STR_FONT_FEATURE_ID_VRTR"
msgid "Vertical Alternates for Rotation"
-msgstr ""
+msgstr "بدائل رأسية للتدوير"
#. 2nYeE
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:102
msgctxt "STR_FONT_FEATURE_ID_ZERO"
msgid "Slashed Zero"
-msgstr ""
+msgstr "صفر بشرطة"
#. TxdMF
#: vcl/uiconfig/ui/aboutbox.ui:74
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
-msgstr ""
+msgstr "انظر السجل: $GITHASH"
#. HbZ5F
#: vcl/uiconfig/ui/cupspassworddialog.ui:8
@@ -1896,7 +1774,7 @@ msgstr "فضلًا أدخل بيانات الاستيثاق لخادوم ”%s
#: vcl/uiconfig/ui/cupspassworddialog.ui:148
msgctxt "cupspassworddialog|label1"
msgid "_Domain:"
-msgstr ""
+msgstr "_نطاق:"
#. zQA7A
#: vcl/uiconfig/ui/editmenu.ui:12
@@ -1986,7 +1864,7 @@ msgstr "طباعة"
#: vcl/uiconfig/ui/printdialog.ui:95
msgctxt "printdialog|print"
msgid "_Print"
-msgstr ""
+msgstr "ط_باعة"
#. M3L4L
#: vcl/uiconfig/ui/printdialog.ui:160
@@ -2028,7 +1906,7 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:255
msgctxt "printdialog|backward"
msgid "Previous page"
-msgstr ""
+msgstr "الصفحة السابقة"
#. uS5Ka
#: vcl/uiconfig/ui/printdialog.ui:260
@@ -2064,7 +1942,7 @@ msgstr "أظهِر معاينة الصفحة التالية."
#: vcl/uiconfig/ui/printdialog.ui:326
msgctxt "printdialog|lastpage"
msgid "Last page"
-msgstr ""
+msgstr "الصفحة الأخيرة"
#. RwCmD
#: vcl/uiconfig/ui/printdialog.ui:331
@@ -2082,19 +1960,19 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:426
msgctxt "printdialog|labelstatus"
msgid "Status:"
-msgstr ""
+msgstr "الحالة:"
#. dyo2j
#: vcl/uiconfig/ui/printdialog.ui:441
msgctxt "printdialog|status"
msgid "Default Printer"
-msgstr ""
+msgstr "الطابعة الافتراضية"
#. McZgQ
#: vcl/uiconfig/ui/printdialog.ui:447
msgctxt "printdialog|extended_tip|status"
msgid "Shows the availability of the selected printer."
-msgstr ""
+msgstr "يُظهر إتاحة الطابعة المحددة."
#. oBACQ
#: vcl/uiconfig/ui/printdialog.ui:459
@@ -2112,7 +1990,7 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:490
msgctxt "printdialog|labelprinter"
msgid "Printer"
-msgstr ""
+msgstr "الطابعة"
#. AyxGJ
#: vcl/uiconfig/ui/printdialog.ui:528
@@ -2124,13 +2002,13 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:539
msgctxt "printdialog|extended_tip|rbAllPages"
msgid "Prints the entire document."
-msgstr ""
+msgstr "يطبع المستند بأكمله."
#. pYtbq
#: vcl/uiconfig/ui/printdialog.ui:550
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
-msgstr ""
+msgstr "ال_صفحات:"
#. azXfE
#: vcl/uiconfig/ui/printdialog.ui:562
@@ -2142,7 +2020,7 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:578
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
-msgstr ""
+msgstr "مثلا: 1، 3-5، 7، 9"
#. FTtLK
#: vcl/uiconfig/ui/printdialog.ui:581
@@ -2154,7 +2032,7 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:592
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
-msgstr ""
+msgstr "ال_تحديد"
#. CJ2E7
#: vcl/uiconfig/ui/printdialog.ui:602
@@ -2166,61 +2044,61 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:616
msgctxt "printdialog|includeevenodd"
msgid "Include:"
-msgstr ""
+msgstr "ضمِّن:"
#. XmeFL
#: vcl/uiconfig/ui/printdialog.ui:633
msgctxt "printdialog|liststore3"
msgid "Odd and Even Pages"
-msgstr ""
+msgstr "الصفحات الفردية والزوجية"
#. 49y67
#: vcl/uiconfig/ui/printdialog.ui:634
msgctxt "printdialog|liststore3"
msgid "Odd Pages"
-msgstr ""
+msgstr "الصفحات الفردية"
#. 6CkPE
#: vcl/uiconfig/ui/printdialog.ui:635
msgctxt "printdialog|liststore3"
msgid "Even Pages"
-msgstr ""
+msgstr "الصفحات الزوجية"
#. ZeA37
#: vcl/uiconfig/ui/printdialog.ui:639
msgctxt "printdialog|extended_tip|evenoddbox"
msgid "Select the subset of pages to print."
-msgstr ""
+msgstr "حدد المجموعة الفرعية من الصفحات لطباعتها."
#. wn2kB
#: vcl/uiconfig/ui/printdialog.ui:670
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
-msgstr ""
+msgstr "اطبع من_ها:"
#. Cuc2u
#: vcl/uiconfig/ui/printdialog.ui:695
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
-msgstr ""
+msgstr "_جوانب الورق:"
#. SYxRJ
#: vcl/uiconfig/ui/printdialog.ui:711
msgctxt "printdialog|liststore4"
msgid "Print on one side (simplex)"
-msgstr ""
+msgstr "اطبع على جانب واحد (بسيط)"
#. hCZPg
#: vcl/uiconfig/ui/printdialog.ui:712
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex long edge)"
-msgstr ""
+msgstr "اطبع على كلا الجانبين (حافة طويلة مزدوجة)"
#. iqr9C
#: vcl/uiconfig/ui/printdialog.ui:713
msgctxt "printdialog|liststore4"
msgid "Print on both sides (duplex short edge)"
-msgstr ""
+msgstr "اطبع على كلا الجانبين (حافة قصيرة مزدوجة)"
#. CKpgL
#: vcl/uiconfig/ui/printdialog.ui:717
@@ -2232,13 +2110,13 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:731
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
-msgstr ""
+msgstr "_عدد النُسَخ:"
#. NwD7S
#: vcl/uiconfig/ui/printdialog.ui:754
msgctxt "printdialog|extended_tip|copycount"
msgid "Enter the number of copies that you want to print."
-msgstr ""
+msgstr "أدخِل عدد النُسَخ التي تريد طباعتها."
#. BT4nY
#: vcl/uiconfig/ui/printdialog.ui:768
@@ -2250,19 +2128,19 @@ msgstr "الترتيب:"
#: vcl/uiconfig/ui/printdialog.ui:781
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
-msgstr ""
+msgstr "اطبع بترتيب مع_كوس"
#. svd2Q
#: vcl/uiconfig/ui/printdialog.ui:790
msgctxt "printdialog|extended_tip|reverseorder"
msgid "Check to print pages in reverse order."
-msgstr ""
+msgstr "أشِّر لتطبع الصفحات بترتيب معكوس."
#. G6QEr
#: vcl/uiconfig/ui/printdialog.ui:807
msgctxt "printdialog|collate"
msgid "_Collate"
-msgstr ""
+msgstr "ن_ظِّم"
#. kR6bA
#: vcl/uiconfig/ui/printdialog.ui:815
@@ -2292,19 +2170,19 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:890
msgctxt "printdialog|label2"
msgid "Range and Copies"
-msgstr ""
+msgstr "النطاق والنُسخ"
#. CBLet
#: vcl/uiconfig/ui/printdialog.ui:929
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
-msgstr ""
+msgstr "الاتجاه:"
#. U4byk
#: vcl/uiconfig/ui/printdialog.ui:944
msgctxt "printdialog|labelsize"
msgid "Paper size:"
-msgstr ""
+msgstr "حجم الورقة:"
#. X9iBj
#: vcl/uiconfig/ui/printdialog.ui:961
@@ -2364,7 +2242,7 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
-msgstr ""
+msgstr "الصفحات:"
#. X8bjE
#: vcl/uiconfig/ui/printdialog.ui:1114
@@ -2388,7 +2266,7 @@ msgstr "حدد عدد الأعمدة."
#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
-msgstr ""
+msgstr "الحافة:"
#. QxE58
#: vcl/uiconfig/ui/printdialog.ui:1176
@@ -2622,7 +2500,7 @@ msgstr "حجم ال_ورقة:"
#: vcl/uiconfig/ui/printerpaperpage.ui:34
msgctxt "printerpaperpage|orientft"
msgid "_Orientation:"
-msgstr "الا_تجاه:"
+msgstr "الات_جاه:"
#. yKXAH
#: vcl/uiconfig/ui/printerpaperpage.ui:48
diff --git a/source/ar/wizards/messages.po b/source/ar/wizards/messages.po
index dd53c4de3ef..66b8894e5b4 100644
--- a/source/ar/wizards/messages.po
+++ b/source/ar/wizards/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2022-02-16 08:40+0000\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/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: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1516047284.000000\n"
#. gbiMx
@@ -92,7 +92,7 @@ msgstr "ألغِ"
#: wizards/com/sun/star/wizards/common/strings.hrc:44
msgctxt "RID_COMMON_START_12"
msgid "~Finish"
-msgstr "أ~نهِ"
+msgstr "إنها~ء"
#. 5wgzB
#: wizards/com/sun/star/wizards/common/strings.hrc:45
@@ -914,7 +914,7 @@ msgstr "زجاجة"
#: wizards/com/sun/star/wizards/common/strings.hrc:190
msgctxt "RID_FAXWIZARDDIALOG_START_50"
msgid "Lines"
-msgstr "أسطر"
+msgstr "خطوط"
#. BurVc
#: wizards/com/sun/star/wizards/common/strings.hrc:191
@@ -1088,7 +1088,7 @@ msgstr "رجاء اختر تصميم الصفحة لجدول الأعمال"
#: wizards/com/sun/star/wizards/common/strings.hrc:229
msgctxt "RID_AGENDAWIZARDDIALOG_START_7"
msgid "Please select the headings you wish to include in your agenda template"
-msgstr "رجاء اختر العناوين التي تريدّ شملها في قالب المفكرة"
+msgstr "رجاء اختر خطوط العناوين التي تريدّ تضمينها في قالب المفكرة"
#. EPBuf
#: wizards/com/sun/star/wizards/common/strings.hrc:230
@@ -1142,7 +1142,7 @@ msgstr "الاسم:"
#: wizards/com/sun/star/wizards/common/strings.hrc:238
msgctxt "RID_AGENDAWIZARDDIALOG_START_16"
msgid "Location:"
-msgstr "الموقع:"
+msgstr "الموضع:"
#. WdYDt
#: wizards/com/sun/star/wizards/common/strings.hrc:239
@@ -1346,7 +1346,7 @@ msgstr "معلومات عامة"
#: wizards/com/sun/star/wizards/common/strings.hrc:272
msgctxt "RID_AGENDAWIZARDDIALOG_START_52"
msgid "Headings to Include"
-msgstr "العناوين المشمولة"
+msgstr "خطوط العناوين المشمولة"
#. QU872
#: wizards/com/sun/star/wizards/common/strings.hrc:273
@@ -1478,7 +1478,7 @@ msgstr "الوقت:"
#: wizards/com/sun/star/wizards/common/strings.hrc:294
msgctxt "RID_AGENDAWIZARDDIALOG_START_74"
msgid "Location:"
-msgstr "الموقع:"
+msgstr "الموضع:"
#. 3CGDF
#: wizards/com/sun/star/wizards/common/strings.hrc:295
diff --git a/source/ar/wizards/source/resources.po b/source/ar/wizards/source/resources.po
index d2de62c7fbe..e9c5d0d5d8a 100644
--- a/source/ar/wizards/source/resources.po
+++ b/source/ar/wizards/source/resources.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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2022-02-16 08:40+0000\n"
+"PO-Revision-Date: 2022-03-13 10:19+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1516047284.000000\n"
#. 8UKfi
@@ -131,7 +131,7 @@ msgctxt ""
"RID_COMMON_12\n"
"property.text"
msgid "~Finish"
-msgstr "أن~هِ"
+msgstr "إنها~ء"
#. apFF8
#: resources_en_US.properties
@@ -230,7 +230,7 @@ msgctxt ""
"RID_REPORT_3\n"
"property.text"
msgid "~Table"
-msgstr "الج~دول"
+msgstr "ج~دول"
#. BhUoK
#: resources_en_US.properties
@@ -321,7 +321,7 @@ msgctxt ""
"RID_REPORT_16\n"
"property.text"
msgid "Layout of headers and footers"
-msgstr "مخطط الترويسات والتذييلات"
+msgstr "مخطط الرؤوس والتذييلات"
#. bN2Fw
#: resources_en_US.properties
@@ -330,7 +330,7 @@ msgctxt ""
"RID_REPORT_19\n"
"property.text"
msgid "Fields"
-msgstr "الحقول"
+msgstr "حقول"
#. qHq62
#: resources_en_US.properties
@@ -1466,13 +1466,12 @@ msgstr "ال~جداول"
#. s2KnF
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"RID_QUERY_4\n"
"property.text"
msgid "A~vailable fields"
-msgstr "ال~حقول المتوفّرة"
+msgstr "الحقول الم~تاحة"
#. Wsx8x
#: resources_en_US.properties
@@ -1562,7 +1561,7 @@ msgctxt ""
"RID_QUERY_17\n"
"property.text"
msgid "Fields"
-msgstr "الحقول"
+msgstr "حقول"
#. D9sGR
#: resources_en_US.properties
@@ -2153,27 +2152,21 @@ msgstr "ال~حقول في النموذج"
#. 6J6EJ
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"RID_FORM_2\n"
"property.text"
msgid "Binary fields are always listed and selectable from the left list.\\nIf possible, they are interpreted as images."
-msgstr ""
-"تُسرَد الحقول الثنائية وتُحدَّد من القائمة اليسرى.\n"
-"إن كان ممكنًا، تُفسَّر الحقول الثنائية كَصور."
+msgstr "تُسرَد الحقول الثنائية وتُحدَّد من القائمة اليسرى دائمًا.\\nإن كان ممكنًا، ستُفسَّر كَصور."
#. BCBCd
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"RID_FORM_3\n"
"property.text"
msgid "A subform is a form that is inserted in another form.\\nUse subforms to show data from tables or queries with a one-to-many relationship."
-msgstr ""
-"النموذج الفرعي هو نموذج مدرج داخل نموذج آخر.\n"
-"تستخدم النماذج الفرعية لإظهار البيانات من الجداول أو الاستعلامات التي ترتبط بعلاقة واحد إلى متعدد."
+msgstr "النموذج الفرعي هو نموذج مدرج داخل نموذج آخر.\\nاستخدم النماذج الفرعية لإظهار البيانات من الجداول أو الاستعلامات التي ترتبط بعلاقة واحد إلى متعدد."
#. h4XzG
#: resources_en_US.properties
@@ -2249,15 +2242,12 @@ msgstr "الحقول في النموذج"
#. fFuDk
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"RID_FORM_19\n"
"property.text"
msgid "The join '<FIELDNAME1>' and '<FIELDNAME2>' has been selected twice.\\nBut joins may only be used once."
-msgstr ""
-"اختير الربط '<FIELDNAME1>' و'<FIELDNAME2>' مرتين.\n"
-"لكن الروابط تُستخدَم مرّة واحدة فقط."
+msgstr "حُدّد الربط '<FIELDNAME1>' و'<FIELDNAME2>' مرتين.\\nلكن الربطات يمكن أن تُستخدَم مرة واحدة فقط."
#. 9uFd2
#: resources_en_US.properties
@@ -2733,15 +2723,12 @@ msgstr "حدّد اسمًا للنموذج"
#. JTRXV
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"RID_FORM_98\n"
"property.text"
msgid "A form with the name '%FORMNAME' already exists.\\nChoose another name."
-msgstr ""
-"هناك نموذج بالاسم '%FORMNAME' بالفعل.\n"
-"اختر اسمًا آخرًا."
+msgstr "هناك نموذج بالاسم '%FORMNAME' بالفعل.\\nاختر اسمًا آخرًا."
#. KJkgf
#: resources_en_US.properties
@@ -2759,7 +2746,7 @@ msgctxt ""
"RID_TABLE_2\n"
"property.text"
msgid "Select fields"
-msgstr "اختر الحقول"
+msgstr "حدد الحقول"
#. XEQgp
#: resources_en_US.properties
@@ -2768,7 +2755,7 @@ msgctxt ""
"RID_TABLE_3\n"
"property.text"
msgid "Set types and formats"
-msgstr "عيّن الأنواع والتنسيقات"
+msgstr "عيّن الأنواع والأنساق"
#. Lww9c
#: resources_en_US.properties
@@ -2777,17 +2764,16 @@ msgctxt ""
"RID_TABLE_4\n"
"property.text"
msgid "Set primary key"
-msgstr "عيّن المفتاح الأساسي"
+msgstr "عيّن المفتاح الأساس"
#. LkTBf
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"RID_TABLE_5\n"
"property.text"
msgid "Create table"
-msgstr "إنشاء جدول"
+msgstr "أنشئ جدولاً"
#. hei5Y
#: resources_en_US.properties
@@ -2796,7 +2782,7 @@ msgctxt ""
"RID_TABLE_8\n"
"property.text"
msgid "Select fields for your table"
-msgstr "اختر حقول الجدول"
+msgstr "حدد حقولاً لجدولك"
#. 5DXT6
#: resources_en_US.properties
@@ -2814,17 +2800,16 @@ msgctxt ""
"RID_TABLE_10\n"
"property.text"
msgid "Set primary key"
-msgstr "عيّن المفتاح الأساسي"
+msgstr "عيّن المفتاح الأساس"
#. UHTbE
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"RID_TABLE_11\n"
"property.text"
msgid "Create table"
-msgstr "إنشاء جدول"
+msgstr "أنشئ جدولاً"
#. XyCFc
#: resources_en_US.properties
@@ -2873,13 +2858,12 @@ msgstr "~جداول عيّنة"
#. itXJ9
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"RID_TABLE_19\n"
"property.text"
msgid "A~vailable fields"
-msgstr "ال~حقول المتوفّرة"
+msgstr "الحقول الم~تاحة"
#. JteH7
#: resources_en_US.properties
@@ -2942,7 +2926,7 @@ msgctxt ""
"RID_TABLE_26\n"
"property.text"
msgid "A primary key uniquely identifies each record in a database table. Primary keys ease the linking of information in separate tables, and it is recommended that you have a primary key in every table. Without a primary key, it will not be possible to enter data into this table."
-msgstr "يُميّز المفتاح الأولي كلّ سجلّ في جدول قاعدة البيانات. تسهّل المفاتيح الأولية ربط المعلومات في جداول منفصلة، ومن المستحسن وجود مفتاح أولي في كلّ جدول. بدون مفتاح أوّلي، لن يكون من الممكن إدخال البيانات في هذا الجدول."
+msgstr "يُميّز المفتاح الأولي كلّ سجلّ في جدول قاعدة البيانات. تسهّل المفاتيح الأولية ربط المعلومات في جداول منفصلة، ومن المستحسن وجود مفتاح أولي في كلّ جدول. بِلا مفتاح أوّلي، لن يكون من الممكن إدخال البيانات في هذا الجدول."
#. 3kaaw
#: resources_en_US.properties
@@ -2969,7 +2953,7 @@ msgctxt ""
"RID_TABLE_29\n"
"property.text"
msgid "~Use an existing field as a primary key"
-msgstr "ا~ستخدم حقل موجود كمفتاح أوّلي"
+msgstr "ا~ستخدم حقلاً موجوداً كمفتاح أوّلي"
#. KBVAL
#: resources_en_US.properties
@@ -2978,7 +2962,7 @@ msgctxt ""
"RID_TABLE_30\n"
"property.text"
msgid "Define p~rimary key as a combination of several fields"
-msgstr "عرّف ~مفتاح أولي كتجميعة حقول متعدّدة"
+msgstr "عرّف ~مفتاحًا أوليًا كتجميعة حقول متعددة"
#. PQfF2
#: resources_en_US.properties
@@ -3005,7 +2989,7 @@ msgctxt ""
"RID_TABLE_33\n"
"property.text"
msgid "Auto ~value"
-msgstr "قي~مة آلية"
+msgstr "قي~مة تلقائية"
#. AnaDG
#: resources_en_US.properties
@@ -3416,7 +3400,7 @@ msgctxt ""
"STEP_AUTOPILOT_7\n"
"property.text"
msgid "Temporarily unprotect sheet without query"
-msgstr "ألغِ حماية الجدول مؤقتًا بدون استعلام"
+msgstr "ألغِ حماية الجدول مؤقتًا بلا استعلام"
#. BVhae
#: resources_en_US.properties
@@ -3483,13 +3467,12 @@ msgstr "تحويل وحدات العملة في قوالب الخلايا..."
#. JuVQA
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"MESSAGES_0\n"
"property.text"
msgid "~Finish"
-msgstr "أن~هِ"
+msgstr "إنها~ء"
#. xsatA
#: resources_en_US.properties
@@ -3895,7 +3878,7 @@ msgctxt ""
"STEP_LASTPAGE_1\n"
"property.text"
msgid "Retrieving the relevant documents..."
-msgstr "تسجيل المستندات وثيقة الصلة..."
+msgstr "جلب المستندات المعنيّة..."
#. CLY8k
#: resources_en_US.properties
@@ -4252,13 +4235,12 @@ msgstr "المدينة"
#. AqdCs
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"CorrespondenceFields_9\n"
"property.text"
msgid "Title"
-msgstr "العنوان:"
+msgstr "اللقب"
#. s8G9A
#: resources_en_US.properties
@@ -4340,7 +4322,7 @@ msgctxt ""
"CorrespondenceFields_18\n"
"property.text"
msgid "URL"
-msgstr "عنوان URL"
+msgstr "رابط"
#. bgJJe
#: resources_en_US.properties
@@ -4651,7 +4633,7 @@ msgctxt ""
"MSTemplateCheckbox_2_\n"
"property.text"
msgid "Excel templates"
-msgstr "قوالب إكسل"
+msgstr "قوالب أكسل"
#. hPB75
#: resources_en_US.properties
@@ -4678,7 +4660,7 @@ msgctxt ""
"MSDocumentCheckbox_2_\n"
"property.text"
msgid "Excel documents"
-msgstr "مستندات إكسل"
+msgstr "مستندات أكسل"
#. 9RwAv
#: resources_en_US.properties
@@ -4732,7 +4714,7 @@ msgctxt ""
"ProgressMoreTemplates\n"
"property.text"
msgid "Templates"
-msgstr "القوالب"
+msgstr "قوالب"
#. foG9h
#: resources_en_US.properties
@@ -4796,7 +4778,7 @@ msgctxt ""
"OverwriteallFiles\n"
"property.text"
msgid "Do you want to overwrite documents without being asked?"
-msgstr "هل تريد الكتابة على المستندات بدون السؤال؟"
+msgstr "هل تريد الكتابة على المستندات بلا سؤال؟"
#. rWgBN
#: resources_en_US.properties
@@ -4868,7 +4850,7 @@ msgctxt ""
"ProgressPage2\n"
"property.text"
msgid "Retrieving the relevant documents:"
-msgstr "جلب المستندات وثيقة الصلة:"
+msgstr "جلب المستندات المعنيّة:"
#. zTpAx
#: resources_en_US.properties
@@ -4890,13 +4872,12 @@ msgstr "عُثر على:"
#. 9G86q
#: resources_en_US.properties
-#, fuzzy
msgctxt ""
"resources_en_US.properties\n"
"ProgressPage5\n"
"property.text"
msgid "\"%1 found"
-msgstr "عُثر على %1"
+msgstr "عُثر على \"%1"
#. GmveL
#: resources_en_US.properties
@@ -5013,7 +4994,7 @@ msgctxt ""
"SumMSTableDocuments\n"
"property.text"
msgid "All Excel documents contained in the following directory will be imported:"
-msgstr "كل مستندات إكسل الموجودة في الدليل التالي ستُستورد:"
+msgstr "كل مستندات أكسل الموجودة في الدليل التالي ستُستورد:"
#. kZfUh
#: resources_en_US.properties
diff --git a/source/ar/writerperfect/messages.po b/source/ar/writerperfect/messages.po
index 507057cd4b5..4d2c0e42af3 100644
--- a/source/ar/writerperfect/messages.po
+++ b/source/ar/writerperfect/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-03-23 11:46+0100\n"
-"PO-Revision-Date: 2021-12-14 18:38+0000\n"
+"PO-Revision-Date: 2022-03-20 12:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/writerperfectmessages/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: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1525785878.000000\n"
#. DXXuk
@@ -67,7 +67,7 @@ msgstr "استورد ملف Quattro Pro"
#. wH3TZ
msgctxt "stock"
msgid "_Add"
-msgstr ""
+msgstr "أ_ضف"
#. S9dsC
msgctxt "stock"
@@ -87,12 +87,12 @@ msgstr ""
#. nvx5t
msgctxt "stock"
msgid "_Delete"
-msgstr ""
+msgstr "اح_ذف"
#. YspCj
msgctxt "stock"
msgid "_Edit"
-msgstr ""
+msgstr "ح_رّر"
#. imQxr
msgctxt "stock"
@@ -102,7 +102,7 @@ msgstr ""
#. RbjyB
msgctxt "stock"
msgid "_New"
-msgstr ""
+msgstr "_جديد"
#. dx2yy
msgctxt "stock"
@@ -163,7 +163,7 @@ msgstr "فاصل صفحات"
#: writerperfect/uiconfig/ui/exportepub.ui:147
msgctxt "exportepub|splitheading"
msgid "Heading"
-msgstr "عنوان رئيسي"
+msgstr "خط العنوان"
#. 6nDti
#: writerperfect/uiconfig/ui/exportepub.ui:160
diff --git a/source/ar/xmlsecurity/messages.po b/source/ar/xmlsecurity/messages.po
index 8d24b90f638..2ac2fb49abe 100644
--- a/source/ar/xmlsecurity/messages.po
+++ b/source/ar/xmlsecurity/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:21+0100\n"
-"PO-Revision-Date: 2022-02-16 08:40+0000\n"
+"PO-Revision-Date: 2022-02-24 15:40+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/ar/>\n"
"Language: ar\n"
@@ -294,7 +294,7 @@ msgstr "_نعم"
#: xmlsecurity/uiconfig/ui/certdetails.ui:49
msgctxt "certdetails|field"
msgid "Field"
-msgstr ""
+msgstr "حقل"
#. Zug9C
#: xmlsecurity/uiconfig/ui/certdetails.ui:62
diff --git a/source/as/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po b/source/as/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
index f1ebfe25bc6..f84bc13ea01 100644
--- a/source/as/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/as/connectivity/registry/mysql_jdbc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2018-10-21 19:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,13 +34,3 @@ msgctxt ""
"value.text"
msgid "MySQL (ODBC)"
msgstr ""
-
-#. rcnrk
-#: Drivers.xcu
-msgctxt ""
-"Drivers.xcu\n"
-".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
-"DriverTypeDisplayName\n"
-"value.text"
-msgid "MySQL (Native)"
-msgstr ""
diff --git a/source/as/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po b/source/as/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
index 97d38d71b66..99b7562ea09 100644
--- a/source/as/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
+++ b/source/as/connectivity/registry/mysqlc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2018-10-02 16:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496494.000000\n"
-#. NHVFU
+#. bTkZz
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "MySQL Connector"
+msgid "MySQL/MariaDB Connector"
msgstr ""
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index 93bc6a893b1..471c12e48a7 100644
--- a/source/as/cui/messages.po
+++ b/source/as/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-18 12:16+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
"PO-Revision-Date: 2021-05-13 23:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/as/>\n"
@@ -2162,10 +2162,10 @@ msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
msgstr ""
-#. YFfQV
+#. BT9KG
#: cui/inc/strings.hrc:403
msgctxt "RID_CUISTR_ZIPFAIL"
-msgid "Creation of Zip file failed!"
+msgid "Creation of ZIP file failed."
msgstr ""
#. 9QSQr
@@ -2249,10 +2249,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"
msgstr ""
-#. DUvk6
+#. jpiRT
#: cui/inc/tipoftheday.hrc:62
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon style."
+msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon Theme."
msgstr ""
#. RejqP
@@ -3066,11 +3066,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
-#. BnMpb
+#. DBfad
#. local help missing
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
+msgid "Use Format ▸ Align Objects in Impress or Shape ▸ Align Objects in Draw (or the context menu) for precise positioning of objects: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
@@ -4493,69 +4493,75 @@ msgctxt "accelconfigpage|extended_tip|save"
msgid "Saves the current shortcut key configuration, so that you can load it later."
msgstr ""
-#. mJmga
-#: cui/uiconfig/ui/accelconfigpage.ui:297
+#. oSRQ7
+#: cui/uiconfig/ui/accelconfigpage.ui:295
+msgctxt "accelconfigpage|tooltip|reset"
+msgid "Unsaved modifications to shortcut keys are reverted."
+msgstr ""
+
+#. stv4J
+#: cui/uiconfig/ui/accelconfigpage.ui:298
msgctxt "accelconfigpage|extended_tip|reset"
-msgid "Resets modified values back to the default values."
+msgid "Revert any changes made to keyboard shortcuts to the assignments that were present when this dialog was opened."
msgstr ""
#. BKAsD
-#: cui/uiconfig/ui/accelconfigpage.ui:348
+#: cui/uiconfig/ui/accelconfigpage.ui:349
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr ""
#. nGtvW
-#: cui/uiconfig/ui/accelconfigpage.ui:352
+#: cui/uiconfig/ui/accelconfigpage.ui:353
msgctxt "accelconfigpage|extended_tip|searchEntry"
msgid "Type here to search in the list of functions."
msgstr ""
#. T5FGo
-#: cui/uiconfig/ui/accelconfigpage.ui:374
+#: cui/uiconfig/ui/accelconfigpage.ui:375
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "বিভাগ (_C)"
#. xfWzA
-#: cui/uiconfig/ui/accelconfigpage.ui:388
+#: cui/uiconfig/ui/accelconfigpage.ui:389
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "ফলন (_F)"
#. 7PCeb
-#: cui/uiconfig/ui/accelconfigpage.ui:402
+#: cui/uiconfig/ui/accelconfigpage.ui:403
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr "কি'বোৰ (_K)"
#. 8DnFJ
-#: cui/uiconfig/ui/accelconfigpage.ui:446
+#: cui/uiconfig/ui/accelconfigpage.ui:447
msgctxt "accelconfigpage|extended_tip|category"
msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
msgstr ""
#. wGm8q
-#: cui/uiconfig/ui/accelconfigpage.ui:493
+#: cui/uiconfig/ui/accelconfigpage.ui:494
msgctxt "accelconfigpage|extended_tip|function"
msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
msgstr ""
#. PzCaG
-#: cui/uiconfig/ui/accelconfigpage.ui:539
+#: cui/uiconfig/ui/accelconfigpage.ui:540
msgctxt "accelconfigpage|extended_tip|keys"
msgid "Displays the shortcut keys that are assigned to the selected function."
msgstr ""
#. CqdJF
-#: cui/uiconfig/ui/accelconfigpage.ui:563
+#: cui/uiconfig/ui/accelconfigpage.ui:564
#, fuzzy
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "ফাংকশ্বনসমূহ"
#. kVeWd
-#: cui/uiconfig/ui/accelconfigpage.ui:576
+#: cui/uiconfig/ui/accelconfigpage.ui:577
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
msgstr ""
@@ -7656,12 +7662,14 @@ msgid "HSB"
msgstr "HSB"
#. sesZZ
+#. This is the C of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:639
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr ""
#. Gw7rx
+#. This is the M of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:654
#, fuzzy
msgctxt "colorpickerdialog|label6"
@@ -7669,6 +7677,7 @@ msgid "_Magenta:"
msgstr "মেজেন্টা"
#. Uv2KG
+#. This is the Y of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:669
#, fuzzy
msgctxt "colorpickerdialog|label7"
@@ -7676,6 +7685,7 @@ msgid "_Yellow:"
msgstr "হালধীয়া"
#. aFvbe
+#. This is the K of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:684
#, fuzzy
msgctxt "colorpickerdialog|label8"
@@ -7713,7 +7723,7 @@ msgid "CMYK"
msgstr "CMYK"
#. HuUmH
-#: cui/uiconfig/ui/colorpickerdialog.ui:815
+#: cui/uiconfig/ui/colorpickerdialog.ui:812
msgctxt "extended tip | ColorPicker"
msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
msgstr ""
@@ -17577,181 +17587,155 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "স্বচালিত"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "উচ্চ কনট্ৰাস্ট"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "অক্সিজেন"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "কালজয়ী"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. SXzWW
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "_Theme:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. F7kTw
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Theme"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "হাৰ্ডৱেৰ ত্বৰণ ব্যৱহাৰ কৰক (_w)"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
#, fuzzy
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "এন্টি-এলিায়াচিং ব্যৱহাৰ কৰক (_l)"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
#, fuzzy
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "গ্ৰাফিক্স আউটপুট"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "ফন্টসমূহৰ পূৰ্বদৰ্শন দেখুৱাওক (_r)"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "পৰ্দা ফন্ট এন্টিএলিয়াচিং (_g)"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
#, fuzzy
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "পৰা (_m)"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "ফন্ট তালিকাসমূহ"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
@@ -17781,221 +17765,221 @@ msgid "_Orientation:"
msgstr "দিশ (_O):"
#. mtFWf
-#: cui/uiconfig/ui/pageformatpage.ui:131
+#: cui/uiconfig/ui/pageformatpage.ui:135
msgctxt "pageformatpage|radiobuttonPortrait"
msgid "_Portrait"
msgstr "পট্ৰেইট (_P)"
#. LGkU8
-#: cui/uiconfig/ui/pageformatpage.ui:150
+#: cui/uiconfig/ui/pageformatpage.ui:154
msgctxt "pageformatpage|radiobuttonLandscape"
msgid "L_andscape"
msgstr "ভুখণ্ড (_a)"
#. PTwDK
-#: cui/uiconfig/ui/pageformatpage.ui:172
+#: cui/uiconfig/ui/pageformatpage.ui:176
msgctxt "pageformatpage|labelTextFlow"
msgid "_Text direction:"
msgstr "লিখনীৰ দিশ (_T):"
#. FmMdc
-#: cui/uiconfig/ui/pageformatpage.ui:228
+#: cui/uiconfig/ui/pageformatpage.ui:232
msgctxt "pageformatpage|labelPaperTray"
msgid "Paper _tray:"
msgstr "কাগজৰ ট্ৰে (_t):"
#. u8DFb
-#: cui/uiconfig/ui/pageformatpage.ui:260
+#: cui/uiconfig/ui/pageformatpage.ui:264
#, fuzzy
msgctxt "pageformatpage|labelPaperFormat"
msgid "Paper Format"
msgstr "পাত বিন্যাস"
#. 479hs
-#: cui/uiconfig/ui/pageformatpage.ui:305
+#: cui/uiconfig/ui/pageformatpage.ui:309
msgctxt "pageformatpage|labelLeftMargin"
msgid "Left:"
msgstr "বাওঁফালৰ:"
#. EoGm2
-#: cui/uiconfig/ui/pageformatpage.ui:319
+#: cui/uiconfig/ui/pageformatpage.ui:323
msgctxt "pageformatpage|labelInner"
msgid "I_nner:"
msgstr "অভ্যন্তৰীক (_n):"
#. 7FFiR
-#: cui/uiconfig/ui/pageformatpage.ui:357
+#: cui/uiconfig/ui/pageformatpage.ui:361
msgctxt "pageformatpage|labelRightMargin"
msgid "Right:"
msgstr "সোঁফালৰ:"
#. RfnGu
-#: cui/uiconfig/ui/pageformatpage.ui:371
+#: cui/uiconfig/ui/pageformatpage.ui:375
msgctxt "pageformatpage|labelOuter"
msgid "O_uter:"
msgstr "বাহিৰৰ (_u:)"
#. tGMLA
-#: cui/uiconfig/ui/pageformatpage.ui:404
+#: cui/uiconfig/ui/pageformatpage.ui:408
msgctxt "pageformatpage|labelTopMargin"
msgid "Top:"
msgstr "ওপৰ:"
#. eaqBS
-#: cui/uiconfig/ui/pageformatpage.ui:430
+#: cui/uiconfig/ui/pageformatpage.ui:434
msgctxt "pageformatpage|labelBottomMargin"
msgid "Bottom:"
msgstr "তলত:"
#. TYx6B
-#: cui/uiconfig/ui/pageformatpage.ui:456
+#: cui/uiconfig/ui/pageformatpage.ui:460
msgctxt "pageformatpage|labelGutterMargin"
msgid "Gutter:"
msgstr ""
#. Tvwu6
-#: cui/uiconfig/ui/pageformatpage.ui:484
+#: cui/uiconfig/ui/pageformatpage.ui:488
msgctxt "pageformatpage|labelMargins"
msgid "Margins"
msgstr "মাৰ্জিন"
#. WcuCU
-#: cui/uiconfig/ui/pageformatpage.ui:517
+#: cui/uiconfig/ui/pageformatpage.ui:521
msgctxt "pageformatpage|labelPageLayout"
msgid "_Page layout:"
msgstr "পৃষ্ঠাৰ বিন্যাস (_P):"
#. vnXWF
-#: cui/uiconfig/ui/pageformatpage.ui:531
+#: cui/uiconfig/ui/pageformatpage.ui:535
msgctxt "pageformatpage|labelPageNumbers"
msgid "Page numbers:"
msgstr ""
#. tyvA3
-#: cui/uiconfig/ui/pageformatpage.ui:543
+#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
msgstr ""
#. DtZQG
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:547
+#: cui/uiconfig/ui/pageformatpage.ui:551
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
msgstr ""
#. p2egb
-#: cui/uiconfig/ui/pageformatpage.ui:552
+#: cui/uiconfig/ui/pageformatpage.ui:556
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr ""
#. 46djR
-#: cui/uiconfig/ui/pageformatpage.ui:566
+#: cui/uiconfig/ui/pageformatpage.ui:570
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr "সোঁ আৰু বাও"
#. xetCH
-#: cui/uiconfig/ui/pageformatpage.ui:567
+#: cui/uiconfig/ui/pageformatpage.ui:571
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr "প্রতিফলিত"
#. 47EHF
-#: cui/uiconfig/ui/pageformatpage.ui:568
+#: cui/uiconfig/ui/pageformatpage.ui:572
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr "কেৱল সোঁ"
#. ALSy9
-#: cui/uiconfig/ui/pageformatpage.ui:569
+#: cui/uiconfig/ui/pageformatpage.ui:573
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr "কেৱল বাও"
#. Fhvzk
-#: cui/uiconfig/ui/pageformatpage.ui:591
+#: cui/uiconfig/ui/pageformatpage.ui:595
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "টেবুলৰ সংৰেখন:"
#. 79BH9
-#: cui/uiconfig/ui/pageformatpage.ui:603
+#: cui/uiconfig/ui/pageformatpage.ui:607
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "আনুভুমিক (_z)"
#. krxQZ
-#: cui/uiconfig/ui/pageformatpage.ui:617
+#: cui/uiconfig/ui/pageformatpage.ui:621
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "উলম্ব (_V)"
#. FPLFK
-#: cui/uiconfig/ui/pageformatpage.ui:631
+#: cui/uiconfig/ui/pageformatpage.ui:635
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr "অবজেক্টক পাত বিন্যাসত খাপ খোৱাওক (_F)"
#. bqcXW
-#: cui/uiconfig/ui/pageformatpage.ui:648
+#: cui/uiconfig/ui/pageformatpage.ui:651
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
msgstr "প্ৰসংগৰ শৈলী (_S):"
#. FnoPF
-#: cui/uiconfig/ui/pageformatpage.ui:672
+#: cui/uiconfig/ui/pageformatpage.ui:675
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
msgstr ""
#. LF4Ex
-#: cui/uiconfig/ui/pageformatpage.ui:687
+#: cui/uiconfig/ui/pageformatpage.ui:690
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Left"
msgstr ""
#. DSBY5
-#: cui/uiconfig/ui/pageformatpage.ui:688
+#: cui/uiconfig/ui/pageformatpage.ui:691
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
#. AosV5
-#: cui/uiconfig/ui/pageformatpage.ui:704
+#: cui/uiconfig/ui/pageformatpage.ui:701
msgctxt "pageformatpage|checkRtlGutter"
msgid "Gutter on right side of page"
msgstr ""
#. cuazP
-#: cui/uiconfig/ui/pageformatpage.ui:718
+#: cui/uiconfig/ui/pageformatpage.ui:715
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:722
+#: cui/uiconfig/ui/pageformatpage.ui:719
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:727
+#: cui/uiconfig/ui/pageformatpage.ui:724
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:742
+#: cui/uiconfig/ui/pageformatpage.ui:754
#, fuzzy
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "বিন্যাস সংহতিসমূহ"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:763
+#: cui/uiconfig/ui/pageformatpage.ui:775
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -21561,10 +21545,10 @@ msgctxt "textcolumnstabpage|extended_tip|MTR_FLD_COL_SPACING"
msgid "Enter the amount of space to leave between the columns."
msgstr ""
-#. 4u4bL
+#. 7Fgep
#: cui/uiconfig/ui/textcolumnstabpage.ui:108
msgctxt "textcolumnstabpage|extended_tip|TextColumnsPage"
-msgid "Sets the columns layout properties for text in the selected drawing or text object."
+msgid "Sets the columns’ layout properties for text in the selected drawing or text object."
msgstr ""
#. 3Huae
@@ -22650,39 +22634,39 @@ msgid "In columns view layout you see pages in a given number of columns side by
msgstr ""
#. opsyv
-#: cui/uiconfig/ui/zoomdialog.ui:367
+#: cui/uiconfig/ui/zoomdialog.ui:366
#, fuzzy
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. psRyA
-#: cui/uiconfig/ui/zoomdialog.ui:368
+#: cui/uiconfig/ui/zoomdialog.ui:367
msgctxt "zoomdialog|extended_tip|columnssb"
msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
msgstr ""
#. rhLet
-#: cui/uiconfig/ui/zoomdialog.ui:387
+#: cui/uiconfig/ui/zoomdialog.ui:386
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr "কিতাপ অৱস্থা"
#. egdNS
-#: cui/uiconfig/ui/zoomdialog.ui:400
+#: cui/uiconfig/ui/zoomdialog.ui:398
msgctxt "zoomdialog|extended_tip|bookmode"
msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number."
msgstr ""
#. pdZqi
-#: cui/uiconfig/ui/zoomdialog.ui:416
+#: cui/uiconfig/ui/zoomdialog.ui:414
#, fuzzy
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "বিন্যাস দৰ্শন কৰক"
#. DWWgJ
-#: cui/uiconfig/ui/zoomdialog.ui:448
+#: cui/uiconfig/ui/zoomdialog.ui:446
msgctxt "zoomdialog|extended_tip|ZoomDialog"
msgid "Reduces or enlarges the screen display."
msgstr ""
diff --git a/source/as/dbaccess/messages.po b/source/as/dbaccess/messages.po
index ae105ed8ff2..e1a839c66c4 100644
--- a/source/as/dbaccess/messages.po
+++ b/source/as/dbaccess/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-04-01 00:19+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/dbaccessmessages/as/>\n"
@@ -1918,11 +1918,11 @@ msgctxt "STR_WRITER_PATH_OR_FILE"
msgid "Path to the Writer document"
msgstr ""
-#. zQxCp
+#. JScWd
#: dbaccess/inc/strings.hrc:335
msgctxt "STR_MYSQL_DATABASE_NAME"
-msgid "Name of the MySQL database"
-msgstr "MySQL ডাটাবেছটোৰ নাম"
+msgid "Name of the MySQL/MariaDB database"
+msgstr ""
#. uhRMQ
#: dbaccess/inc/strings.hrc:336
@@ -2106,11 +2106,11 @@ msgctxt "STR_PAGETITLE_ORACLE"
msgid "Set up Oracle database connection"
msgstr "অৰেকল ডাটাবেছ সংযোগ ছেট আপ কৰক"
-#. KbAqW
+#. rdZFv
#: dbaccess/inc/strings.hrc:368
msgctxt "STR_PAGETITLE_MYSQL"
-msgid "Set up MySQL connection"
-msgstr "MySQL সংযোগ ছেট আপ কৰক"
+msgid "Set up MySQL/MariaDB connection"
+msgstr ""
#. uJuNs
#: dbaccess/inc/strings.hrc:369
@@ -2130,11 +2130,11 @@ msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
msgid "Set up user authentication"
msgstr "ব্যৱহাৰকৰ্তাৰ বিশ্বাসযোগ্যকৰণ ছেট আপ কৰক"
-#. YgsyA
+#. twW6d
#: dbaccess/inc/strings.hrc:372
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
-msgid "Set up MySQL server data"
-msgstr "MySQL চাৰ্ভাৰ তথ্য সংহতি কৰক"
+msgid "Set up MySQL/MariaDB server data"
+msgstr ""
#. 6Fy7C
#: dbaccess/inc/strings.hrc:373
@@ -2148,28 +2148,25 @@ msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
msgstr "নতুন ডাটাবেছ্"
-#. DoGLb
+#. f5EbK
#: dbaccess/inc/strings.hrc:375
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "JDBC ব্যৱহাৰ কৰি এটা MySQL ডাটাবেছলৈ সংযোগ ছেট আপ কৰক"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. B5kEC
+#. tqpeM
#: dbaccess/inc/strings.hrc:376
-#, fuzzy
msgctxt "STR_MYSQLJDBC_HELPTEXT"
msgid ""
-"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-"অনুগ্ৰহ কৰি JDBC ব্যৱহাৰ কৰি এটা MySQL ডাটাবেইচলৈ প্ৰয়োজনীয় তথ্য সুমুৱাওক। মন কৰিব যে JDBC ড্ৰাইভাৰ শ্ৰেণী আপোনাৰ চিষ্টেমত ইনষ্টল কৰাটো অপৰিহাৰ্য আৰু %PRODUCTNAME ৰ সৈতে ৰেজিষ্টাৰ কৰিব লাগিব।\n"
-"অনুগ্ৰহ কৰি আপোনাৰ ছিষ্টেম এডমিনিষ্ট্ৰেটৰক যোগাযোগ কৰক যদিহে আপুনি তলৰ ছেটিংছৰ বিষয়ে নিশ্চিত নহয়।"
-#. uGTyY
+#. Lrd3G
#: dbaccess/inc/strings.hrc:377
msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
-msgid "MySQL JDBC d~river class:"
-msgstr "MySQL JDBC ড্ৰাইভাৰ শ্ৰেণী (~r):"
+msgid "MySQL/MariaDB JDBC d~river class:"
+msgstr ""
#. cBiSe
#: dbaccess/inc/strings.hrc:378
@@ -3120,12 +3117,11 @@ msgctxt "dbwizmysqlintropage|jdbc"
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr "JDBC (জাভা ডাটাবেছ কানেক্টিভিটি) ব্যৱহাৰ কৰি সংযোগ কৰক"
-#. AW2n6
+#. 3haAx
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:93
-#, fuzzy
msgctxt "dbwizmysqlintropage|directly"
-msgid "Connect directly"
-msgstr "প্ৰত্যক্ষভাৱে সংযোগ কৰক"
+msgid "Connect directly (using MariaDB C connector)"
+msgstr ""
#. C9PFE
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:112
@@ -3134,26 +3130,23 @@ msgctxt "dbwizmysqlintropage|label1"
msgid "How do you want to connect to your MySQL database?"
msgstr "আপুনি আপোনাৰ MySQL ডাটাবেছটোলৈ কেনেকৈ সংযোগ কৰিব বিচাৰে?"
-#. pdEL5
+#. C9PGh
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:128
-#, fuzzy
msgctxt "dbwizmysqlintropage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "এটা JDBC ডাটাবেছলৈ এটা সংযোগ ছেট আপ কৰক"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
-#. E8ACc
+#. 3cSEi
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:35
-#, fuzzy
msgctxt "dbwizmysqlnativepage|helptext"
-msgid "Please enter the required information to connect to a MySQL database."
-msgstr "এটা MySQL তথ্যভঁৰাললৈ সংযোগ কৰিবলৈ প্ৰয়োজনীয় তথ্য দিয়ক ।"
+msgid "Please enter the required information to connect to a MySQL/MariaDB database."
+msgstr ""
-#. 2HCAG
+#. 4uetU
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:70
-#, fuzzy
msgctxt "dbwizmysqlnativepage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "এটা JDBC ডাটাবেছলৈ এটা সংযোগ ছেট আপ কৰক"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
#. AEty7
#: dbaccess/uiconfig/ui/dbwizspreadsheetpage.ui:55
@@ -4763,20 +4756,17 @@ msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Specifies the sort criteria for the data display."
msgstr ""
-#. CsLXB
+#. nDP3A
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
msgctxt "specialjdbcconnectionpage|header"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "JDBC ব্যৱহাৰ কৰি এটা MySQL ডাটাবেছলৈ সংযোগ ছেট আপ কৰক"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. oxw5Q
+#. EVDCG
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:39
-#, fuzzy
msgctxt "specialjdbcconnectionpage|helpLabel"
-msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
+msgid "Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
msgstr ""
-"অনুগ্ৰহ কৰি JDBC ব্যৱহাৰ কৰি এটা MySQL ডাটাবেইচলৈ প্ৰয়োজনীয় তথ্য সুমুৱাওক। মন কৰিব যে JDBC ড্ৰাইভাৰ শ্ৰেণী আপোনাৰ চিষ্টেমত ইনষ্টল কৰাটো অপৰিহাৰ্য আৰু %PRODUCTNAME ৰ সৈতে ৰেজিষ্টাৰ কৰিব লাগিব।\n"
-"অনুগ্ৰহ কৰি আপোনাৰ ছিষ্টেম এডমিনিষ্ট্ৰেটৰক যোগাযোগ কৰক যদিহে আপুনি তলৰ ছেটিংছৰ বিষয়ে নিশ্চিত নহয়।"
#. GchzZ
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:64
@@ -4805,12 +4795,11 @@ msgctxt "specialjdbcconnectionpage|portNumDefLabel"
msgid "Default: 3306"
msgstr "অবিকল্পিত: 3306"
-#. dhiYx
+#. o9YhU
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:188
-#, fuzzy
msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
-msgid "MySQL JDBC d_river class:"
-msgstr "MySQL JDBC ড্ৰাইভাৰ শ্ৰেণী (~r):"
+msgid "MySQL/MariaDB JDBC d_river class:"
+msgstr ""
#. 8oG6P
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:212
diff --git a/source/as/fpicker/messages.po b/source/as/fpicker/messages.po
index bf2ed3c47ac..e36279fbf05 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-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/as/>\n"
@@ -508,8 +508,20 @@ msgstr ""
"\n"
"আপুনি ইয়াক প্ৰতিস্থাপন কৰিব বিচাৰে নে?"
-#. z6Eo3
+#. t4wDh
#: include/fpicker/strings.hrc:32
+msgctxt "STR_SVT_ALREADYEXISTOVERWRITE_SECONDARY"
+msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
+msgstr ""
+
+#. cBvCB
+#: include/fpicker/strings.hrc:33
+msgctxt "STR_SVT_ALLFORMATS"
+msgid "All Formats"
+msgstr ""
+
+#. z6Eo3
+#: include/fpicker/strings.hrc:34
msgctxt "STR_SVT_DELETESERVICE"
msgid ""
"Are you sure you want to delete the service?\n"
@@ -517,33 +529,33 @@ msgid ""
msgstr ""
#. KegFE
-#: include/fpicker/strings.hrc:33
+#: include/fpicker/strings.hrc:35
#, fuzzy
msgctxt "STR_SVT_ROOTLABEL"
msgid "Root"
msgstr "ফুট"
#. sWRTd
-#: include/fpicker/strings.hrc:34
+#: include/fpicker/strings.hrc:36
msgctxt "STR_FILTERNAME_ALL"
msgid "All files"
msgstr "সকলো ফাইল"
#. FBggE
-#: include/fpicker/strings.hrc:35
+#: include/fpicker/strings.hrc:37
msgctxt "STR_FILEDLG_OPEN"
msgid "Open"
msgstr "খোলক"
#. wJYsA
-#: include/fpicker/strings.hrc:36
+#: include/fpicker/strings.hrc:38
#, fuzzy
msgctxt "STR_FILEDLG_TYPE"
msgid "File ~type"
msgstr "ফাইলৰ ধৰণ (‌~t):"
#. EEBg4
-#: include/fpicker/strings.hrc:37
+#: include/fpicker/strings.hrc:39
#, fuzzy
msgctxt "STR_FILEDLG_SAVE"
msgid "Save"
diff --git a/source/as/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/as/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 69ae040937f..65b465d0880 100644
--- a/source/as/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/as/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2020-03-31 10:35+0200\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\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"
@@ -2457,15 +2457,6 @@ msgctxt ""
msgid "&Cancel"
msgstr "বাতিল কৰক (&C)"
-#. rvG8Q
-#: Control.ulf
-msgctxt ""
-"Control.ulf\n"
-"OOO_CONTROL_206\n"
-"LngText.text"
-msgid "error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here"
-msgstr "error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here"
-
#. D6Bgs
#: Control.ulf
msgctxt ""
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 a225536b0fe..fb788ef9e01 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-04-04 11:41+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"
@@ -2112,6 +2112,26 @@ msgctxt ""
msgid "F~ourier Analysis..."
msgstr ""
+#. aTBPM
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertSparkline\n"
+"Label\n"
+"value.text"
+msgid "Insert Sparkline..."
+msgstr ""
+
+#. CoZgJ
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:DeleteSparkline\n"
+"Label\n"
+"value.text"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dTXDB
#: CalcCommands.xcu
#, fuzzy
@@ -2143,16 +2163,6 @@ msgctxt ""
msgid "Data ~Validation..."
msgstr ""
-#. xxDxd
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "শাৰীসমূহ মচক"
-
#. wZAYL
#: CalcCommands.xcu
msgctxt ""
@@ -2163,16 +2173,6 @@ msgctxt ""
msgid "Insert"
msgstr "সুমুৱাওক"
-#. jgGQR
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "স্তম্ভসমূহ মচক"
-
#. 5PPGW
#: CalcCommands.xcu
msgctxt ""
@@ -2303,27 +2303,6 @@ msgctxt ""
msgid "Delete All Comments"
msgstr "সকলো মন্তব্য মচক"
-#. PzCtT
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comm~ent"
-msgstr "মন্তব্য (~n)"
-
-#. HAWW3
-#: CalcCommands.xcu
-#, fuzzy
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"PopupLabel\n"
-"value.text"
-msgid "Insert Co~mment"
-msgstr "নির্দেশ সুমুৱাওক"
-
#. uUwKE
#: CalcCommands.xcu
msgctxt ""
@@ -3235,16 +3214,6 @@ msgctxt ""
msgid "~Show Sheet..."
msgstr "সকলোসমূহ শ্বিট বাছনী কৰক (~S)..."
-#. BARqL
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "কক্ষসমূহ একত্ৰিত কৰক"
-
#. APBqu
#: CalcCommands.xcu
msgctxt ""
@@ -10708,26 +10677,6 @@ msgctxt ""
msgid "Tas~k Pane"
msgstr "কাৰ্য্য পেইন (~k)"
-#. EAawg
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "কক্ষসমূহ একত্ৰিত কৰক"
-
-#. eQphw
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells"
-msgstr "কোষ বিভাজন কৰক"
-
#. Bvk8Q
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10861,26 +10810,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "স্তম্ভসমূহ সুমুৱাওক (~l)"
-#. momxn
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Row"
-msgstr "শাৰী মচক"
-
-#. YzuWU
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Column"
-msgstr "স্তম্ভ মচক"
-
#. yTCcA
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10991,16 +10920,6 @@ msgctxt ""
msgid "~Table..."
msgstr "টেবুল (~T)..."
-#. apmru
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comme~nt"
-msgstr "মন্তব্য (~n)"
-
#. XUrBD
#: DrawImpressCommands.xcu
msgctxt ""
@@ -22172,6 +22091,26 @@ msgctxt ""
msgid "~Merge"
msgstr "একত্রিত কৰক (~M)"
+#. rAjSP
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:MergeCells\n"
+"Label\n"
+"value.text"
+msgid "Merge Cells"
+msgstr ""
+
+#. ktF7K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SplitCell\n"
+"Label\n"
+"value.text"
+msgid "Split Cells..."
+msgstr ""
+
#. 2gYcx
#: GenericCommands.xcu
msgctxt ""
@@ -26712,6 +26651,66 @@ msgctxt ""
msgid "Insert Column"
msgstr ""
+#. LhLtz
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"Label\n"
+"value.text"
+msgid "Delete Columns"
+msgstr ""
+
+#. AG4Qy
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Columns"
+msgstr ""
+
+#. KxsdA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected columns"
+msgstr ""
+
+#. VL8Wa
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"Label\n"
+"value.text"
+msgid "Delete Rows"
+msgstr ""
+
+#. uAPr9
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Rows"
+msgstr ""
+
+#. wjm8K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected rows"
+msgstr ""
+
#. poXFa
#: GenericCommands.xcu
msgctxt ""
@@ -29432,6 +29431,16 @@ msgctxt ""
msgid "Slide"
msgstr "স্লাইড (~e)"
+#. zDinJ
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.DrawPageDeck\n"
+"Title\n"
+"value.text"
+msgid "Page"
+msgstr ""
+
#. E9FJB
#: Sidebar.xcu
#, fuzzy
@@ -32788,66 +32797,6 @@ msgctxt ""
msgid "Columns ~Before"
msgstr ""
-#. rzDZU
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "শাৰীসমূহ মচক"
-
-#. DDmHu
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Rows"
-msgstr "শাৰীসমূহ (~R)"
-
-#. mBMTr
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected rows"
-msgstr ""
-
-#. WGcRm
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "স্তম্ভসমূহ মচক"
-
-#. P6wy9
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Columns"
-msgstr "স্তম্ভসমূহ (~C)"
-
-#. rhbdp
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected columns"
-msgstr ""
-
#. RxF66
#: WriterCommands.xcu
#, fuzzy
@@ -32879,26 +32828,6 @@ msgctxt ""
msgid "Delete table"
msgstr ""
-#. f2Fpk
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells..."
-msgstr "কোষ বিভাজন কৰক..."
-
-#. DqRgD
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "কক্ষসমূহ একত্ৰিত কৰক"
-
#. TTVL5
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index e4c1ce15663..db8ea3c0a1c 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: 2022-02-18 12:18+0100\n"
+"POT-Creation-Date: 2022-04-04 11:41+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"
@@ -3249,6 +3249,18 @@ msgctxt "STR_INDENTCELL"
msgid "Indent: "
msgstr ""
+#. HWAmv
+#: sc/inc/globstr.hrc:542
+msgctxt "STR_UNDO_INSERT_SPARKLINE"
+msgid "Insert Sparkline Group"
+msgstr ""
+
+#. LiBMo
+#: sc/inc/globstr.hrc:543
+msgctxt "STR_UNDO_DELETE_SPARKLINE"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dB8cp
#: sc/inc/pvfundlg.hrc:28
msgctxt "SCSTR_DPFUNCLISTBOX"
@@ -27886,10 +27898,10 @@ msgctxt "pastespecial|PasteSpecial"
msgid "Paste Special"
msgstr "বিশেষক পেইস্ট কৰক"
-#. diPtG
+#. 9DVsp
#: sc/uiconfig/scalc/ui/pastespecial.ui:130
msgctxt "pastespecial|paste_values_only|label"
-msgid "_Values Only"
+msgid "Values Only"
msgstr ""
#. XyU8o
@@ -27904,10 +27916,10 @@ msgctxt "pastespecial|extended_tip|paste_values_only"
msgid "Pastes numbers, text, dates and the results of formulas."
msgstr ""
-#. CTEKF
+#. qDbrz
#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
-msgid "Values & _Formats"
+msgid "Values & Formats"
msgstr ""
#. 7GuDi
@@ -27922,10 +27934,10 @@ msgctxt "pastespecial|extended_tip|paste_values_formats"
msgid "Pastes cell values, formula results and formats applied to cells."
msgstr ""
-#. Rb8KR
+#. uCJBB
#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
-msgid "Formats Onl_y"
+msgid "Formats Only"
msgstr ""
#. Cvyjn
@@ -27940,10 +27952,10 @@ 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
+#. osqEX
#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
-msgid "_Transpose All"
+msgid "Transpose All"
msgstr ""
#. sbLGi
@@ -27958,10 +27970,10 @@ msgctxt "pastespecial|extended_tip|paste_transpose"
msgid "Pastes cell contents transposed, hence columns are converted to rows."
msgstr ""
-#. 4ETCT
+#. B28BC
#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
-msgid "_Run immediately"
+msgid "Run immediately"
msgstr ""
#. 7a9JE
@@ -27976,10 +27988,10 @@ msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
-#. g6DfA
+#. huhPQ
#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
-msgid "_All"
+msgid "All"
msgstr ""
#. Labin
@@ -27988,11 +28000,11 @@ msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
-#. qzFbg
+#. sg69o
#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
-msgid "_Numbers"
-msgstr "সংখ্যাসমূহ (_N)"
+msgid "Numbers"
+msgstr ""
#. SCVEu
#: sc/uiconfig/scalc/ui/pastespecial.ui:317
@@ -28000,12 +28012,11 @@ msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
-#. BSEWE
+#. APG3W
#: sc/uiconfig/scalc/ui/pastespecial.ui:328
-#, fuzzy
msgctxt "pastespecial|text"
-msgid "Te_xt"
-msgstr "টেক্সট (_T)"
+msgid "Text"
+msgstr ""
#. JWDk5
#: sc/uiconfig/scalc/ui/pastespecial.ui:336
@@ -28013,11 +28024,11 @@ msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
-#. DBaJD
+#. HEwjB
#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
-msgid "_Date & time"
-msgstr "তাৰিখ & সময় (_D)"
+msgid "Date & time"
+msgstr ""
#. jq6Md
#: sc/uiconfig/scalc/ui/pastespecial.ui:355
@@ -28025,11 +28036,11 @@ msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
-#. aHXF8
+#. HKgB9
#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
-msgid "For_mats"
-msgstr "বিন্যাসসমূহ (_m)"
+msgid "Formats"
+msgstr ""
#. ehyEf
#: sc/uiconfig/scalc/ui/pastespecial.ui:374
@@ -28037,11 +28048,11 @@ msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
-#. NT4Am
+#. vAFRC
#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
-msgid "_Comments"
-msgstr "বিষয়সূচী (_C)"
+msgid "Comments"
+msgstr ""
#. 3uP7i
#: sc/uiconfig/scalc/ui/pastespecial.ui:393
@@ -28049,10 +28060,10 @@ 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
+#. 5n5r7
#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
-msgid "Ob_jects"
+msgid "Objects"
msgstr ""
#. DZsnr
@@ -28061,10 +28072,10 @@ 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
+#. 2wYuG
#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
-msgid "F_ormulas"
+msgid "Formulas"
msgstr ""
#. Na5Ba
@@ -28079,10 +28090,10 @@ msgctxt "pastespecial|label1"
msgid "Paste"
msgstr ""
-#. fonBJ
+#. SKs5y
#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
-msgid "Don't sh_ift"
+msgid "Don't shift"
msgstr ""
#. q3Xv3
@@ -28091,10 +28102,10 @@ msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
-#. RuiU6
+#. 4hD8A
#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
-msgid "_Down"
+msgid "Down"
msgstr ""
#. BNALN
@@ -28103,11 +28114,11 @@ msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
-#. obSAt
+#. Psyof
#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
-msgid "_Right"
-msgstr "সোঁফাল (_R)"
+msgid "Right"
+msgstr ""
#. GEFe7
#: sc/uiconfig/scalc/ui/pastespecial.ui:528
@@ -28121,10 +28132,10 @@ msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
-#. nuJd9
+#. JXJTf
#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
-msgid "As _Link"
+msgid "As Link"
msgstr ""
#. Bg9dc
@@ -28133,10 +28144,10 @@ 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
+#. 7yzbi
#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
-msgid "Trans_pose"
+msgid "Transpose"
msgstr ""
#. P3eE4
@@ -28145,10 +28156,10 @@ 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
+#. 3VcAr
#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
-msgid "_Skip empty cells"
+msgid "Skip empty cells"
msgstr ""
#. BodqB
@@ -28169,12 +28180,11 @@ msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr ""
-#. nJiy4
+#. ekYg5
#: sc/uiconfig/scalc/ui/pastespecial.ui:681
-#, fuzzy
msgctxt "pastespecial|none"
-msgid "Non_e"
-msgstr "টীকা"
+msgid "None"
+msgstr ""
#. 7GKDG
#: sc/uiconfig/scalc/ui/pastespecial.ui:690
@@ -28182,12 +28192,11 @@ 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
+#. QhQnq
#: sc/uiconfig/scalc/ui/pastespecial.ui:702
-#, fuzzy
msgctxt "pastespecial|add"
-msgid "_Add"
-msgstr "যোগ কৰক"
+msgid "Add"
+msgstr ""
#. bNyh2
#: sc/uiconfig/scalc/ui/pastespecial.ui:711
@@ -28195,12 +28204,11 @@ 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
+#. 4SmrC
#: sc/uiconfig/scalc/ui/pastespecial.ui:723
-#, fuzzy
msgctxt "pastespecial|subtract"
-msgid "_Subtract"
-msgstr "বিয়োগ কৰক (~S)"
+msgid "Subtract"
+msgstr ""
#. 2SKbT
#: sc/uiconfig/scalc/ui/pastespecial.ui:732
@@ -28208,10 +28216,10 @@ msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
-#. zdDUB
+#. 4HCRU
#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
-msgid "_Multiply"
+msgid "Multiply"
msgstr ""
#. jkRDm
@@ -28220,10 +28228,10 @@ msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
-#. 7Nd8u
+#. 55rBT
#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
-msgid "_Divide"
+msgid "Divide"
msgstr ""
#. 9VKdS
@@ -31036,320 +31044,320 @@ msgid "Optimize result to"
msgstr "বৃদ্ধি কৰক"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:155
+#: sc/uiconfig/scalc/ui/solverdlg.ui:162
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "কোষ পৰিবৰ্তন কৰি (_B)"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:166
+#: sc/uiconfig/scalc/ui/solverdlg.ui:173
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "নূন্যতম (_u)"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:178
+#: sc/uiconfig/scalc/ui/solverdlg.ui:185
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:189
+#: sc/uiconfig/scalc/ui/solverdlg.ui:196
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "সর্বাধিক (_M)"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:201
+#: sc/uiconfig/scalc/ui/solverdlg.ui:208
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:226
+#: sc/uiconfig/scalc/ui/solverdlg.ui:233
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:269
+#: sc/uiconfig/scalc/ui/solverdlg.ui:276
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:312
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "চিহ্নিত বস্তুৰ মান (_V)"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:317
+#: sc/uiconfig/scalc/ui/solverdlg.ui:324
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:342
+#: sc/uiconfig/scalc/ui/solverdlg.ui:349
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:428
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:442
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "অপাৰেটৰ (_O)"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:456
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "মান (_a)"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:476
+#: sc/uiconfig/scalc/ui/solverdlg.ui:483
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:495
+#: sc/uiconfig/scalc/ui/solverdlg.ui:502
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:514
+#: sc/uiconfig/scalc/ui/solverdlg.ui:521
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:533
+#: sc/uiconfig/scalc/ui/solverdlg.ui:540
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "কোষৰ প্ৰসংগ (_C)"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:591
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:592
+#: sc/uiconfig/scalc/ui/solverdlg.ui:599
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:593
+#: sc/uiconfig/scalc/ui/solverdlg.ui:600
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:594
+#: sc/uiconfig/scalc/ui/solverdlg.ui:601
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "পূৰ্ণসংখ্যা"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:595
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "যুগ্মক"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:599
+#: sc/uiconfig/scalc/ui/solverdlg.ui:606
#, fuzzy
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "অপাৰেটৰ (_O)"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:613
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:614
+#: sc/uiconfig/scalc/ui/solverdlg.ui:621
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:615
+#: sc/uiconfig/scalc/ui/solverdlg.ui:622
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:616
+#: sc/uiconfig/scalc/ui/solverdlg.ui:623
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "পূৰ্ণসংখ্যা"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:617
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "যুগ্মক"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:621
+#: sc/uiconfig/scalc/ui/solverdlg.ui:628
#, fuzzy
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "অপাৰেটৰ (_O)"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:635
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:636
+#: sc/uiconfig/scalc/ui/solverdlg.ui:643
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:637
+#: sc/uiconfig/scalc/ui/solverdlg.ui:644
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:638
+#: sc/uiconfig/scalc/ui/solverdlg.ui:645
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "পূৰ্ণসংখ্যা"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:639
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "যুগ্মক"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:643
+#: sc/uiconfig/scalc/ui/solverdlg.ui:650
#, fuzzy
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "অপাৰেটৰ (_O)"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:657
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:658
+#: sc/uiconfig/scalc/ui/solverdlg.ui:665
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:659
+#: sc/uiconfig/scalc/ui/solverdlg.ui:666
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:660
+#: sc/uiconfig/scalc/ui/solverdlg.ui:667
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "পূৰ্ণসংখ্যা"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:661
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "যুগ্মক"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:665
+#: sc/uiconfig/scalc/ui/solverdlg.ui:672
#, fuzzy
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "অপাৰেটৰ (_O)"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:685
+#: sc/uiconfig/scalc/ui/solverdlg.ui:692
#, fuzzy
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "মান (_a)"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:705
+#: sc/uiconfig/scalc/ui/solverdlg.ui:712
#, fuzzy
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "মান (_a)"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:725
+#: sc/uiconfig/scalc/ui/solverdlg.ui:732
#, fuzzy
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "মান (_a)"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:745
+#: sc/uiconfig/scalc/ui/solverdlg.ui:752
#, fuzzy
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "মান (_a)"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:803
+#: sc/uiconfig/scalc/ui/solverdlg.ui:810
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "আঁতৰাওক"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:815
+#: sc/uiconfig/scalc/ui/solverdlg.ui:822
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "আঁতৰাওক"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:827
+#: sc/uiconfig/scalc/ui/solverdlg.ui:834
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "আঁতৰাওক"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:839
+#: sc/uiconfig/scalc/ui/solverdlg.ui:846
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "আঁতৰাওক"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:862
+#: sc/uiconfig/scalc/ui/solverdlg.ui:869
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "বহুত চৰ্ত"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:895
+#: sc/uiconfig/scalc/ui/solverdlg.ui:899
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
@@ -31459,14 +31467,14 @@ msgid "Sort"
msgstr "বৰ্গীকৰণ কৰক"
#. BMbZ7
-#: sc/uiconfig/scalc/ui/sortdialog.ui:139
+#: sc/uiconfig/scalc/ui/sortdialog.ui:112
#, fuzzy
msgctxt "sortdialog|criteria"
msgid "Sort Criteria"
msgstr "নিৰ্ণায়ক বৰ্গীকৰণ কৰক"
#. gMSdg
-#: sc/uiconfig/scalc/ui/sortdialog.ui:186
+#: sc/uiconfig/scalc/ui/sortdialog.ui:135
msgctxt "sortdialog|options"
msgid "Options"
msgstr "বিকল্পসমূহ"
@@ -31760,6 +31768,102 @@ msgctxt "sortwarning|sorttip"
msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
msgstr "সহায়: সজোৱা বিস্তাৰ স্বচালিতভাৱে ধৰা পেলাব পাৰি। কোষ কাৰ্চাৰক এটা তালিকাৰ ভিতৰত ৰাখক আৰু সজোৱা প্ৰেৰণ কৰক। প্ৰতিৱেশী অৰিক্ত কোষবোৰৰ গোটেই বিস্তাৰ তাৰ পিছত সজোৱা হব।"
+#. 5YeNV
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:8
+msgctxt "SparklineDialog"
+msgid "Sparkline Dialog"
+msgstr ""
+
+#. Atj7n
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:161
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Input range:"
+msgstr ""
+
+#. gYQBd
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:178
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Output range:"
+msgstr ""
+
+#. faM2q
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:197
+msgctxt "SparklineDialog|label-data"
+msgid "Data"
+msgstr ""
+
+#. mcBDU
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:231
+msgctxt "SparklineDialog|label-series"
+msgid "Series:"
+msgstr ""
+
+#. N5L8b
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:246
+msgctxt "SparklineDialog|label-negative"
+msgid "Negative Points:"
+msgstr ""
+
+#. y5dsG
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:318
+msgctxt "SparklineDialog|label-low"
+msgid "Low Points:"
+msgstr ""
+
+#. LRGMH
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:390
+msgctxt "SparklineDialog|label-high"
+msgid "High Points:"
+msgstr ""
+
+#. WSgFy
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:426
+msgctxt "SparklineDialog|label-marker"
+msgid "Marker:"
+msgstr ""
+
+#. 6kVrt
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:556
+msgctxt "SparklineDialog|label-first"
+msgid "First Points:"
+msgstr ""
+
+#. tdvGa
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:572
+msgctxt "SparklineDialog|label-last"
+msgid "Last Points:"
+msgstr ""
+
+#. UAFwj
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:588
+msgctxt "SparklineDialog|label-type"
+msgid "Type:"
+msgstr ""
+
+#. gxMQL
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:608
+msgctxt "SparklineDialog|line-radiobutton"
+msgid "Line"
+msgstr ""
+
+#. VPdbn
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:627
+msgctxt "SparklineDialog|column-radiobutton"
+msgid "Column"
+msgstr ""
+
+#. oLsAN
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:646
+msgctxt "SparklineDialog|stacked-radiobutton"
+msgid "Stacked"
+msgstr ""
+
+#. 9uKMb
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:688
+msgctxt "SparklineDialog|label-properties"
+msgid "Properties"
+msgstr ""
+
#. p9BBw
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29
msgctxt "splitcolumnentry|name"
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index 46578d14429..a264c26e693 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: 2022-02-21 15:23+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/as/>\n"
@@ -9279,10 +9279,10 @@ msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
msgstr ""
-#. GuDqe
+#. CA9F9
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1195
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
-msgid "Select a full hd resolution for a very high quality slide display."
+msgid "Select a full HD resolution for a very high-quality slide display."
msgstr ""
#. zsvW6
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index a63919da959..8676b592e25 100644
--- a/source/as/sfx2/messages.po
+++ b/source/as/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-09 16:46+0100\n"
+"POT-Creation-Date: 2022-04-01 00:20+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"
@@ -1635,335 +1635,347 @@ msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr ""
+#. BSyb4
+#: include/sfx2/strings.hrc:293
+msgctxt "STR_REFRESH_MASTER_PASSWORD"
+msgid "The master password is stored in an outdated format, you should refresh it"
+msgstr ""
+
+#. ysChU
+#: include/sfx2/strings.hrc:294
+msgctxt "STR_REFRESH_PASSWORD"
+msgid "Refresh Password"
+msgstr ""
+
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:331
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "আতৰাওক"
#. JReRY
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:332
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:334
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:335
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:338
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:340
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:342
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:345
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:350
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:357
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
@@ -2034,313 +2046,313 @@ msgid "_Yes"
msgstr "হয়"
#. F5rSU
-#: sfx2/inc/dinfdlg.hrc:27
+#: sfx2/inc/dinfdlg.hrc:29
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Checked by"
msgstr "পৰীক্ষা কৰিব লগীয়া কক্ষটো ।"
#. BCYGG
-#: sfx2/inc/dinfdlg.hrc:28
+#: sfx2/inc/dinfdlg.hrc:30
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Client"
msgstr "গ্রাহক-ফালৰ ছবি মেপ"
#. nSrT3
-#: sfx2/inc/dinfdlg.hrc:29
+#: sfx2/inc/dinfdlg.hrc:31
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date completed"
msgstr "হাইফেনেশ্বন সম্পূর্ণ হ'ল"
#. HEaEC
-#: sfx2/inc/dinfdlg.hrc:30
+#: sfx2/inc/dinfdlg.hrc:32
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Department"
msgstr "বিভাগ"
#. TxAux
-#: sfx2/inc/dinfdlg.hrc:31
+#: sfx2/inc/dinfdlg.hrc:33
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Destinations"
msgstr "গন্তব্য"
#. f3nqh
-#: sfx2/inc/dinfdlg.hrc:32
+#: sfx2/inc/dinfdlg.hrc:34
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Disposition"
msgstr "Disposition"
#. uznMD
-#: sfx2/inc/dinfdlg.hrc:33
+#: sfx2/inc/dinfdlg.hrc:35
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Division"
msgstr "বিভাজন"
#. 6DuFF
-#: sfx2/inc/dinfdlg.hrc:34
+#: sfx2/inc/dinfdlg.hrc:36
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Document number"
msgstr "দস্তাবেজ"
#. XXKuP
-#: sfx2/inc/dinfdlg.hrc:35
+#: sfx2/inc/dinfdlg.hrc:37
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Editor"
msgstr "সম্পাদক"
#. hRRmF
-#: sfx2/inc/dinfdlg.hrc:36
+#: sfx2/inc/dinfdlg.hrc:38
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Email"
msgstr ""
#. xNvDx
-#: sfx2/inc/dinfdlg.hrc:37
+#: sfx2/inc/dinfdlg.hrc:39
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Forward to"
msgstr "পৃষ্ঠালৈ"
#. xwv85
-#: sfx2/inc/dinfdlg.hrc:38
+#: sfx2/inc/dinfdlg.hrc:40
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Group"
msgstr "গোট"
#. u59Qp
-#: sfx2/inc/dinfdlg.hrc:39
+#: sfx2/inc/dinfdlg.hrc:41
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Info"
msgstr "তথ্য"
#. Ltq9H
-#: sfx2/inc/dinfdlg.hrc:40
+#: sfx2/inc/dinfdlg.hrc:42
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Language"
msgstr "ভাষা"
#. bv3HC
-#: sfx2/inc/dinfdlg.hrc:41
+#: sfx2/inc/dinfdlg.hrc:43
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Mailstop"
msgstr "Mailstop"
#. AFGi2
-#: sfx2/inc/dinfdlg.hrc:42
+#: sfx2/inc/dinfdlg.hrc:44
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Matter"
msgstr "মেটাৰ"
#. wGAD6
-#: sfx2/inc/dinfdlg.hrc:43
+#: sfx2/inc/dinfdlg.hrc:45
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Office"
msgstr "অফিচ"
#. ZqphY
-#: sfx2/inc/dinfdlg.hrc:44
+#: sfx2/inc/dinfdlg.hrc:46
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Owner"
msgstr "গৰাকী"
#. mK8Th
-#: sfx2/inc/dinfdlg.hrc:45
+#: sfx2/inc/dinfdlg.hrc:47
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Project"
msgstr "প্ৰজেক্ট"
#. zFeHt
-#: sfx2/inc/dinfdlg.hrc:46
+#: sfx2/inc/dinfdlg.hrc:48
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Publisher"
msgstr "প্ৰকাশক"
#. pF2eJ
-#: sfx2/inc/dinfdlg.hrc:47
+#: sfx2/inc/dinfdlg.hrc:49
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Purpose"
msgstr "উদ্দেশ্য"
#. GTPFZ
-#: sfx2/inc/dinfdlg.hrc:48
+#: sfx2/inc/dinfdlg.hrc:50
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Received from"
msgstr "...ৰ পৰা"
#. dvGyQ
-#: sfx2/inc/dinfdlg.hrc:49
+#: sfx2/inc/dinfdlg.hrc:51
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded by"
msgstr "ৰ দ্বাৰা ৰেকৰ্ড কৰা হৈছে"
#. GjVXD
-#: sfx2/inc/dinfdlg.hrc:50
+#: sfx2/inc/dinfdlg.hrc:52
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded date"
msgstr "টেক্সট এট্ৰিবিয়ুটবোৰ"
#. o5oXa
-#: sfx2/inc/dinfdlg.hrc:51
+#: sfx2/inc/dinfdlg.hrc:53
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Reference"
msgstr "প্ৰসংগ"
#. ex26g
-#: sfx2/inc/dinfdlg.hrc:52
+#: sfx2/inc/dinfdlg.hrc:54
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Source"
msgstr "উৎস"
#. 4HSZB
-#: sfx2/inc/dinfdlg.hrc:53
+#: sfx2/inc/dinfdlg.hrc:55
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Status"
msgstr "স্থিতি"
#. U3RdC
-#: sfx2/inc/dinfdlg.hrc:54
+#: sfx2/inc/dinfdlg.hrc:56
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Telephone number"
msgstr "টেলিফোন সংখ্যা"
#. Geeuu
-#: sfx2/inc/dinfdlg.hrc:55
+#: sfx2/inc/dinfdlg.hrc:57
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Typist"
msgstr "Typist"
#. xxHtR
-#: sfx2/inc/dinfdlg.hrc:56
+#: sfx2/inc/dinfdlg.hrc:58
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "URL"
msgstr "URL"
#. CxTQY
-#: sfx2/inc/dinfdlg.hrc:71
+#: sfx2/inc/dinfdlg.hrc:73
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Text"
msgstr "লিখনী"
#. MMGFi
-#: sfx2/inc/dinfdlg.hrc:72
+#: sfx2/inc/dinfdlg.hrc:74
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "DateTime"
msgstr "তাৰিখসময়"
#. GvJMH
-#: sfx2/inc/dinfdlg.hrc:73
+#: sfx2/inc/dinfdlg.hrc:75
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date"
msgstr "তথ্য"
#. GyrbX
-#: sfx2/inc/dinfdlg.hrc:74
+#: sfx2/inc/dinfdlg.hrc:76
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Duration"
msgstr "স্থায়িত্ব"
#. CxZ4Z
-#: sfx2/inc/dinfdlg.hrc:75
+#: sfx2/inc/dinfdlg.hrc:77
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Number"
msgstr "সংখ্যা"
#. CDgvL
-#: sfx2/inc/dinfdlg.hrc:76
+#: sfx2/inc/dinfdlg.hrc:78
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Yes or no"
msgstr "হয় বা নহয়"
#. AxhLy
-#: sfx2/inc/doctempl.hrc:27
+#: sfx2/inc/doctempl.hrc:29
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "My Templates"
msgstr "মোৰ নমুনাবোৰ"
#. 5aNp8
-#: sfx2/inc/doctempl.hrc:28
+#: sfx2/inc/doctempl.hrc:30
#, fuzzy
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Styles"
msgstr "শৈলী"
#. t5QK9
-#: sfx2/inc/doctempl.hrc:29
+#: sfx2/inc/doctempl.hrc:31
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Business Correspondence"
msgstr "ব্যৱসায়ৰ যোগাযোগ"
#. Y79e8
-#: sfx2/inc/doctempl.hrc:30
+#: sfx2/inc/doctempl.hrc:32
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Other Business Documents"
msgstr "অন্য ব্যৱসায়ৰ দস্তাবেজবোৰ"
#. 2RCC9
-#: sfx2/inc/doctempl.hrc:31
+#: sfx2/inc/doctempl.hrc:33
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Personal Correspondence and Documents"
msgstr "ব্যক্তিগত যোগাযোগ আৰু দস্তাবেজবোৰ"
#. 6Dgiz
-#: sfx2/inc/doctempl.hrc:32
+#: sfx2/inc/doctempl.hrc:34
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Forms and Contracts"
msgstr "প্ৰকাৰবোৰ আৰু চুক্তিবোৰ"
#. VCKTG
-#: sfx2/inc/doctempl.hrc:33
+#: sfx2/inc/doctempl.hrc:35
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Finances"
msgstr "বিত্তবোৰ"
#. HmqGP
-#: sfx2/inc/doctempl.hrc:34
+#: sfx2/inc/doctempl.hrc:36
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Education"
msgstr "শিক্ষা"
#. xopM8
-#: sfx2/inc/doctempl.hrc:35
+#: sfx2/inc/doctempl.hrc:37
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentation Backgrounds"
msgstr "উপস্থাপন পৃষ্ঠভূমিবোৰ"
#. tSQLA
-#: sfx2/inc/doctempl.hrc:36
+#: sfx2/inc/doctempl.hrc:38
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentations"
msgstr "পৰিৱেশনসমূহ"
#. KuNzz
-#: sfx2/inc/doctempl.hrc:37
+#: sfx2/inc/doctempl.hrc:39
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Miscellaneous"
msgstr "সানমিহলি"
#. SC4E5
-#: sfx2/inc/doctempl.hrc:38
+#: sfx2/inc/doctempl.hrc:40
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "লেবেলসমূহ"
diff --git a/source/as/starmath/messages.po b/source/as/starmath/messages.po
index da61d6956a2..b680937c273 100644
--- a/source/as/starmath/messages.po
+++ b/source/as/starmath/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: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/as/>\n"
@@ -16,410 +16,410 @@ msgstr ""
"X-Generator: LibreOffice\n"
#. GrDhX
-#: starmath/inc/smmod.hrc:16
+#: starmath/inc/smmod.hrc:18
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Greek"
msgstr "গ্রীক"
#. bApbv
-#: starmath/inc/smmod.hrc:17
+#: starmath/inc/smmod.hrc:19
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Special"
msgstr "বিশেষ"
#. aXhLc
-#: starmath/inc/smmod.hrc:22
+#: starmath/inc/smmod.hrc:24
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "alpha"
msgstr "আলফা"
#. rhVhw
-#: starmath/inc/smmod.hrc:23
+#: starmath/inc/smmod.hrc:25
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ALPHA"
msgstr "ALPHA"
#. U3CqD
-#: starmath/inc/smmod.hrc:24
+#: starmath/inc/smmod.hrc:26
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "beta"
msgstr "বিটা"
#. pEoCL
-#: starmath/inc/smmod.hrc:25
+#: starmath/inc/smmod.hrc:27
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "BETA"
msgstr "BETA"
#. D2jkQ
-#: starmath/inc/smmod.hrc:26
+#: starmath/inc/smmod.hrc:28
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "gamma"
msgstr "গামা"
#. 4Cw8A
-#: starmath/inc/smmod.hrc:27
+#: starmath/inc/smmod.hrc:29
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "GAMMA"
msgstr "GAMMA"
#. uMmke
-#: starmath/inc/smmod.hrc:28
+#: starmath/inc/smmod.hrc:30
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "delta"
msgstr "ডেল্টা"
#. dBy8u
-#: starmath/inc/smmod.hrc:29
+#: starmath/inc/smmod.hrc:31
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "DELTA"
msgstr "DELTA"
#. CrJqB
-#: starmath/inc/smmod.hrc:30
+#: starmath/inc/smmod.hrc:32
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "epsilon"
msgstr "এপছিলন"
#. jSZ7F
-#: starmath/inc/smmod.hrc:31
+#: starmath/inc/smmod.hrc:33
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "EPSILON"
msgstr "EPSILON"
#. kRvNs
-#: starmath/inc/smmod.hrc:32
+#: starmath/inc/smmod.hrc:34
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "zeta"
msgstr "জিটা"
#. YA3sh
-#: starmath/inc/smmod.hrc:33
+#: starmath/inc/smmod.hrc:35
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ZETA"
msgstr "ZETA"
#. kEWFU
-#: starmath/inc/smmod.hrc:34
+#: starmath/inc/smmod.hrc:36
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "eta"
msgstr "ইটা"
#. r8ivE
-#: starmath/inc/smmod.hrc:35
+#: starmath/inc/smmod.hrc:37
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ETA"
msgstr "ETA"
#. CaW5B
-#: starmath/inc/smmod.hrc:36
+#: starmath/inc/smmod.hrc:38
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "theta"
msgstr "থিটা"
#. MUaj7
-#: starmath/inc/smmod.hrc:37
+#: starmath/inc/smmod.hrc:39
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "THETA"
msgstr "THETA"
#. FAdCp
-#: starmath/inc/smmod.hrc:38
+#: starmath/inc/smmod.hrc:40
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "iota"
msgstr "আয়োটা"
#. 2RFqS
-#: starmath/inc/smmod.hrc:39
+#: starmath/inc/smmod.hrc:41
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "IOTA"
msgstr "IOTA"
#. E6LBi
-#: starmath/inc/smmod.hrc:40
+#: starmath/inc/smmod.hrc:42
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "kappa"
msgstr "কাপপা"
#. PGGyZ
-#: starmath/inc/smmod.hrc:41
+#: starmath/inc/smmod.hrc:43
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "KAPPA"
msgstr "KAPPA"
#. QhGid
-#: starmath/inc/smmod.hrc:42
+#: starmath/inc/smmod.hrc:44
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "lambda"
msgstr "লেম্বডা"
#. JBLgu
-#: starmath/inc/smmod.hrc:43
+#: starmath/inc/smmod.hrc:45
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "LAMBDA"
msgstr "LAMBDA"
#. AkyEU
-#: starmath/inc/smmod.hrc:44
+#: starmath/inc/smmod.hrc:46
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "mu"
msgstr "মিউ"
#. t4RFD
-#: starmath/inc/smmod.hrc:45
+#: starmath/inc/smmod.hrc:47
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "MU"
msgstr "MU"
#. DwBRA
-#: starmath/inc/smmod.hrc:46
+#: starmath/inc/smmod.hrc:48
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "nu"
msgstr "নিউ"
#. sDc6Z
-#: starmath/inc/smmod.hrc:47
+#: starmath/inc/smmod.hrc:49
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "NU"
msgstr "NU"
#. dMns2
-#: starmath/inc/smmod.hrc:48
+#: starmath/inc/smmod.hrc:50
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "xi"
msgstr "ছাই"
#. 2cEVh
-#: starmath/inc/smmod.hrc:49
+#: starmath/inc/smmod.hrc:51
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "XI"
msgstr "XI"
#. PWUDK
-#: starmath/inc/smmod.hrc:50
+#: starmath/inc/smmod.hrc:52
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omicron"
msgstr "ওমাইক্ৰন"
#. ZvPw7
-#: starmath/inc/smmod.hrc:51
+#: starmath/inc/smmod.hrc:53
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMICRON"
msgstr "OMICRON"
#. VmDhA
-#: starmath/inc/smmod.hrc:52
+#: starmath/inc/smmod.hrc:54
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "pi"
msgstr "পাই"
#. A3eoZ
-#: starmath/inc/smmod.hrc:53
+#: starmath/inc/smmod.hrc:55
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PI"
msgstr "PI"
#. Pu9vL
-#: starmath/inc/smmod.hrc:54
+#: starmath/inc/smmod.hrc:56
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "rho"
msgstr "ৰ'"
#. HjNFe
-#: starmath/inc/smmod.hrc:55
+#: starmath/inc/smmod.hrc:57
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "RHO"
msgstr "RHO"
#. 9Aa3V
-#: starmath/inc/smmod.hrc:56
+#: starmath/inc/smmod.hrc:58
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "sigma"
msgstr "ছিগমা"
#. JLWqn
-#: starmath/inc/smmod.hrc:57
+#: starmath/inc/smmod.hrc:59
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "SIGMA"
msgstr "SIGMA"
#. NTuqk
-#: starmath/inc/smmod.hrc:58
+#: starmath/inc/smmod.hrc:60
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tau"
msgstr "টাউ"
#. GdhQ5
-#: starmath/inc/smmod.hrc:59
+#: starmath/inc/smmod.hrc:61
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "TAU"
msgstr "TAU"
#. 6djSp
-#: starmath/inc/smmod.hrc:60
+#: starmath/inc/smmod.hrc:62
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "upsilon"
msgstr "আপছাইলন্"
#. ymFBb
-#: starmath/inc/smmod.hrc:61
+#: starmath/inc/smmod.hrc:63
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "UPSILON"
msgstr "UPSILON"
#. YxRXi
-#: starmath/inc/smmod.hrc:62
+#: starmath/inc/smmod.hrc:64
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "phi"
msgstr "ফাই"
#. enCD7
-#: starmath/inc/smmod.hrc:63
+#: starmath/inc/smmod.hrc:65
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PHI"
msgstr "PHI"
#. GcQPF
-#: starmath/inc/smmod.hrc:64
+#: starmath/inc/smmod.hrc:66
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "chi"
msgstr "ছি"
#. 6SBnr
-#: starmath/inc/smmod.hrc:65
+#: starmath/inc/smmod.hrc:67
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "CHI"
msgstr "CHI"
#. NAmaK
-#: starmath/inc/smmod.hrc:66
+#: starmath/inc/smmod.hrc:68
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "psi"
msgstr "চাই"
#. GLZ2h
-#: starmath/inc/smmod.hrc:67
+#: starmath/inc/smmod.hrc:69
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PSI"
msgstr "PSI"
#. JEF5A
-#: starmath/inc/smmod.hrc:68
+#: starmath/inc/smmod.hrc:70
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omega"
msgstr "ওমেগা"
#. 9QKj8
-#: starmath/inc/smmod.hrc:69
+#: starmath/inc/smmod.hrc:71
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMEGA"
msgstr "OMEGA"
#. YQGDY
-#: starmath/inc/smmod.hrc:70
+#: starmath/inc/smmod.hrc:72
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varepsilon"
msgstr "ৱাৰেপছাইলন"
#. VLAFM
-#: starmath/inc/smmod.hrc:71
+#: starmath/inc/smmod.hrc:73
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "vartheta"
msgstr "ৱাৰথিটা"
#. UJB26
-#: starmath/inc/smmod.hrc:72
+#: starmath/inc/smmod.hrc:74
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varpi"
msgstr "ৱাৰপাই"
#. BCNqp
-#: starmath/inc/smmod.hrc:73
+#: starmath/inc/smmod.hrc:75
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varrho"
msgstr "ৱাৰৰ'"
#. SUNDb
-#: starmath/inc/smmod.hrc:74
+#: starmath/inc/smmod.hrc:76
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varsigma"
msgstr "ৱাৰছিগমা"
#. cHCgN
-#: starmath/inc/smmod.hrc:75
+#: starmath/inc/smmod.hrc:77
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varphi"
msgstr "ৱাৰফাই"
#. c9n9F
-#: starmath/inc/smmod.hrc:76
+#: starmath/inc/smmod.hrc:78
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "element"
msgstr "উপাদান"
#. yXYWE
-#: starmath/inc/smmod.hrc:77
+#: starmath/inc/smmod.hrc:79
#, fuzzy
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "noelement"
msgstr "উপাদান"
#. nDkSp
-#: starmath/inc/smmod.hrc:78
+#: starmath/inc/smmod.hrc:80
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlylessthan"
msgstr "strictlylessthan"
#. 9AZxy
-#: starmath/inc/smmod.hrc:79
+#: starmath/inc/smmod.hrc:81
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlygreaterthan"
msgstr "strictlygreaterthan"
#. 4F3qH
-#: starmath/inc/smmod.hrc:80
+#: starmath/inc/smmod.hrc:82
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "notequal"
msgstr "অসমান"
#. 6UYC3
-#: starmath/inc/smmod.hrc:81
+#: starmath/inc/smmod.hrc:83
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "identical"
msgstr ""
#. 38B2B
-#: starmath/inc/smmod.hrc:82
+#: starmath/inc/smmod.hrc:84
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tendto"
msgstr "tendto"
#. kDCC4
-#: starmath/inc/smmod.hrc:83
+#: starmath/inc/smmod.hrc:85
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "infinite"
msgstr "অসীম"
#. CnJUL
-#: starmath/inc/smmod.hrc:84
+#: starmath/inc/smmod.hrc:86
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "angle"
msgstr "কোণ"
#. MVfFZ
-#: starmath/inc/smmod.hrc:85
+#: starmath/inc/smmod.hrc:87
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "perthousand"
msgstr ""
#. tqFYX
-#: starmath/inc/smmod.hrc:86
+#: starmath/inc/smmod.hrc:88
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "and"
msgstr "আৰু"
#. jFASF
-#: starmath/inc/smmod.hrc:87
+#: starmath/inc/smmod.hrc:89
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "or"
msgstr "অথবা"
diff --git a/source/as/svtools/messages.po b/source/as/svtools/messages.po
index a2c71eb748d..f3a869908de 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: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/as/>\n"
@@ -1809,115 +1809,115 @@ msgid "_Yes"
msgstr "হয়"
#. tBGDJ
-#: svtools/inc/borderline.hrc:17
+#: svtools/inc/borderline.hrc:18
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "None"
msgstr ""
#. Xx4Fb
-#: svtools/inc/borderline.hrc:18
+#: svtools/inc/borderline.hrc:19
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Solid"
msgstr ""
#. Paqxg
-#: svtools/inc/borderline.hrc:19
+#: svtools/inc/borderline.hrc:20
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dotted"
msgstr ""
#. Bucas
-#: svtools/inc/borderline.hrc:20
+#: svtools/inc/borderline.hrc:21
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dashed"
msgstr ""
#. 6XEca
-#: svtools/inc/borderline.hrc:21
+#: svtools/inc/borderline.hrc:22
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double"
msgstr ""
#. fB75B
-#: svtools/inc/borderline.hrc:22
+#: svtools/inc/borderline.hrc:23
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Small Gap"
msgstr ""
#. MwnWC
-#: svtools/inc/borderline.hrc:23
+#: svtools/inc/borderline.hrc:24
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Medium Gap"
msgstr ""
#. V2QAy
-#: svtools/inc/borderline.hrc:24
+#: svtools/inc/borderline.hrc:25
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Large Gap"
msgstr ""
#. 4pwSe
-#: svtools/inc/borderline.hrc:25
+#: svtools/inc/borderline.hrc:26
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Small Gap"
msgstr ""
#. PYjTF
-#: svtools/inc/borderline.hrc:26
+#: svtools/inc/borderline.hrc:27
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Medium Gap"
msgstr ""
#. EYXfK
-#: svtools/inc/borderline.hrc:27
+#: svtools/inc/borderline.hrc:28
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Large Gap"
msgstr ""
#. 7gh6t
-#: svtools/inc/borderline.hrc:28
+#: svtools/inc/borderline.hrc:29
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Embossed"
msgstr ""
#. WK8Yy
-#: svtools/inc/borderline.hrc:29
+#: svtools/inc/borderline.hrc:30
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Engraved"
msgstr ""
#. NDS6G
-#: svtools/inc/borderline.hrc:30
+#: svtools/inc/borderline.hrc:31
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Outset"
msgstr ""
#. 7m7iw
-#: svtools/inc/borderline.hrc:31
+#: svtools/inc/borderline.hrc:32
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Inset"
msgstr ""
#. F9rwV
-#: svtools/inc/borderline.hrc:32
+#: svtools/inc/borderline.hrc:33
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Fine Dashed"
msgstr ""
#. GyT7A
-#: svtools/inc/borderline.hrc:33
+#: svtools/inc/borderline.hrc:34
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double Thin"
msgstr ""
#. FyVvE
-#: svtools/inc/borderline.hrc:34
+#: svtools/inc/borderline.hrc:35
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot"
msgstr ""
#. 7yoVE
-#: svtools/inc/borderline.hrc:35
+#: svtools/inc/borderline.hrc:36
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot Dot"
msgstr ""
@@ -2580,2479 +2580,2479 @@ msgid "$(ERR) activating object"
msgstr "$(ERR) সক্ৰিয়কৰণ বস্তু"
#. jGYA8
-#: svtools/inc/langtab.hrc:28
+#: svtools/inc/langtab.hrc:29
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "[None]"
msgstr "[None]"
#. aUWzb
-#: svtools/inc/langtab.hrc:29
+#: svtools/inc/langtab.hrc:30
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Unknown"
msgstr "অজ্ঞাত"
#. AQgxZ
-#: svtools/inc/langtab.hrc:30 svtools/inc/langtab.hrc:31
+#: svtools/inc/langtab.hrc:31 svtools/inc/langtab.hrc:32
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Default"
msgstr "অবিকল্পিত"
#. hsqmD
-#: svtools/inc/langtab.hrc:32
+#: svtools/inc/langtab.hrc:33
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (South Africa)"
msgstr "আফ্ৰিকান্চ (দক্ষিণ আফ্ৰিকা)"
#. TVGco
-#: svtools/inc/langtab.hrc:33
+#: svtools/inc/langtab.hrc:34
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Albanian"
msgstr "আলবানিয়ান"
#. unNc6
-#: svtools/inc/langtab.hrc:34
+#: svtools/inc/langtab.hrc:35
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic"
msgstr "আৰবী"
#. yStAU
-#: svtools/inc/langtab.hrc:35
+#: svtools/inc/langtab.hrc:36
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Algeria)"
msgstr "আৰবী (আলজেৰিয়া)"
#. 6GPFd
-#: svtools/inc/langtab.hrc:36
+#: svtools/inc/langtab.hrc:37
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Bahrain)"
msgstr "আৰবী (বাহৰেইন)"
#. tvtct
-#: svtools/inc/langtab.hrc:37
+#: svtools/inc/langtab.hrc:38
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Chad)"
msgstr "আৰবী (ছাড)"
#. sAaq7
-#: svtools/inc/langtab.hrc:38
+#: svtools/inc/langtab.hrc:39
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Comoros)"
msgstr "আৰবী (কমোৰ'চ)"
#. CtwpU
-#: svtools/inc/langtab.hrc:39
+#: svtools/inc/langtab.hrc:40
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Djibouti)"
msgstr "আৰবী (জিবুটি)"
#. XgGyg
-#: svtools/inc/langtab.hrc:40
+#: svtools/inc/langtab.hrc:41
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Egypt)"
msgstr "আৰবী (ইজিপ্ট)"
#. iwYQR
-#: svtools/inc/langtab.hrc:41
+#: svtools/inc/langtab.hrc:42
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Eritrea)"
msgstr "আৰবী (ইৰিট্ৰিয়া)"
#. nKF3r
-#: svtools/inc/langtab.hrc:42
+#: svtools/inc/langtab.hrc:43
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Iraq)"
msgstr "আৰবী (ইৰাক)"
#. JdGNA
-#: svtools/inc/langtab.hrc:43
+#: svtools/inc/langtab.hrc:44
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Israel)"
msgstr "আৰবী (ইজৰায়েল)"
#. bVjMH
-#: svtools/inc/langtab.hrc:44
+#: svtools/inc/langtab.hrc:45
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Jordan)"
msgstr "আৰবী (জৰডান)"
#. 2tQFC
-#: svtools/inc/langtab.hrc:45
+#: svtools/inc/langtab.hrc:46
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Kuwait)"
msgstr "আৰবী (কুৱেইট)"
#. EvECi
-#: svtools/inc/langtab.hrc:46
+#: svtools/inc/langtab.hrc:47
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Lebanon)"
msgstr "আৰবী (লেবান'ন)"
#. AWBGA
-#: svtools/inc/langtab.hrc:47
+#: svtools/inc/langtab.hrc:48
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Libya)"
msgstr "আৰবী (লিব্ৱা)"
#. FBSpG
-#: svtools/inc/langtab.hrc:48
+#: svtools/inc/langtab.hrc:49
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Mauritania)"
msgstr "আৰবী (মৌৰিশানিয়া)"
#. YmCZY
-#: svtools/inc/langtab.hrc:49
+#: svtools/inc/langtab.hrc:50
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Morocco)"
msgstr "আৰবী (মৰক্কো)"
#. VB6tk
-#: svtools/inc/langtab.hrc:50
+#: svtools/inc/langtab.hrc:51
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Oman)"
msgstr "আৰবী (অমান)"
#. ErqSh
-#: svtools/inc/langtab.hrc:51
+#: svtools/inc/langtab.hrc:52
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Palestine)"
msgstr "আৰবী (পেলেচটিন)"
#. nURdz
-#: svtools/inc/langtab.hrc:52
+#: svtools/inc/langtab.hrc:53
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Qatar)"
msgstr "আৰবী (কাটাৰ)"
#. FdyFU
-#: svtools/inc/langtab.hrc:53
+#: svtools/inc/langtab.hrc:54
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Saudi Arabia)"
msgstr "আৰবী (চাওদি আৰব)"
#. x8UtA
-#: svtools/inc/langtab.hrc:54
+#: svtools/inc/langtab.hrc:55
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Somalia)"
msgstr "আৰবী (চমালিয়া)"
#. y9ptg
-#: svtools/inc/langtab.hrc:55
+#: svtools/inc/langtab.hrc:56
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Sudan)"
msgstr "আৰবী (চুডান)"
#. caDrq
-#: svtools/inc/langtab.hrc:56
+#: svtools/inc/langtab.hrc:57
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Syria)"
msgstr "আৰবী (চাইৰিয়া)"
#. TqKZQ
-#: svtools/inc/langtab.hrc:57
+#: svtools/inc/langtab.hrc:58
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Tunisia)"
msgstr "আৰবী (টিউনিচিয়া)"
#. VfYi2
-#: svtools/inc/langtab.hrc:58
+#: svtools/inc/langtab.hrc:59
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (UAE)"
msgstr "আৰবী (UAE)"
#. f7D5o
-#: svtools/inc/langtab.hrc:59
+#: svtools/inc/langtab.hrc:60
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Yemen)"
msgstr "আৰবী (ইয়েমেন)"
#. vDhQJ
-#: svtools/inc/langtab.hrc:60
+#: svtools/inc/langtab.hrc:61
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aragonese"
msgstr "এৰাগনিচ"
#. yE4TR
-#: svtools/inc/langtab.hrc:61
+#: svtools/inc/langtab.hrc:62
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Armenia)"
msgstr ""
#. bacGJ
-#: svtools/inc/langtab.hrc:62
+#: svtools/inc/langtab.hrc:63
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Assamese"
msgstr "অসমীয়া"
#. xAg9Q
-#: svtools/inc/langtab.hrc:63
+#: svtools/inc/langtab.hrc:64
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Latin"
msgstr "আজেৰবাইজানি লেটিন"
#. juADB
-#: svtools/inc/langtab.hrc:64
+#: svtools/inc/langtab.hrc:65
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Cyrillic"
msgstr "আজেৰবাইজানি চাইৰিলিক"
#. C3C7G
-#: svtools/inc/langtab.hrc:65
+#: svtools/inc/langtab.hrc:66
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Basque"
msgstr "বাস্ক"
#. dJPsj
-#: svtools/inc/langtab.hrc:66
+#: svtools/inc/langtab.hrc:67
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (India)"
msgstr "বাঙলা (ভাৰত)"
#. K6cbb
-#: svtools/inc/langtab.hrc:67
+#: svtools/inc/langtab.hrc:68
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bulgarian"
msgstr "বুলগেৰিয়ান"
#. sBBmA
-#: svtools/inc/langtab.hrc:68
+#: svtools/inc/langtab.hrc:69
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Belarusian"
msgstr "বেলাৰুচিয়ান"
#. 3SEoJ
-#: svtools/inc/langtab.hrc:69
+#: svtools/inc/langtab.hrc:70
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan"
msgstr "কাটালান"
#. PoUeZ
-#: svtools/inc/langtab.hrc:70
+#: svtools/inc/langtab.hrc:71
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan (Valencian)"
msgstr "কাটালান (ভেলেঞ্চিয়ান)"
#. ErGw2
-#: svtools/inc/langtab.hrc:71
+#: svtools/inc/langtab.hrc:72
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (traditional)"
msgstr "চীনা (পৰম্পৰাগত)"
#. Gbige
-#: svtools/inc/langtab.hrc:72
+#: svtools/inc/langtab.hrc:73
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (simplified)"
msgstr "চীনা (সৰলীকৃত)"
#. WzgGw
-#: svtools/inc/langtab.hrc:73
+#: svtools/inc/langtab.hrc:74
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Hong Kong)"
msgstr "চীনা (হং কং)"
#. Kfrv5
-#: svtools/inc/langtab.hrc:74
+#: svtools/inc/langtab.hrc:75
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Singapore)"
msgstr "চীনা (ছিঙাপুৰ)"
#. BSHqu
-#: svtools/inc/langtab.hrc:75
+#: svtools/inc/langtab.hrc:76
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Macau)"
msgstr "চীনা (মাকাও)"
#. FMwd9
-#: svtools/inc/langtab.hrc:76
+#: svtools/inc/langtab.hrc:77
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Church Slavic"
msgstr ""
#. cAkoV
-#: svtools/inc/langtab.hrc:77
+#: svtools/inc/langtab.hrc:78
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Croatian"
msgstr "ক্ৰোএছীয়ান"
#. DjdDj
-#: svtools/inc/langtab.hrc:78
+#: svtools/inc/langtab.hrc:79
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Czech"
msgstr "চেক"
#. xnGM2
-#: svtools/inc/langtab.hrc:79
+#: svtools/inc/langtab.hrc:80
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Danish"
msgstr "ডানিচ"
#. yMGyj
-#: svtools/inc/langtab.hrc:80
+#: svtools/inc/langtab.hrc:81
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Netherlands)"
msgstr "ডাচ (নেদাৰলেণ্ডচ্)"
#. qgJE9
-#: svtools/inc/langtab.hrc:81
+#: svtools/inc/langtab.hrc:82
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Belgium)"
msgstr "ডাচ (বেলজিয়াম)"
#. STsDT
-#: svtools/inc/langtab.hrc:82
+#: svtools/inc/langtab.hrc:83
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (USA)"
msgstr "ইংৰাজী (USA)"
#. aCBBC
-#: svtools/inc/langtab.hrc:83
+#: svtools/inc/langtab.hrc:84
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (UK)"
msgstr "ইংৰাজী (UK)"
#. 46Cte
-#: svtools/inc/langtab.hrc:84
+#: svtools/inc/langtab.hrc:85
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English, OED spelling (UK)"
msgstr "ইংৰাজী, OED বানান (UK)"
#. XCJAF
-#: svtools/inc/langtab.hrc:85
+#: svtools/inc/langtab.hrc:86
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Australia)"
msgstr "ইংৰাজী (অষ্ট্ৰেলিয়া)"
#. KPGdA
-#: svtools/inc/langtab.hrc:86
+#: svtools/inc/langtab.hrc:87
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Canada)"
msgstr "ইংৰাজী (কানাডা)"
#. vGWET
-#: svtools/inc/langtab.hrc:87
+#: svtools/inc/langtab.hrc:88
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (New Zealand)"
msgstr "ইংৰাজী (নিউ জিলেণ্ড)"
#. JpNB4
-#: svtools/inc/langtab.hrc:88
+#: svtools/inc/langtab.hrc:89
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ireland)"
msgstr "ইংৰাজী (আইয়াৰলেণ্ড)"
#. RYtwA
-#: svtools/inc/langtab.hrc:89
+#: svtools/inc/langtab.hrc:90
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (South Africa)"
msgstr "ইংৰাজী (দক্ষীন আফ্ৰিকা)"
#. fEWbR
-#: svtools/inc/langtab.hrc:90
+#: svtools/inc/langtab.hrc:91
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Jamaica)"
msgstr "ইংৰাজী (জামাইকা)"
#. 4tDmL
-#: svtools/inc/langtab.hrc:91
+#: svtools/inc/langtab.hrc:92
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Caribbean)"
msgstr "ইংৰাজী (কেৰিবিয়ান)"
#. craLz
-#: svtools/inc/langtab.hrc:92
+#: svtools/inc/langtab.hrc:93
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Belize)"
msgstr "ইংৰাজী (বেলিজ)"
#. oAnX9
-#: svtools/inc/langtab.hrc:93
+#: svtools/inc/langtab.hrc:94
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Trinidad)"
msgstr "ইংৰাজী (ত্ৰিনিদাদ)"
#. DbBaG
-#: svtools/inc/langtab.hrc:94
+#: svtools/inc/langtab.hrc:95
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zimbabwe)"
msgstr "ইংৰাজী (জিম্বাবুৱে)"
#. bGuDT
-#: svtools/inc/langtab.hrc:95
+#: svtools/inc/langtab.hrc:96
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Philippines)"
msgstr "ইংৰাজী (ফিলিপাইন্চ)"
#. sf7j9
-#: svtools/inc/langtab.hrc:96
+#: svtools/inc/langtab.hrc:97
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (India)"
msgstr "ইংৰাজী (ভাৰত)"
#. uqECc
-#: svtools/inc/langtab.hrc:97
+#: svtools/inc/langtab.hrc:98
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Estonian"
msgstr "এচটনিয়ান"
#. AGGnV
-#: svtools/inc/langtab.hrc:98
+#: svtools/inc/langtab.hrc:99
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Finnish"
msgstr "ফিনিচ"
#. UyH2X
-#: svtools/inc/langtab.hrc:99
+#: svtools/inc/langtab.hrc:100
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Faroese"
msgstr "ফাৰোইচ"
#. riCt7
-#: svtools/inc/langtab.hrc:100
+#: svtools/inc/langtab.hrc:101
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Persian"
msgstr "পাৰচিয়ান"
#. FSxwV
-#: svtools/inc/langtab.hrc:101
+#: svtools/inc/langtab.hrc:102
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (France)"
msgstr "ফৰাচী (ফ্ৰাঞ্চ)"
#. LGkgS
-#: svtools/inc/langtab.hrc:102
+#: svtools/inc/langtab.hrc:103
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Belgium)"
msgstr "ফৰাচী (বেলজিয়াম)"
#. TFQ8G
-#: svtools/inc/langtab.hrc:103
+#: svtools/inc/langtab.hrc:104
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Canada)"
msgstr "ফৰাচী (কানাডা)"
#. 8NnQa
-#: svtools/inc/langtab.hrc:104
+#: svtools/inc/langtab.hrc:105
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Switzerland)"
msgstr "ফৰাচী (চুইজাৰলেণ্ড)"
#. DkXiH
-#: svtools/inc/langtab.hrc:105
+#: svtools/inc/langtab.hrc:106
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Luxembourg)"
msgstr "ফৰাচী (লাক্সেমব'ৰ্গ)"
#. 8BeKQ
-#: svtools/inc/langtab.hrc:106
+#: svtools/inc/langtab.hrc:107
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Monaco)"
msgstr "ফৰাচী (মনাকো)"
#. DoQUZ
-#: svtools/inc/langtab.hrc:107
+#: svtools/inc/langtab.hrc:108
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gascon"
msgstr "গেচকন"
#. 6m5ud
-#: svtools/inc/langtab.hrc:108
+#: svtools/inc/langtab.hrc:109
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Germany)"
msgstr "জাৰ্মান (জাৰ্মানী)"
#. bTDdf
-#: svtools/inc/langtab.hrc:109
+#: svtools/inc/langtab.hrc:110
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Switzerland)"
msgstr "জাৰ্মান (চুইজাৰলেণ্ড)"
#. H6rUb
-#: svtools/inc/langtab.hrc:110
+#: svtools/inc/langtab.hrc:111
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Austria)"
msgstr "জাৰ্মান (অষ্ট্ৰিয়া)"
#. EXUrT
-#: svtools/inc/langtab.hrc:111
+#: svtools/inc/langtab.hrc:112
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Luxembourg)"
msgstr "জাৰ্মান (লাক্সেমব'ৰ্গ)"
#. wYXvd
-#: svtools/inc/langtab.hrc:112
+#: svtools/inc/langtab.hrc:113
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Liechtenstein)"
msgstr "জাৰ্মান (লাইকটেনস্টাইন)"
#. yBvcg
-#: svtools/inc/langtab.hrc:113
+#: svtools/inc/langtab.hrc:114
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek"
msgstr "গ্ৰীক"
#. QzGHA
-#: svtools/inc/langtab.hrc:114
+#: svtools/inc/langtab.hrc:115
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gujarati"
msgstr "গুজৰাটী"
#. gU5Y9
-#: svtools/inc/langtab.hrc:115
+#: svtools/inc/langtab.hrc:116
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hebrew"
msgstr "হিব্ৰু"
#. vkmai
-#: svtools/inc/langtab.hrc:116
+#: svtools/inc/langtab.hrc:117
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hindi"
msgstr "হিন্দী"
#. FdD6d
-#: svtools/inc/langtab.hrc:117
+#: svtools/inc/langtab.hrc:118
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian"
msgstr "হাংগাৰীয়ান"
#. sRD2B
-#: svtools/inc/langtab.hrc:118
+#: svtools/inc/langtab.hrc:119
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Icelandic"
msgstr "আইছলেণ্ডিক"
#. K95FW
-#: svtools/inc/langtab.hrc:119
+#: svtools/inc/langtab.hrc:120
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Indonesian"
msgstr "ইণ্ডোনেচিয়ান"
#. dshDi
-#: svtools/inc/langtab.hrc:120
+#: svtools/inc/langtab.hrc:121
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Italy)"
msgstr "ইটালীয়ান (ইটালী)"
#. DELVB
-#: svtools/inc/langtab.hrc:121
+#: svtools/inc/langtab.hrc:122
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Switzerland)"
msgstr "ইটালীয়ান (চুইজাৰলেণ্ড)"
#. ruFE2
-#: svtools/inc/langtab.hrc:122
+#: svtools/inc/langtab.hrc:123
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Japanese"
msgstr "জাপানী"
#. qFQYv
-#: svtools/inc/langtab.hrc:123
+#: svtools/inc/langtab.hrc:124
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kannada"
msgstr "কান্নাড"
#. HBG3C
-#: svtools/inc/langtab.hrc:124
+#: svtools/inc/langtab.hrc:125
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (Kashmir)"
msgstr "কাশমিৰী (কাশমিৰ)"
#. DwhmJ
-#: svtools/inc/langtab.hrc:125
+#: svtools/inc/langtab.hrc:126
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (India)"
msgstr "কাশমিৰী (ভাৰত)"
#. UMfCV
-#: svtools/inc/langtab.hrc:126
+#: svtools/inc/langtab.hrc:127
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kazakh"
msgstr "কাজাখ"
#. fABxX
-#: svtools/inc/langtab.hrc:127
+#: svtools/inc/langtab.hrc:128
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Konkani"
msgstr "কংকানী"
#. 5XXpX
-#: svtools/inc/langtab.hrc:128
+#: svtools/inc/langtab.hrc:129
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Korean (RoK)"
msgstr "কোৰিয়ান (RoK)"
#. Ynb76
-#: svtools/inc/langtab.hrc:129
+#: svtools/inc/langtab.hrc:130
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latvian"
msgstr "লাটভিয়ান"
#. C4VrT
-#: svtools/inc/langtab.hrc:130
+#: svtools/inc/langtab.hrc:131
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lithuanian"
msgstr "লীথুৱেনিয়ান"
#. zPNto
-#: svtools/inc/langtab.hrc:131
+#: svtools/inc/langtab.hrc:132
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Macedonian"
msgstr "মেচিডনিয়ান"
#. nVTHg
-#: svtools/inc/langtab.hrc:132
+#: svtools/inc/langtab.hrc:133
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Malaysia)"
msgstr "মালয় (মালায়চিয়া)"
#. fwb55
-#: svtools/inc/langtab.hrc:133
+#: svtools/inc/langtab.hrc:134
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Brunei Darussalam)"
msgstr "মালয় (ব্ৰুনেই দাৰুচালাম)"
#. 8niko
-#: svtools/inc/langtab.hrc:134
+#: svtools/inc/langtab.hrc:135
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malayalam"
msgstr "মালায়ালম"
#. wX45Q
-#: svtools/inc/langtab.hrc:135
+#: svtools/inc/langtab.hrc:136
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manipuri"
msgstr "মণিপুৰী"
#. wdBgL
-#: svtools/inc/langtab.hrc:136
+#: svtools/inc/langtab.hrc:137
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Marathi"
msgstr "মাৰাথী"
#. gkEEQ
-#: svtools/inc/langtab.hrc:137
+#: svtools/inc/langtab.hrc:138
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (Nepal)"
msgstr "নেপালী (নেপাল)"
#. LaDAA
-#: svtools/inc/langtab.hrc:138
+#: svtools/inc/langtab.hrc:139
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (India)"
msgstr "নেপালী (ভাৰত)"
#. 7HpyY
-#: svtools/inc/langtab.hrc:139
+#: svtools/inc/langtab.hrc:140
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Bokmål"
msgstr "নৰৱেইয়ান (বকমাল)"
#. kCv9u
-#: svtools/inc/langtab.hrc:140
+#: svtools/inc/langtab.hrc:141
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Nynorsk"
msgstr "নৰৱেইয়ান (নিনঅৰ্কচ্)"
#. 3BNF8
-#: svtools/inc/langtab.hrc:141
+#: svtools/inc/langtab.hrc:142
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Odia"
msgstr "উৰিয়া"
#. KEoWD
-#: svtools/inc/langtab.hrc:142
+#: svtools/inc/langtab.hrc:143
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Polish"
msgstr "পলিচ"
#. yyj9v
-#: svtools/inc/langtab.hrc:143
+#: svtools/inc/langtab.hrc:144
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Angola)"
msgstr "পৰ্তুগীচ (এঙগোলা)"
#. hZAXE
-#: svtools/inc/langtab.hrc:144
+#: svtools/inc/langtab.hrc:145
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Portugal)"
msgstr "পৰ্তুগীচ (পৰ্তুগাল)"
#. A5CG3
-#: svtools/inc/langtab.hrc:145
+#: svtools/inc/langtab.hrc:146
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Brazil)"
msgstr "পৰ্তুগীচ (ব্ৰাজিল)"
#. EGfKG
-#: svtools/inc/langtab.hrc:146
+#: svtools/inc/langtab.hrc:147
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punjabi"
msgstr "পাঞ্জাৱী"
#. 4ATDT
-#: svtools/inc/langtab.hrc:147
+#: svtools/inc/langtab.hrc:148
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rhaeto-Romance"
msgstr "ঋটোৰমাঞ্চ"
#. TLUGG
-#: svtools/inc/langtab.hrc:148
+#: svtools/inc/langtab.hrc:149
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Romania)"
msgstr "ৰমানিয়ান (ৰমানিয়া)"
#. uCPF7
-#: svtools/inc/langtab.hrc:149
+#: svtools/inc/langtab.hrc:150
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Moldova)"
msgstr "ৰমানিয়ান (মলডভা)"
#. tJTih
-#: svtools/inc/langtab.hrc:150
+#: svtools/inc/langtab.hrc:151
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Russian"
msgstr "ৰাছিয়ান"
#. Rih6F
-#: svtools/inc/langtab.hrc:151
+#: svtools/inc/langtab.hrc:152
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sanskrit"
msgstr "সংস্কৃত"
#. CyZtm
-#: svtools/inc/langtab.hrc:152
+#: svtools/inc/langtab.hrc:153
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia and Montenegro)"
msgstr "চাৰবিয়ান চিৰিলিক (চাৰবিয়া আৰু মনটিনিগ্ৰো)"
#. sFnB8
-#: svtools/inc/langtab.hrc:153
+#: svtools/inc/langtab.hrc:154
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia and Montenegro)"
msgstr "চাৰবিয়ান লেটিন (চাৰবিয়া আৰু মনটিনিগ্ৰো)"
#. WbsFA
-#: svtools/inc/langtab.hrc:154
+#: svtools/inc/langtab.hrc:155
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia)"
msgstr "চাৰবিয়ান চিৰিলিক (চাৰবিয়া)"
#. WL3zM
-#: svtools/inc/langtab.hrc:155
+#: svtools/inc/langtab.hrc:156
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia)"
msgstr "চাৰবিয়ান লেটিন (চাৰবিয়া)"
#. JFnsJ
-#: svtools/inc/langtab.hrc:156
+#: svtools/inc/langtab.hrc:157
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Montenegro)"
msgstr "চাৰবিয়ান চাইৰিলিক (মনটিনিগ্ৰো)"
#. AHpmF
-#: svtools/inc/langtab.hrc:157
+#: svtools/inc/langtab.hrc:158
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Montenegro)"
msgstr "চাৰবিয়ান লেটিন (মনটিনিগ্ৰো)"
#. JcJT4
-#: svtools/inc/langtab.hrc:158
+#: svtools/inc/langtab.hrc:159
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin"
msgstr "চাৰবিয়ান লেটিন"
#. ubCyV
-#: svtools/inc/langtab.hrc:159
+#: svtools/inc/langtab.hrc:160
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sidama"
msgstr "Sidama"
#. 66wdH
-#: svtools/inc/langtab.hrc:160
+#: svtools/inc/langtab.hrc:161
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Devanagari"
msgstr ""
#. RF77g
-#: svtools/inc/langtab.hrc:161
+#: svtools/inc/langtab.hrc:162
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Arabic"
msgstr ""
#. E8DXb
-#: svtools/inc/langtab.hrc:162
+#: svtools/inc/langtab.hrc:163
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovak"
msgstr "স্লভাক"
#. GS6BZ
-#: svtools/inc/langtab.hrc:163
+#: svtools/inc/langtab.hrc:164
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovenian"
msgstr "স্লভেনীয়ান"
#. bCFN3
-#: svtools/inc/langtab.hrc:164
+#: svtools/inc/langtab.hrc:165
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Spain)"
msgstr "স্পেনিচ (স্পেইন)"
#. AXKJF
-#: svtools/inc/langtab.hrc:165
+#: svtools/inc/langtab.hrc:166
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Mexico)"
msgstr "স্পেনিচ (মেক্সিকো)"
#. 4ExjA
-#: svtools/inc/langtab.hrc:166
+#: svtools/inc/langtab.hrc:167
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Guatemala)"
msgstr "স্পেনিচ (গুৱাটামালা)"
#. ndaNA
-#: svtools/inc/langtab.hrc:167
+#: svtools/inc/langtab.hrc:168
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Costa Rica)"
msgstr "স্পেনিচ (কচটা ৰিকা)"
#. rAYvf
-#: svtools/inc/langtab.hrc:168
+#: svtools/inc/langtab.hrc:169
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Panama)"
msgstr "স্পেনিচ (পানামা)"
#. rwjDV
-#: svtools/inc/langtab.hrc:169
+#: svtools/inc/langtab.hrc:170
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Dom. Rep.)"
msgstr "স্পেনিচ (ডম.ৰিপ.)"
#. aeV5T
-#: svtools/inc/langtab.hrc:170
+#: svtools/inc/langtab.hrc:171
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Venezuela)"
msgstr "স্পেনিচ (ভেনিজুৱেলা)"
#. H4CHi
-#: svtools/inc/langtab.hrc:171
+#: svtools/inc/langtab.hrc:172
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Colombia)"
msgstr "স্পেনিচ (কলোম্বিয়া)"
#. NkaU2
-#: svtools/inc/langtab.hrc:172
+#: svtools/inc/langtab.hrc:173
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Peru)"
msgstr "স্পেনিচ (পেৰু)"
#. 2yKQy
-#: svtools/inc/langtab.hrc:173
+#: svtools/inc/langtab.hrc:174
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Argentina)"
msgstr "স্পেনিচ (আৰ্জেন্টিনা)"
#. cTFoB
-#: svtools/inc/langtab.hrc:174
+#: svtools/inc/langtab.hrc:175
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Ecuador)"
msgstr "স্পেনিচ (ইকুৱেডৰ)"
#. Q7iGB
-#: svtools/inc/langtab.hrc:175
+#: svtools/inc/langtab.hrc:176
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Chile)"
msgstr "স্পেনিচ (চিলি)"
#. SQeC3
-#: svtools/inc/langtab.hrc:176
+#: svtools/inc/langtab.hrc:177
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Uruguay)"
msgstr "স্পেনিচ (ওৰুগুৱে)"
#. EmgTp
-#: svtools/inc/langtab.hrc:177
+#: svtools/inc/langtab.hrc:178
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Paraguay)"
msgstr "স্পেনিচ (পাৰাগুৱে)"
#. T7rLH
-#: svtools/inc/langtab.hrc:178
+#: svtools/inc/langtab.hrc:179
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Bolivia)"
msgstr "স্পেনিচ (বলিভিয়া)"
#. GNG7W
-#: svtools/inc/langtab.hrc:179
+#: svtools/inc/langtab.hrc:180
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (El Salvador)"
msgstr "স্পেনিচ (এল চেলভাডৰ)"
#. HoGhs
-#: svtools/inc/langtab.hrc:180
+#: svtools/inc/langtab.hrc:181
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Honduras)"
msgstr "স্পেনিচ (হণ্ডুৰাচ)"
#. KgEGv
-#: svtools/inc/langtab.hrc:181
+#: svtools/inc/langtab.hrc:182
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Nicaragua)"
msgstr "স্পেনিচ (নিকাৰাগুৱা)"
#. uj9QF
-#: svtools/inc/langtab.hrc:182
+#: svtools/inc/langtab.hrc:183
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Puerto Rico)"
msgstr "স্পেনিচ (পুৱেৰ্টো ৰিকো)"
#. 3bTTE
-#: svtools/inc/langtab.hrc:183
+#: svtools/inc/langtab.hrc:184
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Kenya)"
msgstr "স্বাহিলি (কেনিয়া)"
#. AFhrJ
-#: svtools/inc/langtab.hrc:184
+#: svtools/inc/langtab.hrc:185
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Sweden)"
msgstr "চুইডিচ (চুইডেন)"
#. BKF86
-#: svtools/inc/langtab.hrc:185
+#: svtools/inc/langtab.hrc:186
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Finland)"
msgstr "চুইডিচ (ফিনলেণ্ড)"
#. E6Ede
-#: svtools/inc/langtab.hrc:186
+#: svtools/inc/langtab.hrc:187
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tajik"
msgstr "টাজিক"
#. dAFTH
-#: svtools/inc/langtab.hrc:187
+#: svtools/inc/langtab.hrc:188
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tamil"
msgstr "তামিল"
#. RHZbp
-#: svtools/inc/langtab.hrc:188
+#: svtools/inc/langtab.hrc:189
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tatar"
msgstr "টাটাৰ"
#. pTFA6
-#: svtools/inc/langtab.hrc:189
+#: svtools/inc/langtab.hrc:190
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Telugu"
msgstr "টেলুগু"
#. 3xQFG
-#: svtools/inc/langtab.hrc:190
+#: svtools/inc/langtab.hrc:191
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Thai"
msgstr "থাই"
#. 7SBCF
-#: svtools/inc/langtab.hrc:191
+#: svtools/inc/langtab.hrc:192
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkish"
msgstr "তুৰ্কি"
#. jg4Y4
-#: svtools/inc/langtab.hrc:192
+#: svtools/inc/langtab.hrc:193
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (Pakistan)"
msgstr "উৰ্দু (পাকিস্তান)"
#. reDrZ
-#: svtools/inc/langtab.hrc:193
+#: svtools/inc/langtab.hrc:194
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (India)"
msgstr "উৰ্দু (ভাৰত)"
#. AciD4
-#: svtools/inc/langtab.hrc:194
+#: svtools/inc/langtab.hrc:195
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ukrainian"
msgstr "উইক্ৰেনিয়ান"
#. 9s6wZ
-#: svtools/inc/langtab.hrc:195
+#: svtools/inc/langtab.hrc:196
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Latin"
msgstr "উজবেক লেটিন"
#. HrnFi
-#: svtools/inc/langtab.hrc:196
+#: svtools/inc/langtab.hrc:197
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Cyrillic"
msgstr "উজবেক চিৰিলিক"
#. seQBA
-#: svtools/inc/langtab.hrc:197
+#: svtools/inc/langtab.hrc:198
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Welsh"
msgstr "ৱেল্শ"
#. MyZMt
-#: svtools/inc/langtab.hrc:198
+#: svtools/inc/langtab.hrc:199
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latin"
msgstr "লেটিন"
#. UxE47
-#: svtools/inc/langtab.hrc:199
+#: svtools/inc/langtab.hrc:200
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Esperanto"
msgstr "এসপেৰান্টো"
#. QDEQB
-#: svtools/inc/langtab.hrc:200
+#: svtools/inc/langtab.hrc:201
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kinyarwanda (Rwanda)"
msgstr "কিনয়াৰৱাণ্ডা (ৰ'ৱাণ্ডা)"
#. VDEdz
-#: svtools/inc/langtab.hrc:201
+#: svtools/inc/langtab.hrc:202
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maori"
msgstr "মাওৰি"
#. BCRzB
-#: svtools/inc/langtab.hrc:202
+#: svtools/inc/langtab.hrc:203
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Galician"
msgstr "গালিচিয়ান"
#. EJSEG
-#: svtools/inc/langtab.hrc:203
+#: svtools/inc/langtab.hrc:204
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dhivehi"
msgstr "ডিভেহি"
#. HyrCw
-#: svtools/inc/langtab.hrc:204
+#: svtools/inc/langtab.hrc:205
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Northern Sotho"
msgstr "উত্তৰী সদো"
#. iZE5p
-#: svtools/inc/langtab.hrc:205
+#: svtools/inc/langtab.hrc:206
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gaelic (Scotland)"
msgstr "গিলিক (স্কটলেণ্ড)"
#. hUdfG
-#: svtools/inc/langtab.hrc:206
+#: svtools/inc/langtab.hrc:207
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Cyrillic"
msgstr "মঙলিয়ান চিৰিলিক"
#. XSmCF
-#: svtools/inc/langtab.hrc:207
+#: svtools/inc/langtab.hrc:208
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Mongolian"
msgstr "মঙলিয়ান মঙলিয়ান"
#. SmxD2
-#: svtools/inc/langtab.hrc:208
+#: svtools/inc/langtab.hrc:209
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingua"
msgstr "আন্তঃভাষা"
#. dBUa9
-#: svtools/inc/langtab.hrc:209
+#: svtools/inc/langtab.hrc:210
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bosnian"
msgstr "বচনিয়ান"
#. c29GE
-#: svtools/inc/langtab.hrc:210
+#: svtools/inc/langtab.hrc:211
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (Bangladesh)"
msgstr "বাঙলা (বাঙলাদেশ)"
#. 9CTyH
-#: svtools/inc/langtab.hrc:211
+#: svtools/inc/langtab.hrc:212
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Occitan"
msgstr "অচিটান"
#. wRpTQ
-#: svtools/inc/langtab.hrc:212
+#: svtools/inc/langtab.hrc:213
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khmer"
msgstr "খমেৰ"
#. 6C2PP
-#: svtools/inc/langtab.hrc:213
+#: svtools/inc/langtab.hrc:214
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Turkey)"
msgstr "কুৰ্দিছ, উত্তৰ (তুৰ্কি)"
#. JBSdg
-#: svtools/inc/langtab.hrc:214
+#: svtools/inc/langtab.hrc:215
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Syria)"
msgstr "কুৰ্দিছ, উত্তৰ (চিৰিয়া)"
#. 7LmT2
-#: svtools/inc/langtab.hrc:215
+#: svtools/inc/langtab.hrc:216
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iraq)"
msgstr "কুৰ্দিছ, কেন্দ্ৰীয় (ইৰাক)"
#. rzDHD
-#: svtools/inc/langtab.hrc:216
+#: svtools/inc/langtab.hrc:217
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iran)"
msgstr "কুৰ্দিছ, কেন্দ্ৰীয় (ইৰান)"
#. CeAFw
-#: svtools/inc/langtab.hrc:217
+#: svtools/inc/langtab.hrc:218
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iran)"
msgstr "কুৰ্দিছ, দক্ষিণ (ইৰান)"
#. epbri
-#: svtools/inc/langtab.hrc:218
+#: svtools/inc/langtab.hrc:219
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iraq)"
msgstr "কুৰ্দিছ, দক্ষিণ (ইৰাক)"
#. 2KhAB
-#: svtools/inc/langtab.hrc:219
+#: svtools/inc/langtab.hrc:220
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian"
msgstr "চাৰডিনিয়ান"
#. 3sZxr
-#: svtools/inc/langtab.hrc:220
+#: svtools/inc/langtab.hrc:221
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dzongkha"
msgstr "জংখা"
#. NdNMD
-#: svtools/inc/langtab.hrc:221
+#: svtools/inc/langtab.hrc:222
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Tanzania)"
msgstr "স্বাহিলি (টাঞ্জানিয়া)"
#. ywH3p
-#: svtools/inc/langtab.hrc:222
+#: svtools/inc/langtab.hrc:223
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lao"
msgstr "লাও"
#. HNY5w
-#: svtools/inc/langtab.hrc:223
+#: svtools/inc/langtab.hrc:224
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Irish"
msgstr "আইৰিচ"
#. oGuLJ
-#: svtools/inc/langtab.hrc:224
+#: svtools/inc/langtab.hrc:225
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (PR China)"
msgstr "তিব্বতীয় (PR চীন)"
#. DpbUS
-#: svtools/inc/langtab.hrc:225
+#: svtools/inc/langtab.hrc:226
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Georgian"
msgstr "জৰ্জীয়ান"
#. vXTTC
-#: svtools/inc/langtab.hrc:226
+#: svtools/inc/langtab.hrc:227
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Frisian"
msgstr "ফ্ৰিচিয়ান"
#. hYSBQ
-#: svtools/inc/langtab.hrc:227
+#: svtools/inc/langtab.hrc:228
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (South Africa)"
msgstr "চ্বানা (দক্ষীন আফ্ৰিকা)"
#. iBrft
-#: svtools/inc/langtab.hrc:228
+#: svtools/inc/langtab.hrc:229
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Zulu"
msgstr "জুলু"
#. efx7v
-#: svtools/inc/langtab.hrc:229
+#: svtools/inc/langtab.hrc:230
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vietnamese"
msgstr "ভিইয়েটনামী"
#. uik8N
-#: svtools/inc/langtab.hrc:230
+#: svtools/inc/langtab.hrc:231
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Breton"
msgstr "ব্ৰিটন"
#. UuDPF
-#: svtools/inc/langtab.hrc:231
+#: svtools/inc/langtab.hrc:232
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kalaallisut"
msgstr "কালালিচাট"
#. h8yi2
-#: svtools/inc/langtab.hrc:232
+#: svtools/inc/langtab.hrc:233
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ndebele, South"
msgstr "Ndebele দক্ষিন"
#. GAkRJ
-#: svtools/inc/langtab.hrc:233
+#: svtools/inc/langtab.hrc:234
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Southern Sotho"
msgstr "দক্ষিনী সদো"
#. 2beka
-#: svtools/inc/langtab.hrc:234
+#: svtools/inc/langtab.hrc:235
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swazi"
msgstr "স্বাজি"
#. GFCYC
-#: svtools/inc/langtab.hrc:235
+#: svtools/inc/langtab.hrc:236
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsonga"
msgstr "চংগা"
#. Fd3yC
-#: svtools/inc/langtab.hrc:236
+#: svtools/inc/langtab.hrc:237
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venda"
msgstr "ভেণ্ডা"
#. BQkT8
-#: svtools/inc/langtab.hrc:237
+#: svtools/inc/langtab.hrc:238
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (Botswana)"
msgstr "চ্বানা (বট্স্বানা)"
#. aCLs3
-#: svtools/inc/langtab.hrc:238
+#: svtools/inc/langtab.hrc:239
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xhosa"
msgstr "ক্ষচা"
#. 8tGkA
-#: svtools/inc/langtab.hrc:239
+#: svtools/inc/langtab.hrc:240
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sinhala"
msgstr "সিংঘলী"
#. MyZBb
-#: svtools/inc/langtab.hrc:240
+#: svtools/inc/langtab.hrc:241
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moore"
msgstr "মুৰ"
#. MuwMr
-#: svtools/inc/langtab.hrc:241
+#: svtools/inc/langtab.hrc:242
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bambara"
msgstr "বাম্বাৰা"
#. ohYHE
-#: svtools/inc/langtab.hrc:242
+#: svtools/inc/langtab.hrc:243
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Akan"
msgstr "আকান"
#. Rpc24
-#: svtools/inc/langtab.hrc:243
+#: svtools/inc/langtab.hrc:244
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Luxembourgish"
msgstr "লাক্সেমব'ৰ্গিশ"
#. TPr9P
-#: svtools/inc/langtab.hrc:244
+#: svtools/inc/langtab.hrc:245
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Friulian"
msgstr "ফ্ৰিউলিয়ান"
#. XFeaU
-#: svtools/inc/langtab.hrc:245
+#: svtools/inc/langtab.hrc:246
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fijian"
msgstr "ফিজিয়ান"
#. DmEsD
-#: svtools/inc/langtab.hrc:246
+#: svtools/inc/langtab.hrc:247
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (Namibia)"
msgstr "আফ্ৰিকান্চ (নামিবিয়া)"
#. 2dS3j
-#: svtools/inc/langtab.hrc:247
+#: svtools/inc/langtab.hrc:248
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Namibia)"
msgstr "ইংৰাজী (নামিবিয়া)"
#. pxpQo
-#: svtools/inc/langtab.hrc:248
+#: svtools/inc/langtab.hrc:249
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Walloon"
msgstr "ৱালুন"
#. uSw8S
-#: svtools/inc/langtab.hrc:249
+#: svtools/inc/langtab.hrc:250
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Coptic"
msgstr "কপটিক"
#. cXUkb
-#: svtools/inc/langtab.hrc:250
+#: svtools/inc/langtab.hrc:251
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Eritrea)"
msgstr "তিগ্ৰিনা (ইৰিট্ৰিয়া)"
#. 4X4SP
-#: svtools/inc/langtab.hrc:251
+#: svtools/inc/langtab.hrc:252
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Ethiopia)"
msgstr "তিগ্ৰিগনা (ইথিওপিয়া)"
#. vebCw
-#: svtools/inc/langtab.hrc:252
+#: svtools/inc/langtab.hrc:253
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Amharic"
msgstr "আমহাৰিক"
#. wVfCr
-#: svtools/inc/langtab.hrc:253
+#: svtools/inc/langtab.hrc:254
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kirghiz"
msgstr "কিৰ্ঘিজ"
#. zCrUd
-#: svtools/inc/langtab.hrc:254
+#: svtools/inc/langtab.hrc:255
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Belgium)"
msgstr "জাৰ্মান (বেলজিয়াম)"
#. bZjgG
-#: svtools/inc/langtab.hrc:255
+#: svtools/inc/langtab.hrc:256
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chuvash"
msgstr "ছুভাশ"
#. Hhf2V
-#: svtools/inc/langtab.hrc:256
+#: svtools/inc/langtab.hrc:257
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Burmese"
msgstr "বাৰমিচ"
#. YCarY
-#: svtools/inc/langtab.hrc:257
+#: svtools/inc/langtab.hrc:258
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Nigeria)"
msgstr "হাওচা (নাজেৰিয়া)"
#. JXCmu
-#: svtools/inc/langtab.hrc:258
+#: svtools/inc/langtab.hrc:259
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Ghana)"
msgstr "হাওচা (ঘানা)"
#. 7jrGb
-#: svtools/inc/langtab.hrc:259
+#: svtools/inc/langtab.hrc:260
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Éwé"
msgstr "ইৱি"
#. QWBZG
-#: svtools/inc/langtab.hrc:260
+#: svtools/inc/langtab.hrc:261
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ghana)"
msgstr "ইংৰাজী (ঘানা)"
#. pAEtz
-#: svtools/inc/langtab.hrc:261
+#: svtools/inc/langtab.hrc:262
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sango"
msgstr "চাঙ্গো"
#. L9sDt
-#: svtools/inc/langtab.hrc:262
+#: svtools/inc/langtab.hrc:263
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tagalog"
msgstr "টাগালগ"
#. iFSZs
-#: svtools/inc/langtab.hrc:263
+#: svtools/inc/langtab.hrc:264
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ganda"
msgstr "গাণ্ডা"
#. Gdbhz
-#: svtools/inc/langtab.hrc:264
+#: svtools/inc/langtab.hrc:265
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lingala"
msgstr "লিংগালা"
#. TnDKB
-#: svtools/inc/langtab.hrc:265
+#: svtools/inc/langtab.hrc:266
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Low German"
msgstr "নিম্ন জাৰ্মান"
#. Yr5hK
-#: svtools/inc/langtab.hrc:266
+#: svtools/inc/langtab.hrc:267
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hiligaynon"
msgstr "হিলিগেন'ন"
#. nF96G
-#: svtools/inc/langtab.hrc:267
+#: svtools/inc/langtab.hrc:268
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nyanja"
msgstr "ৱাঞ্জা"
#. v4jmr
-#: svtools/inc/langtab.hrc:268
+#: svtools/inc/langtab.hrc:269
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashubian"
msgstr "কাষুবিয়ান"
#. nbEp5
-#: svtools/inc/langtab.hrc:269
+#: svtools/inc/langtab.hrc:270
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Cuba)"
msgstr "স্পেনিচ (কুবা)"
#. CGkDF
-#: svtools/inc/langtab.hrc:270
+#: svtools/inc/langtab.hrc:271
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Indonesia)"
msgstr "তেতুন (ইণ্ডোনেচীয়া)"
#. yXqvC
-#: svtools/inc/langtab.hrc:271
+#: svtools/inc/langtab.hrc:272
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, North)"
msgstr "কিউচুৱা (বলিভিয়া, উত্তৰ)"
#. V3XMi
-#: svtools/inc/langtab.hrc:272
+#: svtools/inc/langtab.hrc:273
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, South)"
msgstr "কিউচুৱা (বলিভিয়া, দক্ষিণ)"
#. 3WCP7
-#: svtools/inc/langtab.hrc:273
+#: svtools/inc/langtab.hrc:274
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Somali"
msgstr "চমালী"
#. zFoBp
-#: svtools/inc/langtab.hrc:274
+#: svtools/inc/langtab.hrc:275
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Inari (Finland)"
msgstr "চামি, ইনাৰি (ফিনলেণ্ড)"
#. FJAQR
-#: svtools/inc/langtab.hrc:275
+#: svtools/inc/langtab.hrc:276
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Norway)"
msgstr "চামি, লুলে (নৰৱে)"
#. yBxW5
-#: svtools/inc/langtab.hrc:276
+#: svtools/inc/langtab.hrc:277
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Sweden)"
msgstr "চামি, লুলে (চুইডেন)"
#. 8yPLy
-#: svtools/inc/langtab.hrc:277
+#: svtools/inc/langtab.hrc:278
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Finland)"
msgstr "চামি, উত্তৰীয় (ফিনলেণ্ড)"
#. SQTD9
-#: svtools/inc/langtab.hrc:278
+#: svtools/inc/langtab.hrc:279
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Norway)"
msgstr "চামি, উত্তৰীয় (নৰৱে)"
#. BHGpD
-#: svtools/inc/langtab.hrc:279
+#: svtools/inc/langtab.hrc:280
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Sweden)"
msgstr "চামি, উত্তৰীয় (চুইডেন)"
#. cdYkC
-#: svtools/inc/langtab.hrc:280
+#: svtools/inc/langtab.hrc:281
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Skolt (Finland)"
msgstr "চামি, স্কল্ট (ফিনলেণ্ড)"
#. od3Hp
-#: svtools/inc/langtab.hrc:281
+#: svtools/inc/langtab.hrc:282
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Norway)"
msgstr "চামি, দক্ষিনীয়া (নৰৱে)"
#. 5Ueff
-#: svtools/inc/langtab.hrc:282
+#: svtools/inc/langtab.hrc:283
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Sweden)"
msgstr "চামি, দক্ষিনীয়া (চুইডেন)"
#. 7x4mU
-#: svtools/inc/langtab.hrc:283
+#: svtools/inc/langtab.hrc:284
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Kildin (Russia)"
msgstr "চামি, কিলডিন (ৰাছিয়া)"
#. A5Crw
-#: svtools/inc/langtab.hrc:284
+#: svtools/inc/langtab.hrc:285
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guarani (Paraguay)"
msgstr ""
#. ESc5d
-#: svtools/inc/langtab.hrc:285
+#: svtools/inc/langtab.hrc:286
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bodo"
msgstr "বড়ো"
#. sSAvV
-#: svtools/inc/langtab.hrc:286
+#: svtools/inc/langtab.hrc:287
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dogri"
msgstr "ডগৰি"
#. f2nfh
-#: svtools/inc/langtab.hrc:287
+#: svtools/inc/langtab.hrc:288
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maithili"
msgstr "মৈথীলি"
#. Rm94B
-#: svtools/inc/langtab.hrc:288
+#: svtools/inc/langtab.hrc:289
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Santali"
msgstr "চাওতালী"
#. C7EGu
-#: svtools/inc/langtab.hrc:289
+#: svtools/inc/langtab.hrc:290
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Timor-Leste)"
msgstr "তেতুন (তিমুৰলেস্টে)"
#. JzTF8
-#: svtools/inc/langtab.hrc:290
+#: svtools/inc/langtab.hrc:291
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkmen"
msgstr "তুৰ্কমেন"
#. XbECR
-#: svtools/inc/langtab.hrc:291
+#: svtools/inc/langtab.hrc:292
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maltese"
msgstr "মলটিচ"
#. PJ6DF
-#: svtools/inc/langtab.hrc:292
+#: svtools/inc/langtab.hrc:293
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tok Pisin"
msgstr "তক পিচিন"
#. kAWUo
-#: svtools/inc/langtab.hrc:293
+#: svtools/inc/langtab.hrc:294
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Shuswap"
msgstr "শ্বুস্বাপ"
#. sBWQv
-#: svtools/inc/langtab.hrc:294
+#: svtools/inc/langtab.hrc:295
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Oromo"
msgstr "অৰোমো"
#. jYDYi
-#: svtools/inc/langtab.hrc:295
+#: svtools/inc/langtab.hrc:296
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek, Ancient"
msgstr "গ্ৰীক, পুৰাতন"
#. WY8GH
-#: svtools/inc/langtab.hrc:296
+#: svtools/inc/langtab.hrc:297
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (Israel)"
msgstr "ইদ্দিশ (ইচৰায়েল)"
#. VAWnd
-#: svtools/inc/langtab.hrc:297
+#: svtools/inc/langtab.hrc:298
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Ecuador)"
msgstr "কেচুৱা (ইকুএডৰ)"
#. UDB2F
-#: svtools/inc/langtab.hrc:298
+#: svtools/inc/langtab.hrc:299
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uyghur"
msgstr "আইঘাৰ"
#. XAu8x
-#: svtools/inc/langtab.hrc:299
+#: svtools/inc/langtab.hrc:300
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Asturian"
msgstr "এসটুৰিয়ান"
#. hwM5p
-#: svtools/inc/langtab.hrc:300
+#: svtools/inc/langtab.hrc:301
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Upper"
msgstr "চৰবিয়ান, উপৰৰ"
#. iGTFG
-#: svtools/inc/langtab.hrc:301
+#: svtools/inc/langtab.hrc:302
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Lower"
msgstr "চৰবিয়ান, তলৰ"
#. RvdrP
-#: svtools/inc/langtab.hrc:302
+#: svtools/inc/langtab.hrc:303
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latgalian"
msgstr "লেটগালিয়ান"
#. 94i7A
-#: svtools/inc/langtab.hrc:303
+#: svtools/inc/langtab.hrc:304
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maore"
msgstr "মুৰ"
#. FeuXJ
-#: svtools/inc/langtab.hrc:304
+#: svtools/inc/langtab.hrc:305
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bushi"
msgstr "বুষী"
#. CWFtg
-#: svtools/inc/langtab.hrc:305
+#: svtools/inc/langtab.hrc:306
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tahitian"
msgstr "টাহিষীয়ান"
#. TDoMB
-#: svtools/inc/langtab.hrc:306
+#: svtools/inc/langtab.hrc:307
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malagasy, Plateau"
msgstr "মেলাগেচি, উপত্যকাস"
#. EVG88
-#: svtools/inc/langtab.hrc:307
+#: svtools/inc/langtab.hrc:308
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamentu (Netherlands Antilles)"
msgstr "পািপয়ামেনটু (নেদাৰলেণ্ড এনটিলিচ)"
#. fbGn8
-#: svtools/inc/langtab.hrc:308
+#: svtools/inc/langtab.hrc:309
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Aruba)"
msgstr "পাপিয়ামিনটু (এৰুবা)"
#. 9XBNE
-#: svtools/inc/langtab.hrc:309
+#: svtools/inc/langtab.hrc:310
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Campidanese"
msgstr "চাৰডিনিয়ান, কেম্পিডানিচ"
#. d2kAw
-#: svtools/inc/langtab.hrc:310
+#: svtools/inc/langtab.hrc:311
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Gallurese"
msgstr "চাৰডিনিয়ান, গেলুৰিচ"
#. cJATX
-#: svtools/inc/langtab.hrc:311
+#: svtools/inc/langtab.hrc:312
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Logudorese"
msgstr "চাৰডিনিয়ান, লগুডৰিচ"
#. PJFYt
-#: svtools/inc/langtab.hrc:312
+#: svtools/inc/langtab.hrc:313
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Sassarese"
msgstr "চাৰডিনিয়ান, চাচাৰিচ"
#. oDLAc
-#: svtools/inc/langtab.hrc:313
+#: svtools/inc/langtab.hrc:314
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bafia"
msgstr "বাফিয়া"
#. 598zD
-#: svtools/inc/langtab.hrc:314
+#: svtools/inc/langtab.hrc:315
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gikuyu"
msgstr "গিকুইয়ু"
#. PFxrW
-#: svtools/inc/langtab.hrc:315
+#: svtools/inc/langtab.hrc:316
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yoruba"
msgstr "ইয়োৰুবা"
#. jajFo
-#: svtools/inc/langtab.hrc:316
+#: svtools/inc/langtab.hrc:317
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Ukraine)"
msgstr "ৰুচিন (ইউক্ৰেইন)"
#. PpWdM
-#: svtools/inc/langtab.hrc:317
+#: svtools/inc/langtab.hrc:318
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Slovakia)"
msgstr "ৰুচিন (স্লভাকিয়া)"
#. Wgo9k
-#: svtools/inc/langtab.hrc:318
+#: svtools/inc/langtab.hrc:319
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabyle Latin"
msgstr "কেবিল লেটিন"
#. MSnHB
-#: svtools/inc/langtab.hrc:319
+#: svtools/inc/langtab.hrc:320
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (USA)"
msgstr "ইদ্দিশ (USA)"
#. uYMRX
-#: svtools/inc/langtab.hrc:320
+#: svtools/inc/langtab.hrc:321
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hawaiian"
msgstr "হাৱাইয়ান"
#. DyEGX
-#: svtools/inc/langtab.hrc:321
+#: svtools/inc/langtab.hrc:322
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Limbu"
msgstr "লিম্বু"
#. 3jGCz
-#: svtools/inc/langtab.hrc:322
+#: svtools/inc/langtab.hrc:323
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lojban"
msgstr "লজবান"
#. Ec3C4
-#: svtools/inc/langtab.hrc:323
+#: svtools/inc/langtab.hrc:324
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Haitian"
msgstr "হাইষিয়াণ"
#. D3Xoy
-#: svtools/inc/langtab.hrc:324
+#: svtools/inc/langtab.hrc:325
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Beembe"
msgstr "বিম্বি"
#. 6Pkbr
-#: svtools/inc/langtab.hrc:325
+#: svtools/inc/langtab.hrc:326
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bekwel"
msgstr "বিকৱেল"
#. 8WjqB
-#: svtools/inc/langtab.hrc:326
+#: svtools/inc/langtab.hrc:327
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Congo)"
msgstr ""
#. hCFcE
-#: svtools/inc/langtab.hrc:327
+#: svtools/inc/langtab.hrc:328
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lari"
msgstr "লাৰি"
#. KxXpB
-#: svtools/inc/langtab.hrc:328
+#: svtools/inc/langtab.hrc:329
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mbochi"
msgstr "এমবচি"
#. 6FdTq
-#: svtools/inc/langtab.hrc:329
+#: svtools/inc/langtab.hrc:330
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Eboo"
msgstr "টিকি-ইবু"
#. FeBzA
-#: svtools/inc/langtab.hrc:330
+#: svtools/inc/langtab.hrc:331
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Ibali"
msgstr "টেকেএলবালি"
#. LKetF
-#: svtools/inc/langtab.hrc:331
+#: svtools/inc/langtab.hrc:332
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Tyee"
msgstr "টেকে-টাই"
#. DfVqj
-#: svtools/inc/langtab.hrc:332
+#: svtools/inc/langtab.hrc:333
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vili"
msgstr "ভিলি"
#. uBEkT
-#: svtools/inc/langtab.hrc:333
+#: svtools/inc/langtab.hrc:334
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "KeyID"
msgstr "কি'আইডি"
#. maAoG
-#: svtools/inc/langtab.hrc:334
+#: svtools/inc/langtab.hrc:335
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Latin"
msgstr "পালি লেটিন"
#. eDDSm
-#: svtools/inc/langtab.hrc:335
+#: svtools/inc/langtab.hrc:336
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kyrgyz (China)"
msgstr "কাইৰীজ (চীন)"
#. RCmma
-#: svtools/inc/langtab.hrc:336
+#: svtools/inc/langtab.hrc:337
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Zyrian"
msgstr "কমি-জাইৰিয়ান"
#. DLxCK
-#: svtools/inc/langtab.hrc:337
+#: svtools/inc/langtab.hrc:338
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Permyak"
msgstr "কমি-পাৰমিয়াক"
#. zRJy3
-#: svtools/inc/langtab.hrc:338
+#: svtools/inc/langtab.hrc:339
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pitjantjatjara"
msgstr "পিটজানজাটজাৰা"
#. X2WLD
-#: svtools/inc/langtab.hrc:339
+#: svtools/inc/langtab.hrc:340
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malawi)"
msgstr "ইংৰাজী (মালাৱী)"
#. BNve6
-#: svtools/inc/langtab.hrc:340
+#: svtools/inc/langtab.hrc:341
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Erzya"
msgstr "ইৰজিয়া"
#. bS6vy
-#: svtools/inc/langtab.hrc:341
+#: svtools/inc/langtab.hrc:342
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Meadow"
msgstr "মাৰি, মিডো"
#. 2YjMT
-#: svtools/inc/langtab.hrc:342
+#: svtools/inc/langtab.hrc:343
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Curaçao)"
msgstr "পাপিয়ামেনট' (কুৰাকাও)"
#. QA2V4
-#: svtools/inc/langtab.hrc:343
+#: svtools/inc/langtab.hrc:344
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Bonaire)"
msgstr "পাপিয়ামেনট' (বনেৰ)"
#. vozw6
-#: svtools/inc/langtab.hrc:344
+#: svtools/inc/langtab.hrc:345
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khanty"
msgstr "খান্টি"
#. MBtJM
-#: svtools/inc/langtab.hrc:345
+#: svtools/inc/langtab.hrc:346
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Livonian"
msgstr "লিভ'নিয়ান"
#. wNkoh
-#: svtools/inc/langtab.hrc:346
+#: svtools/inc/langtab.hrc:347
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moksha"
msgstr "মক্সা"
#. uCDU6
-#: svtools/inc/langtab.hrc:347
+#: svtools/inc/langtab.hrc:348
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Hill"
msgstr "মাৰি, হিল"
#. JEhY4
-#: svtools/inc/langtab.hrc:348
+#: svtools/inc/langtab.hrc:349
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nganasan"
msgstr "গানাচান"
#. hr4pq
-#: svtools/inc/langtab.hrc:349
+#: svtools/inc/langtab.hrc:350
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Olonets"
msgstr "অলোনেট্চ"
#. Arpn4
-#: svtools/inc/langtab.hrc:350
+#: svtools/inc/langtab.hrc:351
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Veps"
msgstr "ভেপ্চ"
#. fJ3Ss
-#: svtools/inc/langtab.hrc:351
+#: svtools/inc/langtab.hrc:352
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Võro"
msgstr "ভৰ'"
#. HuWCs
-#: svtools/inc/langtab.hrc:352
+#: svtools/inc/langtab.hrc:353
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nenets"
msgstr "নেনেট্চ"
#. 5Zxgd
-#: svtools/inc/langtab.hrc:353
+#: svtools/inc/langtab.hrc:354
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Central African Republic)"
msgstr ""
#. oBDBe
-#: svtools/inc/langtab.hrc:354
+#: svtools/inc/langtab.hrc:355
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Congo)"
msgstr "আকা (কঙো)"
#. GRKCD
-#: svtools/inc/langtab.hrc:355
+#: svtools/inc/langtab.hrc:356
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dibole"
msgstr "ডিবোলে"
#. cgMCr
-#: svtools/inc/langtab.hrc:356
+#: svtools/inc/langtab.hrc:357
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Doondo"
msgstr "ডুন্ডু"
#. FmhF6
-#: svtools/inc/langtab.hrc:357
+#: svtools/inc/langtab.hrc:358
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kaamba"
msgstr "কাম্বা"
#. BBf4G
-#: svtools/inc/langtab.hrc:358
+#: svtools/inc/langtab.hrc:359
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Koongo (Congo)"
msgstr "কুঙ্গু (কঙো)"
#. HbeaC
-#: svtools/inc/langtab.hrc:359
+#: svtools/inc/langtab.hrc:360
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kunyi"
msgstr "কুনাই"
#. wLxHD
-#: svtools/inc/langtab.hrc:360
+#: svtools/inc/langtab.hrc:361
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngungwel"
msgstr "গাংৱেল"
#. 7cvAe
-#: svtools/inc/langtab.hrc:361
+#: svtools/inc/langtab.hrc:362
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
msgstr "জৱেম (কঙো)"
#. G2SG8
-#: svtools/inc/langtab.hrc:362
+#: svtools/inc/langtab.hrc:363
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punu"
msgstr "পুনু"
#. WjBVL
-#: svtools/inc/langtab.hrc:363
+#: svtools/inc/langtab.hrc:364
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Suundi"
msgstr "চুণ্ডি"
#. 9nAA2
-#: svtools/inc/langtab.hrc:364
+#: svtools/inc/langtab.hrc:365
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Kukuya"
msgstr "টেকে-কুকুৱা"
#. dwdUH
-#: svtools/inc/langtab.hrc:365
+#: svtools/inc/langtab.hrc:366
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsaangi"
msgstr "চাঙি"
#. otqzC
-#: svtools/inc/langtab.hrc:366
+#: svtools/inc/langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Congo)"
msgstr ""
#. JuMFF
-#: svtools/inc/langtab.hrc:367
+#: svtools/inc/langtab.hrc:368
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Democratic Republic of the Congo)"
msgstr ""
#. NDjGL
-#: svtools/inc/langtab.hrc:368
+#: svtools/inc/langtab.hrc:369
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yombe (Congo)"
msgstr "ইৱোম্বে (কঙো)"
#. MvwFr
-#: svtools/inc/langtab.hrc:369
+#: svtools/inc/langtab.hrc:370
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "N'ko"
msgstr "ন'কো"
#. WFc6C
-#: svtools/inc/langtab.hrc:370
+#: svtools/inc/langtab.hrc:371
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Udmurt"
msgstr "উদ্মুৰ্ট"
#. hEtfX
-#: svtools/inc/langtab.hrc:371
+#: svtools/inc/langtab.hrc:372
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (India)"
msgstr "তিব্বতী (ভাৰত)"
#. Agf93
-#: svtools/inc/langtab.hrc:372
+#: svtools/inc/langtab.hrc:373
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cornish"
msgstr "কৰ্নিচ"
#. EtH3H
-#: svtools/inc/langtab.hrc:373
+#: svtools/inc/langtab.hrc:374
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Pite (Sweden)"
msgstr "চামি, পিটে (চুইডেন)"
#. jp6C9
-#: svtools/inc/langtab.hrc:374
+#: svtools/inc/langtab.hrc:375
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngäbere"
msgstr "নগবেৰে"
#. 3nTLx
-#: svtools/inc/langtab.hrc:375
+#: svtools/inc/langtab.hrc:376
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kumyk"
msgstr "কুমিক"
#. c56C9
-#: svtools/inc/langtab.hrc:376
+#: svtools/inc/langtab.hrc:377
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nogai"
msgstr "নগাই"
#. CBiiA
-#: svtools/inc/langtab.hrc:377
+#: svtools/inc/langtab.hrc:378
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Karakalpak Latin"
msgstr "কাৰাকালপাক লেটিন"
#. CkEC7
-#: svtools/inc/langtab.hrc:378
+#: svtools/inc/langtab.hrc:379
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ladin"
msgstr "লেডিন"
#. XAiVE
-#: svtools/inc/langtab.hrc:379
+#: svtools/inc/langtab.hrc:380
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Burkina Faso)"
msgstr "ফৰাঁচী (বাৰ্কিনা ফাছো)"
#. EGzhe
-#: svtools/inc/langtab.hrc:380
+#: svtools/inc/langtab.hrc:381
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Puinave"
msgstr "পুইনাভে"
#. HNcxe
-#: svtools/inc/langtab.hrc:381
+#: svtools/inc/langtab.hrc:382
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maninkakan, Eastern, Latin"
msgstr "মানিনকাকান, পূৰ্ব, লেটিন"
#. Kxi9E
-#: svtools/inc/langtab.hrc:382
+#: svtools/inc/langtab.hrc:383
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Avar"
msgstr "এভাৰ"
#. zumBa
-#: svtools/inc/langtab.hrc:383
+#: svtools/inc/langtab.hrc:384
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Latin"
msgstr "ক্ৰী, প্লেইনচ্, লেটিন"
#. PQqU7
-#: svtools/inc/langtab.hrc:384
+#: svtools/inc/langtab.hrc:385
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Syllabics"
msgstr "ক্ৰী, প্লেইনচ্, চিলেবিক্স"
#. kewgf
-#: svtools/inc/langtab.hrc:385
+#: svtools/inc/langtab.hrc:386
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lengo"
msgstr "লেঙ্গো"
#. KtBfE
-#: svtools/inc/langtab.hrc:386
+#: svtools/inc/langtab.hrc:387
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Côte d'Ivoire)"
msgstr "ফ্ৰেঞ্চ (কৌট ডিআইভ'ৰ)"
#. DTuEL
-#: svtools/inc/langtab.hrc:387
+#: svtools/inc/langtab.hrc:388
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mali)"
msgstr "ফ্ৰেঞ্চ (মালি)"
#. LFLk6
-#: svtools/inc/langtab.hrc:388
+#: svtools/inc/langtab.hrc:389
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Senegal)"
msgstr "ফ্ৰেঞ্চ (চেনেগাল)"
#. mSK3x
-#: svtools/inc/langtab.hrc:389
+#: svtools/inc/langtab.hrc:390
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Benin)"
msgstr "ফ্ৰেঞ্চ (বেনিন)"
#. tM6qQ
-#: svtools/inc/langtab.hrc:390
+#: svtools/inc/langtab.hrc:391
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Niger)"
msgstr "ফ্ৰেঞ্চ (নাইজাৰ)"
#. nCq6f
-#: svtools/inc/langtab.hrc:391
+#: svtools/inc/langtab.hrc:392
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Togo)"
msgstr "ফ্ৰেঞ্চ (টগ')"
#. oCBvK
-#: svtools/inc/langtab.hrc:392
+#: svtools/inc/langtab.hrc:393
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kven Finnish"
msgstr ""
#. zjNcC
-#: svtools/inc/langtab.hrc:393
+#: svtools/inc/langtab.hrc:394
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venetian"
msgstr ""
#. 8EbCs
-#: svtools/inc/langtab.hrc:394
+#: svtools/inc/langtab.hrc:395
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Gambia)"
msgstr "ইংৰাজী (নামিবিয়া)"
#. gEd8L
-#: svtools/inc/langtab.hrc:395
+#: svtools/inc/langtab.hrc:396
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aranese"
msgstr "এৰাগনিচ"
#. TaEzQ
-#: svtools/inc/langtab.hrc:396
+#: svtools/inc/langtab.hrc:397
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (France)"
msgstr ""
#. s4yFD
-#: svtools/inc/langtab.hrc:397
+#: svtools/inc/langtab.hrc:398
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Italy)"
msgstr ""
#. FvPLF
-#: svtools/inc/langtab.hrc:398
+#: svtools/inc/langtab.hrc:399
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Switzerland)"
msgstr "জাৰ্মান (চুইজাৰলেণ্ড)"
#. GgwXq
-#: svtools/inc/langtab.hrc:399
+#: svtools/inc/langtab.hrc:400
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Botswana)"
msgstr ""
#. GZfWN
-#: svtools/inc/langtab.hrc:400
+#: svtools/inc/langtab.hrc:401
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingue Occidental"
msgstr ""
#. FFkaK
-#: svtools/inc/langtab.hrc:401
+#: svtools/inc/langtab.hrc:402
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Apatani"
msgstr ""
#. EHHtS
-#: svtools/inc/langtab.hrc:402
+#: svtools/inc/langtab.hrc:403
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Mauritius)"
msgstr ""
#. atcMq
-#: svtools/inc/langtab.hrc:403
+#: svtools/inc/langtab.hrc:404
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mauritius)"
msgstr ""
#. UZ4Pn
-#: svtools/inc/langtab.hrc:404
+#: svtools/inc/langtab.hrc:405
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Silesian"
msgstr ""
#. RJDLA
-#: svtools/inc/langtab.hrc:405
+#: svtools/inc/langtab.hrc:406
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
#. v3WK8
-#: svtools/inc/langtab.hrc:406
+#: svtools/inc/langtab.hrc:407
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malaysia)"
msgstr "ইংৰাজী (মালাৱী)"
#. 4sBjT
-#: svtools/inc/langtab.hrc:407
+#: svtools/inc/langtab.hrc:408
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manchu"
msgstr ""
#. XH3fY
-#: svtools/inc/langtab.hrc:408
+#: svtools/inc/langtab.hrc:409
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xibe"
msgstr ""
#. oGNdE
-#: svtools/inc/langtab.hrc:409
+#: svtools/inc/langtab.hrc:410
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Democratic Republic of the Congo)"
msgstr ""
#. jQF7C
-#: svtools/inc/langtab.hrc:410
+#: svtools/inc/langtab.hrc:411
#, fuzzy
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr "আখৰ"
#. cAPXF
-#: svtools/inc/langtab.hrc:411
+#: svtools/inc/langtab.hrc:412
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Plautdietsch"
msgstr ""
#. 8LY2A
-#: svtools/inc/langtab.hrc:412
+#: svtools/inc/langtab.hrc:413
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Russia)"
msgstr ""
#. ieGNR
-#: svtools/inc/langtab.hrc:413
+#: svtools/inc/langtab.hrc:414
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Iran)"
msgstr ""
#. US8Ga
-#: svtools/inc/langtab.hrc:414
+#: svtools/inc/langtab.hrc:415
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Western (Armenia)"
msgstr ""
#. nzbrZ
-#: svtools/inc/langtab.hrc:415
+#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Classical (Armenia)"
msgstr ""
#. BDKAa
-#: svtools/inc/langtab.hrc:416
+#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Malaysia)"
msgstr ""
#. AnrGG
-#: svtools/inc/langtab.hrc:417
+#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Brunei Darussalam)"
msgstr ""
#. utBog
-#: svtools/inc/langtab.hrc:418
+#: svtools/inc/langtab.hrc:419
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
msgstr ""
#. jPaAH
-#: svtools/inc/langtab.hrc:419
+#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
msgstr ""
#. mMVAF
-#: svtools/inc/langtab.hrc:420
+#: svtools/inc/langtab.hrc:421
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
msgstr ""
#. AzGAy
-#: svtools/inc/langtab.hrc:421
+#: svtools/inc/langtab.hrc:422
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
msgstr ""
#. 7kkKy
-#: svtools/inc/langtab.hrc:422
+#: svtools/inc/langtab.hrc:423
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Sri Lanka)"
msgstr ""
#. xFPXp
-#: svtools/inc/langtab.hrc:423
+#: svtools/inc/langtab.hrc:424
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Nigeria)"
msgstr ""
#. Up6ab
-#: svtools/inc/langtab.hrc:424
+#: svtools/inc/langtab.hrc:425
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabardian"
msgstr ""
#. BiDsR
-#: svtools/inc/langtab.hrc:425
+#: svtools/inc/langtab.hrc:426
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guadeloupean Creole French"
msgstr ""
#. 2b2P4
-#: svtools/inc/langtab.hrc:426
+#: svtools/inc/langtab.hrc:427
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ligurian"
msgstr ""
#. 3LvEE
-#: svtools/inc/langtab.hrc:427
+#: svtools/inc/langtab.hrc:428
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Minangkabau"
msgstr ""
#. nDkKR
-#: svtools/inc/langtab.hrc:428
+#: svtools/inc/langtab.hrc:429
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sundanese"
msgstr ""
#. wGEAB
-#: svtools/inc/langtab.hrc:429
+#: svtools/inc/langtab.hrc:430
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Hong Kong)"
msgstr ""
#. qTMB2
-#: svtools/inc/langtab.hrc:430
+#: svtools/inc/langtab.hrc:431
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Kenya)"
msgstr ""
#. SgQ2p
-#: svtools/inc/langtab.hrc:431
+#: svtools/inc/langtab.hrc:432
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Thai"
msgstr ""
#. DGeeF
-#: svtools/inc/langtab.hrc:432
+#: svtools/inc/langtab.hrc:433
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cabécar"
msgstr ""
#. xHCtG
-#: svtools/inc/langtab.hrc:433
+#: svtools/inc/langtab.hrc:434
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bribri"
msgstr ""
#. 2GFgR
-#: svtools/inc/langtab.hrc:434
+#: svtools/inc/langtab.hrc:435
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Denmark)"
msgstr ""
#. gmE6U
-#: svtools/inc/langtab.hrc:435
+#: svtools/inc/langtab.hrc:436
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sesotho"
msgstr ""
#. BkKJX
-#: svtools/inc/langtab.hrc:436
+#: svtools/inc/langtab.hrc:437
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr ""
#. xFYhC
-#: svtools/inc/langtab.hrc:437
+#: svtools/inc/langtab.hrc:438
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Israel)"
msgstr ""
#. Bryjh
-#: svtools/inc/langtab.hrc:438
+#: svtools/inc/langtab.hrc:439
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Latin"
msgstr ""
#. DZBAE
-#: svtools/inc/langtab.hrc:439
+#: svtools/inc/langtab.hrc:440
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Cyrillic"
msgstr ""
#. 4eEDW
-#: svtools/inc/langtab.hrc:440
+#: svtools/inc/langtab.hrc:441
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pennsylvania Dutch"
msgstr ""
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index e348a485413..f2d2e1fbfa7 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: 2022-02-18 12:17+0100\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/as/>\n"
@@ -36,3060 +36,3066 @@ msgctxt "STR_ObjNameSingulGRUP"
msgid "Group object"
msgstr "গোট বস্তু"
-#. tC4qm
+#. nsYcw
#: include/svx/strings.hrc:28
+msgctxt "STR_ObjNameSingulDIAGRAM"
+msgid "Diagram"
+msgstr ""
+
+#. tC4qm
+#: include/svx/strings.hrc:29
#, fuzzy
msgctxt "STR_ObjNamePluralGRUP"
msgid "Group objects"
msgstr "গোট বস্তুবোৰ"
#. piV8E
-#: include/svx/strings.hrc:29
+#: include/svx/strings.hrc:30
#, fuzzy
msgctxt "STR_ObjNameSingulGRUPEMPTY"
msgid "Blank group object"
msgstr "খালী গোট বস্তুবোৰ"
#. BBEPU
-#: include/svx/strings.hrc:30
+#: include/svx/strings.hrc:31
msgctxt "STR_ObjNamePluralGRUPEMPTY"
msgid "Blank group objects"
msgstr "খালী গোট বস্তুবোৰ"
#. NVHmC
-#: include/svx/strings.hrc:31
+#: include/svx/strings.hrc:32
msgctxt "STR_ObjNameSingulLINE"
msgid "Line"
msgstr "ৰেখা"
#. SD2Wy
-#: include/svx/strings.hrc:32
+#: include/svx/strings.hrc:33
#, fuzzy
msgctxt "STR_ObjNameSingulLINE_Hori"
msgid "Horizontal line"
msgstr "অনুভূমিক ৰেখা"
#. 3dPEH
-#: include/svx/strings.hrc:33
+#: include/svx/strings.hrc:34
msgctxt "STR_ObjNameSingulLINE_Vert"
msgid "Vertical line"
msgstr "উলম্ব ৰেখা"
#. JzFtj
-#: include/svx/strings.hrc:34
+#: include/svx/strings.hrc:35
#, fuzzy
msgctxt "STR_ObjNameSingulLINE_Diag"
msgid "Diagonal line"
msgstr "কর্ণ ৰেখা"
#. YPAoe
-#: include/svx/strings.hrc:35
+#: include/svx/strings.hrc:36
msgctxt "STR_ObjNamePluralLINE"
msgid "Lines"
msgstr "ৰেখাবোৰ"
#. yS2nC
-#: include/svx/strings.hrc:36
+#: include/svx/strings.hrc:37
msgctxt "STR_ObjNameSingulRECT"
msgid "Rectangle"
msgstr "আয়তক্ষেত্ৰ"
#. TDTj8
-#: include/svx/strings.hrc:37
+#: include/svx/strings.hrc:38
msgctxt "STR_ObjNamePluralRECT"
msgid "Rectangles"
msgstr "আয়তক্ষেত্ৰবোৰ"
#. fnV49
-#: include/svx/strings.hrc:38
+#: include/svx/strings.hrc:39
msgctxt "STR_ObjNameSingulQUAD"
msgid "Square"
msgstr "বৰ্গক্ষেত্ৰ"
#. XkEHU
-#: include/svx/strings.hrc:39
+#: include/svx/strings.hrc:40
msgctxt "STR_ObjNamePluralQUAD"
msgid "Squares"
msgstr "বৰ্গক্ষেত্ৰবোৰ"
#. vw4Ut
-#: include/svx/strings.hrc:40
+#: include/svx/strings.hrc:41
msgctxt "STR_ObjNameSingulPARAL"
msgid "Parallelogram"
msgstr "সমান্তৰাল চতুৰ্ভূজ"
#. yCpvs
-#: include/svx/strings.hrc:41
+#: include/svx/strings.hrc:42
msgctxt "STR_ObjNamePluralPARAL"
msgid "Parallelograms"
msgstr "সমান্তৰাল চতুৰ্ভূজবোৰ"
#. SfDZQ
-#: include/svx/strings.hrc:42
+#: include/svx/strings.hrc:43
msgctxt "STR_ObjNameSingulRECTRND"
msgid "Rounded rectangle"
msgstr "গোলাকাৰ আয়তক্ষেত্ৰ"
#. PYAii
-#: include/svx/strings.hrc:43
+#: include/svx/strings.hrc:44
msgctxt "STR_ObjNamePluralRECTRND"
msgid "Rounded Rectangles"
msgstr "গোলাকাৰ আয়তক্ষেত্ৰবোৰ"
#. xQAn8
-#: include/svx/strings.hrc:44
+#: include/svx/strings.hrc:45
msgctxt "STR_ObjNameSingulQUADRND"
msgid "rounded square"
msgstr "গোলাকাৰ বৰ্গক্ষেত্ৰ"
#. JHxon
-#: include/svx/strings.hrc:45
+#: include/svx/strings.hrc:46
msgctxt "STR_ObjNamePluralQUADRND"
msgid "Rounded Squares"
msgstr "গোলাকাৰ বৰ্গক্ষেত্ৰবোৰ"
#. 89eHB
-#: include/svx/strings.hrc:46
+#: include/svx/strings.hrc:47
msgctxt "STR_ObjNameSingulPARALRND"
msgid "Rounded Parallelogram"
msgstr "গোলাকাৰ সমান্তৰাল চতুৰ্ভুজ"
#. WvCRG
-#: include/svx/strings.hrc:47
+#: include/svx/strings.hrc:48
msgctxt "STR_ObjNamePluralPARALRND"
msgid "Rounded parallelograms"
msgstr "গোলাকাৰ সমান্তৰাল চতুৰ্ভুজবোৰ"
#. NDXG6
-#: include/svx/strings.hrc:48
+#: include/svx/strings.hrc:49
msgctxt "STR_ObjNameSingulCIRC"
msgid "Circle"
msgstr "বৃত্ত"
#. Bzk99
-#: include/svx/strings.hrc:49
+#: include/svx/strings.hrc:50
msgctxt "STR_ObjNamePluralCIRC"
msgid "Circles"
msgstr "বৃত্তবোৰ"
#. 2CxVR
-#: include/svx/strings.hrc:50
+#: include/svx/strings.hrc:51
msgctxt "STR_ObjNameSingulSECT"
msgid "Circle sector"
msgstr "বৃত্ত খণ্ড"
#. djBb7
-#: include/svx/strings.hrc:51
+#: include/svx/strings.hrc:52
msgctxt "STR_ObjNamePluralSECT"
msgid "Circle sectors"
msgstr "বৃত্ত খণ্ডবোৰ"
#. KAhqG
-#: include/svx/strings.hrc:52
+#: include/svx/strings.hrc:53
msgctxt "STR_ObjNameSingulCARC"
msgid "Arc"
msgstr "আর্ক্"
#. ZtPEx
-#: include/svx/strings.hrc:53
+#: include/svx/strings.hrc:54
msgctxt "STR_ObjNamePluralCARC"
msgid "Arcs"
msgstr "চাপবোৰ"
#. 7mXtq
-#: include/svx/strings.hrc:54
+#: include/svx/strings.hrc:55
msgctxt "STR_ObjNameSingulCCUT"
msgid "Circle segment"
msgstr "বৃত্ত ভাগ"
#. YkhbA
-#: include/svx/strings.hrc:55
+#: include/svx/strings.hrc:56
msgctxt "STR_ObjNamePluralCCUT"
msgid "Circle segments"
msgstr "বৃত্ত খণ্ডবোৰ"
#. QsEuy
-#: include/svx/strings.hrc:56
+#: include/svx/strings.hrc:57
msgctxt "STR_ObjNameSingulCIRCE"
msgid "Ellipse"
msgstr "উপবৃত্ত"
#. rUFxb
-#: include/svx/strings.hrc:57
+#: include/svx/strings.hrc:58
msgctxt "STR_ObjNamePluralCIRCE"
msgid "Ellipses"
msgstr "উপবৃত্তবোৰ"
#. UADGo
-#: include/svx/strings.hrc:58
+#: include/svx/strings.hrc:59
msgctxt "STR_ObjNameSingulSECTE"
msgid "Ellipse Pie"
msgstr "উপবৃত্ত পাই"
#. afCit
-#: include/svx/strings.hrc:59
+#: include/svx/strings.hrc:60
msgctxt "STR_ObjNamePluralSECTE"
msgid "Ellipse Pies"
msgstr "উপবৃত্ত পাইবোৰ"
#. 7FXAW
-#: include/svx/strings.hrc:60
+#: include/svx/strings.hrc:61
msgctxt "STR_ObjNameSingulCARCE"
msgid "Elliptical arc"
msgstr "উপবৃত্তাকাৰ চাপ"
#. KdtfM
-#: include/svx/strings.hrc:61
+#: include/svx/strings.hrc:62
msgctxt "STR_ObjNamePluralCARCE"
msgid "Elliptical arcs"
msgstr "উপবৃত্তাকাৰ চাপবোৰ"
#. C4jME
-#: include/svx/strings.hrc:62
+#: include/svx/strings.hrc:63
msgctxt "STR_ObjNameSingulCCUTE"
msgid "Ellipse Segment"
msgstr "উপবৃত্তৰ খণ্ড"
#. wKC5F
-#: include/svx/strings.hrc:63
+#: include/svx/strings.hrc:64
msgctxt "STR_ObjNamePluralCCUTE"
msgid "Ellipse Segments"
msgstr "উপবৃত্তৰ খণ্ডবোৰ"
#. ibJ55
-#: include/svx/strings.hrc:64
+#: include/svx/strings.hrc:65
msgctxt "STR_ObjNameSingulPOLY"
msgid "Polygon"
msgstr "বহুভুজ"
#. AZFuB
-#: include/svx/strings.hrc:65
+#: include/svx/strings.hrc:66
#, fuzzy
msgctxt "STR_ObjNameSingulPOLY_PointCount"
msgid "Polygon %2 corners"
msgstr "বহভূজ %2 কোণসমূহ"
#. a6z8j
-#: include/svx/strings.hrc:66
+#: include/svx/strings.hrc:67
msgctxt "STR_ObjNamePluralPOLY"
msgid "Polygons"
msgstr "বহুভুজবোৰ"
#. WSEL3
-#: include/svx/strings.hrc:67
+#: include/svx/strings.hrc:68
msgctxt "STR_ObjNameSingulPLIN"
msgid "Polyline"
msgstr "বহুৰেখা"
#. eBhxV
-#: include/svx/strings.hrc:68
+#: include/svx/strings.hrc:69
#, fuzzy
msgctxt "STR_ObjNameSingulPLIN_PointCount"
msgid "Polyline with %2 corners"
msgstr "%2 কোণৰ সৈতে পলিলাইন"
#. NjP7U
-#: include/svx/strings.hrc:69
+#: include/svx/strings.hrc:70
msgctxt "STR_ObjNamePluralPLIN"
msgid "Polylines"
msgstr "বহুৰেখাবোৰ"
#. KNPXt
-#: include/svx/strings.hrc:70
+#: include/svx/strings.hrc:71
msgctxt "STR_ObjNameSingulPATHLINE"
msgid "Bézier curve"
msgstr "Bézier বক্ৰ"
#. BhTAu
-#: include/svx/strings.hrc:71
+#: include/svx/strings.hrc:72
msgctxt "STR_ObjNamePluralPATHLINE"
msgid "Bézier curves"
msgstr "Bézier বক্ৰবোৰ"
#. LU3AK
-#: include/svx/strings.hrc:72
+#: include/svx/strings.hrc:73
msgctxt "STR_ObjNameSingulPATHFILL"
msgid "Bézier curve"
msgstr "Bézier বক্ৰ"
#. vLAWh
-#: include/svx/strings.hrc:73
+#: include/svx/strings.hrc:74
msgctxt "STR_ObjNamePluralPATHFILL"
msgid "Bézier curves"
msgstr "Bézier বক্ৰবোৰ"
#. FQeae
-#: include/svx/strings.hrc:74
+#: include/svx/strings.hrc:75
msgctxt "STR_ObjNameSingulFREELINE"
msgid "Freeform Line"
msgstr "মুক্ত ফর্ম ৰেখা"
#. c8gFR
-#: include/svx/strings.hrc:75
+#: include/svx/strings.hrc:76
msgctxt "STR_ObjNamePluralFREELINE"
msgid "Freeform Lines"
msgstr "মুক্ত ফর্ম ৰেখাবোৰ"
#. GSmPG
-#: include/svx/strings.hrc:76
+#: include/svx/strings.hrc:77
msgctxt "STR_ObjNameSingulFREEFILL"
msgid "Freeform Line"
msgstr "মুক্ত ফর্ম ৰেখা"
#. 8k7tC
-#: include/svx/strings.hrc:77
+#: include/svx/strings.hrc:78
msgctxt "STR_ObjNamePluralFREEFILL"
msgid "Freeform Lines"
msgstr "মুক্ত ফর্ম ৰেখাবোৰ"
#. iwxqj
-#: include/svx/strings.hrc:78
+#: include/svx/strings.hrc:79
msgctxt "STR_ObjNameSingulCOMBLINE"
msgid "Curve"
msgstr "বক্ৰ"
#. CjzRc
-#: include/svx/strings.hrc:79
+#: include/svx/strings.hrc:80
msgctxt "STR_ObjNameSingulNATSPLN"
msgid "Natural Spline"
msgstr "স্বাভাৱিক স্প্লাইন"
#. CSFGL
-#: include/svx/strings.hrc:80
+#: include/svx/strings.hrc:81
msgctxt "STR_ObjNamePluralNATSPLN"
msgid "Natural Splines"
msgstr "স্বাভাৱিক স্প্লাইনবোৰ"
#. jpijx
-#: include/svx/strings.hrc:81
+#: include/svx/strings.hrc:82
msgctxt "STR_ObjNameSingulPERSPLN"
msgid "Periodic Spline"
msgstr "সাময়িক স্প্লাইন"
#. A2GLR
-#: include/svx/strings.hrc:82
+#: include/svx/strings.hrc:83
msgctxt "STR_ObjNamePluralPERSPLN"
msgid "Periodic Splines"
msgstr "সাময়িক স্প্লাইনবোৰ"
#. efEFM
-#: include/svx/strings.hrc:83
+#: include/svx/strings.hrc:84
msgctxt "STR_ObjNameSingulTEXT"
msgid "Text Frame"
msgstr "সংযোগকৃত টেক্সট ফ্রেম"
#. MdV7N
-#: include/svx/strings.hrc:84
+#: include/svx/strings.hrc:85
msgctxt "STR_ObjNamePluralTEXT"
msgid "Text Frame"
msgstr "সংযোগকৃত টেক্সট ফ্রেম"
#. 3Pvnw
-#: include/svx/strings.hrc:85
+#: include/svx/strings.hrc:86
msgctxt "STR_ObjNameSingulTEXTLNK"
msgid "Linked text frame"
msgstr "সংযোগকৃত টেক্সট ফ্রেম"
#. EtTZB
-#: include/svx/strings.hrc:86
+#: include/svx/strings.hrc:87
msgctxt "STR_ObjNamePluralTEXTLNK"
msgid "Linked text frames"
msgstr "সংযোগকৃত টেক্সট ফ্রেমবোৰ"
#. mw75y
-#: include/svx/strings.hrc:87
+#: include/svx/strings.hrc:88
msgctxt "STR_ObjNameSingulTITLETEXT"
msgid "Title text"
msgstr "শিৰোনাম টেক্সট"
#. aAKEp
-#: include/svx/strings.hrc:88
+#: include/svx/strings.hrc:89
msgctxt "STR_ObjNamePluralTITLETEXT"
msgid "Title texts"
msgstr "শিৰোনাম টেক্সটবোৰ"
#. 3DMmh
-#: include/svx/strings.hrc:89
+#: include/svx/strings.hrc:90
msgctxt "STR_ObjNameSingulOUTLINETEXT"
msgid "Outline Text"
msgstr "ৰূপৰেখা টেক্সট"
#. PDZGm
-#: include/svx/strings.hrc:90
+#: include/svx/strings.hrc:91
msgctxt "STR_ObjNamePluralOUTLINETEXT"
msgid "Outline Texts"
msgstr "ৰূপৰেখা টেক্সটবোৰ"
#. HspAE
-#: include/svx/strings.hrc:91
+#: include/svx/strings.hrc:92
msgctxt "STR_ObjNameSingulGRAF"
msgid "Image"
msgstr "ছবি"
#. DzfeY
-#: include/svx/strings.hrc:92
+#: include/svx/strings.hrc:93
#, fuzzy
msgctxt "STR_ObjNamePluralGRAF"
msgid "Images"
msgstr "ছবিসমূহ"
#. E9w8q
-#: include/svx/strings.hrc:93
+#: include/svx/strings.hrc:94
msgctxt "STR_ObjNameSingulGRAFLNK"
msgid "Linked image"
msgstr ""
#. YopD6
-#: include/svx/strings.hrc:94
+#: include/svx/strings.hrc:95
msgctxt "STR_ObjNamePluralGRAFLNK"
msgid "Linked images"
msgstr ""
#. wWACk
-#: include/svx/strings.hrc:95
+#: include/svx/strings.hrc:96
msgctxt "STR_ObjNameSingulGRAFNONE"
msgid "Blank image object"
msgstr ""
#. uzsE4
-#: include/svx/strings.hrc:96
+#: include/svx/strings.hrc:97
msgctxt "STR_ObjNamePluralGRAFNONE"
msgid "Blank image objects"
msgstr ""
#. 8Za3o
-#: include/svx/strings.hrc:97
+#: include/svx/strings.hrc:98
msgctxt "STR_ObjNameSingulGRAFNONELNK"
msgid "Blank linked image"
msgstr ""
#. 8W5JS
-#: include/svx/strings.hrc:98
+#: include/svx/strings.hrc:99
msgctxt "STR_ObjNamePluralGRAFNONELNK"
msgid "Blank linked images"
msgstr ""
#. kUuBg
-#: include/svx/strings.hrc:99
+#: include/svx/strings.hrc:100
msgctxt "STR_ObjNameSingulGRAFMTF"
msgid "Metafile"
msgstr "মেটা ফাইল"
#. w5ykB
-#: include/svx/strings.hrc:100
+#: include/svx/strings.hrc:101
msgctxt "STR_ObjNamePluralGRAFMTF"
msgid "Metafiles"
msgstr "মেটা ফাইলবোৰ"
#. XBDAB
-#: include/svx/strings.hrc:101
+#: include/svx/strings.hrc:102
msgctxt "STR_ObjNameSingulGRAFMTFLNK"
msgid "Linked Metafile"
msgstr "সংযোগকৃত মেটাফাইল"
#. ACpDE
-#: include/svx/strings.hrc:102
+#: include/svx/strings.hrc:103
msgctxt "STR_ObjNamePluralGRAFMTFLNK"
msgid "Linked Metafiles"
msgstr "সংযোগকৃত মেটাফাইলবোৰ"
#. Pbmqw
-#: include/svx/strings.hrc:103
+#: include/svx/strings.hrc:104
msgctxt "STR_ObjNameSingulGRAFBMP"
msgid "Image"
msgstr "ছবি"
#. WdAhn
-#: include/svx/strings.hrc:104
+#: include/svx/strings.hrc:105
#, fuzzy
msgctxt "STR_ObjNameSingulGRAFBMPTRANS"
msgid "Image with transparency"
msgstr "স্বচ্ছতাৰ সৈতে বিটমেপবোৰ"
#. 3FkK6
-#: include/svx/strings.hrc:105
+#: include/svx/strings.hrc:106
msgctxt "STR_ObjNameSingulGRAFBMPLNK"
msgid "Linked Image"
msgstr ""
#. ydd77
-#: include/svx/strings.hrc:106
+#: include/svx/strings.hrc:107
#, fuzzy
msgctxt "STR_ObjNameSingulGRAFBMPTRANSLNK"
msgid "Linked image with transparency"
msgstr "স্বচ্ছতাৰ সৈতে সংযোগকৃত বিটমেপবোৰ"
#. FVJeA
-#: include/svx/strings.hrc:107
+#: include/svx/strings.hrc:108
#, fuzzy
msgctxt "STR_ObjNamePluralGRAFBMP"
msgid "Images"
msgstr "ছবিসমূহ"
#. mjfjF
-#: include/svx/strings.hrc:108
+#: include/svx/strings.hrc:109
#, fuzzy
msgctxt "STR_ObjNamePluralGRAFBMPTRANS"
msgid "Images with transparency"
msgstr "স্বচ্ছতাৰ সৈতে বিটমেপবোৰ"
#. 8kaaN
-#: include/svx/strings.hrc:109
+#: include/svx/strings.hrc:110
msgctxt "STR_ObjNamePluralGRAFBMPLNK"
msgid "Linked images"
msgstr ""
#. DKMiE
-#: include/svx/strings.hrc:110
+#: include/svx/strings.hrc:111
#, fuzzy
msgctxt "STR_ObjNamePluralGRAFBMPTRANSLNK"
msgid "Linked images with transparency"
msgstr "স্বচ্ছতাৰ সৈতে সংযোগকৃত বিটমেপবোৰ"
#. aeEoK
-#: include/svx/strings.hrc:111
+#: include/svx/strings.hrc:112
msgctxt "STR_ObjNameSingulCUSTOMSHAPE"
msgid "Shape"
msgstr "আকৃতি"
#. BZmgL
-#: include/svx/strings.hrc:112
+#: include/svx/strings.hrc:113
msgctxt "STR_ObjNamePluralCUSTOMSHAPE"
msgid "Shapes"
msgstr "আকৃতিবোৰ"
#. HBYSq
-#: include/svx/strings.hrc:113
+#: include/svx/strings.hrc:114
msgctxt "STR_ObjNameSingulGRAFSVG"
msgid "SVG"
msgstr "SVG"
#. pzxhb
-#: include/svx/strings.hrc:114
+#: include/svx/strings.hrc:115
msgctxt "STR_ObjNamePluralGRAFSVG"
msgid "SVGs"
msgstr "SVGs"
#. v2DTg
-#: include/svx/strings.hrc:115
+#: include/svx/strings.hrc:116
msgctxt "STR_ObjNameSingulGRAFWMF"
msgid "WMF"
msgstr ""
#. LR2x6
-#: include/svx/strings.hrc:116
+#: include/svx/strings.hrc:117
msgctxt "STR_ObjNamePluralGRAFWMF"
msgid "WMFs"
msgstr ""
#. XcDs2
-#: include/svx/strings.hrc:117
+#: include/svx/strings.hrc:118
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "EMF"
msgstr ""
#. JtdP2
-#: include/svx/strings.hrc:118
+#: include/svx/strings.hrc:119
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "EMFs"
msgstr ""
#. H2FkB
-#: include/svx/strings.hrc:119
+#: include/svx/strings.hrc:120
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
msgstr ""
#. tc3Jb
-#: include/svx/strings.hrc:120
+#: include/svx/strings.hrc:121
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
msgstr ""
#. b3os5
-#: include/svx/strings.hrc:121
+#: include/svx/strings.hrc:122
msgctxt "STR_ObjNameSingulOLE2"
msgid "embedded object (OLE)"
msgstr "সন্মিলিত বস্তু (OLE)"
#. QMF8w
-#: include/svx/strings.hrc:122
+#: include/svx/strings.hrc:123
msgctxt "STR_ObjNamePluralOLE2"
msgid "Embedded objects (OLE)"
msgstr "সন্মিলিত বস্তুবোৰ (OLE)"
#. mAAWu
-#: include/svx/strings.hrc:123
+#: include/svx/strings.hrc:124
msgctxt "STR_ObjNameSingulUno"
msgid "Control"
msgstr "নিয়ন্ত্রণ"
#. KrTeo
-#: include/svx/strings.hrc:124
+#: include/svx/strings.hrc:125
msgctxt "STR_ObjNamePluralUno"
msgid "Controls"
msgstr "নিয়ন্ত্রণবোৰ"
#. wfVg2
-#: include/svx/strings.hrc:125
+#: include/svx/strings.hrc:126
msgctxt "STR_ObjNameSingulFrame"
msgid "Frame"
msgstr "ফ্ৰেম"
#. q72EC
-#: include/svx/strings.hrc:126
+#: include/svx/strings.hrc:127
msgctxt "STR_ObjNamePluralFrame"
msgid "Frames"
msgstr "ফ্রেমবোৰ"
#. gYhqY
-#: include/svx/strings.hrc:127
+#: include/svx/strings.hrc:128
msgctxt "STR_ObjNameSingulEDGE"
msgid "Object Connectors"
msgstr "বস্তু সংযোগকর্তা"
#. 9XiCG
-#: include/svx/strings.hrc:128
+#: include/svx/strings.hrc:129
msgctxt "STR_ObjNamePluralEDGE"
msgid "Object Connectors"
msgstr "বস্তু সংযোগকর্তা"
#. HSDBo
-#: include/svx/strings.hrc:129
+#: include/svx/strings.hrc:130
msgctxt "STR_ObjNameSingulCAPTION"
msgid "Callout"
msgstr "ক'লআউট"
#. BdAJu
-#: include/svx/strings.hrc:130
+#: include/svx/strings.hrc:131
msgctxt "STR_ObjNamePluralCAPTION"
msgid "Callouts"
msgstr "ক'লআউটবোৰ"
#. Ezpif
-#: include/svx/strings.hrc:131
+#: include/svx/strings.hrc:132
msgctxt "STR_ObjNameSingulPAGE"
msgid "Preview object"
msgstr "পূৰ্বদৃশ্য বস্তু"
#. UCECt
-#: include/svx/strings.hrc:132
+#: include/svx/strings.hrc:133
msgctxt "STR_ObjNamePluralPAGE"
msgid "Preview objects"
msgstr "পূৰ্বদৃশ্য বস্তুবোৰ"
#. GCVKi
-#: include/svx/strings.hrc:133
+#: include/svx/strings.hrc:134
msgctxt "STR_ObjNameSingulMEASURE"
msgid "Dimension line"
msgstr "মাত্রা ৰেখা"
#. DokjU
-#: include/svx/strings.hrc:134
+#: include/svx/strings.hrc:135
msgctxt "STR_ObjNamePluralMEASURE"
msgid "Dimensioning objects"
msgstr "মাত্রাযুক্ত বস্তুবোৰ"
#. iBQEy
-#: include/svx/strings.hrc:135
+#: include/svx/strings.hrc:136
msgctxt "STR_ObjNamePlural"
msgid "Drawing objects"
msgstr "অঁকা বস্তুবোৰ"
#. xHrgo
-#: include/svx/strings.hrc:136
+#: include/svx/strings.hrc:137
msgctxt "STR_ObjNameNoObj"
msgid "No draw object"
msgstr "কোনো ড্র অবজেক্ত নাই"
#. EEKnk
-#: include/svx/strings.hrc:137
+#: include/svx/strings.hrc:138
#, fuzzy
msgctxt "STR_ObjNameSingulPlural"
msgid "Draw object(s)"
msgstr "বস্তু(বোৰ) আঁকক"
#. LYyRP
-#: include/svx/strings.hrc:138
+#: include/svx/strings.hrc:139
msgctxt "STR_ObjNameSingulCube3d"
msgid "3D cube"
msgstr "3D ঘনক"
#. ZsF4T
-#: include/svx/strings.hrc:139
+#: include/svx/strings.hrc:140
msgctxt "STR_ObjNamePluralCube3d"
msgid "3D cubes"
msgstr "3D ঘনকবোৰ"
#. h9hf7
-#: include/svx/strings.hrc:140
+#: include/svx/strings.hrc:141
msgctxt "STR_ObjNameSingulExtrude3d"
msgid "Extrusion object"
msgstr "নিঃসাৰিত বস্তু"
#. Ag6Pu
-#: include/svx/strings.hrc:141
+#: include/svx/strings.hrc:142
msgctxt "STR_ObjNamePluralExtrude3d"
msgid "Extrusion objects"
msgstr "নিঃসাৰিত বস্তুবোৰ"
#. L3B8v
-#: include/svx/strings.hrc:142
+#: include/svx/strings.hrc:143
#, fuzzy
msgctxt "STR_ObjNameSingulLathe3d"
msgid "Rotation object"
msgstr "আৱৰ্তন বস্তু"
#. e3vFm
-#: include/svx/strings.hrc:143
+#: include/svx/strings.hrc:144
#, fuzzy
msgctxt "STR_ObjNamePluralLathe3d"
msgid "Rotation objects"
msgstr "আৱৰ্তন বস্তুবোৰ"
#. CE5Gk
-#: include/svx/strings.hrc:144
+#: include/svx/strings.hrc:145
msgctxt "STR_ObjNameSingulObj3d"
msgid "3D object"
msgstr "3D বস্তু"
#. pECo3
-#: include/svx/strings.hrc:145
+#: include/svx/strings.hrc:146
msgctxt "STR_ObjNamePluralObj3d"
msgid "3D objects"
msgstr "3D বস্তুবোৰ"
#. Wuqvb
-#: include/svx/strings.hrc:146
+#: include/svx/strings.hrc:147
msgctxt "STR_ObjNameSingulScene3d"
msgid "3D scene"
msgstr "3D দৃশ্য"
#. tH8BD
-#: include/svx/strings.hrc:147
+#: include/svx/strings.hrc:148
msgctxt "STR_ObjNamePluralScene3d"
msgid "3D scenes"
msgstr "3D দৃশ্যবোৰ"
#. WdWuw
-#: include/svx/strings.hrc:148
+#: include/svx/strings.hrc:149
msgctxt "STR_ObjNameSingulSphere3d"
msgid "Sphere"
msgstr "গোলক"
#. YNXv5
-#: include/svx/strings.hrc:149
+#: include/svx/strings.hrc:150
#, fuzzy
msgctxt "STR_ObjNamePluralSphere3d"
msgid "Spheres"
msgstr "গোলকবোৰ"
#. h4GBf
-#: include/svx/strings.hrc:150
+#: include/svx/strings.hrc:151
msgctxt "STR_EditWithCopy"
msgid "with copy"
msgstr "প্ৰতিলিপিৰ সৈতে"
#. NrVyW
-#: include/svx/strings.hrc:151
+#: include/svx/strings.hrc:152
msgctxt "STR_EditPosSize"
msgid "Set position and size for %1"
msgstr "%1 ৰ স্থান আৰু আকাৰ"
#. ac4yY
-#: include/svx/strings.hrc:152
+#: include/svx/strings.hrc:153
msgctxt "STR_EditDelete"
msgid "Delete %1"
msgstr "%1 মচি পেলাওক"
#. AweBA
-#: include/svx/strings.hrc:153
+#: include/svx/strings.hrc:154
msgctxt "STR_EditMovToTop"
msgid "Move %1 forward"
msgstr "%1 আগলৈ পঠাওক"
#. G7EUR
-#: include/svx/strings.hrc:154
+#: include/svx/strings.hrc:155
msgctxt "STR_EditMovToBtm"
msgid "Move %1 further back"
msgstr "%1 ঘুৰাই পঠাওক"
#. B83UQ
-#: include/svx/strings.hrc:155
+#: include/svx/strings.hrc:156
msgctxt "STR_EditPutToTop"
msgid "Move %1 to front"
msgstr "%1 আগলৈ আনক"
#. aHzgz
-#: include/svx/strings.hrc:156
+#: include/svx/strings.hrc:157
msgctxt "STR_EditPutToBtm"
msgid "Move %1 to back"
msgstr "%1 ঘুৰাই পঠাওক"
#. Q6nSk
-#: include/svx/strings.hrc:157
+#: include/svx/strings.hrc:158
msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "%1 ৰ ওলোটা ক্রম"
#. rpJs7
-#: include/svx/strings.hrc:158
+#: include/svx/strings.hrc:159
msgctxt "STR_SortShapes"
msgid "Sort shapes"
msgstr ""
#. cALbH
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "%1 স্থান পৰিৱর্তন কৰক"
#. dskGp
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "%1 ক পুনৰ আকাৰ দিয়ক"
#. 5QxCS
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "%1 আৱৰ্তন কৰক"
#. BD8aF
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "%1 অনুভূমিক"
#. g7Qgy
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "%1 উলম্ব"
#. 8MR5T
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "%1 ডায়েগনেল"
#. zDbgU
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "%1 ফ্লিপ কৰক"
#. AFUeA
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "%1 বিকৃত কৰক"
#. QRoy3
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "%1 ক্রম অনুসাৰে ৰাখক"
#. wvGVC
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "%1 বৃত্ত"
#. iUJAq
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "%1 বিকৃত কৰক"
#. GRiqx
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "%1 পূৰ্ব নিৰ্দেশ বাতিল কৰক"
#. sE8PU
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "%1 ৰ bézier বৈশিষ্ট্যবোৰ সলনি কৰক"
#. CzVVY
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "%1 ৰ bézier বৈশিষ্ট্যবোৰ সলনি কৰক"
#. 5KcDa
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "%1 ৰ প্রস্থানৰ দিশ"
#. Gbbmq
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "%1 ৰিলেটিভ এট্ৰিবিয়ুট"
#. Auc4o
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "%1 ৰ প্রসংগ বিন্দু"
#. M5Jac
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "%1 গোট"
#. wEEok
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "%1 গোটমুক্ত কৰক"
#. XochA
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "%1 এট্ৰিবিয়ুটবোৰ প্ৰয়োগ কৰক"
#. kzth3
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "%1 শৈলীবোৰ প্ৰয়োগ কৰক"
#. PDT8V
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "%1 পাছত স্মৃতিৰ পৰা আঁতৰাওক"
#. 5DwCY
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "%1 ক বহুভুজলৈ"
#. TPv7Q
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "%1 ক বক্ৰলৈ ৰূপান্তৰ কৰক"
#. ompqC
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "%1 ক বক্ৰলৈ ৰূপান্তৰ কৰক"
#. gax8J
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "%1 বক্ৰলৈ ৰূপান্তৰ কৰক"
#. s96Mt
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "%1 ক বক্ৰলৈ ৰূপান্তৰ কৰক"
#. LAyEj
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "%1 ক বক্ৰলৈ ৰূপান্তৰ কৰক"
#. jzxvB
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "%1 সংৰেখন"
#. jocJd
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "%1 ওপৰলৈ সংৰেখন কৰক"
#. WFGbz
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "%1 তললৈ সংৰেখন কৰক"
#. SyXzE
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "%1 অনুভূমিকভাৱে"
#. TgGUN
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "%1 বাওঁফালে সংৰেখন কৰক"
#. s3Erz
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "%1 সোঁফালে সংৰেখন কৰক"
#. apfuW
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "%1 উলম্বভাৱে"
#. ttEmT
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "%1 কেন্দ্ৰ"
#. xkGug
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "%1 সলনি কৰক"
#. smiFA
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "%1 সংযোগ কৰক"
#. PypoU
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "%1 একত্রিত কৰক"
#. 2KfaD
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "%1 বাদ দিয়ক"
#. gKFow
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "%1 ইন্টাৰ্সেক্ট"
#. M8onz
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "নির্বাচিত বস্তুবোৰ বিতৰণ কৰক"
#. CnGYu
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr ""
#. zBTZe
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr ""
#. JWmM2
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "%1 সংযোগ কৰক"
#. k5kFN
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "%1 বিভাজন কৰক"
#. weAmr
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "%1 বিভাজন কৰক"
#. Yofeq
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "%1 বিভাজন কৰক"
#. hWuuR
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "বস্তু(বোৰ) ভৰাওক"
#. EaVu8
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "%1 আগ্লু বিন্দু ভৰাওক"
#. G3DCW
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragInsertGluePoint"
msgid "Insert gluepoint to %1"
msgstr ""
#. 6JqED
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "প্রসংগ-বিন্দুৰ স্থান পৰিৱৰ্তন কৰক"
#. o8CAF
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "%1 সলনি কৰক"
#. ghkib
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "%1 স্থান পৰিৱর্তন কৰক"
#. BCrkD
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "%1 ক পুনৰ আকাৰ দিয়ক"
#. xonh6
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "%1 আৱৰ্তন কৰক"
#. kBYzN
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "%1 অনুভূমিক"
#. CBBXE
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "%1 উলম্ব"
#. uHCGD
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "%1 ডায়েগনেল"
#. vRwXA
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "%1 ফ্লিপ কৰক"
#. 9xhJw
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "%1 ইন্টাৰ্এক্টিভ গ্রেডিয়েন্ট"
#. Fst87
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "%1 ইন্টাৰ্এক্টিভ স্বচ্ছতা"
#. jgbKK
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "%1 বিকৃত কৰক"
#. Eo8H6
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "%1 ক্রম অনুসাৰে ৰাখক"
#. stAcK
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "%1 বৃত্ত"
#. VbA6t
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "%1 বিকৃত কৰক"
#. YjghP
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
#, fuzzy
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "%1 গোট"
#. ViifK
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "%1 এৰে ব্যাসাৰ্ধ কৰক"
#. usEq4
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "%1 সলনি কৰক"
#. X4GFU
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "%1 ক পুনৰ আকাৰ দিয়ক"
#. qF4Px
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "%1 স্থান পৰিৱর্তন কৰক"
#. fKuKa
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "%1 প্রসংগ-বিন্দুৰ স্থান পৰিৱৰ্তন কৰক"
#. ewcHx
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "%1 জোখ সমাযোজন কৰক"
#. L8rCz
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "%1 সলনি কৰক"
#. UxCCc
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "TextEdit: দফা %1, শাৰী %2, স্তম্ভ %3"
#. 23tL7
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 নিৰ্বাৰ্চিত"
#. yQkFZ
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "%1 ৰ পৰা পইন্ট"
#. RGnTk
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 পইন্ট %1 ৰ পৰা"
#. YxpLB
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoint"
msgid "Gluepoint from %1"
msgstr ""
#. qCFmV
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 gluepoints from %1"
msgstr ""
#. CDqRQ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "বস্তুবোৰ চিহ্নিত কৰক"
#. SLrPJ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "অতিৰিক্ত বস্তুবোৰ চিহ্নিত কৰক"
#. hczKZ
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "বিন্দুবোৰ চিহ্নিত কৰক"
#. 778bF
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "অতিৰিক্ত বিন্দুবোৰ চিন্হিত কৰক"
#. BLEE8
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark gluepoints"
msgstr ""
#. eH9Vs
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional gluepoints"
msgstr ""
#. D5ZZA
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "%1 সৃষ্টি কৰক"
#. 7FoxD
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "%1 ভৰাওক"
#. 9hXBp
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "%1 প্ৰতিলিপি কৰক"
#. arzhD
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "%1 ৰ অবজেক্ট অনুক্ৰম সলনি কৰক"
#. QTZxE
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "%1 টেক্সট সম্পাদনা কৰিবলৈ দুবাৰ ক্লিক কৰক"
#. un957
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "পৃষ্ঠা ভৰাওক"
#. vBvUC
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "পৃষ্ঠা মচি পেলাওক"
#. rFgUQ
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "পৃষ্ঠাৰ প্রতিলিপি কৰক"
#. EYfZc
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "পৃষ্ঠাবোৰৰ অনুক্ৰম সলনি কৰক"
#. BQRVo
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "পৃষ্ঠভূমি পৃষ্ঠা নির্ধাৰণ পৰিস্কাৰ কৰক"
#. 79Cxu
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "পৃষ্ঠভূমি পৃষ্ঠা নির্ধাৰণ সলনি কৰক"
#. 9P8JF
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "দস্তাবেজ ভৰাওক"
#. w3W7h
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "স্তৰ ভৰাওক"
#. 7pifL
-#: include/svx/strings.hrc:258
+#: include/svx/strings.hrc:259
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "স্তৰ মচি পেলাওক"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "%1 -ৰ অবজেক্ট নাম সলনি কৰক"
#. D4AsZ
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "%1 ৰ অবজেক্ট শীৰ্ষক সলনি কৰক"
#. tqeMT
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "%1 -ৰ অবজেক্ট বিৱৰণ সলনি কৰক"
#. XcY5w
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValON"
msgid "on"
msgstr "অন"
#. e6RAB
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "অফ"
#. gaXKQ
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "হয়"
#. 65SoV
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "নহয়"
#. aeEuB
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "প্ৰকাৰ 1"
#. BFaLY
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "প্ৰকাৰ 2"
#. KFMjw
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "প্ৰকাৰ 3"
#. 48UKA
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "প্ৰকাৰ 4"
#. DVm64
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. ZYYeS
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "উলম্ব"
#. HcoYN
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "স্বয়ংক্রিয়"
#. uZNFq
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "অফ"
#. 2ZQvA
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "সমানুপাতিক"
#. Ej4Ya
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "আকৃতিৰ যোগ্য (সকলোবোৰ শাৰী পৃথকভাৱে) "
#. Wr4kE
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "কঠিন এট্ৰিবিয়ুটবোৰ ব্যৱহাৰ কৰক"
#. 73uL2
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "ওপৰ"
#. 3Cde5
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. AR3n7
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "তল"
#. UmBBe
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "সম্পূৰ্ণ উচ্চতা ব্যৱহাৰ কৰক"
#. dRtWD
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "প্ৰসাৰিত"
#. kGXVu
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "বাওঁফাল"
#. bDPBk
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. tVhNN
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "সোঁফাল"
#. K8NiD
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "সম্পূৰ্ণ প্ৰস্থ ব্যৱহাৰ কৰক"
#. H7dgd
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "প্ৰসাৰিত"
#. q5eQw
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "অফ"
#. Roba3
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "খন্তেকীয়া উজ্জ্বল পোহৰ"
#. UDFFC
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "স্ক্ৰ'ল কৰক"
#. A9BQL
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "বৈকল্পিক"
#. EkPkn
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "ভিতৰলৈ স্ক্ৰ'ল কৰক"
#. x3Yd5
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "বাওঁফাল"
#. w7PTQ
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "ওপৰ"
#. oMaiF
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "সোঁফাল"
#. tQTCd
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "তলত"
#. 6MMYx
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "মানবিশিষ্ট সংযোগকৰ্তা"
#. SLdM8
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "ৰেখা সংযোগক"
#. ZAtDC
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "পোন সংযোগকৰ্তা"
#. 9qXds
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "বক্রাকাৰ সংযোগক"
#. MGEse
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "মানবিশিষ্ট"
#. sNziy
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "ব্যাসাৰ্ধ"
#. zGpyM
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "স্বয়ংক্ৰিয়"
#. jA4pb
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "ৰেখাৰ ওপৰত"
#. iqYjg
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "ভগ্ন ৰেখা"
#. h8npu
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "ৰেখাৰ তলত"
#. WL8XG
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "কেন্দ্রীকৃত"
#. hy9eX
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "সম্পূর্ণ বৃত্ত"
#. 6BdZt
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "বৃত্তৰ পাই"
#. j6Bc3
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "বৃত্ত ভাগ"
#. 7sN8d
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "আর্ক্"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "অজ্ঞাত এট্ৰিবিয়ুট"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:315
+#: include/svx/strings.hrc:316
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "ৰেখাৰ শৈলী"
#. BbP7X
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "ৰেখাৰ নমুনা"
#. 4NCnS
-#: include/svx/strings.hrc:317
+#: include/svx/strings.hrc:318
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "ৰেখাৰ প্রস্থ"
#. NuJkv
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "ৰেখাৰ ৰং"
#. NgaPV
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "প্রাৰম্ভ ৰেখা"
#. UYBDU
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "ৰেখাৰ অন্ত"
#. DJkAF
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "প্রাৰম্ভ ৰেখাৰ প্রস্থ"
#. QqA6b
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "ৰেখা অন্তৰ প্রস্থ"
#. FcHDB
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "কাঁড়চিহ্নৰ আগৰ কেন্দ্ৰ"
#. KnFtT
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "কাঁড়চিহ্ন শেষৰ কেন্দ্ৰ"
#. 2UZUA
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "ৰেখাৰ স্বচ্ছতা"
#. 5MLYD
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "ৰেখাৰ সংযোগ"
#. ArqSC
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "ৰেখা এট্রিবিয়ুটবোৰ"
#. dufaT
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "শৈলী পূৰ্ণ কৰক"
#. RDcH6
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "ৰং ভৰাওক"
#. DJM9B
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "গ্রেডিয়েন্ট"
#. gbABb
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "হেচ্চিং"
#. GE68t
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "বিটমেপ ভৰাওক"
#. DV2Ss
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. eK8kh
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "গ্ৰেডিয়েন্ট পদক্ষেপবোৰৰ সংখ্যা"
#. AVtYF
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "টাইল পূৰ্ণ"
#. D7T2o
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "ফিলবিটমেপৰ স্থান"
#. NVLGP
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "ফিলবিটমেপৰ প্রস্থ"
#. PSCTE
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "ফিলবিটমেপৰ উচ্চতা"
#. zW4zt
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "স্বচ্ছ গ্ৰেডিয়েন্ট"
#. DBBgQ
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "2 ৰ বাবে সংৰক্ষণ পূৰ্ণ কৰক"
#. PaSqp
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "% ত টাইল আকাৰ নহয়"
#. fwikV
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "% ত টাইল অফছেট X"
#. FQgvE
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "% ত টাইল অফছেট Y"
#. NUEGF
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "বিটমেপ স্কেলিং"
#. pc9yk
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "% ত টাইল স্থান X"
#. DH43F
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "% ত টাইল স্থান Y"
#. 8GFpS
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "পৃষ্ঠভূমি পূৰক"
#. 2SvhA
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "এৰিয়া এট্রিবিয়ুটবোৰ"
#. TE8CS
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "ফন্টৱর্ক শৈলী"
#. qMnRZ
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "ফন্টৱর্ক সংৰেখন"
#. fpGEZ
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "ফন্ট ৱর্কৰে ব্যৱধান দি আছে"
#. CUBXL
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "ফন্টৱর্ক আখৰ আৰম্ভ"
#. JSVHo
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "ফন্টৱর্ক দাপোন"
#. P5W29
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "ফন্টৱর্ক ৰূপৰেখা"
#. LKCDD
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "ফন্টৱর্ক ছাঁ"
#. oDiYn
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "ফন্টৱর্ক ছাঁৰ ৰং"
#. sFLRA
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "ফন্টৱর্ক ছাঁ অফছেট X"
#. daERW
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "ফন্টৱর্ক ছাঁ অফছেট Y"
#. LdeJZ
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
msgstr "ফন্টৱর্কৰ ৰূপৰেখা লুকোৱাই থওক"
#. 3sPPg
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "ফন্টৱর্ক ছাঁৰ স্বচ্ছতা"
#. q6MHs
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "ছাঁ"
#. dSwen
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "ছাঁৰ ৰং"
#. HcLrC
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "ছাঁৰ ব্যৱধান দিয়া X"
#. TMGmk
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "ছাঁৰ ব্যৱধান দিয়া Y"
#. u5baB
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "ফন্টৱর্ক ছাঁৰ স্বচ্ছতা"
#. AtDxf
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr ""
#. sDFuG
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "3D ছাঁ"
#. FGU8f
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "অবিকল দৃশ্য ছাঁ"
#. MV529
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "লিজেণ্ডৰ প্ৰকাৰ"
#. GAtWb
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "নির্দিষ্ট লিজেণ্ড কোণ"
#. SgHKq
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "লিজেণ্ড কোণ"
#. gwcQp
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "লিজেণ্ড ৰেখাবোৰৰ ব্যৱধান"
#. 6uEae
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "লিজেণ্ড সংৰেখন প্রস্থান"
#. TXjGv
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "সম্বন্ধীয় প্ৰস্থান লিজেণ্ড"
#. Z5bQB
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "সম্বন্ধীয় প্ৰস্থান লিজেণ্ড"
#. 4TmFK
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "লিজেণ্ডৰ প্রকৃত প্রস্থান"
#. V9TG8
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "লিজেণ্ড ৰেখাৰ দৈর্ঘ্য"
#. haQgi
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "লিজেণ্ড ৰেখাবোৰৰ স্বয়ংক্ৰিয় দৈৰ্ঘ্য"
#. 8sDXi
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CORNER_RADIUS"
msgid "Corner radius"
msgstr ""
#. GEA3m
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "নূন্যতম ফ্রেম উচ্চতা"
#. 3jdRR
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "অট'ফিট উচ্চতা"
#. NoJR4
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "ফ্ৰেমলৈ টেক্সট খাপ খুৱাওক"
#. EexDC
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "বাঁফালৰ টেক্সট ফ্ৰেমে ব্যৱধান দি আছে"
#. 3thvB
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "সোঁফালৰ টেক্সট ফ্ৰেমে ব্যৱধান দি আছে"
#. 8x2Xa
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "ওপৰৰ টেক্সট ফ্ৰেমে ব্যৱধান দি আছে"
#. WyymX
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "তলৰ টেক্সট ফ্ৰেমে ব্যৱধান দি আছে"
#. vdbvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "উলম্ব টেক্সট এংকৰ"
#. QzTNc
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "সর্বাধিক ফ্রেম উচ্চতা"
#. CcAnR
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "নূন্যতম ফ্রেম প্রস্থ"
#. i6nqD
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "সর্বাধিক ফ্রেম প্রস্থ"
#. irtVb
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "অট'ফিট প্রস্থ"
#. BGR8n
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "অনুভূমিক টেক্সট এংকৰ"
#. ruk5J
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "ঘড়ী"
#. cvDiA
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "ঘড়ীৰ দিশ"
#. GuCC5
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "ঘড়ী ভিতৰত আৰম্ভ হৈছে"
#. ipog5
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "ঘড়ীৰ ভিতৰত সমাপ্তি"
#. pWAHL
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "ঘড়ী চলাৰ সংখ্যা"
#. vGEjP
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "ঘড়ীৰ দ্ৰুতি"
#. SdHEU
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "ঘড়ীৰ ষ্টেপ আকাৰ"
#. LzoA5
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "ৰূপৰেখা টেক্সটৰ ধাৰা"
#. tNbcC
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXTCOLUMNS_NUMBER"
msgid "Columns number"
msgstr ""
#. DxZkZ
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXTCOLUMNS_SPACING"
msgid "Columns spacing"
msgstr ""
#. HDtDf
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত এট্রিবিয়ুটবোৰ"
#. F9FzF
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "আখৰ-স্বাধীন শাৰী ব্যৱধান ব্যৱহাৰ কৰক"
#. jTAhz
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "আকাৰত শব্দ আৱৰ্ত টেক্সট"
#. QDaB6
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "সংযোগকৰ্তাৰ প্ৰকাৰ"
#. CoYH2
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "অনুভূমিক ব্যৱধান দিয়া বস্তু 1"
#. xdvs2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "উলম্ব ব্যৱধান দিয়া বস্তু 1"
#. FB4Cj
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "অনুভূমিক ব্যৱধান দিয়া বস্তু 2"
#. uGKvj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "উলম্ব ব্যৱধান দিয়া বস্তু 2"
#. FSkBP
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "গ্লু ব্যৱধান দিয়া বস্তু 1"
#. 845KH
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "গ্লু ব্যৱধান দিয়া বস্তু 2"
#. FEDAf
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "স্থান পৰিৱৰ্তন কৰাৰ যোগ্য ৰেখাবোৰ সংখ্যা"
#. EnGaG
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "অফছেট ৰেখা 1"
#. 5XFzK
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "অফছেট ৰেখা 2"
#. nBFrd
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "অফছেট ৰেখা 3"
#. x7oEC
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "মাত্ৰা দিয়াৰ প্ৰকাৰ"
#. 2XCPo
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "মাত্রা মূল্য - অনুভূমিক স্থান"
#. DxA8Z
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "মাত্রা মূল্য - উলম্ব স্থান"
#. LQCsj
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "মাত্রা ৰেখা ব্যৱধান"
#. jZBoK
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "মাত্ৰা সহায় ৰেখা অভাৰহেং"
#. Bhboy
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "মাত্ৰা সহায় ৰেখাই ব্যৱধান দি আছে"
#. jw9E7
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "মাত্ৰা সহায় ৰেখা 1 ৰ বেকলগ"
#. CYFg6
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "মাত্ৰা সহায় ৰেখা 2 ৰ বেকলগ"
#. ocvCK
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "তলৰ পাৰ্শ্ব মাত্রাযুক্ত কৰি আছে"
#. cFVVA
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "মাত্রা মূল্যৰ মাত্রা ৰেখাৰ ওপৰত"
#. VVAgC
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "মাত্ৰা মূল্য 180 ডিগ্ৰীৰ দ্বাৰা আৱৰ্তন কৰক"
#. iFX7y
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "মাত্রা ৰেখা অভাৰহেং"
#. DoBGo
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "পৰিমাপক একক"
#. 2NBMp
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "অতিৰিক্ত স্কেল ফেক্টৰ"
#. 4yTAW
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "পৰিমাপক একক প্রদর্শন"
#. NFDC3
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "মাত্রা মূল্য ফৰমেট"
#. UBjQk
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "মাত্ৰা মূল্যটোৰ অট'পজিশ্বনিং"
#. GDQC3
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "মাত্ৰা মূল্যটোৰ স্বয়ংক্ৰিয়ভাৱে স্থান দিয়াৰ বাবে কোণ"
#. DB243
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "মাত্রা মূল্যৰ কোণৰ নিৰ্দ্ধাৰণ"
#. i3Bah
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "মাত্রা মূল্যৰ কোণ"
#. qWKC7
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "দশমিক স্থানবোৰ"
#. wkrNX
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "বৃত্তৰ প্ৰকাৰ"
#. FRFU8
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "কোণ"
#. FmSKG
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "অন্তিম কোণ"
#. ejn6F
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "সুৰক্ষিত বস্তুৰ স্থান"
#. ZPEB9
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "সুৰক্ষিত বস্তুৰ আকাৰ"
#. BN5CM
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "বস্তু, ছপা কৰিবৰ যোগ্য"
#. 3Digj
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "অবজেক্ট, দৃশ্যমান"
#. nZLtM
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "স্তৰ ID"
#. f3ed2
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "স্তৰ"
#. rb6GC
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "বস্তুৰ নাম"
#. 5zRFi
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "স্থান X, সম্পূৰ্ণ"
#. 5enZ7
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "স্থান Y, সম্পূৰ্ণ"
#. 2V5Mn
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "সৰ্বমুঠ প্ৰস্থ"
#. P6Y6W
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "উচ্চতা, সম্পূৰ্ণ"
#. yFnnC
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "একমাত্ৰ স্থান X"
#. jEGfd
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "একমাত্ৰ স্থান Y"
#. YJFnY
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "একমাত্ৰ উচ্চতা"
#. bZFkM
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "একমাত্ৰ উচ্চতা"
#. K5Xuq
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "যুক্তিপূর্ণ প্রস্থ"
#. 9Niyk
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "যুক্তিপূর্ণ উচ্চতা"
#. yFmvh
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "একমাত্ৰ আৱৰ্তন কোণ"
#. zNyKY
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "একমাত্ৰ শ্বীয়েৰ কোণ"
#. bJv8D
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "অনুভূমিকভাৱে স্থান পৰিৱর্তন কৰক"
#. z7EPp
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "উলম্বভাৱে স্থান পৰিৱর্তন কৰক"
#. Qn4GS
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "X ক পুনৰ আকাৰ দিয়ক, একমাত্ৰ"
#. VCtZa
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Y ক পুনৰ আকাৰ দিয়ক, একমাত্ৰ"
#. NxatH
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "একমাত্ৰ আৱৰ্তন"
#. gNVw9
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "একমাত্ৰ অনুভূমিক শ্বীয়েৰ"
#. iCzED
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "একমাত্ৰ উলম্ব শ্বীয়েৰ"
#. HQcJt
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "X ক পুনৰ আকাৰ দিয়ক, সম্পূৰ্ণ"
#. VcK8z
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Y ক পুনৰ আকাৰ দিয়ক,সম্পূৰ্ণ"
#. vgGU4
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "সকলোবোৰ আৱৰ্তন কৰক"
#. 3faE4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "শ্বীয়াৰ অনুভূমিক, সম্পূৰ্ণ"
#. RAEPz
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "শ্বীয়াৰ উলম্ব, সম্পূৰ্ণ"
#. gtXM3
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "প্রসংগ বিন্দু 1 X"
#. YpQDc
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "প্রসংগ বিন্দু 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "প্রসংগ বিন্দু 2 X"
#. Rty4j
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "প্রসংগ বিন্দু 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "হাইফেনেশ্বন"
#. HMmA6
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "বুলেটবোৰ প্রদর্শন কৰক"
#. 8Q88u
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "নাম্বাৰীং ইণ্ডেন্টবোৰ"
#. inGxX
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "নাম্বাৰীং স্তৰ"
#. 2CtLK
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "বুলেট আৰু নাম্বাৰিংবোৰ"
#. hCE5d
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "ইণ্ডেন্টবোৰ"
#. Y5YFm
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "পেৰেগ্ৰাফৰ ব্যৱধান"
#. feirn
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "ৰেখাৰ ব্যৱধান"
#. gjAVE
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "পেৰেগ্ৰাফ সংৰেখন"
#. offnT
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "টেবুলেটৰবোৰ"
#. kpiTD
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "আখৰৰ ৰং"
#. X535C
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "আখৰ সমষ্টি"
#. AEbEz
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "আখৰৰ আকাৰ"
#. UKHSM
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "আখৰৰ প্রস্থ"
#. SQWpD
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "স্পষ্ট (স্থূলতা)"
#. AUR7N
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "আণ্ডাৰলাইন কৰক"
#. v2AEJ
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "অভাৰলাইন"
#. ARvwR
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "ষ্ট্ৰাইক থ্ৰ"
#. gcVzb
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "ইটালিক"
#. kJVaV
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "ৰূপৰেখা"
#. CZR4e
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "আখৰৰ ছাঁ"
#. PFSUR
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "ছুপাৰ স্ক্ৰিপ্ট/ছাব স্ক্ৰিপ্ট"
#. DrBio
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "কের্নীং"
#. tUVvP
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "মেনুৱেল কেৰ্নিং"
#. S9QCU
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "ব্যৱধানবোৰৰ বাবে আণ্ডাৰলাইন নাই"
#. GuTzF
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "টেবুলেটৰ"
#. U4qgA
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "বৈকল্পিক লাইন ব্রেক"
#. jzBEA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "পৰিৱর্তনৰ অযোগ্য আখৰ"
#. tZd9C
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "ফিল্ডবোৰ"
#. GeKPD
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "ৰঙা"
#. EzAu7
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "সেউজীয়া"
#. TmBML
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "নীলা"
#. 7Gqzs
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "উজ্জ্বলতা"
#. rziVW
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "পার্থক্য"
#. CHepz
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "গামা"
#. 2ESVA
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. uZYFG
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "ওলোটা কৰক"
#. 6aFx2
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr ""
#. Ni9KZ
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "ক্রপ"
#. kVnke
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "মেডিয়া বস্তু"
#. nbHgw
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "মেডিয়া বস্তুবোৰ"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:523
+#: include/svx/strings.hrc:524
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "স্তম্ভ বিৰতি ভৰাওক"
#. SAmd8
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "শাৰী ভৰাওক"
#. yFDYp
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "স্তম্ভ মচি পেলাওক"
#. 9SF9L
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "শাৰী মচি পেলাওক"
#. iBbtT
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "কোষ বিভাজন কৰক"
#. vmzqf
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "কোষবোৰ মাৰ্জ কৰক"
#. 3VVmF
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "ফৰমেট"
#. pSCJC
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "শাৰীবোৰ যুগ্মভাৱে বিতৰণ কৰক"
#. GdLHf
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "স্তম্ভবোৰ যুগ্মভাৱে বিতৰণ কৰক"
#. fGNto
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
#, fuzzy
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "বিষয়বোৰ মচি পেলাওক"
#. B33Cb
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "টেবুল"
#. ZHBAC
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "ছেটিংছ"
#. eERmE
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "টেবুল"
#. XjgSV
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "টেবুলবোৰ"
#. mLDqP
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
#, fuzzy
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
@@ -3097,259 +3103,259 @@ msgstr "ফন্ট কাৰ্য্য"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:539
+#: include/svx/strings.hrc:540
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "নিৰন্তৰ"
#. uNL7M
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "গ্ৰেডিয়েন্ট"
#. a8YoL
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "বিটমেপলৈ"
#. FDmra
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "আৰ্হি"
#. HcGBQ
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr ""
#. GHj4Q
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "ৰেখা শৈলী"
#. fa7EG
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "কোনো নহয়"
#. mrTdk
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "ৰং"
#. 5bjE5
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "হেচ্চিং"
#. yGRGW
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "কাঁড়ৰ আগবোৰ"
#. snuCi
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "কাঁড়"
#. 6EvQ7
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "বৰ্গক্ষেত্ৰ বেভেল"
#. i6cva
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "বৃত্ত"
#. emz9g
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- কোনো নহয় -"
#. hGaEK
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. X4EFw
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "কেন্দ্ৰীকৃত"
#. FFe8m
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "কেন্দ্রীকৃত নহয়"
#. hFhmH
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "অবিকল্পিত"
#. DdAzc
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "গ্রেস্কেল"
#. RHEXM
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "ক'লা/বগা"
#. bcXbA
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "জলচিহ্ন"
#. ZWz8Y
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:562
+#: include/svx/strings.hrc:563
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr ""
#. UdEYr
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr ""
#. 9AUDK
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:568
+#: include/svx/strings.hrc:569
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "খালী"
#. PwGvV
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "মটিয়া"
#. Dp9Az
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "বগা"
#. TGLmD
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "হালধীয়া"
#. YpDke
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "সোণ"
#. 7aJCZ
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "কমলা"
#. mZMFN
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "ৰঙা"
#. 7xMrN
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "মেজেন্টা"
#. ELXiM
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "জামুকলীয়া"
#. UTexf
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr ""
#. qbcF9
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "নীলা"
#. hQ44j
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "টিল"
#. JpxBr
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "সেউজীয়া"
#. A3aCJ
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
@@ -3357,2378 +3363,2378 @@ msgstr "ৰেখা"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:584
+#: include/svx/strings.hrc:585
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "পাতল ধোৱাবৰণ"
#. YF2ud
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr ""
#. BaXBj
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr ""
#. masPL
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr ""
#. k5GY4
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr ""
#. KGDDj
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "পাতল ৰঙা"
#. nvB2W
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr ""
#. 8Bg8h
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr ""
#. suGUh
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "পাতল নীলা"
#. 5VFSV
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr ""
#. 3Z7KA
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "পাতল সেউজীয়া"
#. HVPnD
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr ""
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:598
+#: include/svx/strings.hrc:599
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr ""
#. EaFik
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr ""
#. AFByn
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr ""
#. qAGnF
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr ""
#. NC62Q
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr ""
#. st4Zy
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "ডাঠ ৰঙা"
#. indkC
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr ""
#. VFKuJ
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr ""
#. U3qfW
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr ""
#. dYdEW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr ""
#. qFAAB
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr ""
#. C3U7v
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:612
+#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "বেঙুনীয়া"
#. GgboW
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "চিয়ান"
#. 583vY
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:628
+#: include/svx/strings.hrc:629
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr ""
#. wcNMK
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr ""
#. RA8KB
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:653
+#: include/svx/strings.hrc:654
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr ""
#. CWbzY
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr ""
#. DkKFF
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr ""
#. 5hZu8
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr ""
#. wSEGQ
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr ""
#. pUEkF
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr ""
#. qVhW9
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr ""
#. QV77P
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr ""
#. gYFV6
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "ছার্ট"
#. LXcFL
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "আকাশনীলা"
#. QbGU3
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr ""
#. UDfTh
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "সংযোগ"
#. FXDuA
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "সেউজ-নীলা"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:667
+#: include/svx/strings.hrc:668
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3D"
#. GtMuR
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "ক'লা 1"
#. AhPLy
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "ক'লা 2"
#. jVxFC
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "নীলা"
#. FacjB
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "মুগা"
#. uQSDF
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "মুদ্ৰা"
#. sQpNL
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "মুদ্রা 3D"
#. ACACr
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "মুদ্রা মটিয়া"
#. yy7mJ
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "মুদ্রা শেতা বেঙুনীয়া"
#. 4THUt
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "মুদ্রা সেউজ-নীলা"
#. a8AGf
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "মটিয়া"
#. B4e9f
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "সেউজীয়া"
#. 3mz4G
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "শেতা বেঙুনীয়া"
#. gdfFF
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "ৰঙা"
#. GsAVb
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "সেউজ-নীলা"
#. sZbit
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "হালধীয়া"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:684
+#: include/svx/strings.hrc:685
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "এলিগেন্ট"
#. Q9rDT
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
#, fuzzy
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "আৰ্থিক"
#. 3qSCd
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "ৰেখাৰ সংযোগ গড়"
#. zbAG7
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "ৰেখাৰ সংযোগ বেভেল"
#. EtQJT
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "ৰেখাৰ সংযোগ মাইট্যাৰ"
#. YUtBv
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "ৰেখাৰ সংযোগ ঘূৰণীয়া"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:699
+#: include/svx/strings.hrc:700
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "লাইন কেপ চেপেটা"
#. zKt6C
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "লাইন কেপ গোল"
#. 5Lbx4
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "লাইন কেপ বৰ্গাকাৰ"
#. YXbPg
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "গ্ৰেডিয়েন্ট"
#. mZwMD
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "একঘাতীয় নীলা/বগা"
#. WyGuh
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "একঘাতীয় মেজেন্টা/সেউজীয়া"
#. cLHvA
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "একঘাতীয় হালধীয়া/মুগা"
#. Kfkbm
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "অৰীয় সেউজীয়া/ক'লা"
#. uiTTS
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "অৰীয় ৰঙা/হালধীয়া"
#. SsUvr
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "আয়তাকাৰ ৰঙা/বগা"
#. CKwQP
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "বৰ্গক্ষেত্ৰ হালধীয়া/বগা"
#. hi3tb
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "ইলিপছইড নীলা মটিয়া/পাতল নীলা"
#. b6AwV
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "অক্ষীয় পাতল ৰঙা/বগা"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:713
+#: include/svx/strings.hrc:714
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "কৰ্ণ 1l"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:715
+#: include/svx/strings.hrc:716
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "কৰ্ণ 1r"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:717
+#: include/svx/strings.hrc:718
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "কৰ্ণ 2l"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:719
+#: include/svx/strings.hrc:720
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "কৰ্ণ 2r"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:721
+#: include/svx/strings.hrc:722
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "কৰ্ণ 3l"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:723
+#: include/svx/strings.hrc:724
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "কৰ্ণ 3r"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:725
+#: include/svx/strings.hrc:726
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "কৰ্ণ 4l"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:727
+#: include/svx/strings.hrc:728
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "কৰ্ণ 4r"
#. yqda8
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "কর্ণ নীলা"
#. GCtJC
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "কর্ণ সেউজীয়া"
#. LCQEB
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "কর্ণ সুমথিৰা"
#. oD7FW
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "কর্ণ ৰঙা"
#. vuyUG
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "কৰ্ণ টাৰকুইচ"
#. mGtyc
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "কর্ণ বেঙুনীয়া"
#. cArVy
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "এটা চুকৰ পৰা"
#. gvXLL
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "এটা চুকৰ পৰা, নীলা"
#. GaTPh
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "এটা চুকৰ পৰা, সেউজীয়া"
#. GE5vm
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "এটা চুকৰ পৰা, সুমথীৰা"
#. BFTnr
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "এটা চুকৰ পৰা, ৰঙা"
#. AFKRL
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "এটা চুকৰ পৰা, টাৰকুইচ"
#. djBGe
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "এটা চুকৰ পৰা, বেঙুনীয়া"
#. pwDuE
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "মাজৰ পৰা"
#. y8qpL
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "মাজৰ পৰা, নীলা"
#. PGt5w
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "মাজৰ পৰা, সেউজীয়া"
#. CyLXB
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "মাজৰ পৰা, সুমথীৰা"
#. vkERJ
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "মাজৰ পৰা, ৰঙা"
#. Sq2SE
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "মাজৰ পৰা, টাৰকুইচ"
#. DoSmH
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "মাজৰ পৰা, বেঙুনীয়া"
#. 9XHkg
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. FDG7B
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "আনুভূমিক নীলা"
#. ZEfzF
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "আনুভূমিক সেউজীয়া"
#. GFRCF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "আনুভূমিক সুমথীৰা"
#. iouxG
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "আনুভূমিক ৰঙা"
#. Gta9k
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "আনুভূমিক টাৰকুইচ"
#. Tdpw4
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "আনুভূমিক বেঙুনীয়া"
#. DyVEP
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "বিস্তৃত"
#. Uyhuj
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "বিস্তৃত নীলা"
#. MA6Qs
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "বিস্তৃত সেউজীয়া"
#. Pt24U
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "বিস্তৃত সুমথীৰা"
#. 37T3A
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "বিস্তৃত ৰঙা"
#. gLwZp
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "বিস্তৃত টাৰকুইচ"
#. gka9C
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "বিস্তৃত বেঙুনীয়া"
#. BaGs9
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "উলম্ব"
#. DqGbG
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "উলম্ব নীলা"
#. FCa2X
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "উলম্ব সেউজীয়া"
#. BNSiE
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "উলম্ব সুমথীৰা"
#. DfiaF
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "উলম্ব ৰঙা"
#. 4htXp
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "উলম্ব টাৰকুইচ"
#. FVCCq
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "উলম্ব বেঙুনীয়া"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:770
+#: include/svx/strings.hrc:771
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "ধূসৰ গ্ৰেডিএন্ট"
#. CDxDN
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "হালধীয়া গ্ৰেডিএন্ট"
#. amMze
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "সূমথীৰা গ্ৰেডিএন্ট"
#. bodAW
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "ৰঙা গ্ৰেডিএন্ট"
#. Zn2x3
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "গোলপীয়া গ্ৰেডিএন্ট"
#. xXMfH
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "আকাশ"
#. RYfTi
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "চিয়ান গ্ৰেডিএন্ট"
#. jAu7g
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "নীলা গ্ৰেডিএন্ট"
#. idyKS
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "বেঙুনীয়া পাইপ"
#. fFZia
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "ৰাতি"
#. 4ECED
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "সেউজীয়া গ্ৰেডিএন্ট"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:782
+#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:798
+#: include/svx/strings.hrc:799
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "ৰিক্ত"
#. Q4jUs
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr ""
#. mQCXG
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr ""
#. Co6U3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "বিটমেপলৈ"
#. KFEX5
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
#, fuzzy
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "শতাংশ"
#. AAn36
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
#. NLTbt
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
#. vx2XC
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
#. weQqs
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
#. CAdAS
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
#. 5T5vP
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
#. aNdJE
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
#. 3vD8U
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
#. UJmCD
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
#. i9RCR
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
#. 2oEkC
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
#. a3yZ5
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
#, fuzzy
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "অনুভূমিক এঢলীয়া কৰক"
#. daP9i
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
#. JD5FJ
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
#. eB4wk
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
#. MeoCx
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
#, fuzzy
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "অনুভূমিক এঢলীয়া কৰক"
#. gAqnG
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
#. DGB5k
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
#. JC7je
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
#. iFiBq
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
#. gWDnG
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
#. vbh6h
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
#. XFemm
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "তৰংগ"
#. icCPR
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
#. 8CqPG
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
#, fuzzy
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "অনুভূমিক ৰেখা"
#. GFUZF
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
#, fuzzy
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "তৰংগ"
#. bp9ZY
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
#, fuzzy
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "সৰল"
#. ZrVMS
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
#. tFas9
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
#, fuzzy
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "একক"
#. jD9er
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "গোলক"
#. Ds8Ae
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
#. a33Ci
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
#. BCSZY
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
#. RNNkR
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "উলম্ব"
#. ED3Ga
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. ENYtZ
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
#. mbjPX
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
#. TxAfM
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "ক্রছ"
#. 4mGJX
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
#. J4CJa
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. tHgFv
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH2"
msgid "Dot (Rounded)"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. qqS4v
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH20"
msgid "Dash Dot"
msgstr ""
#. 5ZGZy
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH21"
msgid "Long Dot (Rounded)"
msgstr ""
#. Ac2F2
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH22"
msgid "Dash Dot Dot"
msgstr ""
#. mWMXG
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_DASH23"
msgid "Dash (Rounded)"
msgstr ""
#. B6fd2
-#: include/svx/strings.hrc:931
+#: include/svx/strings.hrc:932
msgctxt "RID_SVXSTR_DASH24"
msgid "Long Dash (Rounded)"
msgstr ""
#. ds2VE
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_DASH25"
msgid "Double Dash (Rounded)"
msgstr ""
#. qtCkm
-#: include/svx/strings.hrc:933
+#: include/svx/strings.hrc:934
msgctxt "RID_SVXSTR_DASH26"
msgid "Dash Dot (Rounded)"
msgstr ""
#. psNix
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_DASH27"
msgid "Long Dash Dot (Rounded)"
msgstr ""
#. FWkBJ
-#: include/svx/strings.hrc:935
+#: include/svx/strings.hrc:936
msgctxt "RID_SVXSTR_DASH28"
msgid "Double Dash Dot (Rounded)"
msgstr ""
#. eiCNz
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_DASH29"
msgid "Dash Dot Dot (Rounded)"
msgstr ""
#. BbE5B
-#: include/svx/strings.hrc:937
+#: include/svx/strings.hrc:938
msgctxt "RID_SVXSTR_DASH30"
msgid "Double Dash Dot Dot (Rounded)"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:939
+#: include/svx/strings.hrc:940
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr ""
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:941
+#: include/svx/strings.hrc:942
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:943
+#: include/svx/strings.hrc:944
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "বৰ্গ 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:945
+#: include/svx/strings.hrc:946
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:947
+#: include/svx/strings.hrc:948
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr ""
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:949
+#: include/svx/strings.hrc:950
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "দ্বৈত কাঁড়"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:951
+#: include/svx/strings.hrc:952
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:953
+#: include/svx/strings.hrc:954
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:955
+#: include/svx/strings.hrc:956
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:957
+#: include/svx/strings.hrc:958
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr ""
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:959
+#: include/svx/strings.hrc:960
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "বৃত্ত"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:961
+#: include/svx/strings.hrc:962
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "বৰ্গক্ষেত্ৰ বেভেল"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:963
+#: include/svx/strings.hrc:964
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "কাঁড়"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:965
+#: include/svx/strings.hrc:966
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:967
+#: include/svx/strings.hrc:968
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "অপূৰ্ণ ত্ৰিভুজ"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:969
+#: include/svx/strings.hrc:970
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "অপূৰ্ণ হিৰক"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:971
+#: include/svx/strings.hrc:972
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "হীৰা"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:973
+#: include/svx/strings.hrc:974
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "অপূৰ্ণ বৃত্ত"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:975
+#: include/svx/strings.hrc:976
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "অপূৰ্ণ বৰ্গ 45"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:977
+#: include/svx/strings.hrc:978
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "অপূৰ্ণ বৰ্গ"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:979
+#: include/svx/strings.hrc:980
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:981
+#: include/svx/strings.hrc:982
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:983
+#: include/svx/strings.hrc:984
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:985
+#: include/svx/strings.hrc:986
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:987
+#: include/svx/strings.hrc:988
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:989
+#: include/svx/strings.hrc:990
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:991
+#: include/svx/strings.hrc:992
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:993
+#: include/svx/strings.hrc:994
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1003
+#: include/svx/strings.hrc:1004
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. hGytB
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "গম্ভীৰ স্বৰাঘাত"
#. opj2M
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "জটিল স্বৰাঘাত"
#. tC5jE
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "গম্ভীৰ স্বৰাঘাত"
#. 3T9pJ
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "জামুকলীয়া"
#. N5FWG
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr ""
#. Nhtbq
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr ""
#. apBBr
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "গেলেৰীৰ বিষয়বস্তু"
#. BseGn
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "সফলভাৱে পুনৰুদ্ধাৰ হ'ল"
#. LfjDh
-#: include/svx/strings.hrc:1015
+#: include/svx/strings.hrc:1016
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "মূল দস্তাবেজ পুনৰুদ্ধাৰ হ'ল"
#. BEAbm
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "পুনৰুদ্ধাৰ অসফল হ'ল"
#. 5ye7z
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "পুনৰুদ্ধাৰ চলি আছে"
#. tEbUT
-#: include/svx/strings.hrc:1018
+#: include/svx/strings.hrc:1019
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "এতিয়ালৈকে পুনৰুদ্ধাৰ হোৱা নাই"
#. EaAMF
-#: include/svx/strings.hrc:1019
+#: include/svx/strings.hrc:1020
#, fuzzy
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION এ আপোনাৰ আলেখ্যন উদ্ধাৰ কৰিব। আলেখ্যনৰ আকাৰ ওপৰত নিৰ্ভৰ কৰি সময় লাগিব।"
#. AicJe
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
#, fuzzy
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
@@ -5737,518 +5743,518 @@ msgstr ""
"আপোনাৰ আলেখ্যন চাবলৈ 'শেষ' টিপক।"
#. ZbeCG
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "সমাপ্ত (~F)"
#. BBeKk
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
#, fuzzy
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "সৰ্বশেষ স্বনিৰ্বাচিত মানবোৰ"
#. mENBU
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "pt"
#. fRyqX
-#: include/svx/strings.hrc:1025
+#: include/svx/strings.hrc:1026
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr ""
#. xXhtG
-#: include/svx/strings.hrc:1026
+#: include/svx/strings.hrc:1027
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr ""
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "বস্তু(বোৰ) ভৰাওক"
#. Heqmn
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "3D বস্তু আৱৰ্তন কৰক"
#. AC56T
-#: include/svx/strings.hrc:1031
+#: include/svx/strings.hrc:1032
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "নিঃসাৰিত বস্তু সৃষ্টি কৰক"
#. 4DonY
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "আৱর্তমান বস্তু সৃষ্টি কৰক"
#. EL9V9
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "3D বস্তুৰ বিভাজন কৰক"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[All]"
#. RZVDm
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "গ্রাফিক্স ফিল্টাৰ"
#. YNjeD
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "নতুন বিষয়বস্তু"
#. 5uYha
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "3D প্রভাৱসমূহ"
#. 78DGx
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "এনিমেশ্বনবোৰ"
#. zGEez
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "বুলেটবোৰ"
#. MwX9z
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "অফিচ"
#. dAwiC
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "পতাকাবোৰ"
#. Ccn8V
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "ফ্ল ছার্টবোৰ"
#. 6ouMS
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "ইমোটিকনবোৰ"
#. 8GPFu
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
#, fuzzy
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "ছবিসমূহ"
#. sqh2w
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "পৃষ্ঠভূমিবোৰ"
#. B3KuT
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "হ'মপেজ"
#. WR8JQ
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "ইন্টাৰেকশ্বন"
#. EbEZ6
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "মেপবোৰ"
#. GALA8
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "মানুহ"
#. ZMoiA
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "পৃষ্ঠবোৰ"
#. hNaiH
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "কম্পিউটাৰ"
#. mrvvG
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "চিত্ৰসমূহ"
#. HhrDx
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "পৰিৱেশ"
#. 2jVzE
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "বিত্ত"
#. cmF3B
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "পৰিবহন"
#. as3XM
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "লিখনীআকৃতিসমূহ"
#. gGyFP
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "ধ্বনিবোৰ"
#. 5NrPj
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "প্ৰতীকবোৰ"
#. AiXUK
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "মোৰ বিষয়বস্তু"
#. uRxP4
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "কাঁড়বোৰ"
#. c3WXh
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "বেলুনবোৰ"
#. pmiE7
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "কীবর্ড"
#. LYdAf
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "সময়"
#. 4UGrY
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "উপস্থাপন"
#. a46Xm
-#: include/svx/strings.hrc:1069
+#: include/svx/strings.hrc:1070
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "কেলেণ্ডাৰ"
#. YpuGv
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "নেভিগেশ্বন"
#. gAJH4
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "যোগাযোগ"
#. ETEJu
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "বিত্তবোৰ"
#. rNez6
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "কম্পিউটাৰ"
#. ioX7y
-#: include/svx/strings.hrc:1074
+#: include/svx/strings.hrc:1075
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "জলবায়ু"
#. MmYFp
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "বিদ্যালয় আৰু বিশ্ববিদ্যালয়"
#. EKFgg
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "সমস্যা সমাধান কৰা"
#. GgrBp
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "পর্দা বীনবোৰ"
#. E6onK
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "মুদ্ৰণৰ বাছনী"
#. HzX9m
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "আপুনি নিৰ্বাচনটো বা সম্পূৰ্ণ দস্তাবেজটো মুদ্ৰণ কৰিবলৈ বিচাৰেনেকি?"
#. 3UyC8
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "সকলো (~A)"
#. UxfS3
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "নিৰ্বাচন (~S)"
#. KTgDd
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "নিঃসাৰিত উত্তৰ-পশ্চিম"
#. N6KLd
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "নিঃসাৰিত উত্তৰ"
#. AB6Vj
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "নিঃসাৰিত উত্তৰ-পূব"
#. NBBEB
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "নিঃসাৰিত পশ্চিম"
#. d9n5U
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "নিঃসাৰিত পিছফালে"
#. A2mcf
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "নিঃসাৰিত পূব"
#. onGib
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "নিঃসাৰিত দক্ষিণ-পশ্চিম"
#. XLQFD
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "নিঃসাৰিত দক্ষিণ"
#. v5wRm
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "নিঃসাৰিত দক্ষিণ-পূব"
#. 4DGjm
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "0 ছে.মি. (~0)"
#. kRzVE
-#: include/svx/strings.hrc:1094
+#: include/svx/strings.hrc:1095
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "1 ছে.মি. (~1)"
#. CSmTh
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "2.5 ছে.মি. (~2.5)"
#. eYrvo
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "5 ছে.মি. (~5)"
#. G4Ckx
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ছে.মি. (~c)"
#. LGHsL
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 ইঞ্চি"
#. HPevm
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0.5 ইঞ্চি (~5)"
#. GvKjC
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "1 ইঞ্চি (~1)"
#. gmzHb
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "2 ইঞ্চি (~2)"
#. DE5kt
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "4 ইঞ্চি (~4)"
#. K5dY9
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
#, fuzzy
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "পূর্ণ কৰা নাই"
#. TFBK3
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
#, fuzzy
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "স্বচ্ছতা"
#. c7adj
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "অবিকল্পিত"
#. djHis
-#: include/svx/strings.hrc:1107
+#: include/svx/strings.hrc:1108
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. PURr6
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "সীমাৰেখাৰ শৈলী"
#. 9Ckww
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
#, fuzzy
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "ৰেখাৰ নাম্বাৰীং (~L)..."
#. cDG4s
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr ""
#. uDT6G
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr ""
#. q2Le9
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "পৃষ্ঠাবোৰ"
#. jfL9n
-#: include/svx/strings.hrc:1113
+#: include/svx/strings.hrc:1114
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "ফৰমেটিং পৰিষ্কাৰ কৰক"
#. f6nP8
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr ""
#. DPbrc
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
#, fuzzy
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
@@ -6256,496 +6262,496 @@ msgstr "অধিক বিকল্প"
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "ফন্টৰ নাম"
#. SKCYy
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "ফন্ট নাম। বৰ্তমান ফন্ট উপলব্ধ নাই আৰু ইয়াৰ পৰিৱৰ্তে অন্য এটা দিয়া হব।"
#. CVvXU
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "স্বনিৰ্বাচিত"
#. xqzJj
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr ""
#. aVTAG
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_THEME_COLORS"
msgid "Theme colors"
msgstr ""
#. 6BoWp
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr ""
#. D6gmu
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_THEME_COLOR1"
msgid "Background - Dark 1"
msgstr ""
#. JBJhM
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_THEME_COLOR2"
msgid "Text - Light 1"
msgstr ""
#. C7MSY
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_THEME_COLOR3"
msgid "Background - Dark 2"
msgstr ""
#. YdMAB
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_THEME_COLOR4"
msgid "Text - Light 2"
msgstr ""
#. NAAZJ
-#: include/svx/strings.hrc:1127
+#: include/svx/strings.hrc:1128
msgctxt "RID_SVXSTR_THEME_COLOR5"
msgid "Accent 1"
msgstr ""
#. 6txaB
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXSTR_THEME_COLOR6"
msgid "Accent 2"
msgstr ""
#. fECsk
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXSTR_THEME_COLOR7"
msgid "Accent 3"
msgstr ""
#. 4DH3P
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXSTR_THEME_COLOR8"
msgid "Accent 4"
msgstr ""
#. dUUDX
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXSTR_THEME_COLOR9"
msgid "Accent 5"
msgstr ""
#. 73ZEk
-#: include/svx/strings.hrc:1132
+#: include/svx/strings.hrc:1133
msgctxt "RID_SVXSTR_THEME_COLOR10"
msgid "Accent 6"
msgstr ""
#. VKjfB
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVXSTR_THEME_COLOR11"
msgid "Hyperlink"
msgstr ""
#. DBfXC
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_THEME_COLOR12"
msgid "Followed Hyperlink"
msgstr ""
#. sNGoN
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_THEME_EFFECT1"
msgid "%1, 80% Lighter"
msgstr ""
#. uQBgP
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_THEME_EFFECT2"
msgid "%1, 60% Lighter"
msgstr ""
#. sEpvU
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_THEME_EFFECT3"
msgid "%1, 40% Lighter"
msgstr ""
#. XSfNG
-#: include/svx/strings.hrc:1138
+#: include/svx/strings.hrc:1139
msgctxt "RID_SVXSTR_THEME_EFFECT4"
msgid "%1, 25% Darker"
msgstr ""
#. 3xjEA
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_THEME_EFFECT5"
msgid "%1, 50% Darker"
msgstr ""
#. DJGyY
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "নিঃসৰণ"
#. TyWTi
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "নিঃসৰণৰ অন/অফ প্ৰয়োগ কৰক"
#. DKFYE
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "তললৈ হেলনীয়া কৰক"
#. 2Rrxc
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "ওপৰলৈ হেলনীয়া কৰক"
#. eDpJK
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "বাঁওফালে হেলনীয়া কৰক"
#. CWDSN
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "সোঁফালে হেলনীয়া কৰক"
#. CxYgt
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "নিঃসৰণৰ গভীৰতা সলনি কৰক"
#. c5JCp
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "অনুস্থাপন সলনি কৰক"
#. KDSyh
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "প্ৰক্ষেপণৰ প্রকাৰ সলনি কৰক"
#. JpzeS
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "লাইটিং সলনি কৰক"
#. j4AR9
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "উজ্জ্বলতা সলনি কৰক"
#. yA2xm
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "নিঃসৰণৰ উপৰিভাগ সলনি কৰক"
#. DFEZP
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "নিঃসৰণৰ ৰং সলনি কৰক"
#. uPyWe
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "ফন্টৱর্ক"
#. 7RVov
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "ফন্টৱর্কৰ আকৃতি প্ৰয়োগ কৰক"
#. h3CLw
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "ফন্টৱর্কৰ একে আখৰৰ উচ্চতা প্ৰয়োগ কৰক"
#. 6h2dG
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "ফন্টৱর্ক শাৰীকৰণ প্ৰয়োগ কৰক"
#. eKHcV
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "ফন্টৱর্ক আখৰৰ স্পেচিং প্ৰয়োগ কৰক"
#. oo88Y
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "সৈতে"
#. 4sz83
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "শৈলী"
#. fEHXC
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "আৰু"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "চুক নিয়ন্ত্ৰণ"
#. CUEEW
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "এটা চুক পইণ্টৰ নিৰ্বাচন."
#. cQmVp
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "বাওঁফালে ওপৰৰ"
#. TtnJn
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "মাজভাগৰ ওপৰত"
#. UERVC
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "সোঁফালৰ ওপৰত"
#. CznfN
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "বাওঁফালৰ কেন্দ্ৰ"
#. jvzC7
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. HPtYD
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "সোঁফালৰ কেন্দ্ৰ"
#. v4SqB
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "বাঁওফালে তলত"
#. daA8a
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "মাজভাগৰ তলত"
#. DGWf8
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "সোঁফালে তলত"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "ৰূপৰেখা নিয়ন্ত্ৰণ"
#. aMva8
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "এইখিনিতেই আপুনি ৰূপৰেখা সম্পাদনা কৰিব পাৰিব."
#. DXEuF
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "বিশেষ আখৰ নিৰ্বাচন"
#. JfRzP
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "এই এৰিয়াটোত বিশেষ আখৰ নিৰ্বাচন কৰক."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "আখৰৰ ক'ড "
#. HECeC
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "'#' ফিল্ডত ইনপুটৰ প্ৰয়োজন. অনুগ্ৰহ কৰি মূল্য ভৰাওক."
#. w4wm8
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "ফর্মবোৰ"
#. cz8aS
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "কোনো নিয়ন্ত্ৰণ নিৰ্বাচন কৰা নাই"
#. JG7Es
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "বৈশিষ্ট্যবোৰ: "
#. YQvBF
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "ফর্ম বৈশিষ্ট্যবোৰ"
#. qS9Rn
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "ফৰ্ম নেভিগেটৰ"
#. PzEVD
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "ফৰ্ম"
#. FWPxF
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr ""
#. DnoDH
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "ফৰ্ম"
#. Ba4Gy
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "লুকোৱাই থোৱা নিয়ন্ত্রণ"
#. wtZqP
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "নিয়ন্ত্রণ"
#. HvXRK
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "ৰেকৰ্ড"
#. HmTfB
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "ৰ"
#. NZ68L
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "ফিল্ড যোগ কৰক:"
#. vGXiw
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "ডাটাবেছলৈ ডাটা লিখোতে ভুল"
#. zzFRi
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "প্ৰশ্ন প্ৰকাশ-ভংগীত ছিন্টেক্স ভুল"
#. fS8JJ
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "আপুনি 1 ৰেকৰ্ড ডিলিট কৰিব বিচাৰে."
#. Qb4Gk
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# ৰেকৰ্ডবোৰ ডিল্ট কৰা হ'ব."
#. zSJQe
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6755,337 +6761,337 @@ msgstr ""
"আপুনি তথাপিA অব্যাহত ৰাখিবলৈ বিচাৰেনেকি?"
#. Kb7sF
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "নেভিগেশ্বন বাৰ"
#. pKEQb
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "স্তম্ভ"
#. FXRKA
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "'#' বৈশিষ্ট্যবোৰ ছেট কৰক"
#. hXjTN
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "ধাৰকত ভৰাওক"
#. BWpyC
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "# মচি পেলাওক"
#. ZeaDk
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "# বস্তুবোৰ মচি পেলাওক"
#. VgGrE
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1214
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "এটা ধাৰক উপাদান প্ৰতিস্থাপন কৰক"
#. FoXgt
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "নিয়ন্ত্ৰণ প্ৰতিস্থাপন কৰক"
#. ZGDAr
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "টেক্সটৰ বাকছ"
#. CBmAL
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "পৰীক্ষা বাকছ"
#. xwuJF
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "কোম্বো বাকছ"
#. WiNUf
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "তালিকা বাকছ"
#. a7gAj
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "তাৰিখ ফিল্ড"
#. EaBTj
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "সময় ফিল্ড"
#. DWfsm
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "সংখ্যা ফিল্ড"
#. TYjnr
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "মুদ্রা ফিল্ড"
#. B6MEP
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "আৰ্হি ফিল্ড"
#. DEn9D
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "ফৰমেট কৰি থোৱা ফিল্ড"
#. V4iMu
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "পুশ্ব বাটন"
#. TreFC
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "বিকল্প বাটন"
#. NFysA
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "লেবেল ফিল্ড"
#. E5mMK
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "গোট বাকছ"
#. 5474w
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "ছবি বাটন"
#. qT2Ed
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "ছবি নিয়ন্ত্ৰণ"
#. 6Qvho
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "ফাইল নির্বাচন"
#. uEYBR
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "টেবুল নিয়ন্ত্ৰণ "
#. 3SUEn
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "স্ক্ৰ'ল বাৰ"
#. VtEN6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "স্পিন বাটন"
#. eGgm4
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "নেভিগেশ্বন বাৰ"
#. yME46
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "বহু অংশবিশিষ্ট নির্বাচন"
#. s94UU
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr ""
#. PzA5d
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "কোনো ডাটা সম্বন্ধীয় নিয়ন্ত্ৰণবোৰ বৰ্তমানৰ ফৰ্মত নাই!"
#. ZyBEz
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Date)"
#. guA5u
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Time)"
#. 2wgdY
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "ফিল্টাৰ নেভিগেটৰ"
#. BUYuD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "ৰ বাবে ফিল্টাৰ"
#. AcTBB
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "অথবা"
#. 6RPtu
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "বৈধ বাউণ্ড নিয়ন্ত্ৰণবোৰ যিবোৰ এই টেবুলৰ দৃশ্যত ব্যৱহাৰ কৰিব পাৰি বৰ্তমানৰ ফৰ্মত সেইবোৰ বৰ্তি থকা নাই."
#. iEoGb
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<AutoField>"
#. Da6gx
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "SQL বিবৃতিত ছিন্টেক্স ভুল"
#. ZoEuu
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "#1 মানৰ সৈতে LIKE ব্যৱহাৰ কৰিব নোৱাৰি."
#. 75ECE
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "এই ফিল্ডখনৰ সৈতে LIKE ব্যৱহাৰ কৰিব নোৱাৰি."
#. tzFv5
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "এন্টাৰ কৰা মূল্যটো বৈধ তাৰিখ নহয়. অনুগ্ৰহ কৰি বৈধ ফৰমেটত তাৰিখ এন্টাৰ কৰক, উদাহৰণ স্বৰূপে, MM/DD/YY."
#. y6Z26
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "ফিল্ডখন এটা অখণ্ড সংখ্যাৰ সৈতে তুলনা কৰিব নোৱাৰি."
#. F8FgA
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "ডাটাবেছত \"#\" নামৰ টেবুল নাই।"
#. EDcU7
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "ডাটাবেছত \"#\" নামৰ টেবুল বা প্ৰশ্ন নাই।"
#. YBFF5
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "ডাটাবেছত \"#\" নামৰ টেবুল বা প্ৰশ্ন ইতিমধ্যে আছে।"
#. cECTG
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "ডাটাবেছত \"#\" নামৰ প্ৰশ্ন নাই।"
#. VkeLY
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "টেবুল \"#2\" ত স্তম্ভ \"#1\" অজ্ঞাত।"
#. z9bf9
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "ফিল্ডখন এটা ফ্লটিং বিন্দু সংখ্যাৰ সৈতে তুলনা কৰিব নোৱাৰি।"
#. CEg85
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "প্ৰৱেশ কৰা নির্ণায়কটো এই ফিল্ডখনৰ সৈতে তুলনা কৰিব নোৱাৰি."
#. ZGAAQ
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "ডাটা নেভিগেটৰ"
#. W4uM2
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (কেৱল পঢ়িবৰ বাবে)"
#. DgfNh
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "এই ফাইলটো ইতিমধ্যে আছে. পুনৰ লিখিবলৈ বিচাৰেনেকি?"
#. dSYCi
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object# লেবেল"
#. JpaM6
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
@@ -7096,7 +7102,7 @@ msgstr ""
"আপুনি সঁচাকৈয়ে এই আৰ্হিটো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. y5Dyt
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
@@ -7107,7 +7113,7 @@ msgstr ""
"আপুনি সঁচাকৈয়ে এই উদাহৰণটো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. VEzGF
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
@@ -7118,13 +7124,13 @@ msgstr ""
"আপুনি সঁচাকৈয়ে এই উপাদানটো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. 3hF6H
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "আপুনি সঁচাকৈয়ে এট্ৰিবিয়ুট '$ATTRIBUTENAME' টো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. AWEbJ
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
@@ -7137,7 +7143,7 @@ msgstr ""
"আপুনি সঁচাকৈয়ে এই সমৰ্পণটো ডিলিট কৰিবলৈ বিচাৰেনেকি?"
#. SGiK5
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
@@ -7150,1027 +7156,1027 @@ msgstr ""
"আপুনি সচাকৈয়ে এই বাইন্ডিংটো ডিলিট কৰিব বিচাৰে নেকি?"
#. 2zzHP
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "'%1' নামটো XML ত বৈধ নহয়. অনুগ্ৰহ কৰি আন এটা নাম ভৰাওক।"
#. 4nAtc
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "'%1' উপসৰ্গটো XML ত বৈধ নহয়। অনুগ্ৰহ কৰি আন এটা উপসৰ্গ ভৰাওক।"
#. qrFQD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "'%1' নামটো ইতিমধ্যে আছে। অনুগ্ৰহ কৰি আন এটা নাম ভৰাওক।"
#. DKkaw
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "সমৰ্পণটোৰ এটা নাম থকাটো অপৰিহাৰ্য."
#. xcAaD
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
#, fuzzy
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "পোষ্ট"
#. XGRQA
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr ""
#. tkRR3
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
#, fuzzy
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "পোৱা"
#. fsyAL
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "কোনো নহয়"
#. Bjxmg
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
#, fuzzy
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "উদাহৰণবোৰ (~I)"
#. affmF
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
#, fuzzy
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "দস্তাবেজ"
#. gJLHj
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "বাইন্ডিং: "
#. AEHco
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "প্ৰসংগ: "
#. iLaBC
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "কার্য্য: "
#. HBV5Q
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "পদ্ধতি: "
#. dAN2F
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "প্ৰতিস্থাপন কৰক: "
#. QMiqA
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "উপাদান যোগ কৰক"
#. C9YBB
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "উপাদান সম্পাদনা কৰক"
#. XAh7B
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "উপাদান মচি পেলাওক"
#. CLHER
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "এট্ৰিবিয়ুট"
#. 6Ycoo
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "এট্রিবিয়ুট সম্পাদনা কৰক"
#. 6dSAd
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "এট্ৰিবিয়ুট মচি পেলাওক"
#. Ljhja
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "বাইন্ডিং যোগ কৰক"
#. CHTrw
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "বাইন্ডিং সম্পাদনা কৰক"
#. yYwEG
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "বাইন্ডিং মচি পেলাওক"
#. yVch8
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "সমৰ্পণ যোগ কৰক"
#. AX58u
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "সমৰ্পণ সম্পাদনা কৰক"
#. DFxmD
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "সমৰ্পণ মচি পেলাওক"
#. qvvD7
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
#, fuzzy
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "উপাদান"
#. U4Btb
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
#, fuzzy
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "এট্রিবিয়ুটবোৰ"
#. Prceg
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1303
#, fuzzy
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "বাইণ্ডিংবোৰ"
#. iFARB
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "বাইণ্ডিং অভিব্যক্তি"
#. BTmNa
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
#, fuzzy
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "আপুনি নিশ্চিতনে যে আপুনি %PRODUCTNAME দস্তাবেজৰ উদ্ধাৰটো বাতিল কৰিবলৈ বিচাৰে?"
#. 5WjQZ
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "বাওঁফাল"
#. JC7pc
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "সোঁফাল"
#. MhfuC
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. kX7GR
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "দশমিক"
#. 7vecp
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "পুনৰ লিখক"
#. qqCSF
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr ""
#. 2BBEb
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "ডিজিটেল চহি: দস্তাবেজৰ চহি OK."
#. xZprv
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "ডিজিটেল চহি: দস্তাবেজৰ চহি OK, কিন্তু প্ৰমাণপত্ৰ পৰীক্ষা কৰিব পৰা ন'গ'ল।"
#. Yydkh
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "ডিজিটেল চহি: দস্তাবেজৰ চহি নাই।"
#. BRmFY
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "যুগ্মক স্বাক্ষৰ: দস্তাবেজ স্বাক্ষৰ আৰু প্ৰমাণপত্ৰ ঠিক আছে, কিন্তু দস্তাবেজৰ সকলো অংশ স্বাক্ষৰীত নহয়।"
#. Swq5S
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
#, fuzzy
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "দস্তাবেজ সলনি কৰা হৈছে। দস্তাবেজ সংৰক্ষণ কৰিবলে দুবাৰ-ক্লিক কৰক।"
#. tRWKa
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "সৰ্বশেষ সংৰক্ষণৰ পিছত দস্তাবেজটো সলনি কৰা হোৱা নাই।"
#. 7C8GH
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "দস্তাবেজ ল'ড কৰা হৈ আছে..."
#. YbNsP
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "সৰুকৈ জুম কৰক"
#. 2YBJE
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "ডাঙৰকৈ জুম কৰক"
#. n9EyG
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr ""
#. vNTaU
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "সম্পূর্ণ পৃষ্ঠা"
#. 2UBAF
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "পৃষ্ঠাৰ প্রস্থ"
#. YBg9X
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
#, fuzzy
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "উত্তম দৰ্শন"
#. Wi5Fy
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "শৈলীবোৰ অন্তর্ভুক্ত কৰি"
#. BJSzf
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
#, fuzzy
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "পেৰেগ্ৰাফ শৈলীবোৰ"
#. ARuQM
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
#, fuzzy
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "শৈলীবোৰ"
#. 7ChAu
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
#. CVSwo
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
#. Diftw
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "সন্ধান কৰা চাবি পোৱা ন'গ'ল"
#. xACuY
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr ""
#. CGo5w
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
#. nDCC4
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "ৰঙৰ পেলেট"
#. sDL47
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1362
#, fuzzy
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "অকার্যকৰী পাছৱর্ড"
#. JGJ9F
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr ""
#. VHTRb
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Solid small circular bullets"
#. AiNrB
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Solid large circular bullets"
#. Vtk8J
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Solid diamond bullets"
#. bQFBw
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Solid large square bullets"
#. 5eJDd
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Right pointing arrow bullets filled out"
#. D8zQC
-#: include/svx/strings.hrc:1369
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Right pointing arrow bullets"
#. QCULV
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
#, fuzzy
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Number (1) (2) (3)"
#. P2aKH
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Number 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Number (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Uppercase Roman number I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Uppercase letter A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Lowercase letter a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1379
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Lowercase letter (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1380
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Lowercase Roman number i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numeric, numeric, lowercase letters, solid small circular bullet"
#. m56fN
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Numeric, lowercase letters, solid small circular bullet"
#. RyTLW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
#. GAfTp
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Numeric"
#. gjEgN
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
#. DZ2kE
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
#. TV9Mc
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numeric with all sublevels"
#. tiXu5
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
#. nEJiF
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1390
#, fuzzy
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "ফাইল স্থাপন কৰিব পৰা নগ'ল."
#. CC6Sw
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "টেবুল ডিজাইনৰ ধৰন"
#. c69eB
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "পূৰ্ব নিৰ্দেশ বাতিল কৰক: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "পূৰ্ব নিৰ্দেশ বাতিল কৰক: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "পুনৰ কৰক:$(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "পুনৰ কৰক:$(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "বিচাৰক"
#. WbEFL
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "ফলা মিলাওক"
#. 59ENV
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
#. JEkzY
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1404
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(DPI) DPI ত $(WIDTH) x $(HEIGHT)"
#. n8VBe
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) kiB"
#. Xgeqc
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
#. G2q7M
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
#. oGKBg
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1409
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr ""
#. Fkrjs
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr ""
#. VWyEb
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr ""
#. pCpoE
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr ""
#. DELaB
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1413
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr ""
#. 3AZAG
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr ""
#. aCEJW
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr ""
#. NBoWH
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "অজ্ঞাত"
#. 8LBFX
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "চুইচ"
#. xLF42
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr ""
#. fw5hA
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "ৰঙা"
#. CiQvY
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "সেউজীয়া"
#. BhvBe
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "নীলা"
#. HSP36
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "উজ্জ্বলতা"
#. w5BYP
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "পার্থক্য"
#. EZUjS
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "গামা"
#. ernMB
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. LdkNB
-#: include/svx/strings.hrc:1428
+#: include/svx/strings.hrc:1429
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "ক্রপ"
#. TJmBu
-#: include/svx/strings.hrc:1430
+#: include/svx/strings.hrc:1431
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "অবিকল্পিত অনুস্থাপন"
#. WQqju
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "ওপৰৰ পৰা তললৈ"
#. ipfz6
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "তলৰ পৰা ওপৰলৈ"
#. MLR44
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "দ'ম কৰা হল"
#. vUDeh
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "বাওঁফালৰ সীমা: "
#. EFBbE
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "ওপৰৰ সীমা: "
#. 7HeyP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "সোঁফালৰ সীমা: "
#. HCuWQ
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "তলৰ সীমা: "
#. zD9BB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "পৃষ্ঠা বিৱৰণ: "
#. a4eSJ
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "বৰফলা আখৰবোৰ"
#. DuQGP
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1441
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "তলৰ কেছ"
#. nWQ7R
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "ওপৰৰ কেছ ৰোমান"
#. PxkPZ
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "তলৰ কেছ ৰোমান"
#. B7YEa
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "আৰবী"
#. vPbGB
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "কোনো নহয়"
#. akGGo
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "নৈসর্গিক দৃশ্য"
#. bbcaZ
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "প্ৰতিকৃতি"
#. BQtGg
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "বাওঁফাল"
#. JWFLj
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "সোঁফাল"
#. bxvGx
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "সকলো"
#. S3nm4
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "প্রতিফলিত"
#. dcvEJ
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "লেখক: "
#. 2siC9
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "তাৰিখ: "
#. pWoLe
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "টেক্সট: "
#. pAABc
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "আখৰৰ পৃষ্ঠভূমি"
#. Deknh
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "ৰঙৰ পেলেট"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8178,2131 +8184,2131 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "প্ৰাথমিক লেটিন"
#. bcjRA
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "লেটিন-1"
#. h6THj
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "বিস্তৃত লেটিন-A"
#. o4EF9
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "বিস্তৃত লেটিন-B"
#. W3CGs
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA প্ৰসাৰণবোৰ"
#. yZjF6
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "ৰূপান্তৰকাৰী আখৰবোৰৰ ব্যৱধান দি আছে"
#. EASZR
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "ডায়েক্রিটিকেল মার্কবোৰ সংযোগ কৰি"
#. wBjC4
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "প্রাথমিক গ্রীক"
#. Dh8Es
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "গ্ৰীক প্ৰতীক আৰু কোপ্তিক"
#. jGT5E
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "ছিৰিলিক"
#. DQgLS
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "আৰ্মেনিয়ান"
#. kXEQY
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "প্রাথমিক হিব্রু"
#. Cb8g4
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "হিব্রু বিস্তৃত"
#. ZmDCd
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "প্রাথমিক আৰবী"
#. hZDFV
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "আৰবী বিস্তৃত"
#. c3CqD
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "দেবনাগৰী"
#. EfVnG
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "বাংলা"
#. iWzLc
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "গুৰমুখী"
#. omacG
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "গুজৰাটী"
#. Cdwzw
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "উৰিয়া"
#. BhEGN
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "তামিল"
#. 6YkEo
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "টেলুগু"
#. J5qn4
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "কানাড়া"
#. 4UEFU
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "মালায়ালম"
#. C5yzo
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "থাই"
#. EvjbD
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "লাও"
#. HqFTh
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "প্রাথমিক জর্জীয়ান"
#. npAc8
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "জর্জিয়ান বিস্তৃত"
#. AHAB4
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "হানগল জামো"
#. gMEFL
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "অতিৰিক্ত বিস্তৃত লেটিন"
#. uVYXp
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "বিস্তৃত গ্রীক"
#. LEQg6
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "সাধাৰণ যতি চিহ্ন"
#. D9KFj
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "ছুপাৰ স্ক্ৰিপ্ট আৰু ছাব স্ক্ৰিপ্টবোৰ"
#. yaxYV
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "মুদ্রা প্রতীকবোৰ"
#. jzA5i
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "ডায়েক্রিটিকেল প্রতীকবোৰ সংযোগ কৰি"
#. CHNBZ
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "আখৰৰ দৰে প্রতীকবোৰ"
#. cDkEd
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "সংখ্যা ফর্মবোৰ"
#. j25Fp
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "কাঁড়বোৰ"
#. p5Tbx
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "গাণিতিক অপাৰেটৰবোৰ"
#. ckgof
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "সানমিহলি কাৰিকৰী"
#. 8rXdw
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "চিত্রবোৰ নিয়ন্ত্রণ কৰক"
#. D4J8A
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "অপ্তিকেল আখৰৰ চিনাক্তকৰণ"
#. hXwgf
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "ঘেৰি ধৰা আলফা নিউমাৰিকবোৰ"
#. AD9HJ
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "বক্স ড্ৰয়িং"
#. vViaR
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "ব্লক এলিমেণ্টবোৰ"
#. ok7ks
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "জ্যামিতিক আকাৰবোৰ"
#. sKty5
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "সানমিহলি প্রতীকবোৰ"
#. yDpNT
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "ডিংবেটছ"
#. Cth4P
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "CJK প্ৰতীকবোৰ আৰু উচ্চাৰণ"
#. Bo4iK
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "হিৰাগানা"
#. i2Cdr
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "কটকানা"
#. 9YYLD
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "বোপোমোফো"
#. F9UFG
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "হানগল যোগ্যতা জামো"
#. yeRDE
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK সানমিহলি"
#. kPFs9
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "সংলগ্ন CJK চিঠি আৰু মাহবোৰ"
#. 6tAx6
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "CJK যোগ্যতা"
#. VakXP
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "হানগল"
#. XzS6D
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰ"
#. JVCP5
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰৰ প্ৰসাৰণ A"
#. Y33VK
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "ব্যক্তিগত ব্যৱহাৰৰ স্থান"
#. 8yYiM
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK ৰ যোগ্য আইডিঅ'গ্ৰাফবোৰ"
#. BEfFQ
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "বর্ণমালাক্রমিক প্রস্তুতিৰ ফর্ম"
#. NCsAG
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "আৰবী প্রেজেণ্টেশ্বন ফর্মবোৰ-A"
#. adi8G
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "অর্ধ চিহ্নবোৰ সংযোগ কৰি"
#. vLBhn
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "CJK যোগ্যতা ফর্মবোৰ"
#. i6R3B
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "সৰু ফৰ্মৰ পৃথক ৰূপবোৰ"
#. 7EDCh
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "আৰবী উপস্থাপন ফর্মবোৰ-B"
#. WWoWx
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "অৰ্ধ-প্ৰস্থ আৰু পূৰ্ণ-প্ৰস্থৰ ফৰ্ম"
#. dkDXh
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "বিশেষবোৰ"
#. GQSEx
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Yi বৈশিষ্ট্যসূচক"
#. BL66x
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Yi ৰেডিকেলসমূহ"
#. cuQ2k
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "পুৰনি ইটালিক"
#. wtKAB
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "গথিক"
#. GPFqC
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "ডেচাৰেট"
#. 7AovD
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "বাইজানটিন সংগীতৰ চিহ্ন"
#. G3GQF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "সংগীতৰ চিহ্ন"
#. YzBDD
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "গাণিতিক আল্ফানিউমেৰিক চিহ্নসমূহ"
#. 3XZRw
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK সংযুক্ত প্ৰতিকচিহ্নসমূহ প্ৰসাৰণ B"
#. nZnQc
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK সংযুক্ত প্ৰতিকচিহ্নসমূহ বিস্তাৰন C"
#. HBwZE
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰৰ প্ৰসাৰণ D"
#. TTFkh
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "CJK সংগতা আইডিঅ'গ্ৰাফবোৰ পৰিপূৰক"
#. 2jALB
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "টেগবোৰ"
#. 2iHJN
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "ছিৰিলিক পৰিপূৰক"
#. ABgr9
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "পৰিবৰ্তন নিৰ্বাচনকাৰী"
#. a4q6S
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "পৰিপূৰক ব্যক্তিগত ব্যৱহাৰ স্থান-A"
#. k638K
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "পৰিপূৰক ব্যক্তিগত ব্যৱহাৰ স্থান-B"
#. pKFTg
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "লিম্বু"
#. TJHGp
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "তাই লি"
#. nujxa
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "খমেৰ চিহ্নসমূহ"
#. neD93
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "ধ্বনিতাত্বিক প্ৰসাৰণ"
#. C6LwC
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "বিভিন্ন চিহ্ন আৰু কাঁড়চিহ্ন"
#. giR4r
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "ইজিং হেক্সাগ্ৰাম চিহ্ন"
#. EqFxm
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "ৰৈখিক B ভগ্নশব্দ"
#. VeZNe
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "ৰৈখিক B প্ৰতিকচিহ্নসমূহ"
#. Tvkgh
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "এজিয়ান সংখ্যাবোৰ"
#. CuThH
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "উগাৰিটিক"
#. nBtk5
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "শাভিয়ান"
#. vvMNk
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "ওচমানিয়া"
#. aiySp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "সিংহলা"
#. PEGiu
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "তিব্বতীয়"
#. tRBTP
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "ম্যানমাৰ"
#. 8sgGF
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "খমেৰ"
#. CdXvH
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "ঔঘম"
#. jFWRQ
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "ৰুনিক"
#. jhzoc
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "ছিৰিয়াক্"
#. B66QG
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "থানা"
#. j8cuG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "ইথিয়োপিক"
#. AE5wq
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "চেৰোকী"
#. 9mgNF
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "কানাডিয়ান স্বদেশীয় শব্দাংশ"
#. d5JWE
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "মংগোলীয়"
#. XnzyB
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "সানমিহলি গাণিতিক প্ৰতীকবোৰ-A"
#. R5W9H
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "পৰিপূৰক কাঁড়বোৰ-A"
#. QYf7A
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "ব্ৰেইল নমুনাবোৰ"
#. 63BBg
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "পৰিপূৰক কাঁড়বোৰ-B"
#. ykowm
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "সানমিহলি গাণিতিক প্ৰতীকবোৰ-B"
#. GGdze
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK ৰেডিকেল পৰিপূৰক"
#. WLLAP
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "কেঙচি ৰেডিকেলবোৰ"
#. EyZR2
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "আইডিঅ'গ্ৰাফিক বিৱৰণ আখৰবোৰ"
#. o3AQ6
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "টেগাল'গ"
#. BVieL
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "হানুনো"
#. DwAEz
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "টেগবানৱা"
#. 3GDP5
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "বুহিড"
#. BfGBm
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "কানবুন"
#. cL7Vo
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "বোপোমোফো প্রসাৰিত কৰা হ'ল"
#. MQoBs
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "কাটাকানা ধ্বনি বিজ্ঞান"
#. fCpRM
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "CJK স্ট্ৰোক্চ"
#. zyW2q
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "চিপ্ৰিয়ট ভগ্নশব্দ"
#. GWxb8
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "তাই জুয়ান জিঙ্গ চিহ্নসমূহ"
#. 8ZJmr
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "পৰিবৰ্তন নিৰ্বাচনকাৰী পৰিপূৰক"
#. RR6Er
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "প্ৰাচিন গ্ৰীক সংগীতৰ স্বৰলিপি"
#. K3GsF
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "প্ৰাচিন গ্ৰীক সংখ্যা"
#. y4HCg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "আৰবি পৰিপূৰক"
#. KUnXb
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "বুগিনিচ"
#. zDaXa
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "সংযুক্তকাৰী বৈশিষ্টসূচক চিহ্ন পৰিপূৰক"
#. 9Z24A
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "কপটিক"
#. CANHf
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "ইথিওপিক প্ৰসাৰিত"
#. X8DEc
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "ইথিওপিক পৰিপূৰক"
#. fYpFz
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "জৰ্জিয়ান পৰিপূৰক"
#. 3Gzxx
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "গ্লাগোলিটিক"
#. zKCVG
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "খাৰোশতি"
#. U8zrU
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "পৰিবৰ্তক ধ্বনি আখৰ"
#. B2yF8
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "নতুন তাই লি"
#. J4KdA
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "পুৰনি ফাৰ্চি"
#. eGPjC
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "ধ্বনিতাত্বিক প্ৰসাৰণ পৰিপূৰক"
#. XboFE
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "অতিৰিক্ত যতিচিহ্ন"
#. tBJi3
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "চিলোটি নাগৰি"
#. Qrowh
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "টিফিনাগ"
#. aZKS5
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "উলম্ব বিন্যাস"
#. ihUDF
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "ন'কো"
#. Z3AAi
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "বালিনিছ"
#. 428ER
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "লেটিন প্ৰসাৰিত-C"
#. SqFfT
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "লেটিন প্ৰসাৰিত-D"
#. yMmow
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "ফাগ্চ-পা"
#. V6CsB
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "ফিনিচিয়ান"
#. GNBwz
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "কিউনিফৰ্ম"
#. VBPZE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "কিউনিফৰ্ম সংখ্যা আৰু বিৰাম-চিহ্ন"
#. 9msGJ
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "কাউন্টিং ৰড সংখ্যা"
#. i6Gx9
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "চুণ্ডানিচ"
#. WrXXX
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "লেপচা"
#. FhhAQ
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "ঔ চিকি"
#. eHvUh
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "চিৰিলিক প্ৰসাৰিত-A"
#. ZkKwE
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "ৱাই"
#. pBASG
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "চিৰিলিক প্ৰসাৰিত-B"
#. GoQpd
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "শৌৰাষ্ট্ৰ"
#. 6pufg
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "কায়াহ লি"
#. bmFny
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "ৰেজাং"
#. EaXay
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "ছাম"
#. qYaAV
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "প্ৰাচিন চিহ্নসমূহ"
#. At8Tk
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "ফাইসটোচ ডিস্ক"
#. ryGAF
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "লাইচিয়ান"
#. EYLa8
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "কাৰিয়ান"
#. TPN6m
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "লাইডিয়ান"
#. G5GLd
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "মাহজোং টাইল"
#. EyMaF
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "ডমিনো টাইল"
#. r2YQs
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "চামাৰিটান"
#. feZ2Q
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "কানাডিয়ান আদিবাসী ভগ্নশাব্দিক বিস্তাৰিত"
#. H4FpF
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "তাই থাম"
#. BgKLG
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "বেদিয় বিস্তাৰণসমূহ"
#. bVNYf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "লিচু"
#. riEM3
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "বামুম"
#. CQMqK
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "সাধাৰণ ইন্ডিক নম্বৰ সঁজাসমূহ"
#. gDEUp
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "দেবনাগৰি প্ৰসাৰিত"
#. UsAq2
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "হেঙুল জামো বিস্তাৰিত-A"
#. g5H7j
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "জাভানিছ"
#. upBjC
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "মাৱানমাৰ বিস্তাৰিত-A"
#. GQ3XX
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "তাই ভিইয়ে"
#. HGVSu
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "মিতিই মাইয়েক"
#. ryvor
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "হেঙুল জামো প্ৰসাৰিত-B"
#. RTxUc
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "ৰাজকিয় আৰামাইক্"
#. 7E6G8
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "পুৰনি দক্ষিণ আৰবীয়"
#. Ab3wu
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "এভেছটান"
#. 5gN8e
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "ইনস্ক্ৰিপষণেল পাৰথিয়ান"
#. D7rcV
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "ইনস্ক্ৰিপষণেল পাহলাভি"
#. d44Dq
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "পুৰনি টাৰ্কিয়"
#. CLuJC
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "ৰুমি সাংখ্যিক চিহ্নসমূহ"
#. FpFeH
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "কাইথী"
#. Swfzy
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "ইজিপটিয় হাইৰোগ্লিফসমূহ"
#. bMYVC
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "বান্ধীত আল্ফানিউমেৰিক পৰিপূৰক"
#. Dqcpa
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "বান্ধীত প্ৰতিকচিহ্নিত পৰিপূৰক"
#. 8eCZn
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "মেনডেইক"
#. 8LVFp
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "বাটাক"
#. 9SrgK
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "ইথিওপিক প্ৰসাৰিত-A"
#. cQEzt
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "ব্ৰাহমী"
#. n4oND
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "বামুম পৰিপূৰক"
#. xibkG
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "কানা পৰিপূৰক"
#. xyswt
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "খেলা কাৰ্ডসমূহ"
#. TqExt
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "বিভিন্ন চিহ্ন আৰু ছবিলেখচিত্ৰসমূহ"
#. wtMts
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "ইমোটিকনবোৰ"
#. WgGuX
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "পৰিবহন আৰু মানচিত্ৰ চিহ্নসমুহ"
#. fBitP
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "এলকেমিকেল চিহ্নসমূহ"
#. CWvjP
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "আৰবীয় প্ৰসাৰিত-A"
#. D7mEf
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "আৰবীয় গাণিতিক আক্ষৰিক চিহ্নসমূহ"
#. 8ouWH
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "চাকমা"
#. z3gG4
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "মিতিই মাইয়েক সম্প্ৰসাৰনসমূহ"
#. mFAeA
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "মেৰোইটিক কাৰ্চিভ"
#. b5m8K
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "মেৰোইটিক হাইৰোগ্লিফসমূহ"
#. Xrkei
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "মিয়াও"
#. hG9Na
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "শাৰদা"
#. rTKpL
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "চৰা চমপেঙ"
#. CAKEC
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "চুণ্ডানিচ পৰিপূৰিকা"
#. pTsMT
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "টাক্ৰি"
#. HNCk9
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "সংযুক্তকাৰী বৈশিষ্টসূচক চিহ্ন পৰিপূৰক"
#. 8TGuM
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "বিস্তৃত লেটিন-A"
#. wNozk
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "ৰৈখিক"
#. SjAev
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "অৱস্থা"
#. jC4Ue
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "মাৱানমাৰ বিস্তাৰিত-A"
#. y7tCX
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "পুৰনি দক্ষিণ আৰবীয়"
#. EZADa
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "পৰিপূৰক কাঁড়বোৰ-A"
#. iGUzh
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰৰ প্ৰসাৰণ A"
#. ho93C
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "চিৰিলিক প্ৰসাৰিত-A"
#. S69GG
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "জৰ্জিয়ান পৰিপূৰক"
#. RTgGA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "নতুন"
#. JJrpR
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "ব্যৱহাৰ"
#. o3qMt
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK একত্ৰিত আইডিঅ'গ্ৰাফবোৰৰ প্ৰসাৰণ A"
#. DH39v
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "মাৱানমাৰ বিস্তাৰিত-A"
#. jPSFu
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "ছিৰিলিক পৰিপূৰক"
#. rbMNp
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. 9UAmW
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr ""
#. QFLaj
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr ""
#. CYEeS
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr ""
#. ABqB6
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr ""
#. DmagG
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr ""
#. tjuhJ
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr ""
#. naYAA
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr ""
#. JGVtT
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr ""
#. pkBYF
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr ""
#. SEVKT
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr ""
#. NpBis
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr ""
#. ssh5F
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
#. LzhYZ
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1806
+#: include/svx/strings.hrc:1807
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1812
+#: include/svx/strings.hrc:1813
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1814
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
#. o8fB8
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
#. 6NnM2
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
#. fRcEu
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr ""
#. uqzE7
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr ""
#. 6ecLB
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr ""
#. B6KZc
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
@@ -10311,19 +10317,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
#. Q2kMw
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
@@ -10738,455 +10744,455 @@ msgid "Vertical text alignment"
msgstr "উলম্ব টেক্সট সংৰেখন"
#. DPZws
-#: svx/inc/fieldunit.hrc:30
+#: svx/inc/fieldunit.hrc:31
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Millimeter"
msgstr "মিলিমিটাৰ"
#. RWGZH
-#: svx/inc/fieldunit.hrc:31
+#: svx/inc/fieldunit.hrc:32
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Centimeter"
msgstr "ছেণ্টিমিটাৰ"
#. Uy6BJ
-#: svx/inc/fieldunit.hrc:32
+#: svx/inc/fieldunit.hrc:33
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Meter"
msgstr "মিটাৰ"
#. ej2m5
-#: svx/inc/fieldunit.hrc:33
+#: svx/inc/fieldunit.hrc:34
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Kilometer"
msgstr "কিলোমিটাৰ"
#. EFSC2
-#: svx/inc/fieldunit.hrc:34
+#: svx/inc/fieldunit.hrc:35
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Inch"
msgstr "ইঞ্চি"
#. pcGHS
-#: svx/inc/fieldunit.hrc:35
+#: svx/inc/fieldunit.hrc:36
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Foot"
msgstr "ফুট"
#. 5a3Dq
-#: svx/inc/fieldunit.hrc:36
+#: svx/inc/fieldunit.hrc:37
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Miles"
msgstr "মাইলবোৰ"
#. zpCki
-#: svx/inc/fieldunit.hrc:37
+#: svx/inc/fieldunit.hrc:38
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Pica"
msgstr "পিকা"
#. aTBVj
-#: svx/inc/fieldunit.hrc:38
+#: svx/inc/fieldunit.hrc:39
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Point"
msgstr "বিন্দু"
#. tkSdX
-#: svx/inc/fieldunit.hrc:39
+#: svx/inc/fieldunit.hrc:40
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Char"
msgstr "Char"
#. DyFjJ
-#: svx/inc/fieldunit.hrc:40
+#: svx/inc/fieldunit.hrc:41
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Line"
msgstr "ৰেখা"
#. QYjeZ
-#: svx/inc/fmstring.hrc:27
+#: svx/inc/fmstring.hrc:29
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "LIKE"
msgstr "LIKE"
#. iRDFU
-#: svx/inc/fmstring.hrc:28
+#: svx/inc/fmstring.hrc:30
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "NOT"
msgstr "NOT"
#. JBngM
-#: svx/inc/fmstring.hrc:29
+#: svx/inc/fmstring.hrc:31
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "EMPTY"
msgstr "EMPTY"
#. zpTCG
-#: svx/inc/fmstring.hrc:30
+#: svx/inc/fmstring.hrc:32
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "TRUE"
msgstr "TRUE"
#. DYBeJ
-#: svx/inc/fmstring.hrc:31
+#: svx/inc/fmstring.hrc:33
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "FALSE"
msgstr "FALSE"
#. mtAA5
-#: svx/inc/fmstring.hrc:32
+#: svx/inc/fmstring.hrc:34
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "IS"
msgstr "IS"
#. YWtNJ
-#: svx/inc/fmstring.hrc:33
+#: svx/inc/fmstring.hrc:35
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "BETWEEN"
msgstr "BETWEEN"
#. 47bZX
-#: svx/inc/fmstring.hrc:34
+#: svx/inc/fmstring.hrc:36
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "OR"
msgstr "OR"
#. 9ZBAf
-#: svx/inc/fmstring.hrc:35
+#: svx/inc/fmstring.hrc:37
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "AND"
msgstr "AND"
#. xZ65E
-#: svx/inc/fmstring.hrc:36
+#: svx/inc/fmstring.hrc:38
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Average"
msgstr ""
#. cTfDS
-#: svx/inc/fmstring.hrc:37
+#: svx/inc/fmstring.hrc:39
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Count"
msgstr ""
#. TFaGE
-#: svx/inc/fmstring.hrc:38
+#: svx/inc/fmstring.hrc:40
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Maximum"
msgstr "সৰ্বাধিক"
#. gGpDF
-#: svx/inc/fmstring.hrc:39
+#: svx/inc/fmstring.hrc:41
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Minimum"
msgstr ""
#. 3YcTD
-#: svx/inc/fmstring.hrc:40
+#: svx/inc/fmstring.hrc:42
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Sum"
msgstr "যোগফল"
#. GwMS7
-#: svx/inc/fmstring.hrc:41
+#: svx/inc/fmstring.hrc:43
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Every"
msgstr "প্রত্যেক"
#. M6DCS
-#: svx/inc/fmstring.hrc:42
+#: svx/inc/fmstring.hrc:44
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Any"
msgstr "যিকোনো ৰেকৰ্ড"
#. AyNgd
-#: svx/inc/fmstring.hrc:43
+#: svx/inc/fmstring.hrc:45
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Some"
msgstr "কিছুমান"
#. QYQ2c
-#: svx/inc/fmstring.hrc:44
+#: svx/inc/fmstring.hrc:46
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_POP"
msgstr "STDDEV_POP"
#. DsDPW
-#: svx/inc/fmstring.hrc:45
+#: svx/inc/fmstring.hrc:47
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_SAMP"
msgstr "STDDEV_SAMP"
#. RqHwF
-#: svx/inc/fmstring.hrc:46
+#: svx/inc/fmstring.hrc:48
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_SAMP"
msgstr "VAR_SAMP"
#. id43S
-#: svx/inc/fmstring.hrc:47
+#: svx/inc/fmstring.hrc:49
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_POP"
msgstr "VAR_POP"
#. mjjoD
-#: svx/inc/fmstring.hrc:48
+#: svx/inc/fmstring.hrc:50
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Collect"
msgstr "গোটোৱা"
#. GcZBA
-#: svx/inc/fmstring.hrc:49
+#: svx/inc/fmstring.hrc:51
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Fusion"
msgstr "Fusion"
#. gpKQz
-#: svx/inc/fmstring.hrc:50
+#: svx/inc/fmstring.hrc:52
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Intersection"
msgstr "ইন্টাৰেকশ্বন"
#. 8DMsd
-#: svx/inc/formnavi.hrc:27
+#: svx/inc/formnavi.hrc:29
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit"
msgid "~Text Box"
msgstr ""
#. LaRik
-#: svx/inc/formnavi.hrc:28
+#: svx/inc/formnavi.hrc:30
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
msgid "~Button"
msgstr ""
#. qjKaG
-#: svx/inc/formnavi.hrc:29
+#: svx/inc/formnavi.hrc:31
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
msgid "La~bel field"
msgstr ""
#. sq3AT
-#: svx/inc/formnavi.hrc:30
+#: svx/inc/formnavi.hrc:32
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
msgid "L~ist Box"
msgstr ""
#. agpbk
-#: svx/inc/formnavi.hrc:31
+#: svx/inc/formnavi.hrc:33
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
msgid "~Check Box"
msgstr ""
#. 9WA4B
-#: svx/inc/formnavi.hrc:32
+#: svx/inc/formnavi.hrc:34
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
msgid "~Radio Button"
msgstr ""
#. PpgmW
-#: svx/inc/formnavi.hrc:33
+#: svx/inc/formnavi.hrc:35
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
msgid "G~roup Box"
msgstr ""
#. A8Dbz
-#: svx/inc/formnavi.hrc:34
+#: svx/inc/formnavi.hrc:36
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
msgstr ""
#. HRAoH
-#: svx/inc/formnavi.hrc:35
+#: svx/inc/formnavi.hrc:37
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
msgid "I~mage Button"
msgstr ""
#. gZZqq
-#: svx/inc/formnavi.hrc:36
+#: svx/inc/formnavi.hrc:38
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
msgid "~File Selection"
msgstr ""
#. EEADE
-#: svx/inc/formnavi.hrc:37
+#: svx/inc/formnavi.hrc:39
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
msgid "~Date Field"
msgstr ""
#. gDr8N
-#: svx/inc/formnavi.hrc:38
+#: svx/inc/formnavi.hrc:40
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
msgid "Tim~e Field"
msgstr ""
#. jAbfP
-#: svx/inc/formnavi.hrc:39
+#: svx/inc/formnavi.hrc:41
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
msgid "~Numerical Field"
msgstr ""
#. ryXjj
-#: svx/inc/formnavi.hrc:40
+#: svx/inc/formnavi.hrc:42
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
msgid "C~urrency Field"
msgstr ""
#. GXHFr
-#: svx/inc/formnavi.hrc:41
+#: svx/inc/formnavi.hrc:43
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
msgid "~Pattern Field"
msgstr ""
#. a7jCc
-#: svx/inc/formnavi.hrc:42
+#: svx/inc/formnavi.hrc:44
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
msgid "Ima~ge Control"
msgstr ""
#. WDsBh
-#: svx/inc/formnavi.hrc:43
+#: svx/inc/formnavi.hrc:45
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
msgid "Fo~rmatted Field"
msgstr ""
#. aEXn5
-#: svx/inc/formnavi.hrc:44
+#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
msgstr ""
#. cGxjA
-#: svx/inc/formnavi.hrc:45
+#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
msgstr ""
#. HYbc6
-#: svx/inc/formnavi.hrc:46
+#: svx/inc/formnavi.hrc:48
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr ""
#. d7vkX
-#: svx/inc/frmsel.hrc:30
+#: svx/inc/frmsel.hrc:31
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Border setting"
msgstr "সীমাৰেখাৰ ছেটিং"
#. CBSYv
-#: svx/inc/frmsel.hrc:31
+#: svx/inc/frmsel.hrc:32
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Left border line"
msgstr "বাওঁফালৰ সীমাৰেখা"
#. YAWUD
-#: svx/inc/frmsel.hrc:32
+#: svx/inc/frmsel.hrc:33
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Right border line"
msgstr "সোঁফালৰ সীমাৰেখা"
#. VH67W
-#: svx/inc/frmsel.hrc:33
+#: svx/inc/frmsel.hrc:34
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Top border line"
msgstr "ওপৰৰ সীমাৰেখা"
#. MLMaA
-#: svx/inc/frmsel.hrc:34
+#: svx/inc/frmsel.hrc:35
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Bottom border line"
msgstr "তলৰ সীমাৰেখা"
#. ZqTGF
-#: svx/inc/frmsel.hrc:35
+#: svx/inc/frmsel.hrc:36
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Horizontal border line"
msgstr "অনুভূমিক সীমাৰেখা"
#. jzGHA
-#: svx/inc/frmsel.hrc:36
+#: svx/inc/frmsel.hrc:37
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Vertical border line"
msgstr "উলম্ব সীমাৰেখা"
#. DodCu
-#: svx/inc/frmsel.hrc:37
+#: svx/inc/frmsel.hrc:38
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from top left to bottom right"
msgstr "ওপৰৰ বাওঁফালৰ পৰা তলৰ সোঁফাললৈ কৰ্ণ সীমাৰেখা"
#. wfJ23
-#: svx/inc/frmsel.hrc:38
+#: svx/inc/frmsel.hrc:39
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from bottom left to top right"
msgstr "তলৰ বাওঁফালৰ পৰা ওপৰৰ সোঁফাললৈ কৰ্ণ সীমাৰেখা"
#. dTBRy
-#: svx/inc/frmsel.hrc:43
+#: svx/inc/frmsel.hrc:44
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Border setting"
msgstr "সীমাৰেখাৰ ছেটিং"
#. LhEua
-#: svx/inc/frmsel.hrc:44
+#: svx/inc/frmsel.hrc:45
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Left border line"
msgstr "বাওঁফালৰ সীমাৰেখা"
#. DAuHi
-#: svx/inc/frmsel.hrc:45
+#: svx/inc/frmsel.hrc:46
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Right border line"
msgstr "সোঁফালৰ সীমাৰেখা"
#. BYUTR
-#: svx/inc/frmsel.hrc:46
+#: svx/inc/frmsel.hrc:47
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Top border line"
msgstr "ওপৰৰ সীমাৰেখা"
#. QAnid
-#: svx/inc/frmsel.hrc:47
+#: svx/inc/frmsel.hrc:48
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Bottom border line"
msgstr "তলৰ সীমাৰেখা"
#. kDBDR
-#: svx/inc/frmsel.hrc:48
+#: svx/inc/frmsel.hrc:49
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Horizontal border line"
msgstr "অনুভূমিক সীমাৰেখা"
#. Em9YX
-#: svx/inc/frmsel.hrc:49
+#: svx/inc/frmsel.hrc:50
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Vertical border line"
msgstr "উলম্ব সীমাৰেখা"
#. oDFKb
-#: svx/inc/frmsel.hrc:50
+#: svx/inc/frmsel.hrc:51
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from top left to bottom right"
msgstr "ওপৰৰ বাওঁফালৰ পৰা তলৰ সোঁফাললৈ কৰ্ণ সীমাৰেখা"
#. 5EYDA
-#: svx/inc/frmsel.hrc:51
+#: svx/inc/frmsel.hrc:52
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "তলৰ বাওঁফালৰ পৰা ওপৰৰ সোঁফাললৈ কৰ্ণ সীমাৰেখা"
@@ -11228,14 +11234,14 @@ msgstr ""
#. hPpj7
#. SVX_NUM_NUMBER_NONE
-#: svx/inc/numberingtype.hrc:29
+#: svx/inc/numberingtype.hrc:31
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "None"
msgstr "কোনো নহয়"
#. dQWBh
#. SVX_NUM_CHAR_SPECIAL
-#: svx/inc/numberingtype.hrc:30
+#: svx/inc/numberingtype.hrc:32
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Bullet"
@@ -11243,14 +11249,14 @@ msgstr "বুলেটবোৰ"
#. GfQQK
#. SVX_NUM_BITMAP
-#: svx/inc/numberingtype.hrc:31
+#: svx/inc/numberingtype.hrc:33
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Graphics"
msgstr "গ্রাফিক্স"
#. DfEKa
#. SVX_NUM_BITMAP|0x80
-#: svx/inc/numberingtype.hrc:32
+#: svx/inc/numberingtype.hrc:34
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Linked graphics"
@@ -11258,7 +11264,7 @@ msgstr "সংযোগকৃত গ্রাফিক্স"
#. AF3ts
#. SVX_NUM_ARABIC
-#: svx/inc/numberingtype.hrc:33
+#: svx/inc/numberingtype.hrc:35
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1, 2, 3, ..."
@@ -11266,7 +11272,7 @@ msgstr "1, 2, 3, ..."
#. bBGa7
#. SVX_NUM_CHARS_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:34
+#: svx/inc/numberingtype.hrc:36
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, B, C, ..."
@@ -11274,7 +11280,7 @@ msgstr "A, B, C, ..."
#. 5MDDu
#. SVX_NUM_CHARS_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:35
+#: svx/inc/numberingtype.hrc:37
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, b, c, ..."
@@ -11282,7 +11288,7 @@ msgstr "a, b, c, ..."
#. qGL48
#. SVX_NUM_ROMAN_UPPER
-#: svx/inc/numberingtype.hrc:36
+#: svx/inc/numberingtype.hrc:38
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "I, II, III, ..."
@@ -11290,7 +11296,7 @@ msgstr "I, II, III, ..."
#. tZAzS
#. SVX_NUM_ROMAN_LOWER
-#: svx/inc/numberingtype.hrc:37
+#: svx/inc/numberingtype.hrc:39
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "i, ii, iii, ..."
@@ -11298,28 +11304,28 @@ msgstr "i, ii, iii, ..."
#. hbCEG
#. TEXT_NUMBER
-#: svx/inc/numberingtype.hrc:38
+#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
msgstr ""
#. ymefj
#. TEXT_CARDINAL
-#: svx/inc/numberingtype.hrc:39
+#: svx/inc/numberingtype.hrc:41
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
msgstr ""
#. uPBZs
#. TEXT_ORDINAL
-#: svx/inc/numberingtype.hrc:40
+#: svx/inc/numberingtype.hrc:42
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
msgstr ""
#. 2QoAG
#. SVX_NUM_CHARS_UPPER_LETTER_N
-#: svx/inc/numberingtype.hrc:41
+#: svx/inc/numberingtype.hrc:43
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, .., AA, .., AAA, ..."
@@ -11327,7 +11333,7 @@ msgstr "A, .., AA, .., AAA, ..."
#. 7Snqt
#. SVX_NUM_CHARS_LOWER_LETTER_N
-#: svx/inc/numberingtype.hrc:42
+#: svx/inc/numberingtype.hrc:44
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, .., aa, .., aaa, ..."
@@ -11335,14 +11341,14 @@ msgstr "a, .., aa, .., aaa, ..."
#. 2jYQi
#. SYMBOL_CHICAGO
-#: svx/inc/numberingtype.hrc:43
+#: svx/inc/numberingtype.hrc:45
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "*, †, ‡, §, **, ††, ..."
msgstr ""
#. GG8gr
#. NATIVE_NUMBERING
-#: svx/inc/numberingtype.hrc:44
+#: svx/inc/numberingtype.hrc:46
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Native Numbering"
@@ -11350,7 +11356,7 @@ msgstr "নেটিভ নাম্বাৰীং"
#. yLB7R
#. CHARS_CYRILLIC_UPPER_LETTER_BG
-#: svx/inc/numberingtype.hrc:45
+#: svx/inc/numberingtype.hrc:47
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
@@ -11358,7 +11364,7 @@ msgstr "А, Б, .., Аа, Аб, ... (Bulgarian)"
#. JHskj
#. CHARS_CYRILLIC_LOWER_LETTER_BG
-#: svx/inc/numberingtype.hrc:46
+#: svx/inc/numberingtype.hrc:48
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
@@ -11366,7 +11372,7 @@ msgstr "а, б, .., аа, аб, ... (Bulgarian)"
#. sqKyt
#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:47
+#: svx/inc/numberingtype.hrc:49
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
@@ -11374,7 +11380,7 @@ msgstr "А, Б, .., Аа, Бб, ... (Bulgarian)"
#. QtcCE
#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:48
+#: svx/inc/numberingtype.hrc:50
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
@@ -11382,7 +11388,7 @@ msgstr "а, б, .., аа, бб, ... (Bulgarian)"
#. DeUDb
#. CHARS_CYRILLIC_UPPER_LETTER_RU
-#: svx/inc/numberingtype.hrc:49
+#: svx/inc/numberingtype.hrc:51
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
@@ -11390,7 +11396,7 @@ msgstr "А, Б, .., Аа, Аб, ... (Russian)"
#. kAHJb
#. CHARS_CYRILLIC_LOWER_LETTER_RU
-#: svx/inc/numberingtype.hrc:50
+#: svx/inc/numberingtype.hrc:52
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Russian)"
@@ -11398,7 +11404,7 @@ msgstr "а, б, .., аа, аб, ... (Russian)"
#. kHAr7
#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:51
+#: svx/inc/numberingtype.hrc:53
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
@@ -11406,7 +11412,7 @@ msgstr "А, Б, .., Аа, Бб, ... (Russian)"
#. Dkve7
#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:52
+#: svx/inc/numberingtype.hrc:54
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Russian)"
@@ -11414,7 +11420,7 @@ msgstr "а, б, .., аа, бб, ... (Russian)"
#. EdfYn
#. CHARS_CYRILLIC_UPPER_LETTER_SR
-#: svx/inc/numberingtype.hrc:53
+#: svx/inc/numberingtype.hrc:55
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
@@ -11422,7 +11428,7 @@ msgstr "А, Б, .., Аа, Аб, ... (Serbian)"
#. oFJkn
#. CHARS_CYRILLIC_LOWER_LETTER_SR
-#: svx/inc/numberingtype.hrc:54
+#: svx/inc/numberingtype.hrc:56
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Serbian)"
@@ -11430,7 +11436,7 @@ msgstr "а, б, .., аа, аб, ... (Serbian)"
#. oA7CM
#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:55
+#: svx/inc/numberingtype.hrc:57
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
@@ -11438,7 +11444,7 @@ msgstr "А, Б, .., Аа, Бб, ... (Serbian)"
#. Eom7M
#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:56
+#: svx/inc/numberingtype.hrc:58
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Serbian)"
@@ -11446,306 +11452,306 @@ msgstr "а, б, .., аа, бб, ... (Serbian)"
#. SDSQ6
#. CHARS_GREEK_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:57
+#: svx/inc/numberingtype.hrc:59
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Α, Β, Γ, ... (Greek)"
msgstr ""
#. CMFjw
#. CHARS_GREEK_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:58
+#: svx/inc/numberingtype.hrc:60
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "α, β, γ, ... (Greek)"
msgstr ""
#. 8Cxkk
#. NUMBER_HEBREW
-#: svx/inc/numberingtype.hrc:59
+#: svx/inc/numberingtype.hrc:61
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...י, יא...כ, ..."
msgstr ""
#. n2sV8
#. CHARS_HEBREW
-#: svx/inc/numberingtype.hrc:60
+#: svx/inc/numberingtype.hrc:62
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...ת, אא...תת, ..."
msgstr ""
#. nR8RG
#. NUMBER_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:61
+#: svx/inc/numberingtype.hrc:63
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "١, ٢, ٣, ٤, ... (Arabic)"
msgstr ""
#. jEE4r
#. NUMBER_EAST_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:62
+#: svx/inc/numberingtype.hrc:64
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "۱, ۲, ۳, ۴, ... (Farsi)"
msgstr ""
#. YFYp2
#. NUMBER_INDIC_DEVANAGARI
-#: svx/inc/numberingtype.hrc:63
+#: svx/inc/numberingtype.hrc:65
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "१, २, ३, ..."
msgstr ""
#. Vd6uV
#. enum SvxRotateMode ----------------------------------------------------
-#: svx/inc/rotationstrings.hrc:18
+#: svx/inc/rotationstrings.hrc:20
msgctxt "RID_SVXITEMS_ROTATE_MODE_STANDARD"
msgid "Rotation only within cell"
msgstr ""
#. r8WzF
-#: svx/inc/rotationstrings.hrc:19
+#: svx/inc/rotationstrings.hrc:21
msgctxt "RID_SVXITEMS_ROTATE_MODE_TOP"
msgid "From upper cell edge"
msgstr ""
#. E7EVi
-#: svx/inc/rotationstrings.hrc:20
+#: svx/inc/rotationstrings.hrc:22
msgctxt "RID_SVXITEMS_ROTATE_MODE_CENTER"
msgid "From vertical middle cell"
msgstr ""
#. NEwyu
-#: svx/inc/rotationstrings.hrc:21
+#: svx/inc/rotationstrings.hrc:23
msgctxt "RID_SVXITEMS_ROTATE_MODE_BOTTOM"
msgid "From lower cell edge"
msgstr ""
#. Je56M
-#: svx/inc/samecontent.hrc:18
+#: svx/inc/samecontent.hrc:20
#, fuzzy
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
msgstr "সকলো পৃষ্ঠা"
#. kKCQR
-#: svx/inc/samecontent.hrc:19
+#: svx/inc/samecontent.hrc:21
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First Page"
msgstr "প্রথম পৃষ্ঠা"
#. MHuCA
-#: svx/inc/samecontent.hrc:20
+#: svx/inc/samecontent.hrc:22
#, fuzzy
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "Left and Right Pages"
msgstr "বাওঁফালৰ আৰু সোঁফালৰ কাঁড়"
#. XH8p4
-#: svx/inc/samecontent.hrc:21
+#: svx/inc/samecontent.hrc:23
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First, Left and Right Pages"
msgstr ""
#. F9hHK
-#: svx/inc/spacing.hrc:24
+#: svx/inc/spacing.hrc:26
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "None"
msgstr ""
#. GAuJk
-#: svx/inc/spacing.hrc:25
+#: svx/inc/spacing.hrc:27
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. DB9aM
-#: svx/inc/spacing.hrc:26
+#: svx/inc/spacing.hrc:28
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small (1/8″)"
msgstr ""
#. 5PhsT
-#: svx/inc/spacing.hrc:27
+#: svx/inc/spacing.hrc:29
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. 3LSyH
-#: svx/inc/spacing.hrc:28
+#: svx/inc/spacing.hrc:30
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. NzRZJ
-#: svx/inc/spacing.hrc:29
+#: svx/inc/spacing.hrc:31
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. JBwJZ
-#: svx/inc/spacing.hrc:30
+#: svx/inc/spacing.hrc:32
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Large (3/4″)"
msgstr ""
#. AwWUq
-#: svx/inc/spacing.hrc:31
+#: svx/inc/spacing.hrc:33
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. SGERK
-#: svx/inc/spacing.hrc:38
+#: svx/inc/spacing.hrc:40
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "None"
msgstr ""
#. ZAZbV
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:40
+#: svx/inc/spacing.hrc:42
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Small (%1)"
msgstr ""
#. DJAZx
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:42
+#: svx/inc/spacing.hrc:44
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small (%1)"
msgstr ""
#. scXTX
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:44
+#: svx/inc/spacing.hrc:46
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small Medium (%1)"
msgstr ""
#. zN8GJ
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:46
+#: svx/inc/spacing.hrc:48
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium (%1)"
msgstr ""
#. cbhBF
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:48
+#: svx/inc/spacing.hrc:50
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium Large (%1)"
msgstr ""
#. 8kTDK
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:50
+#: svx/inc/spacing.hrc:52
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Large (%1)"
msgstr ""
#. etG35
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:52
+#: svx/inc/spacing.hrc:54
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Large (%1)"
msgstr ""
#. F7GxF
-#: svx/inc/spacing.hrc:59
+#: svx/inc/spacing.hrc:61
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "None"
msgstr ""
#. ZNunF
-#: svx/inc/spacing.hrc:60
+#: svx/inc/spacing.hrc:62
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. BUnaC
-#: svx/inc/spacing.hrc:61
+#: svx/inc/spacing.hrc:63
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small (1/8″)"
msgstr ""
#. oBhFP
-#: svx/inc/spacing.hrc:62
+#: svx/inc/spacing.hrc:64
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. tDBA3
-#: svx/inc/spacing.hrc:63
+#: svx/inc/spacing.hrc:65
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. fDRCW
-#: svx/inc/spacing.hrc:64
+#: svx/inc/spacing.hrc:66
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. Ls2Jq
-#: svx/inc/spacing.hrc:65
+#: svx/inc/spacing.hrc:67
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4″)"
msgstr ""
#. DLXcU
-#: svx/inc/spacing.hrc:66
+#: svx/inc/spacing.hrc:68
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. phGfi
-#: svx/inc/spacing.hrc:73
+#: svx/inc/spacing.hrc:75
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "None"
msgstr ""
#. XVMbm
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:75
+#: svx/inc/spacing.hrc:77
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Small (%1)"
msgstr ""
#. L3BfG
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:77
+#: svx/inc/spacing.hrc:79
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small (%1)"
msgstr ""
#. 2VGHi
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:79
+#: svx/inc/spacing.hrc:81
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small Medium (%1)"
msgstr ""
#. Z7Wot
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:81
+#: svx/inc/spacing.hrc:83
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium (%1)"
msgstr ""
#. CS6Zz
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:83
+#: svx/inc/spacing.hrc:85
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium Large (%1)"
msgstr ""
#. BaS7j
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:85
+#: svx/inc/spacing.hrc:87
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Large (%1)"
msgstr ""
#. gAc3E
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:87
+#: svx/inc/spacing.hrc:89
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Large (%1)"
msgstr ""
@@ -11870,1143 +11876,1143 @@ msgstr ""
"পাছৱৰ্ড সুৰক্ষা নোহোৱাকে আপুনি দস্তাবেজ ৰক্ষা কৰিব বিচাৰে নেকি?"
#. xnBAZ
-#: svx/inc/swframeposstrings.hrc:28
+#: svx/inc/swframeposstrings.hrc:30
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left"
msgstr "বাওঁফাল"
#. GHBGu
-#: svx/inc/swframeposstrings.hrc:29
+#: svx/inc/swframeposstrings.hrc:31
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right"
msgstr "সোঁফাল"
#. aEeds
-#: svx/inc/swframeposstrings.hrc:30
+#: svx/inc/swframeposstrings.hrc:32
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From left"
msgstr "বাওঁফালৰ পৰা"
#. ivTxP
-#: svx/inc/swframeposstrings.hrc:31
+#: svx/inc/swframeposstrings.hrc:33
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inside"
msgstr "অভ্যন্তৰ"
#. U5FyC
-#: svx/inc/swframeposstrings.hrc:32
+#: svx/inc/swframeposstrings.hrc:34
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outside"
msgstr "বাহিৰ"
#. 67K4H
-#: svx/inc/swframeposstrings.hrc:33
+#: svx/inc/swframeposstrings.hrc:35
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From inside"
msgstr "ভিতৰৰ ফালৰ পৰা"
#. W2X2D
-#: svx/inc/swframeposstrings.hrc:34
+#: svx/inc/swframeposstrings.hrc:36
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph area"
msgstr "পেৰেগ্ৰাফ এৰিয়া"
#. CrRe5
-#: svx/inc/swframeposstrings.hrc:35 svx/inc/swframeposstrings.hrc:52
+#: svx/inc/swframeposstrings.hrc:37 svx/inc/swframeposstrings.hrc:54
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph text area"
msgstr "পেৰেগ্ৰাফ টেক্সট এৰিয়া"
#. MT34e
-#: svx/inc/swframeposstrings.hrc:36
+#: svx/inc/swframeposstrings.hrc:38
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left page border"
msgstr "বাওঁফালৰ পৃষ্ঠাৰ সীমা"
#. edC8Z
-#: svx/inc/swframeposstrings.hrc:37
+#: svx/inc/swframeposstrings.hrc:39
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right page border"
msgstr "সোঁফালৰ পৃষ্ঠাৰ সীমাৰেখা"
#. dCGE9
-#: svx/inc/swframeposstrings.hrc:38
+#: svx/inc/swframeposstrings.hrc:40
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left paragraph border"
msgstr "বাওঁফালৰ পেৰেগ্ৰাফৰ সীমা"
#. 3pAVN
-#: svx/inc/swframeposstrings.hrc:39
+#: svx/inc/swframeposstrings.hrc:41
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right paragraph border"
msgstr "সোঁফালৰ পেৰেগ্ৰাফৰ সীমাৰেখা"
#. qvFns
-#: svx/inc/swframeposstrings.hrc:40
+#: svx/inc/swframeposstrings.hrc:42
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner page border"
msgstr "আভ্যন্তৰীণ পৃষ্ঠাৰ সীমা"
#. XwtPT
-#: svx/inc/swframeposstrings.hrc:41
+#: svx/inc/swframeposstrings.hrc:43
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer page border"
msgstr "বাহিৰৰ পৃষ্ঠাৰ সীমাৰেখা"
#. oF2mP
-#: svx/inc/swframeposstrings.hrc:42
+#: svx/inc/swframeposstrings.hrc:44
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner paragraph border"
msgstr "আভ্যন্তৰীণ পেৰেগ্ৰাফৰ সীমা"
#. Hffsf
-#: svx/inc/swframeposstrings.hrc:43
+#: svx/inc/swframeposstrings.hrc:45
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer paragraph border"
msgstr "বাহিৰৰ পেৰেগ্ৰাফৰ সীমাৰেখা"
#. ey4rc
-#: svx/inc/swframeposstrings.hrc:44
+#: svx/inc/swframeposstrings.hrc:46
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire page"
msgstr "সম্পূর্ণ পৃষ্ঠা"
#. WJocu
-#: svx/inc/swframeposstrings.hrc:45
+#: svx/inc/swframeposstrings.hrc:47
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area"
msgstr "পৃষ্ঠাৰ টেক্সট এৰিয়া"
#. jY8xQ
-#: svx/inc/swframeposstrings.hrc:46
+#: svx/inc/swframeposstrings.hrc:48
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area top"
msgstr ""
#. vWEe2
-#: svx/inc/swframeposstrings.hrc:47
+#: svx/inc/swframeposstrings.hrc:49
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area bottom"
msgstr ""
#. XG9Bj
-#: svx/inc/swframeposstrings.hrc:48
+#: svx/inc/swframeposstrings.hrc:50
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Base line"
msgstr "আধাৰ শাৰী"
#. A3DbQ
-#: svx/inc/swframeposstrings.hrc:49
+#: svx/inc/swframeposstrings.hrc:51
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Character"
msgstr "আখৰ"
#. Qyopb
-#: svx/inc/swframeposstrings.hrc:50
+#: svx/inc/swframeposstrings.hrc:52
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Row"
msgstr "শাৰী"
#. PPkKE
-#: svx/inc/swframeposstrings.hrc:51
+#: svx/inc/swframeposstrings.hrc:53
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Margin"
msgstr "সীমা"
#. FCKGJ
-#: svx/inc/swframeposstrings.hrc:53
+#: svx/inc/swframeposstrings.hrc:55
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left frame border"
msgstr "বাওঁফালৰ ফ্রেম বর্ডাৰ"
#. dvJgp
-#: svx/inc/swframeposstrings.hrc:54
+#: svx/inc/swframeposstrings.hrc:56
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right frame border"
msgstr "সোঁফালৰ ফ্ৰেমৰ সীমাৰেখা"
#. 8wUyB
-#: svx/inc/swframeposstrings.hrc:55
+#: svx/inc/swframeposstrings.hrc:57
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire frame"
msgstr "সম্পূর্ণ ফ্রেম"
#. FRNBs
-#: svx/inc/swframeposstrings.hrc:56
+#: svx/inc/swframeposstrings.hrc:58
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Frame text area"
msgstr "ফ্রেম টেক্সট এৰিয়া"
#. CEgLN
-#: svx/inc/swframeposstrings.hrc:57
+#: svx/inc/swframeposstrings.hrc:59
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner frame border"
msgstr "আভ্যন্তৰীণ ফ্রেমৰ সীমাৰেখা"
#. UroG3
-#: svx/inc/swframeposstrings.hrc:58
+#: svx/inc/swframeposstrings.hrc:60
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer frame border"
msgstr "বাহিৰৰ ফ্রেমৰ সীমাৰেখা"
#. hMCeD
-#: svx/inc/swframeposstrings.hrc:59
+#: svx/inc/swframeposstrings.hrc:61
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top"
msgstr "ওপৰ"
#. zvKGF
-#: svx/inc/swframeposstrings.hrc:60
+#: svx/inc/swframeposstrings.hrc:62
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom"
msgstr "তলত"
#. zLzw8
-#: svx/inc/swframeposstrings.hrc:61 svx/inc/swframeposstrings.hrc:62
+#: svx/inc/swframeposstrings.hrc:63 svx/inc/swframeposstrings.hrc:64
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. HKRAf
-#: svx/inc/swframeposstrings.hrc:63
+#: svx/inc/swframeposstrings.hrc:65
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From top"
msgstr "ওপৰৰ পৰা"
#. o7Td5
-#: svx/inc/swframeposstrings.hrc:64
+#: svx/inc/swframeposstrings.hrc:66
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From bottom"
msgstr "তলৰ পৰা"
#. bF2Nd
-#: svx/inc/swframeposstrings.hrc:65
+#: svx/inc/swframeposstrings.hrc:67
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Below"
msgstr "তল"
#. Q9AZn
-#: svx/inc/swframeposstrings.hrc:66
+#: svx/inc/swframeposstrings.hrc:68
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From right"
msgstr "সোঁফালৰ পৰা"
#. Y6y4s
-#: svx/inc/swframeposstrings.hrc:67
+#: svx/inc/swframeposstrings.hrc:69
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top page border"
msgstr "ওপৰৰ পৃষ্ঠাৰ সীমাৰেখা"
#. ZyAri
-#: svx/inc/swframeposstrings.hrc:68
+#: svx/inc/swframeposstrings.hrc:70
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom page border"
msgstr "তলৰ পৃষ্ঠাৰ সীমাৰেখা"
#. 2vRtm
-#: svx/inc/swframeposstrings.hrc:69
+#: svx/inc/swframeposstrings.hrc:71
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top paragraph border"
msgstr "ওপৰৰ পেৰেগ্ৰাফৰ সীমাৰেখা"
#. AAFLn
-#: svx/inc/swframeposstrings.hrc:70
+#: svx/inc/swframeposstrings.hrc:72
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom paragraph border"
msgstr "তলৰ পেৰেগ্ৰাফৰ সীমাৰেখা"
#. dmVNj
-#: svx/inc/swframeposstrings.hrc:71
+#: svx/inc/swframeposstrings.hrc:73
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Line of text"
msgstr "টেক্সটৰ শাৰী"
#. gKq8G
-#: svx/inc/tabwin.hrc:27
+#: svx/inc/tabwin.hrc:29
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Table"
msgstr "টেবুল"
#. 4mnUW
-#: svx/inc/tabwin.hrc:28
+#: svx/inc/tabwin.hrc:30
#, fuzzy
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Query"
msgstr "প্ৰশ্ন"
#. rfs4A
-#: svx/inc/tabwin.hrc:29
+#: svx/inc/tabwin.hrc:31
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "SQL"
msgstr "SQL"
#. QF2ZT
-#: svx/inc/txenctab.hrc:32
+#: svx/inc/txenctab.hrc:33
#, fuzzy
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Windows-1252/WinLatin 1)"
msgstr "পাশ্চাত্য ইউৰোপ (উইণ্ড'জ-1252/উইনলেটিন 1)"
#. VbWZR
-#: svx/inc/txenctab.hrc:33
+#: svx/inc/txenctab.hrc:34
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh)"
msgstr "পাশ্চাত্য ইউৰোপ (এপল মেকিন্টোশ্ব)"
#. 5yMG7
-#: svx/inc/txenctab.hrc:34
+#: svx/inc/txenctab.hrc:35
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-850/International)"
msgstr "পাশ্চাত্য ইউৰোপ (DOS/OS2-850/আন্তঃৰাষ্ট্ৰীয়)"
#. KYDEk
-#: svx/inc/txenctab.hrc:35
+#: svx/inc/txenctab.hrc:36
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-437/US)"
msgstr "পাশ্চাত্য ইউৰোপ (DOS/OS2-437/US)"
#. 3MbrA
-#: svx/inc/txenctab.hrc:36
+#: svx/inc/txenctab.hrc:37
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-860/Portuguese)"
msgstr "পাশ্চাত্য ইউৰোপ (DOS/OS2-860/পৰ্টুগীজ)"
#. bdxAU
-#: svx/inc/txenctab.hrc:37
+#: svx/inc/txenctab.hrc:38
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-861/Icelandic)"
msgstr "পাশ্চাত্য ইউৰোপ (DOS/OS2-861/আইচলেণ্ডিক)"
#. kMQ9X
-#: svx/inc/txenctab.hrc:38
+#: svx/inc/txenctab.hrc:39
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-863/French (Can.))"
msgstr "পাশ্চাত্য ইউৰোপ (DOS/OS2-863/ফ্ৰেন্স (কেন.))"
#. YTGtN
-#: svx/inc/txenctab.hrc:39
+#: svx/inc/txenctab.hrc:40
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-865/Nordic)"
msgstr "পাশ্চাত্য ইউৰোপ (DOS/OS2-865/নৰ্ডিক)"
#. 7f2UV
-#: svx/inc/txenctab.hrc:40
+#: svx/inc/txenctab.hrc:41
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ASCII/US)"
msgstr "পাশ্চাত্য ইউৰোপ (ASCII/US)"
#. Hksxs
-#: svx/inc/txenctab.hrc:41
+#: svx/inc/txenctab.hrc:42
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-1)"
msgstr "পাশ্চাত্য ইউৰোপ (ISO-8859-1)"
#. PBDdu
-#: svx/inc/txenctab.hrc:42
+#: svx/inc/txenctab.hrc:43
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-2)"
msgstr "প্ৰাচ্য ইউৰোপ (ISO-8859-2)"
#. MFqWF
-#: svx/inc/txenctab.hrc:43
+#: svx/inc/txenctab.hrc:44
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Latin 3 (ISO-8859-3)"
msgstr "লেটিন 3 (ISO-8859-3)"
#. WBkLV
-#: svx/inc/txenctab.hrc:44
+#: svx/inc/txenctab.hrc:45
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (ISO-8859-4)"
msgstr "বাল্টিক (ISO-8859-4)"
#. b5SPH
-#: svx/inc/txenctab.hrc:45
+#: svx/inc/txenctab.hrc:46
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (ISO-8859-5)"
msgstr "ছিৰিলিক (ISO-8859-5)"
#. wFCbj
-#: svx/inc/txenctab.hrc:46
+#: svx/inc/txenctab.hrc:47
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (ISO-8859-6)"
msgstr "আৰবী (ISO-8859-6)"
#. qTzCE
-#: svx/inc/txenctab.hrc:47
+#: svx/inc/txenctab.hrc:48
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (ISO-8859-7)"
msgstr "গ্ৰীক (ISO-8859-7)"
#. MmChj
-#: svx/inc/txenctab.hrc:48
+#: svx/inc/txenctab.hrc:49
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (ISO-8859-8)"
msgstr "হিব্ৰু (ISO-8859-8)"
#. 3bHAV
-#: svx/inc/txenctab.hrc:49
+#: svx/inc/txenctab.hrc:50
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (ISO-8859-9)"
msgstr "তুৰ্কী (ISO-8859-9)"
#. phdte
-#: svx/inc/txenctab.hrc:50
+#: svx/inc/txenctab.hrc:51
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-14)"
msgstr "পাশ্চাত্য ইউৰোপ (ISO-8859-14)"
#. MpHUZ
-#: svx/inc/txenctab.hrc:51
+#: svx/inc/txenctab.hrc:52
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-15/EURO)"
msgstr "পাশ্চাত্য ইউৰোপ (ISO-8859-15/EURO)"
#. JgVnj
-#: svx/inc/txenctab.hrc:52
+#: svx/inc/txenctab.hrc:53
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-737)"
msgstr "গ্ৰীক (DOS/OS2-737)"
#. EQi6s
-#: svx/inc/txenctab.hrc:53
+#: svx/inc/txenctab.hrc:54
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (DOS/OS2-775)"
msgstr "বাল্টিক (DOS/OS2-775)"
#. SDvMf
-#: svx/inc/txenctab.hrc:54
+#: svx/inc/txenctab.hrc:55
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (DOS/OS2-852)"
msgstr "প্ৰাচ্য ইউৰোপ (DOS/OS2-852)"
#. 3FrUC
-#: svx/inc/txenctab.hrc:55
+#: svx/inc/txenctab.hrc:56
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-855)"
msgstr "ছিৰিলিক (DOS/OS2-855)"
#. G8q5c
-#: svx/inc/txenctab.hrc:56
+#: svx/inc/txenctab.hrc:57
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (DOS/OS2-857)"
msgstr "তুৰ্কী (DOS/OS2-857)"
#. kBvdY
-#: svx/inc/txenctab.hrc:57
+#: svx/inc/txenctab.hrc:58
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (DOS/OS2-862)"
msgstr "হিব্ৰু (DOS/OS2-862)"
#. to6H6
-#: svx/inc/txenctab.hrc:58
+#: svx/inc/txenctab.hrc:59
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (DOS/OS2-864)"
msgstr "আৰবী (DOS/OS2-864)"
#. BH6K4
-#: svx/inc/txenctab.hrc:59
+#: svx/inc/txenctab.hrc:60
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-866/Russian)"
msgstr "ছিৰিলিক (DOS/OS2-866/ৰাছিয়ান)"
#. ms8Dk
-#: svx/inc/txenctab.hrc:60
+#: svx/inc/txenctab.hrc:61
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-869/Modern)"
msgstr "গ্ৰীক (DOS/OS2-869/আধুনিক)"
#. U9RbL
-#: svx/inc/txenctab.hrc:61
+#: svx/inc/txenctab.hrc:62
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Windows-1250/WinLatin 2)"
msgstr "প্ৰাচ্য ইউৰোপ (উইণ্ড'জ-1250/উইনলেটিন 2)"
#. fRRMB
-#: svx/inc/txenctab.hrc:62
+#: svx/inc/txenctab.hrc:63
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Windows-1251)"
msgstr "ছিৰিলিক (উইণ্ড'জ-1251)"
#. 7D9eT
-#: svx/inc/txenctab.hrc:63
+#: svx/inc/txenctab.hrc:64
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Windows-1253)"
msgstr "গ্ৰীক (উইণ্ড'জ-1253)"
#. sa8W8
-#: svx/inc/txenctab.hrc:64
+#: svx/inc/txenctab.hrc:65
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Windows-1254)"
msgstr "তুৰ্কী (উইণ্ড'জ-1254)"
#. ZxMJy
-#: svx/inc/txenctab.hrc:65
+#: svx/inc/txenctab.hrc:66
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (Windows-1255)"
msgstr "হিব্রু (উইণ্ড'জ-1255)"
#. 4GLZX
-#: svx/inc/txenctab.hrc:66
+#: svx/inc/txenctab.hrc:67
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (Windows-1256)"
msgstr "আৰবী (উইণ্ড'জ-1256)"
#. errzy
-#: svx/inc/txenctab.hrc:67
+#: svx/inc/txenctab.hrc:68
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (Windows-1257)"
msgstr "বাল্টিক (উইণ্ড'জ-1257)"
#. SSo9X
-#: svx/inc/txenctab.hrc:68
+#: svx/inc/txenctab.hrc:69
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Vietnamese (Windows-1258)"
msgstr ""
#. udrZT
-#: svx/inc/txenctab.hrc:69
+#: svx/inc/txenctab.hrc:70
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh)"
msgstr "পাশ্চাত্য ইউৰোপ (এপল মেকিন্টোশ্ব)"
#. g2Z7z
-#: svx/inc/txenctab.hrc:70
+#: svx/inc/txenctab.hrc:71
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Croatian)"
msgstr "প্ৰাচ্য ইউৰোপ (এপল মেকিন্টোশ্ব/ক্রোৱেছিয়ান)"
#. 9jpM6
-#: svx/inc/txenctab.hrc:71
+#: svx/inc/txenctab.hrc:72
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh)"
msgstr "ছিৰিলিক (এপল মেকিন্টোশ্ব)"
#. YB8BU
-#: svx/inc/txenctab.hrc:72
+#: svx/inc/txenctab.hrc:73
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Apple Macintosh)"
msgstr "গ্ৰীক (এপল মেকিন্টোশ্ব)"
#. rEWLF
-#: svx/inc/txenctab.hrc:73
+#: svx/inc/txenctab.hrc:74
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh/Icelandic)"
msgstr "পাশ্চাত্য ইউৰোপ (Apple Macintosh/আইচলেণ্ডিক)"
#. eCAET
-#: svx/inc/txenctab.hrc:74
+#: svx/inc/txenctab.hrc:75
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Romanian)"
msgstr "প্ৰাচ্য ইউৰোপ (এপল মেকিন্টোশ্ব/ৰোমানিয়ান)"
#. T4VVK
-#: svx/inc/txenctab.hrc:75
+#: svx/inc/txenctab.hrc:76
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Apple Macintosh)"
msgstr "তুৰ্কী (Apple Macintosh)"
#. a8GDk
-#: svx/inc/txenctab.hrc:76
+#: svx/inc/txenctab.hrc:77
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh/Ukrainian)"
msgstr "ছিৰিলিক (এপল মেকিন্টোশ্ব/ইউক্ৰেনিয়ান)"
#. 4RBWC
-#: svx/inc/txenctab.hrc:77
+#: svx/inc/txenctab.hrc:78
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Apple Macintosh)"
msgstr "চীনা সৰলীকৃত (এপল মেকিন্টোশ্ব)"
#. 6WCbw
-#: svx/inc/txenctab.hrc:78
+#: svx/inc/txenctab.hrc:79
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Apple Macintosh)"
msgstr "চীনা পৰম্পৰাগত (এপল মেকিন্টোশ্ব)"
#. DyADW
-#: svx/inc/txenctab.hrc:79
+#: svx/inc/txenctab.hrc:80
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Apple Macintosh)"
msgstr "জাপানী (Apple Macintosh)"
#. BXQq2
-#: svx/inc/txenctab.hrc:80
+#: svx/inc/txenctab.hrc:81
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Apple Macintosh)"
msgstr "কোৰিয়ান (এপল মেকিন্টোশ্ব)"
#. 6eezP
-#: svx/inc/txenctab.hrc:81
+#: svx/inc/txenctab.hrc:82
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Windows-932)"
msgstr "জাপানী (উইণ্ড'জ-932)"
#. FuA86
-#: svx/inc/txenctab.hrc:82
+#: svx/inc/txenctab.hrc:83
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Windows-936)"
msgstr "চীনা সৰলীকৃত (উইণ্ড'জ-936)"
#. Rgvx2
-#: svx/inc/txenctab.hrc:83
+#: svx/inc/txenctab.hrc:84
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-949)"
msgstr "কোৰিয়ান (উইণ্ড'জ-949)"
#. VrtX4
-#: svx/inc/txenctab.hrc:84
+#: svx/inc/txenctab.hrc:85
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Windows-950)"
msgstr "চীনা পৰম্পৰাগত (উইণ্ড'জ-950)"
#. XYyEd
-#: svx/inc/txenctab.hrc:85
+#: svx/inc/txenctab.hrc:86
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Shift-JIS)"
msgstr "জাপানী (শ্বীফট-JIS)"
#. k5M56
-#: svx/inc/txenctab.hrc:86
+#: svx/inc/txenctab.hrc:87
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-2312)"
msgstr "চীনা সৰলীকৃত (GB-2312)"
#. PFzZY
-#: svx/inc/txenctab.hrc:87
+#: svx/inc/txenctab.hrc:88
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-18030)"
msgstr "চীনা সৰলীকৃত (GB-18030)"
#. gb9bm
-#: svx/inc/txenctab.hrc:88
+#: svx/inc/txenctab.hrc:89
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (GBT-12345)"
msgstr "চীনা পৰম্পৰাগত (GBT-12345)"
#. C69XX
-#: svx/inc/txenctab.hrc:89
+#: svx/inc/txenctab.hrc:90
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GBK/GB-2312-80)"
msgstr "চীনা সৰলীকৃত (GBK/GB-2312-80)"
#. UP3uw
-#: svx/inc/txenctab.hrc:90
+#: svx/inc/txenctab.hrc:91
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Big5)"
msgstr "চীনা পৰম্পৰাগত (ডাঙৰ5)"
#. DaFZR
-#: svx/inc/txenctab.hrc:91
+#: svx/inc/txenctab.hrc:92
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (BIG5-HKSCS)"
msgstr "চীনা পৰম্পৰাগত (BIG5-HKSCS)"
#. qEQVA
-#: svx/inc/txenctab.hrc:92
+#: svx/inc/txenctab.hrc:93
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (EUC-JP)"
msgstr "জাপানী (EUC-JP)"
#. auzHg
-#: svx/inc/txenctab.hrc:93
+#: svx/inc/txenctab.hrc:94
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (EUC-CN)"
msgstr "চীনা সৰলীকৃত (EUC-CN)"
#. ndTrZ
-#: svx/inc/txenctab.hrc:94
+#: svx/inc/txenctab.hrc:95
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (EUC-TW)"
msgstr "চীনা পৰম্পৰাগত (EUC-TW)"
#. 6pPLL
-#: svx/inc/txenctab.hrc:95
+#: svx/inc/txenctab.hrc:96
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (ISO-2022-JP)"
msgstr "জাপানী (ISO-2022-JP)"
#. tWf3P
-#: svx/inc/txenctab.hrc:96
+#: svx/inc/txenctab.hrc:97
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (ISO-2022-CN)"
msgstr "চীনা সৰলীকৃত (ISO-2022-CN)"
#. XMFCL
-#: svx/inc/txenctab.hrc:97
+#: svx/inc/txenctab.hrc:98
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-R)"
msgstr "ছিৰিলিক (KOI8-R)"
#. 2pFce
-#: svx/inc/txenctab.hrc:98
+#: svx/inc/txenctab.hrc:99
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-7)"
msgstr "ইউনিক'ড (UTF-7)"
#. FXEDd
-#: svx/inc/txenctab.hrc:99
+#: svx/inc/txenctab.hrc:100
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-8)"
msgstr "ইউনিক'ড (UTF-8)"
#. PKDvB
-#: svx/inc/txenctab.hrc:100
+#: svx/inc/txenctab.hrc:101
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-10)"
msgstr "পাশ্চাত্য ইউৰোপ (ISO-8859-10)"
#. QGYqt
-#: svx/inc/txenctab.hrc:101
+#: svx/inc/txenctab.hrc:102
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-13)"
msgstr "পাশ্চাত্য ইউৰোপ (ISO-8859-13)"
#. Vx6bY
-#: svx/inc/txenctab.hrc:102
+#: svx/inc/txenctab.hrc:103
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (EUC-KR)"
msgstr "কোৰিয়ান (EUC-KR)"
#. 5CBHm
-#: svx/inc/txenctab.hrc:103
+#: svx/inc/txenctab.hrc:104
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (ISO-2022-KR)"
msgstr "কোৰিয়ান (ISO-2022-KR)"
#. nLGik
-#: svx/inc/txenctab.hrc:104
+#: svx/inc/txenctab.hrc:105
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-Johab-1361)"
msgstr "কোৰিয়ান (উইণ্ড'জ-জ'হাব-1361)"
#. QBgZo
-#: svx/inc/txenctab.hrc:105
+#: svx/inc/txenctab.hrc:106
#, fuzzy
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-16)"
msgstr "ইউনিক'ড (UTF-7)"
#. JGdVV
-#: svx/inc/txenctab.hrc:106
+#: svx/inc/txenctab.hrc:107
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (ISO-8859-11/TIS-620)"
msgstr "থাই (ISO-8859-11/TIS-620)"
#. monLB
-#: svx/inc/txenctab.hrc:107
+#: svx/inc/txenctab.hrc:108
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (Windows-874)"
msgstr "থাই (উইণ্ড'জ-874)"
#. USeUF
-#: svx/inc/txenctab.hrc:108
+#: svx/inc/txenctab.hrc:109
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-U)"
msgstr "ছিৰিলিক (KOI8-U)"
#. vrLQe
-#: svx/inc/txenctab.hrc:109
+#: svx/inc/txenctab.hrc:110
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (PT154)"
msgstr "ছিৰিলিক (PT154)"
#. rKPau
-#: svx/source/dialog/page.hrc:30
+#: svx/source/dialog/page.hrc:31
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A6"
msgstr "A6"
#. URac3
-#: svx/source/dialog/page.hrc:31
+#: svx/source/dialog/page.hrc:32
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A5"
msgstr "A5"
#. EPudF
-#: svx/source/dialog/page.hrc:32
+#: svx/source/dialog/page.hrc:33
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A4"
msgstr "A4"
#. qdkCd
-#: svx/source/dialog/page.hrc:33
+#: svx/source/dialog/page.hrc:34
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A3"
msgstr "A3"
#. HTZUv
-#: svx/source/dialog/page.hrc:34
+#: svx/source/dialog/page.hrc:35
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. cCYrf
-#: svx/source/dialog/page.hrc:35
+#: svx/source/dialog/page.hrc:36
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. xXp6C
-#: svx/source/dialog/page.hrc:36
+#: svx/source/dialog/page.hrc:37
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. A5BnL
-#: svx/source/dialog/page.hrc:37
+#: svx/source/dialog/page.hrc:38
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Letter"
msgstr "লেটাৰ"
#. sx5cV
-#: svx/source/dialog/page.hrc:38
+#: svx/source/dialog/page.hrc:39
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Legal"
msgstr "লিগেল"
#. Pkxcm
-#: svx/source/dialog/page.hrc:39
+#: svx/source/dialog/page.hrc:40
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Long Bond"
msgstr "দীঘল বান্ধনী"
#. JMsqY
-#: svx/source/dialog/page.hrc:40
+#: svx/source/dialog/page.hrc:41
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Tabloid"
msgstr "টেবলয়েড"
#. UBtQK
-#: svx/source/dialog/page.hrc:41
+#: svx/source/dialog/page.hrc:42
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. Ruu59
-#: svx/source/dialog/page.hrc:42
+#: svx/source/dialog/page.hrc:43
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. CFdsg
-#: svx/source/dialog/page.hrc:43
+#: svx/source/dialog/page.hrc:44
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. PCV4H
-#: svx/source/dialog/page.hrc:44
+#: svx/source/dialog/page.hrc:45
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "16 Kai"
msgstr "16 Kai"
#. GfVjG
-#: svx/source/dialog/page.hrc:45
+#: svx/source/dialog/page.hrc:46
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "32 Kai"
msgstr "32 Kai"
#. FJBrB
-#: svx/source/dialog/page.hrc:46
+#: svx/source/dialog/page.hrc:47
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Big 32 Kai"
msgstr "ডাঙৰ 32 Kai"
#. by7kM
-#: svx/source/dialog/page.hrc:47
+#: svx/source/dialog/page.hrc:48
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "User"
msgstr "ব্যৱহাৰকাৰী"
#. EGzYq
-#: svx/source/dialog/page.hrc:48
+#: svx/source/dialog/page.hrc:49
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "DL Envelope"
msgstr "DL খাম"
#. YFzCy
-#: svx/source/dialog/page.hrc:49
+#: svx/source/dialog/page.hrc:50
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6 Envelope"
msgstr "C6 খাম"
#. Vcc7P
-#: svx/source/dialog/page.hrc:50
+#: svx/source/dialog/page.hrc:51
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6/5 Envelope"
msgstr "C6/5 খাম"
#. XsMRE
-#: svx/source/dialog/page.hrc:51
+#: svx/source/dialog/page.hrc:52
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C5 Envelope"
msgstr "C5 খাম"
#. uFwGu
-#: svx/source/dialog/page.hrc:52
+#: svx/source/dialog/page.hrc:53
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C4 Envelope"
msgstr "C4 খাম"
#. dCpd2
-#: svx/source/dialog/page.hrc:53
+#: svx/source/dialog/page.hrc:54
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#6¾ Envelope"
msgstr "#6¾ খাম"
#. zy6rP
-#: svx/source/dialog/page.hrc:54
+#: svx/source/dialog/page.hrc:55
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#7¾ (Monarch) Envelope"
msgstr "#7¾ (Monarch) খাম"
#. m4N6Q
-#: svx/source/dialog/page.hrc:55
+#: svx/source/dialog/page.hrc:56
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#9 Envelope"
msgstr "#9 খাম"
#. JsBkZ
-#: svx/source/dialog/page.hrc:56
+#: svx/source/dialog/page.hrc:57
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#10 Envelope"
msgstr "#10 খাম"
#. 7FeU9
-#: svx/source/dialog/page.hrc:57
+#: svx/source/dialog/page.hrc:58
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#11 Envelope"
msgstr "#11 খাম"
#. 6sqhV
-#: svx/source/dialog/page.hrc:58
+#: svx/source/dialog/page.hrc:59
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#12 Envelope"
msgstr "#12 খাম"
#. 8uXDq
-#: svx/source/dialog/page.hrc:59
+#: svx/source/dialog/page.hrc:60
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Japanese Postcard"
msgstr "জাপানী পস্টকাৰ্ড"
#. N2J2b
-#: svx/source/dialog/page.hrc:64
+#: svx/source/dialog/page.hrc:65
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A6"
msgstr "A6"
#. 78f4A
-#: svx/source/dialog/page.hrc:65
+#: svx/source/dialog/page.hrc:66
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A5"
msgstr "A5"
#. i6x38
-#: svx/source/dialog/page.hrc:66
+#: svx/source/dialog/page.hrc:67
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A4"
msgstr "A4"
#. Dmqus
-#: svx/source/dialog/page.hrc:67
+#: svx/source/dialog/page.hrc:68
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A3"
msgstr "A3"
#. XjWtg
-#: svx/source/dialog/page.hrc:68
+#: svx/source/dialog/page.hrc:69
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A2"
msgstr "A2"
#. yqBrH
-#: svx/source/dialog/page.hrc:69
+#: svx/source/dialog/page.hrc:70
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A1"
msgstr "A1"
#. Ao3sz
-#: svx/source/dialog/page.hrc:70
+#: svx/source/dialog/page.hrc:71
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A0"
msgstr "A0"
#. jvpHD
-#: svx/source/dialog/page.hrc:71
+#: svx/source/dialog/page.hrc:72
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. DGqE3
-#: svx/source/dialog/page.hrc:72
+#: svx/source/dialog/page.hrc:73
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. JrZiW
-#: svx/source/dialog/page.hrc:73
+#: svx/source/dialog/page.hrc:74
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. 8zZQc
-#: svx/source/dialog/page.hrc:74
+#: svx/source/dialog/page.hrc:75
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Letter"
msgstr "লেটাৰ"
#. NKMub
-#: svx/source/dialog/page.hrc:75
+#: svx/source/dialog/page.hrc:76
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Legal"
msgstr "লিগেল"
#. GyH6H
-#: svx/source/dialog/page.hrc:76
+#: svx/source/dialog/page.hrc:77
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Long Bond"
msgstr "দীঘল বান্ধনী"
#. gWjE2
-#: svx/source/dialog/page.hrc:77
+#: svx/source/dialog/page.hrc:78
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Tabloid"
msgstr "টেবলয়েড"
#. 5Dddp
-#: svx/source/dialog/page.hrc:78
+#: svx/source/dialog/page.hrc:79
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. sYcjZ
-#: svx/source/dialog/page.hrc:79
+#: svx/source/dialog/page.hrc:80
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. f9tD2
-#: svx/source/dialog/page.hrc:80
+#: svx/source/dialog/page.hrc:81
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. DGFbZ
-#: svx/source/dialog/page.hrc:81
+#: svx/source/dialog/page.hrc:82
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "16 Kai"
msgstr "16 Kai"
#. JbFMy
-#: svx/source/dialog/page.hrc:82
+#: svx/source/dialog/page.hrc:83
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "32 Kai"
msgstr "32 Kai"
#. E3CDE
-#: svx/source/dialog/page.hrc:83
+#: svx/source/dialog/page.hrc:84
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Big 32 Kai"
msgstr "ডাঙৰ 32 Kai"
#. rSAv7
-#: svx/source/dialog/page.hrc:84
+#: svx/source/dialog/page.hrc:85
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "User"
msgstr "ব্যৱহাৰকাৰী"
#. z3HXV
-#: svx/source/dialog/page.hrc:85
+#: svx/source/dialog/page.hrc:86
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "DL Envelope"
msgstr "DL খাম"
#. k2HBd
-#: svx/source/dialog/page.hrc:86
+#: svx/source/dialog/page.hrc:87
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6 Envelope"
msgstr "C6 খাম"
#. t43Ta
-#: svx/source/dialog/page.hrc:87
+#: svx/source/dialog/page.hrc:88
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6/5 Envelope"
msgstr "C6/5 খাম"
#. jfDNz
-#: svx/source/dialog/page.hrc:88
+#: svx/source/dialog/page.hrc:89
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C5 Envelope"
msgstr "C5 খাম"
#. h2cDh
-#: svx/source/dialog/page.hrc:89
+#: svx/source/dialog/page.hrc:90
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C4 Envelope"
msgstr "C4 খাম"
#. j4Hms
-#: svx/source/dialog/page.hrc:90
+#: svx/source/dialog/page.hrc:91
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Dia Slide"
msgstr "Dia স্লাইড"
#. ePYVT
-#: svx/source/dialog/page.hrc:91
+#: svx/source/dialog/page.hrc:92
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 4:3"
msgstr "পৰ্দা 4:3"
#. pWa4A
-#: svx/source/dialog/page.hrc:92
+#: svx/source/dialog/page.hrc:93
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:9"
msgstr "পৰ্দা 16:9"
#. T62Dx
-#: svx/source/dialog/page.hrc:93
+#: svx/source/dialog/page.hrc:94
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:10"
msgstr "পৰ্দা 16:9"
#. hwMzF
-#: svx/source/dialog/page.hrc:94
+#: svx/source/dialog/page.hrc:95
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Widescreen"
msgstr ""
#. HqpFJ
-#: svx/source/dialog/page.hrc:95
+#: svx/source/dialog/page.hrc:96
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (4:3)"
msgstr ""
#. PFU8U
-#: svx/source/dialog/page.hrc:96
+#: svx/source/dialog/page.hrc:97
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:9)"
msgstr ""
#. 48LFY
-#: svx/source/dialog/page.hrc:97
+#: svx/source/dialog/page.hrc:98
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:10)"
msgstr ""
#. ryFz3
-#: svx/source/dialog/page.hrc:98
+#: svx/source/dialog/page.hrc:99
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Japanese Postcard"
msgstr "জাপানী পস্টকাৰ্ড"
@@ -16633,19 +16639,19 @@ msgid "Direction:"
msgstr ""
#. GPC8q
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1009
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1013
msgctxt "findreplacedialog-mobile|rows"
msgid "Ro_ws"
msgstr ""
#. xCeTz
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1028
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1032
msgctxt "findreplacedialog-mobile|cols"
msgid "Colum_ns"
msgstr ""
#. fPE4f
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1072
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1076
msgctxt "findreplacedialog-mobile|label3"
msgid "Other _options"
msgstr ""
@@ -16987,58 +16993,58 @@ msgid "Search i_n:"
msgstr "ভিতৰলৈ সন্ধান কৰক (_n)"
#. GGhEA
-#: svx/uiconfig/ui/findreplacedialog.ui:1069
+#: svx/uiconfig/ui/findreplacedialog.ui:1070
msgctxt "findreplacedialog|calcsearchin"
msgid "Formulas"
msgstr "সূত্রবোৰ"
#. bpBeC
-#: svx/uiconfig/ui/findreplacedialog.ui:1070
+#: svx/uiconfig/ui/findreplacedialog.ui:1071
msgctxt "findreplacedialog|calcsearchin"
msgid "Values"
msgstr "মূল্যবোৰ"
#. zSUYq
-#: svx/uiconfig/ui/findreplacedialog.ui:1071
+#: svx/uiconfig/ui/findreplacedialog.ui:1072
msgctxt "findreplacedialog|calcsearchin"
msgid "Comments"
msgstr ""
#. K4WuW
-#: svx/uiconfig/ui/findreplacedialog.ui:1096
+#: svx/uiconfig/ui/findreplacedialog.ui:1097
#, fuzzy
msgctxt "findreplacedialog|searchdir"
msgid "Direction:"
msgstr "দিশ (_D):"
#. p2HBA
-#: svx/uiconfig/ui/findreplacedialog.ui:1113
+#: svx/uiconfig/ui/findreplacedialog.ui:1119
msgctxt "findreplacedialog|rows"
msgid "Ro_ws"
msgstr "শাৰীবোৰ (_w)"
#. uib5F
-#: svx/uiconfig/ui/findreplacedialog.ui:1132
+#: svx/uiconfig/ui/findreplacedialog.ui:1138
#, fuzzy
msgctxt "findreplacedialog|cols"
msgid "Colum_ns"
msgstr "স্তম্ভসমূহ"
#. Q6fG8
-#: svx/uiconfig/ui/findreplacedialog.ui:1176
+#: svx/uiconfig/ui/findreplacedialog.ui:1182
#, fuzzy
msgctxt "findreplacedialog|label3"
msgid "Other _options"
msgstr "অন্য বিকল্পসমূহ (_O)"
#. CPpFA
-#: svx/uiconfig/ui/findreplacedialog.ui:1183
+#: svx/uiconfig/ui/findreplacedialog.ui:1189
msgctxt "findreplacedialog|extended_tip|label3"
msgid "Shows more or fewer search options. Click this label again to hide the extended search options."
msgstr ""
#. YpLau
-#: svx/uiconfig/ui/findreplacedialog.ui:1219
+#: svx/uiconfig/ui/findreplacedialog.ui:1222
msgctxt "findreplacedialog|extended_tip|FindReplaceDialog"
msgid "Finds or replaces text or formats in the current document."
msgstr ""
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index e526163c0d4..ef6f30a2b1f 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: 2022-02-09 16:46+0100\n"
+"POT-Creation-Date: 2022-04-01 00:20+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"
@@ -190,218 +190,218 @@ msgid "_Yes"
msgstr "হয়"
#. DdjvG
-#: sw/inc/app.hrc:29
+#: sw/inc/app.hrc:31
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "All Styles"
msgstr "সকলো শৈলী"
#. aF6kb
-#: sw/inc/app.hrc:30
+#: sw/inc/app.hrc:32
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "লুকুৱা শৈলীবোৰ"
#. Sn6Pr
-#: sw/inc/app.hrc:31
+#: sw/inc/app.hrc:33
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Applied Styles"
msgstr "প্ৰয়োগ কৰা শৈলীবোৰ"
#. dPsnN
-#: sw/inc/app.hrc:32
+#: sw/inc/app.hrc:34
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Custom Styles"
msgstr "স্বনিৰ্বাচিত শৈলীবোৰ"
#. LL8tn
-#: sw/inc/app.hrc:33
+#: sw/inc/app.hrc:35
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Automatic"
msgstr "স্বচালিত"
#. W2ZFq
-#: sw/inc/app.hrc:34
+#: sw/inc/app.hrc:36
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Text Styles"
msgstr "লিখনী শৈলীবোৰ"
#. j6CkD
-#: sw/inc/app.hrc:35
+#: sw/inc/app.hrc:37
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Chapter Styles"
msgstr "আখৰৰ শৈলীবোৰ"
#. KgUsu
-#: sw/inc/app.hrc:36
+#: sw/inc/app.hrc:38
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "List Styles"
msgstr "শৈলীসমূহ তালিকাভুক্ত কৰক"
#. ZYAsP
-#: sw/inc/app.hrc:37
+#: sw/inc/app.hrc:39
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Index Styles"
msgstr "সূচী শৈলীবোৰ"
#. CXarp
-#: sw/inc/app.hrc:38
+#: sw/inc/app.hrc:40
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Special Styles"
msgstr "বিশেষ শৈলীবোৰ"
#. M9it7
-#: sw/inc/app.hrc:39
+#: sw/inc/app.hrc:41
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "HTML Styles"
msgstr "HTML শৈলীবোৰ"
#. TeuD3
-#: sw/inc/app.hrc:40
+#: sw/inc/app.hrc:42
#, fuzzy
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Conditional Styles"
msgstr "চৰ্তসাপেক্ষ শৈলীবোৰ"
#. EBcnz
-#: sw/inc/app.hrc:46
+#: sw/inc/app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. vmFjs
-#: sw/inc/app.hrc:47
+#: sw/inc/app.hrc:49
#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "লুকুৱা শৈলীবোৰ"
#. NG33n
-#: sw/inc/app.hrc:48
+#: sw/inc/app.hrc:50
#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Applied Styles"
msgstr "প্ৰয়োগ কৰা শৈলীবোৰ"
#. yubqD
-#: sw/inc/app.hrc:49
+#: sw/inc/app.hrc:51
#, fuzzy
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Custom Styles"
msgstr "স্বনিৰ্বাচিত শৈলীবোৰ"
#. hPACX
-#: sw/inc/app.hrc:55
+#: sw/inc/app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. NPGpT
-#: sw/inc/app.hrc:56
+#: sw/inc/app.hrc:58
#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "লুকুৱা শৈলীবোৰ"
#. R8bb3
-#: sw/inc/app.hrc:57
+#: sw/inc/app.hrc:59
#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Applied Styles"
msgstr "প্ৰয়োগ কৰা শৈলীবোৰ"
#. RFmiE
-#: sw/inc/app.hrc:58
+#: sw/inc/app.hrc:60
#, fuzzy
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Custom Styles"
msgstr "স্বনিৰ্বাচিত শৈলীবোৰ"
#. ADhCx
-#: sw/inc/app.hrc:64
+#: sw/inc/app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. kGzjB
-#: sw/inc/app.hrc:65
+#: sw/inc/app.hrc:67
#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "লুকুৱা শৈলীবোৰ"
#. CAEy6
-#: sw/inc/app.hrc:66
+#: sw/inc/app.hrc:68
#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Applied Styles"
msgstr "প্ৰয়োগ কৰা শৈলীবোৰ"
#. jQvqy
-#: sw/inc/app.hrc:67
+#: sw/inc/app.hrc:69
#, fuzzy
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Custom Styles"
msgstr "স্বনিৰ্বাচিত শৈলীবোৰ"
#. xFSbd
-#: sw/inc/app.hrc:73
+#: sw/inc/app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. DCRLB
-#: sw/inc/app.hrc:74
+#: sw/inc/app.hrc:76
#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "লুকুৱা শৈলীবোৰ"
#. 4BdCR
-#: sw/inc/app.hrc:75
+#: sw/inc/app.hrc:77
#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Applied Styles"
msgstr "প্ৰয়োগ কৰা শৈলীবোৰ"
#. A4VNy
-#: sw/inc/app.hrc:76
+#: sw/inc/app.hrc:78
#, fuzzy
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Custom Styles"
msgstr "স্বনিৰ্বাচিত শৈলীবোৰ"
#. DwpVB
-#: sw/inc/app.hrc:82
+#: sw/inc/app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
msgid "All Styles"
msgstr ""
#. TPRKY
-#: sw/inc/app.hrc:83
+#: sw/inc/app.hrc:85
#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "লুকুৱা শৈলীবোৰ"
#. Y9EKT
-#: sw/inc/app.hrc:84
+#: sw/inc/app.hrc:86
#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Applied Styles"
msgstr "প্ৰয়োগ কৰা শৈলীবোৰ"
#. UFVRD
-#: sw/inc/app.hrc:85
+#: sw/inc/app.hrc:87
#, fuzzy
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Custom Styles"
@@ -658,59 +658,59 @@ msgid ""
msgstr ""
#. daCFp
-#: sw/inc/flddinf.hrc:27
+#: sw/inc/flddinf.hrc:29
msgctxt "flddocinfopage|liststore1"
msgid "Author"
msgstr "লেখক"
#. syKG4
-#: sw/inc/flddinf.hrc:28
+#: sw/inc/flddinf.hrc:30
msgctxt "flddocinfopage|liststore1"
msgid "Time"
msgstr "সময়"
#. YVmE7
-#: sw/inc/flddinf.hrc:29
+#: sw/inc/flddinf.hrc:31
#, fuzzy
msgctxt "flddocinfopage|liststore1"
msgid "Date"
msgstr "তাৰিখ"
#. 2J6uc
-#: sw/inc/flddinf.hrc:30
+#: sw/inc/flddinf.hrc:32
msgctxt "flddocinfopage|liststore1"
msgid "Date Time Author"
msgstr ""
#. FzXBo
-#: sw/inc/fldref.hrc:27
+#: sw/inc/fldref.hrc:29
msgctxt "fldrefpage|liststore1"
msgid "Bookmarks"
msgstr "পৃষ্ঠাসংকেতবোৰ"
#. aGQG8
-#: sw/inc/fldref.hrc:28
+#: sw/inc/fldref.hrc:30
#, fuzzy
msgctxt "fldrefpage|liststore1"
msgid "Footnotes"
msgstr "ফুটনোট"
#. DyZeU
-#: sw/inc/fldref.hrc:29
+#: sw/inc/fldref.hrc:31
#, fuzzy
msgctxt "fldrefpage|liststore1"
msgid "Endnotes"
msgstr "এণ্ডনোট"
#. Cit9Z
-#: sw/inc/fldref.hrc:30
+#: sw/inc/fldref.hrc:32
#, fuzzy
msgctxt "fldrefpage|liststore1"
msgid "Headings"
msgstr "শিৰোনাম"
#. 95WGQ
-#: sw/inc/fldref.hrc:31
+#: sw/inc/fldref.hrc:33
#, fuzzy
msgctxt "fldrefpage|liststore1"
msgid "Numbered Paragraphs"
@@ -2079,181 +2079,181 @@ msgid "Writing Mode"
msgstr ""
#. QBR3s
-#: sw/inc/mmaddressblockpage.hrc:27
+#: sw/inc/mmaddressblockpage.hrc:29
msgctxt "RA_SALUTATION"
msgid "Dear"
msgstr "মৰমৰ"
#. xc8LH
-#: sw/inc/mmaddressblockpage.hrc:28
+#: sw/inc/mmaddressblockpage.hrc:30
msgctxt "RA_SALUTATION"
msgid "Hello"
msgstr "নমস্কাৰ"
#. 3dVR9
-#: sw/inc/mmaddressblockpage.hrc:29
+#: sw/inc/mmaddressblockpage.hrc:31
msgctxt "RA_SALUTATION"
msgid "Hi"
msgstr "নমস্কাৰ"
#. G4dAq
-#: sw/inc/mmaddressblockpage.hrc:34
+#: sw/inc/mmaddressblockpage.hrc:36
msgctxt "RA_PUNCTUATION"
msgid ","
msgstr ","
#. xpSNV
-#: sw/inc/mmaddressblockpage.hrc:35
+#: sw/inc/mmaddressblockpage.hrc:37
msgctxt "RA_PUNCTUATION"
msgid ":"
msgstr ":"
#. CBNXb
-#: sw/inc/mmaddressblockpage.hrc:36
+#: sw/inc/mmaddressblockpage.hrc:38
msgctxt "RA_PUNCTUATION"
msgid "!"
msgstr "!"
#. av4Wm
-#: sw/inc/mmaddressblockpage.hrc:37
+#: sw/inc/mmaddressblockpage.hrc:39
msgctxt "RA_PUNCTUATION"
msgid "(none)"
msgstr "(একো নাই)"
#. ujBVU
-#: sw/inc/optload.hrc:30
+#: sw/inc/optload.hrc:31
msgctxt "STR_ARR_METRIC"
msgid "Millimeter"
msgstr "মিলিমিটাৰ"
#. a9SsD
-#: sw/inc/optload.hrc:31
+#: sw/inc/optload.hrc:32
msgctxt "STR_ARR_METRIC"
msgid "Centimeter"
msgstr "ছেণ্টিমিটাৰ"
#. 2RuJU
-#: sw/inc/optload.hrc:32
+#: sw/inc/optload.hrc:33
msgctxt "STR_ARR_METRIC"
msgid "Meter"
msgstr "মিটাৰ"
#. s4zrG
-#: sw/inc/optload.hrc:33
+#: sw/inc/optload.hrc:34
msgctxt "STR_ARR_METRIC"
msgid "Kilometer"
msgstr "কিলোমিটাৰ"
#. SGXPk
-#: sw/inc/optload.hrc:34
+#: sw/inc/optload.hrc:35
msgctxt "STR_ARR_METRIC"
msgid "Inch"
msgstr "ইঞ্চি"
#. 3kDJD
-#: sw/inc/optload.hrc:35
+#: sw/inc/optload.hrc:36
msgctxt "STR_ARR_METRIC"
msgid "Foot"
msgstr "নিম্নাংশ"
#. Z9v2E
-#: sw/inc/optload.hrc:36
+#: sw/inc/optload.hrc:37
msgctxt "STR_ARR_METRIC"
msgid "Miles"
msgstr "মাইলছ"
#. ngFw4
-#: sw/inc/optload.hrc:37
+#: sw/inc/optload.hrc:38
msgctxt "STR_ARR_METRIC"
msgid "Pica"
msgstr "পিকা"
#. C2njC
-#: sw/inc/optload.hrc:38
+#: sw/inc/optload.hrc:39
msgctxt "STR_ARR_METRIC"
msgid "Point"
msgstr "বিন্দু"
#. FcXWG
-#: sw/inc/optload.hrc:39
+#: sw/inc/optload.hrc:40
msgctxt "STR_ARR_METRIC"
msgid "Char"
msgstr "Char"
#. ZZCxd
-#: sw/inc/optload.hrc:40
+#: sw/inc/optload.hrc:41
msgctxt "STR_ARR_METRIC"
msgid "Line"
msgstr "ৰেখা"
#. qQBCu
-#: sw/inc/outline.hrc:27
+#: sw/inc/outline.hrc:29
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 1"
msgstr "শিৰোনামবিহীন 1"
#. fJyA3
-#: sw/inc/outline.hrc:28
+#: sw/inc/outline.hrc:30
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 2"
msgstr "শিৰোনামবিহীন 2"
#. MLeBF
-#: sw/inc/outline.hrc:29
+#: sw/inc/outline.hrc:31
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 3"
msgstr "শিৰোনামবিহীন 3"
#. reXad
-#: sw/inc/outline.hrc:30
+#: sw/inc/outline.hrc:32
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 4"
msgstr "শিৰোনামবিহীন 4"
#. Fgpbv
-#: sw/inc/outline.hrc:31
+#: sw/inc/outline.hrc:33
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 5"
msgstr "শিৰোনামবিহীন 5"
#. Ea4d6
-#: sw/inc/outline.hrc:32
+#: sw/inc/outline.hrc:34
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 6"
msgstr "শিৰোনামবিহীন 6"
#. UcAcC
-#: sw/inc/outline.hrc:33
+#: sw/inc/outline.hrc:35
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 7"
msgstr "শিৰোনামবিহীন 7"
#. Dv26U
-#: sw/inc/outline.hrc:34
+#: sw/inc/outline.hrc:36
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 8"
msgstr "শিৰোনামবিহীন 8"
#. XxC5o
-#: sw/inc/outline.hrc:35
+#: sw/inc/outline.hrc:37
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 9"
msgstr "শিৰোনামবিহীন 9"
#. TTBSc
-#: sw/inc/pageformatpanel.hrc:23
+#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
msgstr ""
#. eNMWm
-#: sw/inc/pageformatpanel.hrc:24
+#: sw/inc/pageformatpanel.hrc:26
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
msgstr ""
#. MHtci
-#: sw/inc/pageformatpanel.hrc:25
+#: sw/inc/pageformatpanel.hrc:27
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
msgstr ""
@@ -2262,38 +2262,38 @@ msgstr ""
#. Normal (0.75")
#. Normal (1")
#. Normal (1.25")
-#: sw/inc/pageformatpanel.hrc:27 sw/inc/pageformatpanel.hrc:29
-#: sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:29 sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (%1)"
msgstr ""
#. DjCNK
-#: sw/inc/pageformatpanel.hrc:32
+#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
msgstr ""
#. JDMQe
-#: sw/inc/pageformatpanel.hrc:33
+#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Mirrored"
msgstr ""
#. J9o3y
-#: sw/inc/pageformatpanel.hrc:39
+#: sw/inc/pageformatpanel.hrc:41
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
msgstr ""
#. LxZSX
-#: sw/inc/pageformatpanel.hrc:40
+#: sw/inc/pageformatpanel.hrc:42
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
msgstr ""
#. EDy4U
-#: sw/inc/pageformatpanel.hrc:41
+#: sw/inc/pageformatpanel.hrc:43
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
msgstr ""
@@ -2302,20 +2302,20 @@ msgstr ""
#. Normal (1.9 cm)
#. Normal (2.54 cm)
#. Normal (3.18 cm)
-#: sw/inc/pageformatpanel.hrc:43 sw/inc/pageformatpanel.hrc:45
-#: sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:45 sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:49
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (%1)"
msgstr ""
#. oJfxD
-#: sw/inc/pageformatpanel.hrc:48
+#: sw/inc/pageformatpanel.hrc:50
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
msgstr ""
#. H9Qqx
-#: sw/inc/pageformatpanel.hrc:49
+#: sw/inc/pageformatpanel.hrc:51
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr ""
@@ -9419,281 +9419,293 @@ msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "ব্যৱহৃত পেৰেগ্ৰাফ শৈলীবোৰ"
-#. sgEbW
+#. WghdP
#: sw/inc/strings.hrc:1283
+msgctxt "STR_REDLINE_COMMENT_ADDED"
+msgid "Comment added"
+msgstr ""
+
+#. 2KNu9
+#: sw/inc/strings.hrc:1284
+msgctxt "STR_REDLINE_COMMENT_DELETED"
+msgid "Comment deleted"
+msgstr ""
+
+#. sgEbW
+#: sw/inc/strings.hrc:1285
msgctxt "STR_PAGE"
msgid "Page "
msgstr "পৃষ্ঠা "
#. 3DpEx
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1286
#, fuzzy
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "%n ৰ %p পৃষ্ঠা"
#. HSbzS
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1287
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr ""
#. a7tDc
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1288
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:1288
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "পেৰেগ্ৰাফ"
#. aAtmp
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "ছবি"
#. UBDMK
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE বস্তু"
#. xEWbo
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "ফ্ৰেম"
#. hfJns
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "টেবুল"
#. GRqNY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1295
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "টেবুলৰ শাৰী"
#. CDQY4
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1296
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "টেবুল কক্ষ"
#. 2Db9T
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1297
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "পৃষ্ঠা"
#. 63FuG
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1298
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "হেডাৰ"
#. aDuAY
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1299
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "ফুটাৰ"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1302
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION HTML দস্তাবেজ"
#. y2GBv
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TITLE"
msgid "Title"
msgstr "শীৰ্ষক"
#. AipGR
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1305
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "পৃথক কৰোঁতা"
#. CoSEf
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1306
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Level "
#. JdTF4
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1307
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:1306
+#: sw/inc/strings.hrc:1308
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "ব্যৱহাৰকাৰী-বিৱৰিত সূচী"
#. t5uWs
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1309
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<None>"
#. vSSnJ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1310
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<None>"
#. NSx98
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1311
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "পাঠ সংখ্যা"
#. FH365
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "প্রৱিষ্টি"
#. xZjtZ
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "টেব বন্ধ"
#. aXW8y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "লিখনি"
#. MCUd2
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1324
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "পৃষ্ঠাৰ সংখ্যা"
#. pXqw3
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "পাঠৰ তথ্য"
#. DRBSD
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1326
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "হাইপাৰলিংক আৰম্ভ"
#. Ytn5g
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1327
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "হাইপাৰলিংক অন্ত"
#. hRo3J
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1328
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "গ্রন্থ-সূচী প্রৱিষ্টি: "
#. ZKG5v
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1329
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "আখৰৰ শৈলী: "
#. d9BES
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1330
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "গঠন লিখনি"
#. kwoGP
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1331
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:1330
+#: sw/inc/strings.hrc:1332
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "গঠন নিয়ন্ত্ৰণসমূহ বাছিবলে বাঁও অথবা সোঁ কাঁড় টিপক"
#. 59eRi
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1333
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:1332
+#: sw/inc/strings.hrc:1334
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "বর্ণমালা সূচীৰ বাবে বাছনী ফাইল (*.sdi)"
@@ -9702,268 +9714,268 @@ msgstr "বর্ণমালা সূচীৰ বাবে বাছনী
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1337
+#: sw/inc/strings.hrc:1339
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "ওপৰত আধাৰ ৰেখা (~t)"
#. 5GiEA
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1340
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "তলত আধাৰ ৰেখা (~B)"
#. sdyVF
-#: sw/inc/strings.hrc:1339
+#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "আধাৰ ৰেখা কেন্দ্রীকৃত (~c)"
#. NAXyZ
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1342
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert object"
msgstr "বস্তু ভৰাওক"
#. 5C6Rc
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1343
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit object"
msgstr "বস্তু সম্পাদনা কৰক"
#. 3QFYB
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1344
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (নমুনা: "
#. oUhnK
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1345
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. T2SH2
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1346
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
#. K6Yvs
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1348
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(পেৰেগ্ৰাফ শৈলী: "
#. Fsanh
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1349
#, 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:1349
+#: sw/inc/strings.hrc:1351
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION মুখ্য দস্তাবেজ"
#. kWe9j
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1353
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1354
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr ""
#. oUR7Y
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1355
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr ""
#. GBVqD
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1357
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr ""
#. rZBXF
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1358
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "কোনো নহয় (বানান নিৰীক্ষন নকৰিব)"
#. Z8EjG
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1359
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "অবিকল্পিত ভাষালৈ পুনৰ সংহতি কৰা"
#. YEXdS
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1360
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "অধিক..."
#. QecQ3
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1361
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "উপেক্ষা কৰক (~I)"
#. aaiBM
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1362
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr ""
#. kSDGu
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1364
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr ""
#. KiAdJ
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1365
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr ""
#. FqsCt
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1366
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:1365
+#: sw/inc/strings.hrc:1367
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr ""
#. K9qMS
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1368
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr ""
#. XWQ8w
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1369
#, fuzzy
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML ডকুমেন্ট"
#. qVZBx
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1370
#, fuzzy
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "প্ৰতিটো দস্তাবেজত"
#. qmmPU
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1371
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr ""
#. 2LgDJ
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1372
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Level "
#. AcAD8
-#: sw/inc/strings.hrc:1371
+#: sw/inc/strings.hrc:1373
#, fuzzy
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "ৰূপৰেখা"
#. DE9FZ
-#: sw/inc/strings.hrc:1372
+#: sw/inc/strings.hrc:1374
#, fuzzy
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "ফুটনোট/এণ্ডনোট সুমুৱাওক"
#. EzBCZ
-#: sw/inc/strings.hrc:1373
+#: sw/inc/strings.hrc:1375
#, fuzzy
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "সন্ধান চাবিৰে XX সময় সলনি কৰা হ'ল"
#. fgywB
-#: sw/inc/strings.hrc:1374
+#: sw/inc/strings.hrc:1376
#, fuzzy
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "শাৰীবোৰ"
#. GUc4a
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1377
#, fuzzy
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "স্তম্ভ"
#. yMyuo
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1378
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr ""
#. ywFCb
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1379
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr ""
#. BT3M3
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1381
#, fuzzy
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "চলাই থাকক"
#. ZR9aw
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1382
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr ""
#. YCNYb
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1383
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr ""
#. fmHmE
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1384
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr ""
#. yAAPM
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1386
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:1386
+#: sw/inc/strings.hrc:1388
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr ""
#. RmBFW
-#: sw/inc/strings.hrc:1388
+#: sw/inc/strings.hrc:1390
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr ""
@@ -9972,7 +9984,7 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1396
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -9981,274 +9993,274 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1399
+#: sw/inc/strings.hrc:1401
msgctxt "STR_VALID"
msgid " Valid "
msgstr ""
#. xAKRC
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1402
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr ""
#. pDAHz
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1403
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr ""
#. etEEx
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1404
#, fuzzy
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "স্বাক্ষৰ কৰিছে "
#. BK7ub
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1405
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr ""
#. kZKCf
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1407
#, fuzzy
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "ব্যৱসায়িক কার্ডসমূহ (~u)"
#. ECFij
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1409
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr ""
#. PwrB9
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1411
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "সুমুৱাওক"
#. NL48o
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1412
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "মচি পেলাওক"
#. PW4Bz
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1413
#, fuzzy
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "এট্রিবিয়ুটবোৰ"
#. yfgiq
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1415
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr ""
#. fhLzk
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1416
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr ""
#. gD4D3
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1417
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "প্ৰথম চাবি"
#. BFszo
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1418
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "দ্বিতীয় চাবি"
#. EoAB8
-#: sw/inc/strings.hrc:1417
+#: sw/inc/strings.hrc:1419
#, fuzzy
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "মন্তব্যসমূহ"
#. Shstx
-#: sw/inc/strings.hrc:1418
+#: sw/inc/strings.hrc:1420
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "ফলা মিল খোৱাওক"
#. 8Cjvb
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1421
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr ""
#. zD8rb
-#: sw/inc/strings.hrc:1420
+#: sw/inc/strings.hrc:1422
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "হয়"
#. 4tTop
-#: sw/inc/strings.hrc:1421
+#: sw/inc/strings.hrc:1423
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "নহয়"
#. KhKwa
-#: sw/inc/strings.hrc:1423
+#: sw/inc/strings.hrc:1425
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "নিজৰ পছন্দৰ মতে"
#. YiRsr
-#: sw/inc/utlui.hrc:27
+#: sw/inc/utlui.hrc:29
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Remove empty paragraphs"
msgstr "খালী পেৰেগ্ৰাফবোৰ আঁতৰাওক"
#. zWFE6
-#: sw/inc/utlui.hrc:28
+#: sw/inc/utlui.hrc:30
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Use replacement table"
msgstr "প্ৰতিস্থাপন টেবুল ব্যৱহাৰ কৰক"
#. EQfLp
-#: sw/inc/utlui.hrc:29
+#: sw/inc/utlui.hrc:31
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Correct TWo INitial CApitals"
msgstr "TWo INitial CApitals শুদ্ধ কৰক"
#. JBCDA
-#: sw/inc/utlui.hrc:30
+#: sw/inc/utlui.hrc:32
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Capitalize first letter of sentences"
msgstr "বাক্যৰ প্ৰথম আখৰটো বৰফলাৰ কৰক"
#. eGLb9
-#: sw/inc/utlui.hrc:31
+#: sw/inc/utlui.hrc:33
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace \"standard\" quotes with %1custom%2 quotes"
msgstr "\"standard\" quotes ক %1 \\bcustom%2 quotes ৰ সৈতে প্ৰতিস্থাপন কৰক"
#. dgZCx
-#: sw/inc/utlui.hrc:32
+#: sw/inc/utlui.hrc:34
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace Custom Styles"
msgstr "কাষ্টম শৈলীবোৰৰ প্ৰতিস্থাপন কৰক"
#. zXHk9
-#: sw/inc/utlui.hrc:33
+#: sw/inc/utlui.hrc:35
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Bullets replaced"
msgstr "বুলেটবোৰ সলনি কৰা হ'ল"
#. p7V6t
-#: sw/inc/utlui.hrc:34
+#: sw/inc/utlui.hrc:36
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic _underline_"
msgstr "স্বয়ংক্রিয় _আণ্ডাৰলাইন_"
#. Hzt7q
-#: sw/inc/utlui.hrc:35
+#: sw/inc/utlui.hrc:37
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic *bold*"
msgstr "স্বয়ংক্রিয় ইনপুট *বল্ড*"
#. oMfhs
-#: sw/inc/utlui.hrc:36
+#: sw/inc/utlui.hrc:38
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1/2 ... with ½ ..."
msgstr "1/2 ... ক ½ ৰ ... সৈতে প্ৰতিস্থাপন কৰক"
#. UCK6y
-#: sw/inc/utlui.hrc:37
+#: sw/inc/utlui.hrc:39
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "URL recognition"
msgstr "URL চিনাক্তকৰণ"
#. MD9fC
-#: sw/inc/utlui.hrc:38
+#: sw/inc/utlui.hrc:40
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace dashes"
msgstr "ডেশ্ববোৰৰ প্ৰতিস্থাপন কৰক"
#. YABTx
-#: sw/inc/utlui.hrc:39
+#: sw/inc/utlui.hrc:41
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1st... with 1^st..."
msgstr "1st...ক 1^st... ৰ সৈতে প্ৰতিস্থাপন কৰক"
#. ebBjY
-#: sw/inc/utlui.hrc:40
+#: sw/inc/utlui.hrc:42
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine single line paragraphs"
msgstr "এটা শাৰী থকা পেৰেগ্ৰাফবোৰ লগ কৰক"
#. Gtaxa
-#: sw/inc/utlui.hrc:41
+#: sw/inc/utlui.hrc:43
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body\" Style"
msgstr "ছেট \"টেক্সট্ বডি \" ষ্টাইল"
#. P8xFp
-#: sw/inc/utlui.hrc:42 sw/inc/utlui.hrc:44
+#: sw/inc/utlui.hrc:44 sw/inc/utlui.hrc:46
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Text body indent\" Style"
msgstr "\"লিখনী শৰীৰ ইণ্ডেন্ট\" শৈলী সংহতি কৰক"
#. UUEwQ
-#: sw/inc/utlui.hrc:43
+#: sw/inc/utlui.hrc:45
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Hanging indent\" Style"
msgstr "ছেট \"হেঙিং ইণ্ডেন্ট\" ষ্টাইল"
#. qv2KD
-#: sw/inc/utlui.hrc:45
+#: sw/inc/utlui.hrc:47
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Heading $(ARG1)\" Style"
msgstr "ছেট \"শিৰোনাম $(ARG1)\" শৈলী"
#. orFXE
-#: sw/inc/utlui.hrc:46
+#: sw/inc/utlui.hrc:48
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Bullet\" or \"Numbering\" Style"
msgstr "ছেট \"বুলেট\" আৰু\"নাম্বাৰীং\" শৈলী"
#. yGoaB
-#: sw/inc/utlui.hrc:47
+#: sw/inc/utlui.hrc:49
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine paragraphs"
msgstr "পেৰেগ্ৰাফবোৰ সংযোগ কৰক"
#. rpT9U
-#: sw/inc/utlui.hrc:48
+#: sw/inc/utlui.hrc:50
#, fuzzy
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "ভাঙি নোযোৱা ঠাই যোগ কৰক"
#. FHPwi
-#: sw/inc/utlui.hrc:49
+#: sw/inc/utlui.hrc:51
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
msgstr ""
@@ -12333,172 +12345,172 @@ msgid "Width and Spacing"
msgstr "প্ৰস্থ আৰু ব্যৱধান"
#. aBAZn
-#: sw/uiconfig/swriter/ui/columnpage.ui:442
+#: sw/uiconfig/swriter/ui/columnpage.ui:439
#, fuzzy
msgctxt "columnpage|linestyleft"
msgid "St_yle:"
msgstr "শৈলী (_y)"
#. iTh5i
-#: sw/uiconfig/swriter/ui/columnpage.ui:456
+#: sw/uiconfig/swriter/ui/columnpage.ui:453
#, fuzzy
msgctxt "columnpage|linewidthft"
msgid "_Width:"
msgstr "প্ৰস্থ"
#. fEm38
-#: sw/uiconfig/swriter/ui/columnpage.ui:470
+#: sw/uiconfig/swriter/ui/columnpage.ui:467
#, fuzzy
msgctxt "columnpage|lineheightft"
msgid "H_eight:"
msgstr "উচ্চতা"
#. vKEyi
-#: sw/uiconfig/swriter/ui/columnpage.ui:484
+#: sw/uiconfig/swriter/ui/columnpage.ui:481
#, fuzzy
msgctxt "columnpage|lineposft"
msgid "_Position:"
msgstr "স্থান (_P)"
#. yhqBe
-#: sw/uiconfig/swriter/ui/columnpage.ui:507
+#: sw/uiconfig/swriter/ui/columnpage.ui:504
msgctxt "columnpage|extended_tip|linestylelb"
msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"."
msgstr ""
#. DcSGt
-#: sw/uiconfig/swriter/ui/columnpage.ui:521
+#: sw/uiconfig/swriter/ui/columnpage.ui:518
msgctxt "columnpage|lineposlb"
msgid "Top"
msgstr "ওপৰ"
#. MKcWL
-#: sw/uiconfig/swriter/ui/columnpage.ui:522
+#: sw/uiconfig/swriter/ui/columnpage.ui:519
msgctxt "columnpage|lineposlb"
msgid "Centered"
msgstr "কেন্দ্ৰীত"
#. CxCJF
-#: sw/uiconfig/swriter/ui/columnpage.ui:523
+#: sw/uiconfig/swriter/ui/columnpage.ui:520
msgctxt "columnpage|lineposlb"
msgid "Bottom"
msgstr "তলত"
#. Akv5r
-#: sw/uiconfig/swriter/ui/columnpage.ui:527
+#: sw/uiconfig/swriter/ui/columnpage.ui:524
msgctxt "columnpage|extended_tip|lineposlb"
msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%."
msgstr ""
#. FMShH
-#: sw/uiconfig/swriter/ui/columnpage.ui:545
+#: sw/uiconfig/swriter/ui/columnpage.ui:542
msgctxt "columnpage|extended_tip|lineheightmf"
msgid "Enter the length of the separator line as a percentage of the height of the column area."
msgstr ""
#. kkGNR
-#: sw/uiconfig/swriter/ui/columnpage.ui:589
+#: sw/uiconfig/swriter/ui/columnpage.ui:586
#, fuzzy
msgctxt "columnpage|linecolorft"
msgid "_Color:"
msgstr "ৰং (_C)"
#. 9o7DQ
-#: sw/uiconfig/swriter/ui/columnpage.ui:623
+#: sw/uiconfig/swriter/ui/columnpage.ui:620
#, fuzzy
msgctxt "columnpage|label11"
msgid "Separator Line"
msgstr "পৃথক কৰোঁতা ৰেখা"
#. 7SaDT
-#: sw/uiconfig/swriter/ui/columnpage.ui:672
+#: sw/uiconfig/swriter/ui/columnpage.ui:669
#, fuzzy
msgctxt "columnpage|label3"
msgid "Columns:"
msgstr "স্তম্ভবোৰ (_C):"
#. aF466
-#: sw/uiconfig/swriter/ui/columnpage.ui:691
+#: sw/uiconfig/swriter/ui/columnpage.ui:688
msgctxt "columnpage|extended_tip|colsnf"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr ""
#. X9vG6
-#: sw/uiconfig/swriter/ui/columnpage.ui:714
+#: sw/uiconfig/swriter/ui/columnpage.ui:711
msgctxt "columnpage|balance"
msgid "Evenly distribute contents _to all columns"
msgstr "সকলোবোৰ স্তম্ভলৈ যুগ্মভাৱে বিষয়সূচী বিতৰণ কৰক (_t)"
#. BYYDE
-#: sw/uiconfig/swriter/ui/columnpage.ui:722
+#: sw/uiconfig/swriter/ui/columnpage.ui:719
msgctxt "columnpage|extended_tip|balance"
msgid "Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically."
msgstr ""
#. bV6Pg
-#: sw/uiconfig/swriter/ui/columnpage.ui:742
+#: sw/uiconfig/swriter/ui/columnpage.ui:739
msgctxt "columnpage|liststore2"
msgid "Selection"
msgstr "নিৰ্বাচন"
#. qA5MH
-#: sw/uiconfig/swriter/ui/columnpage.ui:743
+#: sw/uiconfig/swriter/ui/columnpage.ui:740
msgctxt "columnpage|liststore2"
msgid "Current Section"
msgstr "বর্তমানৰ বিভাগ"
#. VSvpa
-#: sw/uiconfig/swriter/ui/columnpage.ui:744
+#: sw/uiconfig/swriter/ui/columnpage.ui:741
msgctxt "columnpage|liststore2"
msgid "Selected section"
msgstr "নিৰ্বাচিত খণ্ড"
#. Mo9GL
-#: sw/uiconfig/swriter/ui/columnpage.ui:745
+#: sw/uiconfig/swriter/ui/columnpage.ui:742
msgctxt "columnpage|liststore2"
msgid "Frame"
msgstr "ফ্ৰেম"
#. mBmAm
-#: sw/uiconfig/swriter/ui/columnpage.ui:746
+#: sw/uiconfig/swriter/ui/columnpage.ui:743
msgctxt "columnpage|liststore2"
msgid "Page Style: "
msgstr "পৃষ্ঠা শৈলী: "
#. F7MQT
-#: sw/uiconfig/swriter/ui/columnpage.ui:750
+#: sw/uiconfig/swriter/ui/columnpage.ui:747
msgctxt "columnpage|extended_tip|applytolb"
msgid "Select the item that you want to apply the column layout to."
msgstr ""
#. AJFqx
-#: sw/uiconfig/swriter/ui/columnpage.ui:763
+#: sw/uiconfig/swriter/ui/columnpage.ui:760
#, fuzzy
msgctxt "columnpage|applytoft"
msgid "_Apply to:"
msgstr "লৈ প্ৰয়োগ কৰক (_A)"
#. rzBnm
-#: sw/uiconfig/swriter/ui/columnpage.ui:790
+#: sw/uiconfig/swriter/ui/columnpage.ui:787
#, fuzzy
msgctxt "columnpage|textdirectionft"
msgid "Text _direction:"
msgstr "টেক্সটৰ দিশ (_d)"
#. dcDde
-#: sw/uiconfig/swriter/ui/columnpage.ui:834
+#: sw/uiconfig/swriter/ui/columnpage.ui:831
msgctxt "columnpage|extended_tip|valueset"
msgid "Enter the number of columns that you want in the page, frame, or section."
msgstr ""
#. fEbMc
-#: sw/uiconfig/swriter/ui/columnpage.ui:849
+#: sw/uiconfig/swriter/ui/columnpage.ui:846
msgctxt "columnpage|label2"
msgid "Settings"
msgstr "সংহতিসমূহ"
#. 3dGYz
-#: sw/uiconfig/swriter/ui/columnpage.ui:904
+#: sw/uiconfig/swriter/ui/columnpage.ui:901
msgctxt "columnpage|extended_tip|ColumnPage"
msgid "Specifies the number of columns and the column layout for a page style, frame, or section."
msgstr ""
@@ -15341,182 +15353,182 @@ msgid "Position"
msgstr "স্থান"
#. okHEF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:86
+#: sw/uiconfig/swriter/ui/footnotepage.ui:92
msgctxt "footnotepage|offset"
msgid "Start at"
msgstr "চিহ্নিত স্থানত আৰম্ভ কৰক"
#. T7pFk
-#: sw/uiconfig/swriter/ui/footnotepage.ui:98
+#: sw/uiconfig/swriter/ui/footnotepage.ui:104
msgctxt "footnotepage|label11"
msgid "After"
msgstr "পাছত"
#. iA9We
-#: sw/uiconfig/swriter/ui/footnotepage.ui:108
+#: sw/uiconfig/swriter/ui/footnotepage.ui:114
msgctxt "footnotepage|pospagecb"
msgid "End of page"
msgstr "পৃষ্ঠাৰ অন্ত"
#. zqfGN
-#: sw/uiconfig/swriter/ui/footnotepage.ui:120
+#: sw/uiconfig/swriter/ui/footnotepage.ui:126
msgctxt "footnotepage|extended_tip|pospagecb"
msgid "Displays footnotes at the bottom of the page."
msgstr ""
#. 8zwoB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:131
+#: sw/uiconfig/swriter/ui/footnotepage.ui:137
msgctxt "footnotepage|posdoccb"
msgid "End of document"
msgstr "দস্তাবেজৰ অন্ত"
#. xvD3V
-#: sw/uiconfig/swriter/ui/footnotepage.ui:143
+#: sw/uiconfig/swriter/ui/footnotepage.ui:149
msgctxt "footnotepage|extended_tip|posdoccb"
msgid "Displays footnotes at the end of the document as endnotes."
msgstr ""
#. BGVTw
-#: sw/uiconfig/swriter/ui/footnotepage.ui:161
+#: sw/uiconfig/swriter/ui/footnotepage.ui:167
msgctxt "footnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box."
msgstr ""
#. RWgzD
-#: sw/uiconfig/swriter/ui/footnotepage.ui:175
+#: sw/uiconfig/swriter/ui/footnotepage.ui:181
msgctxt "footnotepage|liststore1"
msgid "Per page"
msgstr "প্ৰতিটো পৃষ্ঠাত"
#. MELvZ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:176
+#: sw/uiconfig/swriter/ui/footnotepage.ui:182
msgctxt "footnotepage|liststore1"
msgid "Per chapter"
msgstr "প্ৰতিটো অধ্যায়ত"
#. oD7zV
-#: sw/uiconfig/swriter/ui/footnotepage.ui:177
+#: sw/uiconfig/swriter/ui/footnotepage.ui:183
msgctxt "footnotepage|liststore1"
msgid "Per document"
msgstr "প্ৰতিটো দস্তাবেজত"
#. BDrKx
-#: sw/uiconfig/swriter/ui/footnotepage.ui:181
+#: sw/uiconfig/swriter/ui/footnotepage.ui:187
msgctxt "footnotepage|extended_tip|countinglb"
msgid "Select the numbering option for the footnotes."
msgstr ""
#. 7GqFA
-#: sw/uiconfig/swriter/ui/footnotepage.ui:198
+#: sw/uiconfig/swriter/ui/footnotepage.ui:204
msgctxt "footnotepage|extended_tip|prefix"
msgid "Enter the text that you want to display in front of the footnote number in the note text."
msgstr ""
#. 7rE4w
-#: sw/uiconfig/swriter/ui/footnotepage.ui:215
+#: sw/uiconfig/swriter/ui/footnotepage.ui:221
msgctxt "footnotepage|extended_tip|suffix"
msgid "Enter the text that you want to display after the footnote number in the note text."
msgstr ""
#. YAUrj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:230
+#: sw/uiconfig/swriter/ui/footnotepage.ui:236
msgctxt "footnotepage|extended_tip|numberinglb"
msgid "Select the numbering scheme that you want to use."
msgstr ""
#. Gzv4E
-#: sw/uiconfig/swriter/ui/footnotepage.ui:248
+#: sw/uiconfig/swriter/ui/footnotepage.ui:254
msgctxt "footnotepage|label3"
msgid "Autonumbering"
msgstr "স্বয়ংক্ৰিয় নম্বৰিং"
#. NRpEM
-#: sw/uiconfig/swriter/ui/footnotepage.ui:281
+#: sw/uiconfig/swriter/ui/footnotepage.ui:287
msgctxt "footnotepage|label17"
msgid "End of footnote"
msgstr "ফুটনোটৰ অন্ত"
#. cQefG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:293
+#: sw/uiconfig/swriter/ui/footnotepage.ui:299
msgctxt "footnotepage|label18"
msgid "Start of next page"
msgstr "পৰৱৰ্তী পৃষ্ঠাৰ আৰম্ভণি"
#. CUWNP
-#: sw/uiconfig/swriter/ui/footnotepage.ui:311
+#: sw/uiconfig/swriter/ui/footnotepage.ui:317
msgctxt "footnotepage|extended_tip|contfromed"
msgid "Enter the text that you want to display on the page where the footnotes are continued, for example, \"Continued from Page \". Writer automatically inserts the number of the previous page."
msgstr ""
#. 2X7QW
-#: sw/uiconfig/swriter/ui/footnotepage.ui:330
+#: sw/uiconfig/swriter/ui/footnotepage.ui:336
msgctxt "footnotepage|extended_tip|conted"
msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". Writer automatically inserts the number of the following page."
msgstr ""
#. ZEhG2
-#: sw/uiconfig/swriter/ui/footnotepage.ui:345
+#: sw/uiconfig/swriter/ui/footnotepage.ui:351
#, fuzzy
msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "ধাৰাবাহিকতাৰ জাননী"
#. jHwyG
-#: sw/uiconfig/swriter/ui/footnotepage.ui:376
+#: sw/uiconfig/swriter/ui/footnotepage.ui:382
msgctxt "footnotepage|label4"
msgid "Paragraph"
msgstr "দফা"
#. 95fCg
-#: sw/uiconfig/swriter/ui/footnotepage.ui:388
+#: sw/uiconfig/swriter/ui/footnotepage.ui:394
msgctxt "footnotepage|pagestyleft"
msgid "Page"
msgstr "পৃষ্ঠা"
#. RFDnB
-#: sw/uiconfig/swriter/ui/footnotepage.ui:403
+#: sw/uiconfig/swriter/ui/footnotepage.ui:409
msgctxt "footnotepage|extended_tip|parastylelb"
msgid "Select the paragraph style for the footnote text. Only special styles can be selected."
msgstr ""
#. bhosj
-#: sw/uiconfig/swriter/ui/footnotepage.ui:419
+#: sw/uiconfig/swriter/ui/footnotepage.ui:425
msgctxt "footnotepage|extended_tip|pagestylelb"
msgid "Select the page style that you want to use for footnotes."
msgstr ""
#. ESqR9
-#: sw/uiconfig/swriter/ui/footnotepage.ui:435
+#: sw/uiconfig/swriter/ui/footnotepage.ui:441
msgctxt "footnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for footnote anchors in the text area of your document."
msgstr ""
#. EfWvJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:451
+#: sw/uiconfig/swriter/ui/footnotepage.ui:457
msgctxt "footnotepage|extended_tip|charstylelb"
msgid "Select the character style that you want to use for the footnote numbers in the footnote area."
msgstr ""
#. ZP5bQ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:464
+#: sw/uiconfig/swriter/ui/footnotepage.ui:470
msgctxt "footnotepage|label15"
msgid "Text area"
msgstr "লিখনী স্থান"
#. aYFwJ
-#: sw/uiconfig/swriter/ui/footnotepage.ui:476
+#: sw/uiconfig/swriter/ui/footnotepage.ui:482
msgctxt "footnotepage|label16"
msgid "Footnote area"
msgstr "ফুটনোট এৰিয়া"
#. j8ZuF
-#: sw/uiconfig/swriter/ui/footnotepage.ui:490
+#: sw/uiconfig/swriter/ui/footnotepage.ui:496
msgctxt "footnotepage|label12"
msgid "Styles"
msgstr "শৈলীসমূহ"
#. soD9k
-#: sw/uiconfig/swriter/ui/footnotepage.ui:504
+#: sw/uiconfig/swriter/ui/footnotepage.ui:510
msgctxt "footnotepage|extended_tip|FootnotePage"
msgid "Specifies the formatting for footnotes."
msgstr ""
@@ -16704,127 +16716,127 @@ msgid "New User-defined Index"
msgstr "নতুন ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত সূচী"
#. zTEFk
-#: sw/uiconfig/swriter/ui/indexentry.ui:213
+#: sw/uiconfig/swriter/ui/indexentry.ui:210
msgctxt "indexentry|label3"
msgid "Entry"
msgstr "প্রৱিষ্টি"
#. jcbjL
-#: sw/uiconfig/swriter/ui/indexentry.ui:229
+#: sw/uiconfig/swriter/ui/indexentry.ui:226
msgctxt "indexentry|key1ft"
msgid "1st key"
msgstr "প্ৰথম চাবি"
#. B47KE
-#: sw/uiconfig/swriter/ui/indexentry.ui:245
+#: sw/uiconfig/swriter/ui/indexentry.ui:242
msgctxt "indexentry|key2ft"
msgid "2nd key"
msgstr "দ্বিতীয় চাবি"
#. ReqDn
-#: sw/uiconfig/swriter/ui/indexentry.ui:260
+#: sw/uiconfig/swriter/ui/indexentry.ui:257
msgctxt "indexentry|levelft"
msgid "Level"
msgstr "স্তৰ"
#. QybEJ
-#: sw/uiconfig/swriter/ui/indexentry.ui:291
+#: sw/uiconfig/swriter/ui/indexentry.ui:288
msgctxt "indexentry|phonetic0ft"
msgid "Phonetic reading"
msgstr "ধ্বনিতাত্বিক পঢ়া"
#. JCtnw
-#: sw/uiconfig/swriter/ui/indexentry.ui:307
+#: sw/uiconfig/swriter/ui/indexentry.ui:304
msgctxt "indexentry|phonetic1ft"
msgid "Phonetic reading"
msgstr "ধ্বনিতাত্বিক পঢ়া"
#. C6FQC
-#: sw/uiconfig/swriter/ui/indexentry.ui:323
+#: sw/uiconfig/swriter/ui/indexentry.ui:320
msgctxt "indexentry|phonetic2ft"
msgid "Phonetic reading"
msgstr "ধ্বনিতাত্বিক পঢ়া"
#. JbXGT
-#: sw/uiconfig/swriter/ui/indexentry.ui:413
+#: sw/uiconfig/swriter/ui/indexentry.ui:410
msgctxt "indexentry|sync|tooltip_text"
msgid "Update entry from selection"
msgstr ""
#. B5PWe
-#: sw/uiconfig/swriter/ui/indexentry.ui:462
+#: sw/uiconfig/swriter/ui/indexentry.ui:459
msgctxt "indexentry|mainentrycb"
msgid "Main entry"
msgstr "মুখ্য প্রৱিষ্টি"
#. 4QfoT
-#: sw/uiconfig/swriter/ui/indexentry.ui:476
+#: sw/uiconfig/swriter/ui/indexentry.ui:473
msgctxt "indexentry|applytoallcb"
msgid "Apply to all similar texts"
msgstr "সকলো সদৃশ লিখনীলে প্ৰয়োগ কৰক"
#. ZdMSz
-#: sw/uiconfig/swriter/ui/indexentry.ui:490
+#: sw/uiconfig/swriter/ui/indexentry.ui:487
msgctxt "indexentry|searchcasesensitivecb"
msgid "Match case"
msgstr "ফলা মিল খোৱাওক"
#. 8Q9RW
-#: sw/uiconfig/swriter/ui/indexentry.ui:505
+#: sw/uiconfig/swriter/ui/indexentry.ui:502
msgctxt "indexentry|searchcasewordonlycb"
msgid "Whole words only"
msgstr "কেৱল সম্পূৰ্ণ শব্দ"
#. 62yyk
-#: sw/uiconfig/swriter/ui/indexentry.ui:539
+#: sw/uiconfig/swriter/ui/indexentry.ui:536
msgctxt "indexentry|previous|tooltip_text"
msgid "Previous entry"
msgstr ""
#. Vd86J
-#: sw/uiconfig/swriter/ui/indexentry.ui:542
+#: sw/uiconfig/swriter/ui/indexentry.ui:539
msgctxt "indexentry|extended_tip|previous"
msgid "Jumps to the previous index entry of the same type in the document."
msgstr ""
#. VsuQU
-#: sw/uiconfig/swriter/ui/indexentry.ui:560
+#: sw/uiconfig/swriter/ui/indexentry.ui:557
msgctxt "indexentry|next|tooltip_text"
msgid "Next entry"
msgstr ""
#. WsgJC
-#: sw/uiconfig/swriter/ui/indexentry.ui:563
+#: sw/uiconfig/swriter/ui/indexentry.ui:560
msgctxt "indexentry|extended_tip|next"
msgid "Jumps to the next index entry of the same type in the document."
msgstr ""
#. KnhCr
-#: sw/uiconfig/swriter/ui/indexentry.ui:581
+#: sw/uiconfig/swriter/ui/indexentry.ui:578
msgctxt "indexentry|first|tooltip_text"
msgid "Previous entry (same name)"
msgstr ""
#. 3dGEa
-#: sw/uiconfig/swriter/ui/indexentry.ui:584
+#: sw/uiconfig/swriter/ui/indexentry.ui:581
msgctxt "indexentry|extended_tip|first"
msgid "Jumps to the previous index entry of the same type and with the same name in the document."
msgstr ""
#. 2mkMr
-#: sw/uiconfig/swriter/ui/indexentry.ui:602
+#: sw/uiconfig/swriter/ui/indexentry.ui:599
msgctxt "indexentry|last|tooltip_text"
msgid "Next entry (same name)"
msgstr ""
#. gYHoh
-#: sw/uiconfig/swriter/ui/indexentry.ui:605
+#: sw/uiconfig/swriter/ui/indexentry.ui:602
msgctxt "indexentry|extended_tip|last"
msgid "Jumps to the next index entry of the same type and with the same name in the document."
msgstr ""
#. dLE2B
-#: sw/uiconfig/swriter/ui/indexentry.ui:633
+#: sw/uiconfig/swriter/ui/indexentry.ui:630
msgctxt "indexentry|label1"
msgid "Selection"
msgstr "নিৰ্বাচন"
@@ -17407,74 +17419,104 @@ msgctxt "insertbreak|linerb-atkobject"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr ""
+#. 88jq6
+#: sw/uiconfig/swriter/ui/insertbreak.ui:122
+msgctxt "insertbreak|clearft"
+msgid "Restart Location:"
+msgstr ""
+
+#. fJEqu
+#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+msgctxt "insertbreak|clearlb0"
+msgid "[None]"
+msgstr ""
+
+#. dGBC7
+#: sw/uiconfig/swriter/ui/insertbreak.ui:141
+msgctxt "insertbreak|clearlb1"
+msgid "Left"
+msgstr ""
+
+#. HbijZ
+#: sw/uiconfig/swriter/ui/insertbreak.ui:142
+msgctxt "insertbreak|clearlb2"
+msgid "Right"
+msgstr ""
+
+#. AAg7H
+#: sw/uiconfig/swriter/ui/insertbreak.ui:143
+msgctxt "insertbreak|clearlb3"
+msgid "Next Full Line"
+msgstr ""
+
#. gqCuB
-#: sw/uiconfig/swriter/ui/insertbreak.ui:119
+#: sw/uiconfig/swriter/ui/insertbreak.ui:154
msgctxt "insertbreak|columnrb"
msgid "Column break"
msgstr "স্তম্ভ বিৰতি"
#. poiJj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:128
+#: sw/uiconfig/swriter/ui/insertbreak.ui:163
msgctxt "insertbreak|columnrb-atkobject"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column."
msgstr ""
#. 9GAAp
-#: sw/uiconfig/swriter/ui/insertbreak.ui:140
+#: sw/uiconfig/swriter/ui/insertbreak.ui:175
msgctxt "insertbreak|pagerb"
msgid "Page break"
msgstr "পৃষ্ঠা বিৰতি"
#. G7e9T
-#: sw/uiconfig/swriter/ui/insertbreak.ui:149
+#: sw/uiconfig/swriter/ui/insertbreak.ui:184
msgctxt "insertbreak|pagerb-atkobject"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
msgstr ""
#. qAj3x
-#: sw/uiconfig/swriter/ui/insertbreak.ui:164
+#: sw/uiconfig/swriter/ui/insertbreak.ui:199
msgctxt "insertbreak|styleft"
msgid "Page Style:"
msgstr ""
#. BWnND
-#: sw/uiconfig/swriter/ui/insertbreak.ui:181
+#: sw/uiconfig/swriter/ui/insertbreak.ui:216
msgctxt "insertbreak|liststore1"
msgid "[None]"
msgstr "[None]"
#. 8WDUc
-#: sw/uiconfig/swriter/ui/insertbreak.ui:185
+#: sw/uiconfig/swriter/ui/insertbreak.ui:220
msgctxt "insertbreak|stylelb-atkobject"
msgid "Select the page style for the page that follows the manual page break."
msgstr ""
#. LbNq3
-#: sw/uiconfig/swriter/ui/insertbreak.ui:197
+#: sw/uiconfig/swriter/ui/insertbreak.ui:232
msgctxt "insertbreak|pagenumcb"
msgid "Change page number"
msgstr "পৃষ্ঠাসংখ্যা সলনি কৰক"
#. cfsdj
-#: sw/uiconfig/swriter/ui/insertbreak.ui:206
+#: sw/uiconfig/swriter/ui/insertbreak.ui:241
msgctxt "insertbreak|pagenumcb-atkobject"
msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break."
msgstr ""
#. iWGZG
-#: sw/uiconfig/swriter/ui/insertbreak.ui:229
+#: sw/uiconfig/swriter/ui/insertbreak.ui:264
msgctxt "insertbreak|pagenumsb-atkobject"
msgid "Enter the new page number for the page that follows the manual page break."
msgstr ""
#. uAMAX
-#: sw/uiconfig/swriter/ui/insertbreak.ui:245
+#: sw/uiconfig/swriter/ui/insertbreak.ui:280
msgctxt "insertbreak|label1"
msgid "Type"
msgstr "ধৰণ"
#. fYmmW
-#: sw/uiconfig/swriter/ui/insertbreak.ui:269
+#: sw/uiconfig/swriter/ui/insertbreak.ui:304
msgctxt "insertbreak|extended_tip|BreakDialog"
msgid "Inserts a manual line break, column break or a page break at the current cursor position."
msgstr ""
@@ -20691,206 +20733,218 @@ msgctxt "navigatorcontextmenu|STR_SELECT"
msgid "Select"
msgstr ""
-#. dajzZ
+#. iH6Pr
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:51
+msgctxt "navigatorcontextmenu|STR_COPY_ENTRY"
+msgid "_Copy"
+msgstr ""
+
+#. dajzZ
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
msgctxt "navigatorcontextmenu|STR_DELETE"
msgid "Delete"
msgstr ""
#. axFMf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:60
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER"
msgid "Move Chapter Up"
msgstr ""
#. Radwp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:69
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER"
msgid "Move Chapter Down"
msgstr ""
#. FJZdw
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:78
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL"
msgid "Promote Outline Level"
msgstr ""
#. GRZmf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:87
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL"
msgid "Demote Outline Level"
msgstr ""
#. tukRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:96
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_REMOVE_INDEX"
msgid "_Remove Index"
msgstr ""
#. C4355
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:104
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
msgstr ""
#. BtCca
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:112
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:121
msgctxt "navigatorcontextmenu|STR_EDIT_ENTRY"
msgid "Edit..."
msgstr ""
#. BYyhD
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:120
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:129
msgctxt "navigatorcontextmenu|STR_REMOVE_TBL_PROTECTION"
msgid "_Unprotect"
msgstr ""
#. 6KWWG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:128
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:137
msgctxt "navigatorcontextmenu|STR_READONLY_IDX"
msgid "Read-_only"
msgstr ""
#. BUQRq
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:136
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY"
msgid "_Delete"
msgstr ""
#. CUqD5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:145
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:154
msgctxt "navigatorcontextmenu|STR_RENAME"
msgid "_Rename..."
msgstr ""
#. U5nAb
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:153
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:162
msgctxt "navigatorcontextmenu|STR_POSTIT_SHOW"
msgid "Show All"
msgstr ""
#. E2wWp
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:161
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:170
msgctxt "navigatorcontextmenu|STR_POSTIT_HIDE"
msgid "Hide All"
msgstr ""
#. aDRke
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:169
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:178
msgctxt "navigatorcontextmenu|STR_POSTIT_DELETE"
msgid "Delete All"
msgstr ""
#. YBipC
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:183
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:192
msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT"
msgid "Outline Folding"
msgstr ""
-#. cECoG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:203
-msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
-msgid "Outline Level"
-msgstr ""
-
#. EBK2E
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:212
msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr ""
#. fZEEr
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:226
msgctxt "navigatorcontextmenu|STR_TABLE_TRACKING"
msgid "Table Tracking"
msgstr ""
#. 7oCFa
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:239
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:234
msgctxt "navigatorcontextmenu|STR_SECTION_TRACKING"
msgid "Section Tracking"
msgstr ""
#. YmjQf
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:242
msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING"
msgid "Frame Tracking"
msgstr ""
#. vhxX5
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:250
msgctxt "navigatorcontextmenu|STR_IMAGE_TRACKING"
msgid "Image Tracking"
msgstr ""
#. mcYqZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:263
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:258
msgctxt "navigatorcontextmenu|STR_OLE_OBJECT_TRACKING"
msgid "OLE Object Tracking"
msgstr ""
#. DRaED
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:271
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:266
msgctxt "navigatorcontextmenu|STR_BOOKMARK_TRACKING"
msgid "Bookmark Tracking"
msgstr ""
#. vpLmh
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:279
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:274
msgctxt "navigatorcontextmenu|STR_HYPERLINK_TRACKING"
msgid "Hyperlink Tracking"
msgstr ""
#. EvBzN
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:287
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:282
msgctxt "navigatorcontextmenu|STR_REFERENCE_TRACKING"
msgid "Reference Tracking"
msgstr ""
#. M8Bes
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:295
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:290
msgctxt "navigatorcontextmenu|STR_INDEX_TRACKING"
msgid "Index Tracking"
msgstr ""
#. KBFwM
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:303
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:298
msgctxt "navigatorcontextmenu|STR_COMMENT_TRACKING"
msgid "Comment Tracking"
msgstr ""
#. oGavB
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:306
msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING"
msgid "Drawing Object Tracking"
msgstr ""
#. w8FTW
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:314
msgctxt "navigatorcontextmenu|STR_FIELD_TRACKING"
msgid "Field Tracking"
msgstr ""
#. BoCeZ
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:327
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:322
msgctxt "navigatorcontextmenu|STR_FOOTNOTE_TRACKING"
msgid "Footnote Tracking"
msgstr ""
+#. vBGAw
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:330
+msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
+msgid "Sort Alphabetically"
+msgstr ""
+
+#. cECoG
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:344
+msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL"
+msgid "Outline Level"
+msgstr ""
+
#. GyAcG
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:341
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:358
msgctxt "navigatorcontextmenu|STR_DRAGMODE"
msgid "Drag Mode"
msgstr ""
#. Zehx2
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:355
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:372
msgctxt "navigatorcontextmenu|STR_DISPLAY"
msgid "Display"
msgstr ""
#. bgZoy
-#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:375
+#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:392
msgctxt "navigatorcontextmenu|STR_COLLAPSE_ALL_CATEGORIES"
msgid "Collapse All Categories"
msgstr ""
@@ -24623,20 +24677,20 @@ msgid "Default"
msgstr "অবিকল্পিত"
#. 8fEFG
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:469
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:466
msgctxt "outlinepositionpage|extended_tip|standard"
msgid "Resets the indent and the spacing values to the default values."
msgstr ""
#. bLuru
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:490
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:487
#, fuzzy
msgctxt "outlinepositionpage|label10"
msgid "Position and Spacing"
msgstr "অৱস্থান আৰু স্পেইচিং"
#. ogECa
-#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:534
+#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:531
msgctxt "outlinepositionpage|label17"
msgid "Preview"
msgstr ""
@@ -27189,284 +27243,284 @@ msgid "Order"
msgstr "ক্রম"
#. NioK5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:170
+#: sw/uiconfig/swriter/ui/sortdialog.ui:178
msgctxt "sortdialog|up1"
msgid "Ascending"
msgstr "আৰোহন"
#. ASaRk
-#: sw/uiconfig/swriter/ui/sortdialog.ui:182
+#: sw/uiconfig/swriter/ui/sortdialog.ui:191
msgctxt "sortdialog|extended_tip|up1"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr ""
#. yVqST
-#: sw/uiconfig/swriter/ui/sortdialog.ui:193
+#: sw/uiconfig/swriter/ui/sortdialog.ui:202
msgctxt "sortdialog|down1"
msgid "Descending"
msgstr "অৱৰোহন"
#. YS8zz
-#: sw/uiconfig/swriter/ui/sortdialog.ui:205
+#: sw/uiconfig/swriter/ui/sortdialog.ui:215
msgctxt "sortdialog|extended_tip|down1"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr ""
#. P9D2w
-#: sw/uiconfig/swriter/ui/sortdialog.ui:228
+#: sw/uiconfig/swriter/ui/sortdialog.ui:238
msgctxt "sortdialog|up2"
msgid "Ascending"
msgstr "আৰোহন"
#. TMLam
-#: sw/uiconfig/swriter/ui/sortdialog.ui:240
+#: sw/uiconfig/swriter/ui/sortdialog.ui:251
msgctxt "sortdialog|extended_tip|up2"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr ""
#. haL8p
-#: sw/uiconfig/swriter/ui/sortdialog.ui:251
+#: sw/uiconfig/swriter/ui/sortdialog.ui:262
msgctxt "sortdialog|down2"
msgid "Descending"
msgstr "অৱৰোহন"
#. HMoq2
-#: sw/uiconfig/swriter/ui/sortdialog.ui:263
+#: sw/uiconfig/swriter/ui/sortdialog.ui:275
msgctxt "sortdialog|extended_tip|down2"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr ""
#. PHxUv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:286
+#: sw/uiconfig/swriter/ui/sortdialog.ui:298
msgctxt "sortdialog|up3"
msgid "Ascending"
msgstr "আৰোহন"
#. jL5gX
-#: sw/uiconfig/swriter/ui/sortdialog.ui:298
+#: sw/uiconfig/swriter/ui/sortdialog.ui:311
msgctxt "sortdialog|extended_tip|up3"
msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)."
msgstr ""
#. zsggE
-#: sw/uiconfig/swriter/ui/sortdialog.ui:309
+#: sw/uiconfig/swriter/ui/sortdialog.ui:322
msgctxt "sortdialog|down3"
msgid "Descending"
msgstr "অৱৰোহন"
#. 8LdjH
-#: sw/uiconfig/swriter/ui/sortdialog.ui:321
+#: sw/uiconfig/swriter/ui/sortdialog.ui:335
msgctxt "sortdialog|extended_tip|down3"
msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)."
msgstr ""
#. 3yLB6
-#: sw/uiconfig/swriter/ui/sortdialog.ui:338
+#: sw/uiconfig/swriter/ui/sortdialog.ui:352
msgctxt "sortdialog|key1"
msgid "Key 1"
msgstr "চাবি 1"
#. GXMCr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:348
+#: sw/uiconfig/swriter/ui/sortdialog.ui:368
msgctxt "sortdialog|extended_tip|key1"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. XDgAf
-#: sw/uiconfig/swriter/ui/sortdialog.ui:359
+#: sw/uiconfig/swriter/ui/sortdialog.ui:379
msgctxt "sortdialog|key2"
msgid "Key 2"
msgstr "চাবি 2"
#. CgEiB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:368
+#: sw/uiconfig/swriter/ui/sortdialog.ui:394
msgctxt "sortdialog|extended_tip|key2"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. 8yfoN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:379
+#: sw/uiconfig/swriter/ui/sortdialog.ui:405
msgctxt "sortdialog|key3"
msgid "Key 3"
msgstr "চাবি 3"
#. yS2ky
-#: sw/uiconfig/swriter/ui/sortdialog.ui:388
+#: sw/uiconfig/swriter/ui/sortdialog.ui:420
msgctxt "sortdialog|extended_tip|key3"
msgid "Specifies additional sorting criteria. You can also combine sort keys."
msgstr ""
#. pFZY3
-#: sw/uiconfig/swriter/ui/sortdialog.ui:411
+#: sw/uiconfig/swriter/ui/sortdialog.ui:443
msgctxt "sortdialog|extended_tip|colsb1"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr ""
#. n2S79
-#: sw/uiconfig/swriter/ui/sortdialog.ui:434
+#: sw/uiconfig/swriter/ui/sortdialog.ui:466
msgctxt "sortdialog|extended_tip|colsb2"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr ""
#. ckwsF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:457
+#: sw/uiconfig/swriter/ui/sortdialog.ui:489
msgctxt "sortdialog|extended_tip|colsb3"
msgid "Enter the number of the table column that you want to use as a basis for sorting."
msgstr ""
#. 5bX9W
-#: sw/uiconfig/swriter/ui/sortdialog.ui:478
+#: sw/uiconfig/swriter/ui/sortdialog.ui:510
msgctxt "sortdialog|typelb1-atkobject"
msgid "Key type"
msgstr "চাবিৰ প্ৰকাৰ"
#. rAGDj
-#: sw/uiconfig/swriter/ui/sortdialog.ui:479
+#: sw/uiconfig/swriter/ui/sortdialog.ui:511
msgctxt "sortdialog|extended_tip|typelb1"
msgid "Select the sorting option that you want to use."
msgstr ""
#. FxBUC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:501
+#: sw/uiconfig/swriter/ui/sortdialog.ui:533
msgctxt "sortdialog|typelb2-atkobject"
msgid "Key type"
msgstr "চাবিৰ প্ৰকাৰ"
#. efrcu
-#: sw/uiconfig/swriter/ui/sortdialog.ui:502
+#: sw/uiconfig/swriter/ui/sortdialog.ui:534
msgctxt "sortdialog|extended_tip|typelb2"
msgid "Select the sorting option that you want to use."
msgstr ""
#. 9D3Mg
-#: sw/uiconfig/swriter/ui/sortdialog.ui:523
+#: sw/uiconfig/swriter/ui/sortdialog.ui:555
msgctxt "sortdialog|typelb3-atkobject"
msgid "Key type"
msgstr "চাবিৰ প্ৰকাৰ"
#. RjtNn
-#: sw/uiconfig/swriter/ui/sortdialog.ui:524
+#: sw/uiconfig/swriter/ui/sortdialog.ui:556
msgctxt "sortdialog|extended_tip|typelb3"
msgid "Select the sorting option that you want to use."
msgstr ""
#. m3EJC
-#: sw/uiconfig/swriter/ui/sortdialog.ui:542
+#: sw/uiconfig/swriter/ui/sortdialog.ui:574
#, fuzzy
msgctxt "sortdialog|1"
msgid "Sort Criteria"
msgstr "নিৰ্ণায়ক বৰ্গীকৰণ কৰক"
#. dY8Rr
-#: sw/uiconfig/swriter/ui/sortdialog.ui:580
+#: sw/uiconfig/swriter/ui/sortdialog.ui:612
msgctxt "sortdialog|columns"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. PviSN
-#: sw/uiconfig/swriter/ui/sortdialog.ui:589
+#: sw/uiconfig/swriter/ui/sortdialog.ui:621
msgctxt "sortdialog|extended_tip|columns"
msgid "Sorts the columns in the table according to the current sort options."
msgstr ""
#. d7odM
-#: sw/uiconfig/swriter/ui/sortdialog.ui:600
+#: sw/uiconfig/swriter/ui/sortdialog.ui:632
msgctxt "sortdialog|rows"
msgid "Rows"
msgstr "শাৰীবোৰ"
#. vsSra
-#: sw/uiconfig/swriter/ui/sortdialog.ui:609
+#: sw/uiconfig/swriter/ui/sortdialog.ui:641
msgctxt "sortdialog|extended_tip|rows"
msgid "Sorts the rows in the table or the paragraphs in the selection according to the current sort options."
msgstr ""
#. C4Fuq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:624
+#: sw/uiconfig/swriter/ui/sortdialog.ui:656
msgctxt "sortdialog|label3"
msgid "Direction"
msgstr "দিশ"
#. JGBYA
-#: sw/uiconfig/swriter/ui/sortdialog.ui:654
+#: sw/uiconfig/swriter/ui/sortdialog.ui:686
msgctxt "sortdialog|tabs"
msgid "Tabs"
msgstr "টেবসমূহ"
#. dE3Av
-#: sw/uiconfig/swriter/ui/sortdialog.ui:663
+#: sw/uiconfig/swriter/ui/sortdialog.ui:695
msgctxt "sortdialog|extended_tip|tabs"
msgid "If the selected paragraphs correspond to a list separated by tabs, select this option."
msgstr ""
#. 7GWNt
-#: sw/uiconfig/swriter/ui/sortdialog.ui:675
+#: sw/uiconfig/swriter/ui/sortdialog.ui:707
msgctxt "sortdialog|character"
msgid "Character "
msgstr "আখৰ "
#. 9yFT9
-#: sw/uiconfig/swriter/ui/sortdialog.ui:688
+#: sw/uiconfig/swriter/ui/sortdialog.ui:722
msgctxt "sortdialog|extended_tip|character"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr ""
#. ECCA5
-#: sw/uiconfig/swriter/ui/sortdialog.ui:718
+#: sw/uiconfig/swriter/ui/sortdialog.ui:753
msgctxt "sortdialog|extended_tip|separator"
msgid "Enter the character that you want to use as a separator in the selected area."
msgstr ""
#. XC5zv
-#: sw/uiconfig/swriter/ui/sortdialog.ui:729
+#: sw/uiconfig/swriter/ui/sortdialog.ui:764
msgctxt "sortdialog|delimpb"
msgid "Select..."
msgstr "বাছক..."
#. VhhBB
-#: sw/uiconfig/swriter/ui/sortdialog.ui:739
+#: sw/uiconfig/swriter/ui/sortdialog.ui:774
msgctxt "sortdialog|extended_tip|delimpb"
msgid "Opens the Special Characters dialog, where you can select the character that you want to use as a separator."
msgstr ""
#. BX6Mq
-#: sw/uiconfig/swriter/ui/sortdialog.ui:760
+#: sw/uiconfig/swriter/ui/sortdialog.ui:795
msgctxt "sortdialog|label4"
msgid "Separator"
msgstr "বিভাজক"
#. bBbUV
-#: sw/uiconfig/swriter/ui/sortdialog.ui:808
+#: sw/uiconfig/swriter/ui/sortdialog.ui:843
msgctxt "sortdialog|extended_tip|langlb"
msgid "Select the language that defines the sorting rules."
msgstr ""
#. gEcoc
-#: sw/uiconfig/swriter/ui/sortdialog.ui:817
+#: sw/uiconfig/swriter/ui/sortdialog.ui:852
msgctxt "sortdialog|label1"
msgid "Language"
msgstr "ভাষা"
#. QnviQ
-#: sw/uiconfig/swriter/ui/sortdialog.ui:837
+#: sw/uiconfig/swriter/ui/sortdialog.ui:872
msgctxt "sortdialog|matchcase"
msgid "Match case"
msgstr "ফলা মিল খোৱাওক"
#. Nd8XG
-#: sw/uiconfig/swriter/ui/sortdialog.ui:847
+#: sw/uiconfig/swriter/ui/sortdialog.ui:882
msgctxt "sortdialog|extended_tip|matchcase"
msgid "Distinguishes between uppercase and lowercase letters when you sort a table. For Asian languages special handling applies."
msgstr ""
#. Adw2Y
-#: sw/uiconfig/swriter/ui/sortdialog.ui:856
+#: sw/uiconfig/swriter/ui/sortdialog.ui:891
msgctxt "sortdialog|label2"
msgid "Setting"
msgstr "ছেটিং"
#. pCcXF
-#: sw/uiconfig/swriter/ui/sortdialog.ui:894
+#: sw/uiconfig/swriter/ui/sortdialog.ui:926
msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Sorts the selected paragraphs or table rows alphabetically or numerically."
msgstr ""
@@ -27911,242 +27965,242 @@ msgid "_Break"
msgstr "ব্যাঘাট (_B)"
#. LEfit
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:59
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:65
msgctxt "tabletextflowpage|extended_tip|break"
msgid "Select this check box, and then select the type of break that you want to associate with the table."
msgstr ""
#. 85dHS
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:70
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:76
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "পৃষ্ঠা (_P)"
#. LUPNA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:82
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:88
msgctxt "tabletextflowpage|extended_tip|page"
msgid "Inserts a page break before or after the table."
msgstr ""
#. ATESc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:93
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:99
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "স্তম্ভ (_u)"
#. bU9Sj
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:105
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:111
msgctxt "tabletextflowpage|extended_tip|column"
msgid "Inserts a column break before or after the table on a multi-column page."
msgstr ""
#. bFvFr
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:116
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:122
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "আগত (_f)"
#. wCFtD
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:128
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:134
msgctxt "tabletextflowpage|extended_tip|before"
msgid "Inserts a page or column break before the table."
msgstr ""
#. x9LiQ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:139
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:145
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "পাছত (_A)"
#. y4ECA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:157
msgctxt "tabletextflowpage|extended_tip|after"
msgid "Inserts a page or column break after the table."
msgstr ""
#. ZKgd9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:183
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "পৃষ্ঠা শৈলীৰ সৈতে (_y)"
#. NMMdy
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:189
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:195
msgctxt "tabletextflowpage|extended_tip|pagestyle"
msgid "Applies the page style that you specify to the first page that follows the page break."
msgstr ""
#. 4ifHW
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:200
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:206
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "পৃষ্ঠাৰ সংখ্যা (_n)"
#. b8xXZ
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|extended_tip|pagenonf"
msgid "Enter the page number for the first page that follows the break. If you want to continue the current page numbering, leave the checkbox unchecked."
msgstr ""
#. 5oC83
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:242
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:248
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "পৃষ্ঠা শৈলীৰ সৈতে (_y)"
#. NENyo
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:243
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:249
msgctxt "tabletextflowpage|extended_tip|pagestylelb"
msgid "Select the page style that you want to apply to the first page that follows the break."
msgstr ""
#. CZpDc
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:260
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:266
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "পৃষ্ঠা আৰু স্তম্ভবোৰৰ মাজত বিভাজিত কৰিবলৈ অনুমতী দিয়ক (_t)"
#. QXXZK
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:268
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
msgctxt "tabletextflowpage|extended_tip|split"
msgid "Allows a page break or column break between the rows of a table."
msgstr ""
#. SKeze
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:279
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:285
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "পৃষ্ঠা আৰু স্তম্ভবোৰৰ মাজত শাৰী দিবলৈ অনুমতী দিয়ক (_c)"
#. HYN9t
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:295
msgctxt "tabletextflowpage|extended_tip|splitrow"
msgid "Allows a page break or column break inside a row of the table."
msgstr ""
#. jGCyC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "পৰৱৰ্তী পেৰেগ্ৰাফৰ সৈতে ৰাখক (_K)"
#. iFwuV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:308
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:314
msgctxt "tabletextflowpage|extended_tip|keep"
msgid "Keeps the table and the following paragraph together when you insert the break."
msgstr ""
#. QAY45
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:327
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:333
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "লিখনী দিশনিৰ্ণয় (_o)"
#. JsEEP
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:341
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:347
msgctxt "tabletextflowpage|liststore1"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. RgbAV
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:342
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
msgstr ""
#. 7yaYB
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:349
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
msgstr ""
#. 5CGH9
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:344
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:350
msgctxt "tabletextflowpage|liststore1"
msgid "Use superordinate object settings"
msgstr "ছুপাৰঅৰ্ডিনেট বস্তু ছেটীংছ ব্যৱহাৰ কৰক"
#. FJnts
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:348
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:354
msgctxt "tabletextflowpage|extended_tip|textorientation"
msgid "Select the orientation for the text in the cells."
msgstr ""
#. tWodL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:371
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:377
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "শিৰোনামৰ পুনৰাবৃত্তি কৰক (_e)"
#. EpMSY
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:379
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:385
msgctxt "tabletextflowpage|extended_tip|headline"
msgid "Repeats the table heading on a new page when the table spans more than one page."
msgstr ""
#. 7R7Gn
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:398
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:404
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "প্ৰথম "
#. KEVNR
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:411
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:417
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "শাৰীবোৰ"
#. hLzfu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:427
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:433
msgctxt "tabletextflowpage|extended_tip|repeatheadernf"
msgid "Enter the number of rows to include in the heading."
msgstr ""
#. yLhbA
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:454
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "টেক্সটৰ ধাৰা"
#. FRUDs
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:484
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:490
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "উলম্ব শাৰীকৰণ (_V)"
#. YLPEL
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:498
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
msgctxt "tabletextflowpage|liststore2"
msgid "Top"
msgstr "ওপৰ"
#. 5Pb5v
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:499
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:505
msgctxt "tabletextflowpage|liststore2"
msgid "Centered"
msgstr "কেন্দ্ৰীত"
#. 4aZFz
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:500
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:506
msgctxt "tabletextflowpage|liststore2"
msgid "Bottom"
msgstr "তলত"
#. SwHrE
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:504
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:510
msgctxt "tabletextflowpage|extended_tip|vertorient"
msgid "Specify the vertical text alignment for the cells in the table."
msgstr ""
#. ZtGTC
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:519
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:525
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "শাৰীকৰণ"
#. GJKSu
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:533
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:539
msgctxt "tabletextflowpage|extended_tip|TableTextFlowPage"
msgid "Set the text flow options for the text before and after the table."
msgstr ""
diff --git a/source/as/uui/messages.po b/source/as/uui/messages.po
index bc3b4c22dab..4eb30f85d95 100644
--- a/source/as/uui/messages.po
+++ b/source/as/uui/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-11-19 15:45+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
"PO-Revision-Date: 2021-05-12 07:38+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/as/>\n"
@@ -40,17 +40,14 @@ msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "লক্ষ্য ইতিমধ্যে আছে"
-#. KgnBz
+#. KneVX
#: uui/inc/ids.hrc:40
msgctxt "RID_UUI_ERRHDL"
msgid ""
-"You are about to save/export a password protected basic library containing module(s) \n"
+"You are about to save/export a password protected BASIC library containing module(s) \n"
"$(ARG1)\n"
"which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?"
msgstr ""
-"আপুনি পাছৱাৰ্ডৰে সংৰক্ষিত এটা অংশ থকা basic library সঞ্চয়/এক্সপোৰ্ট কৰিব লৈছে। \n"
-"$(ARG1)\n"
-"যি এই বিন্যাসৰ কাৰণে বৰ ডাঙৰ। যদি আপুনি বিচাৰে যে ব্যৱহাৰকাৰীয়ে যাৰ লাইব্ৰেৰী পাছৱাৰ্ড নাই সেই অংশত মেক্ৰ'সমূহ চলাব লাগে আপুনি ইয়াক সৰু সৰু টুকুৰা কৰিব লাগিব। আপুনি এই লাইব্ৰেৰী সঞ্চয়/এক্সপোৰ্ট কৰিব বিচাৰে নে ?"
#. 3rNDF
#: uui/inc/ids.hrc:42
diff --git a/source/as/vcl/messages.po b/source/as/vcl/messages.po
index 5bd044c120e..af2e60dd6d2 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: 2022-02-09 16:47+0100\n"
+"POT-Creation-Date: 2022-03-21 12:33+0100\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/as/>\n"
@@ -848,349 +848,221 @@ msgctxt "SV_STDTEXT_ALLFILETYPES"
msgid "Any type"
msgstr "যিকোনো ধৰণৰ"
-#. FD7Bf
-#: vcl/inc/strings.hrc:70
-msgctxt "STR_FPICKER_AUTO_EXTENSION"
-msgid "~Automatic file name extension"
-msgstr "স্বয়ংক্ৰিয় ফাইল নামৰ প্রসাৰণ (~A)"
-
-#. 9ECLu
-#: vcl/inc/strings.hrc:71
-msgctxt "STR_FPICKER_PASSWORD"
-msgid "Save with pass~word"
-msgstr "পাছৱাৰ্ডৰ সৈতে সংৰক্ষণ কৰক (~w)"
-
-#. nyers
-#. dear loplugins, please don't remove this constant, it will be used in follow-up commits
-#: vcl/inc/strings.hrc:73
-msgctxt "STR_FPICKER_GPGENCRYPT"
-msgid "Encrypt with ~GPG key"
-msgstr ""
-
-#. Z2MmL
-#: vcl/inc/strings.hrc:74
-msgctxt "STR_FPICKER_FILTER_OPTIONS"
-msgid "~Edit filter settings"
-msgstr "ফিল্টাৰ সংহতিসমূহ সম্পাদনা কৰক (~E)"
-
-#. ZDE7y
-#: vcl/inc/strings.hrc:75
-msgctxt "STR_FPICKER_READONLY"
-msgid "~Read-only"
-msgstr "কেৱল-পঢ়িব পৰা (~R)"
-
-#. EYvCH
-#: vcl/inc/strings.hrc:76
-msgctxt "STR_FPICKER_INSERT_AS_LINK"
-msgid "Insert as ~Link"
-msgstr "সংযোগ ৰূপে সুমুৱাওক (~L)"
-
-#. zpPD6
-#: vcl/inc/strings.hrc:77
-msgctxt "STR_FPICKER_SHOW_PREVIEW"
-msgid "Pr~eview"
-msgstr "পূৰ্বদৰ্শন (~e)"
-
-#. L7QTs
-#: vcl/inc/strings.hrc:78
-msgctxt "STR_FPICKER_PLAY"
-msgid "~Play"
-msgstr "চলাওক (~P)"
-
-#. rPLAU
-#: vcl/inc/strings.hrc:79
-msgctxt "STR_FPICKER_VERSION"
-msgid "~Version:"
-msgstr "সংস্কৰণ (~V):"
-
-#. dMPHM
-#: vcl/inc/strings.hrc:80
-msgctxt "STR_FPICKER_TEMPLATES"
-msgid "S~tyles:"
-msgstr "শৈলীসমূহ (~t):"
-
-#. TeuRr
-#: vcl/inc/strings.hrc:81
-#, fuzzy
-msgctxt "STR_FPICKER_IMAGE_TEMPLATE"
-msgid "Frame Style: "
-msgstr "ফ্রেমৰ শৈলী"
-
-#. Cq63y
-#: vcl/inc/strings.hrc:82
-msgctxt "STR_FPICKER_IMAGE_ANCHOR"
-msgid "A~nchor: "
-msgstr ""
-
-#. 7yacA
-#: vcl/inc/strings.hrc:83
-msgctxt "STR_FPICKER_SELECTION"
-msgid "~Selection"
-msgstr "নিৰ্বাচন (~S)"
-
-#. QFCuE
-#: vcl/inc/strings.hrc:84
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_TITLE"
-msgid "Select Path"
-msgstr "পথ বাছক"
-
-#. AoCzG
-#: vcl/inc/strings.hrc:85
-msgctxt "STR_FPICKER_FOLDER_DEFAULT_DESCRIPTION"
-msgid "Please select a folder."
-msgstr "অনুগ্ৰহ কৰি এটা ফোল্ডাৰ বাছক।"
-
-#. vcC7G
-#: vcl/inc/strings.hrc:86
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_PRIMARY"
-msgid "A file named \"$filename$\" already exists. Do you want to replace it?"
-msgstr "\"$filename$\" নামৰ এটা ফাইল ইতিমধ্যে উপস্থিত। আপুনি ইয়াক প্ৰতিস্থাপন কৰিব বিচাৰে নে?"
-
-#. MKKjJ
-#: vcl/inc/strings.hrc:87
-msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY"
-msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
-msgstr "ফাইল ইতিমধ্যে \"$dirname$\" ত অস্তিত্ববান। ইয়াক প্ৰতিস্থাপন কৰিলে ইয়াৰ সমলসমূহ পুনৰ লিখা হব। "
-
-#. pF5CC
-#: vcl/inc/strings.hrc:88
-msgctxt "STR_FPICKER_ALLFORMATS"
-msgid "All Formats"
-msgstr "সকলো বিন্যাস"
-
-#. xJLGT
-#: vcl/inc/strings.hrc:89
-msgctxt "STR_FPICKER_OPEN"
-msgid "Open"
-msgstr "খোলক"
-
-#. W5xGp
-#: vcl/inc/strings.hrc:90
-msgctxt "STR_FPICKER_SAVE"
-msgid "Save"
-msgstr "সংৰক্ষণ কৰক"
-
-#. QxrYy
-#: vcl/inc/strings.hrc:91
-msgctxt "STR_FPICKER_TYPE"
-msgid "File ~type"
-msgstr "নথিপত্ৰৰ ধৰণ (~t)"
-
#. qfg3C
-#: vcl/inc/strings.hrc:93
+#: vcl/inc/strings.hrc:70
msgctxt "SV_ACCESSERROR_NO_FONTS"
msgid "No fonts could be found on the system."
msgstr "চিস্টেমত কোনো ফন্ট বিচাৰি পোৱা নগল।"
#. rWAuM
-#: vcl/inc/strings.hrc:95
+#: vcl/inc/strings.hrc:72
msgctxt "SV_PRINT_NOPAGES"
msgid "No pages"
msgstr "কোনো পৃষ্ঠা নাই"
#. SFF7G
-#: vcl/inc/strings.hrc:96
+#: vcl/inc/strings.hrc:73
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
msgstr ""
#. xMtCc
-#: vcl/inc/strings.hrc:97
+#: vcl/inc/strings.hrc:74
msgctxt "SV_PRINT_TOFILE_TXT"
msgid "Print to File..."
msgstr "নথিপত্ৰলে প্ৰিন্ট কৰক..."
#. GBDRJ
-#: vcl/inc/strings.hrc:98
+#: vcl/inc/strings.hrc:75
msgctxt "SV_PRINT_DEFPRT_TXT"
msgid "Default printer"
msgstr "অবিকল্পিত প্ৰিন্টাৰ"
#. 8BSG2
-#: vcl/inc/strings.hrc:99
+#: vcl/inc/strings.hrc:76
msgctxt "SV_PRINT_QUERYFAXNUMBER_TXT"
msgid "Please enter the fax number"
msgstr "অনুগ্ৰহ কৰি fax সংখ্যা সুমুৱাওক"
#. GtHUE
-#: vcl/inc/strings.hrc:100
+#: vcl/inc/strings.hrc:77
msgctxt "SV_PRINT_CUSTOM_TXT"
msgid "Custom"
msgstr "স্বনিৰ্বাচিত"
#. yPJTL
-#: vcl/inc/strings.hrc:102
+#: vcl/inc/strings.hrc:79
#, fuzzy
msgctxt "SV_EDIT_WARNING_STR"
msgid "The inserted text exceeded the maximum length of this text field. The text was truncated."
msgstr "সোমোৱা লিখনী ক্ষেত্ৰ দৈৰ্ঘ্যতকে ডাঙৰ। লিখনী সৰু কৰা হ'ল।"
#. Dk4vc
-#: vcl/inc/strings.hrc:104
+#: vcl/inc/strings.hrc:81
msgctxt "SV_APP_CPUTHREADS"
msgid "CPU threads: "
msgstr ""
#. 5DyEd
-#: vcl/inc/strings.hrc:105
+#: vcl/inc/strings.hrc:82
msgctxt "SV_APP_OSVERSION"
msgid "OS: "
msgstr ""
#. Yqrwo
-#: vcl/inc/strings.hrc:106
+#: vcl/inc/strings.hrc:83
msgctxt "SV_APP_UIRENDER"
msgid "UI render: "
msgstr ""
#. HnDDn
-#: vcl/inc/strings.hrc:107
+#: vcl/inc/strings.hrc:84
msgctxt "SV_APP_SKIA_VULKAN"
msgid "Skia/Vulkan"
msgstr ""
#. f5k6D
-#: vcl/inc/strings.hrc:108
+#: vcl/inc/strings.hrc:85
msgctxt "SV_APP_SKIA_METAL"
msgid "Skia/Metal"
msgstr ""
#. n2Hto
-#: vcl/inc/strings.hrc:109
+#: vcl/inc/strings.hrc:86
msgctxt "SV_APP_SKIA_RASTER"
msgid "Skia/Raster"
msgstr ""
#. ZitRE
-#: vcl/inc/strings.hrc:110
+#: vcl/inc/strings.hrc:87
#, fuzzy
msgctxt "SV_APP_DEFAULT"
msgid "default"
msgstr "অবিকল্পিত"
#. 4gWk5
-#: vcl/inc/strings.hrc:112
+#: vcl/inc/strings.hrc:89
msgctxt "SV_MSGBOX_INFO"
msgid "Information"
msgstr "তথ্য"
#. 5gAyW
-#: vcl/inc/strings.hrc:113
+#: vcl/inc/strings.hrc:90
msgctxt "SV_MSGBOX_WARNING"
msgid "Warning"
msgstr "সতৰ্কবাৰ্তা"
#. buqyG
-#: vcl/inc/strings.hrc:114
+#: vcl/inc/strings.hrc:91
msgctxt "SV_MSGBOX_ERROR"
msgid "Error"
msgstr "ভুল"
#. 3CTTS
-#: vcl/inc/strings.hrc:115
+#: vcl/inc/strings.hrc:92
msgctxt "SV_MSGBOX_QUERY"
msgid "Confirmation"
msgstr "নিশ্চিতকৰণ"
#. drUB5
-#: vcl/inc/strings.hrc:117
+#: vcl/inc/strings.hrc:94
msgctxt "STR_TEXTUNDO_DELPARA"
msgid "delete line"
msgstr "শাৰী মচি পেলাওক"
#. cxFKH
-#: vcl/inc/strings.hrc:118
+#: vcl/inc/strings.hrc:95
msgctxt "STR_TEXTUNDO_CONNECTPARAS"
msgid "delete multiple lines"
msgstr "একাধিক শাৰী মচক"
#. 7KPRL
-#: vcl/inc/strings.hrc:119
+#: vcl/inc/strings.hrc:96
msgctxt "STR_TEXTUNDO_SPLITPARA"
msgid "insert multiple lines"
msgstr "একাধিক শাৰী সুমুৱাওক"
#. R2cyr
-#: vcl/inc/strings.hrc:120
+#: vcl/inc/strings.hrc:97
msgctxt "STR_TEXTUNDO_INSERTCHARS"
msgid "insert '$1'"
msgstr "'$1' সুমুৱাওক"
#. 66FYV
-#: vcl/inc/strings.hrc:121
+#: vcl/inc/strings.hrc:98
msgctxt "STR_TEXTUNDO_REMOVECHARS"
msgid "delete '$1'"
msgstr "'$1' মচি পেলাওক"
#. YhJ4x
#. descriptions of accessible objects
-#: vcl/inc/strings.hrc:124
+#: vcl/inc/strings.hrc:101
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
#. 5RjLF
-#: vcl/inc/strings.hrc:125
+#: vcl/inc/strings.hrc:102
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. TcNJT
-#: vcl/inc/strings.hrc:127
+#: vcl/inc/strings.hrc:104
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
msgstr ""
#. DhSTi
-#: vcl/inc/strings.hrc:128
+#: vcl/inc/strings.hrc:105
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
msgstr ""
#. 5Eyy3
-#: vcl/inc/strings.hrc:129
+#: vcl/inc/strings.hrc:106
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
#. rSVhV
-#: vcl/inc/strings.hrc:131
+#: vcl/inc/strings.hrc:108
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
#. wEp9A
-#: vcl/inc/strings.hrc:132
+#: vcl/inc/strings.hrc:109
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
#. ygXBw
-#: vcl/inc/strings.hrc:133
+#: vcl/inc/strings.hrc:110
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
#. 5MSDe
-#: vcl/inc/strings.hrc:134
+#: vcl/inc/strings.hrc:111
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
#. urFMt
-#: vcl/inc/strings.hrc:136
+#: vcl/inc/strings.hrc:113
msgctxt "STR_SEPARATOR"
msgid "Separator"
msgstr ""
#. eCq2K
-#: vcl/inc/strings.hrc:138
+#: vcl/inc/strings.hrc:115
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_TITLE"
msgid "Default file formats not registered"
msgstr ""
#. TDctx
-#: vcl/inc/strings.hrc:139
+#: vcl/inc/strings.hrc:116
msgctxt "STR_FILEEXT_NONDEFAULT_ASK_MSG"
msgid ""
"The following file formats are not registered to be opened by default in %PRODUCTNAME:\n"
@@ -1199,7 +1071,7 @@ msgid ""
msgstr ""
#. EkzSW
-#: vcl/inc/strings.hrc:141
+#: vcl/inc/strings.hrc:118
msgctxt "KEY_VERSION_CHECK"
msgid ""
"Warning: Not all of the imported EPS graphics could be saved at level1\n"
@@ -1207,31 +1079,31 @@ msgid ""
msgstr ""
#. 4jvA7
-#: vcl/inc/strings.hrc:143
+#: vcl/inc/strings.hrc:120
msgctxt "STR_GBU"
msgid "Graphics Backend used: %1"
msgstr ""
#. FBgmu
-#: vcl/inc/strings.hrc:144
+#: vcl/inc/strings.hrc:121
msgctxt "STR_PASSED"
msgid "Passed Tests: %1"
msgstr ""
#. 3nqZp
-#: vcl/inc/strings.hrc:145
+#: vcl/inc/strings.hrc:122
msgctxt "STR_QUIRKY"
msgid "Quirky Tests: %1"
msgstr ""
#. KhjFD
-#: vcl/inc/strings.hrc:146
+#: vcl/inc/strings.hrc:123
msgctxt "STR_FAILED"
msgid "Failed Tests: %1"
msgstr ""
#. uKGQi
-#: vcl/inc/strings.hrc:147
+#: vcl/inc/strings.hrc:124
msgctxt "STR_SKIPPED"
msgid "Skipped Tests: %1"
msgstr ""
diff --git a/source/ast/basctl/messages.po b/source/ast/basctl/messages.po
index c7062bfa5e3..4e183fb74a6 100644
--- a/source/ast/basctl/messages.po
+++ b/source/ast/basctl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-12-21 12:37+0100\n"
-"PO-Revision-Date: 2022-02-11 21:38+0000\n"
+"PO-Revision-Date: 2022-04-04 09:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/basctlmessages/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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1516043755.000000\n"
#. fniWp
@@ -632,7 +632,7 @@ msgstr "_Sí"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:26
msgctxt "basicmacrodialog|BasicMacroDialog"
msgid "Basic Macros"
-msgstr "Macros de Basic"
+msgstr "Macros de BASIC"
#. tFg7s
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:43
diff --git a/source/ast/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/ast/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
index d6ed6624b48..b733654f79f 100644
--- a/source/ast/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
+++ b/source/ast/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2013-05-23 22:25+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-03-03 18:38+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistrymacaborgopenofficeofficedataaccess/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: 1369347905.000000\n"
#. f596y
@@ -24,4 +24,4 @@ msgctxt ""
"DriverTypeDisplayName\n"
"value.text"
msgid "Mac OS X Address Book"
-msgstr "Llibreta de direiciones de Mac OS X"
+msgstr "Llibreta de señes de Mac OS X"
diff --git a/source/ast/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po b/source/ast/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
index 4de0bcd00d3..ce217f4b56d 100644
--- a/source/ast/connectivity/registry/mysql_jdbc/org/openoffice/Office/DataAccess.po
+++ b/source/ast/connectivity/registry/mysql_jdbc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2020-03-05 18:15+0000\n"
"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/connectivityregistrymysql_jdbcorgopenofficeofficedataaccess/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 3.10.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149368.000000\n"
#. ny8vx
@@ -35,13 +35,3 @@ msgctxt ""
"value.text"
msgid "MySQL (ODBC)"
msgstr "MySQL (ODBC)"
-
-#. rcnrk
-#: Drivers.xcu
-msgctxt ""
-"Drivers.xcu\n"
-".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
-"DriverTypeDisplayName\n"
-"value.text"
-msgid "MySQL (Native)"
-msgstr "MySQL (Nativu)"
diff --git a/source/ast/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po b/source/ast/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
index 0438adc5e17..96186d14991 100644
--- a/source/ast/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po
+++ b/source/ast/connectivity/registry/mysqlc/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: 2022-03-21 12:30+0100\n"
"PO-Revision-Date: 2020-01-07 12:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/connectivityregistrymysqlcorgopenofficeofficedataaccess/ast/>\n"
@@ -13,15 +13,15 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.9.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496515.000000\n"
-#. NHVFU
+#. bTkZz
#: Drivers.xcu
msgctxt ""
"Drivers.xcu\n"
".Drivers.Installed.sdbc:mysql:mysqlc:*\n"
"DriverTypeDisplayName\n"
"value.text"
-msgid "MySQL Connector"
-msgstr "Coneutor de MySQL"
+msgid "MySQL/MariaDB Connector"
+msgstr ""
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index a48d9ed3995..f4ac5ee9590 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-18 12:16+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
+"PO-Revision-Date: 2022-03-31 22:30+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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. GyY9M
@@ -2127,7 +2127,7 @@ msgstr "Estensiones: iconos"
#: cui/inc/strings.hrc:395
msgctxt "RID_SVXSTR_ADDITIONS_PALETTES"
msgid "Extensions: Color Palette"
-msgstr ""
+msgstr "Estensiones: paletes de colores"
#. mncuJ
#: cui/inc/strings.hrc:396
@@ -2153,17 +2153,17 @@ msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
msgstr "(Calca cualquier prueba pa ver la imaxe de mapa bits que-y resulta)"
-#. YFfQV
+#. BT9KG
#: cui/inc/strings.hrc:403
msgctxt "RID_CUISTR_ZIPFAIL"
-msgid "Creation of Zip file failed!"
-msgstr ""
+msgid "Creation of ZIP file failed."
+msgstr "Nun pudo crease'l ficheru ZIP."
#. 9QSQr
#: cui/inc/strings.hrc:404
msgctxt "RID_CUISTR_SAVED"
msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!"
-msgstr ""
+msgstr "Los resultaos guardáronse correutamente nel ficheru «GraphicTestResults.zip»."
#. mpS3V
#: cui/inc/tipoftheday.hrc:50
@@ -2240,10 +2240,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"
msgstr ""
-#. DUvk6
+#. jpiRT
#: cui/inc/tipoftheday.hrc:62
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon style."
+msgid "Select a different icon set from Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ User Interface ▸ Icon Theme."
msgstr ""
#. RejqP
@@ -3057,11 +3057,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
msgstr ""
-#. BnMpb
+#. DBfad
#. local help missing
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
+msgid "Use Format ▸ Align Objects in Impress or Shape ▸ Align Objects in Draw (or the context menu) for precise positioning of objects: it centers on the page if one object is selected or works on the group respectively."
msgstr ""
#. TijVG
@@ -4444,68 +4444,74 @@ msgctxt "accelconfigpage|extended_tip|save"
msgid "Saves the current shortcut key configuration, so that you can load it later."
msgstr ""
-#. mJmga
-#: cui/uiconfig/ui/accelconfigpage.ui:297
+#. oSRQ7
+#: cui/uiconfig/ui/accelconfigpage.ui:295
+msgctxt "accelconfigpage|tooltip|reset"
+msgid "Unsaved modifications to shortcut keys are reverted."
+msgstr ""
+
+#. stv4J
+#: cui/uiconfig/ui/accelconfigpage.ui:298
msgctxt "accelconfigpage|extended_tip|reset"
-msgid "Resets modified values back to the default values."
+msgid "Revert any changes made to keyboard shortcuts to the assignments that were present when this dialog was opened."
msgstr ""
#. BKAsD
-#: cui/uiconfig/ui/accelconfigpage.ui:348
+#: cui/uiconfig/ui/accelconfigpage.ui:349
msgctxt "accelconfigpage|searchEntry"
msgid "Type to search"
msgstr "Escribi pa guetar"
#. nGtvW
-#: cui/uiconfig/ui/accelconfigpage.ui:352
+#: cui/uiconfig/ui/accelconfigpage.ui:353
msgctxt "accelconfigpage|extended_tip|searchEntry"
msgid "Type here to search in the list of functions."
msgstr "Escribi equí pa guetar na llista de funciones."
#. T5FGo
-#: cui/uiconfig/ui/accelconfigpage.ui:374
+#: cui/uiconfig/ui/accelconfigpage.ui:375
msgctxt "accelconfigpage|label23"
msgid "_Category"
msgstr "_Categoría"
#. xfWzA
-#: cui/uiconfig/ui/accelconfigpage.ui:388
+#: cui/uiconfig/ui/accelconfigpage.ui:389
msgctxt "accelconfigpage|label24"
msgid "_Function"
msgstr "_Función"
#. 7PCeb
-#: cui/uiconfig/ui/accelconfigpage.ui:402
+#: cui/uiconfig/ui/accelconfigpage.ui:403
msgctxt "accelconfigpage|label25"
msgid "_Keys"
msgstr ""
#. 8DnFJ
-#: cui/uiconfig/ui/accelconfigpage.ui:446
+#: cui/uiconfig/ui/accelconfigpage.ui:447
msgctxt "accelconfigpage|extended_tip|category"
msgid "Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category."
msgstr ""
#. wGm8q
-#: cui/uiconfig/ui/accelconfigpage.ui:493
+#: cui/uiconfig/ui/accelconfigpage.ui:494
msgctxt "accelconfigpage|extended_tip|function"
msgid "Select a function that you want to assign a shortcut key to, click a key combination in the Shortcut keys list, and then click Modify. If the selected function already has a shortcut key, it is displayed in the Keys list."
msgstr ""
#. PzCaG
-#: cui/uiconfig/ui/accelconfigpage.ui:539
+#: cui/uiconfig/ui/accelconfigpage.ui:540
msgctxt "accelconfigpage|extended_tip|keys"
msgid "Displays the shortcut keys that are assigned to the selected function."
msgstr ""
#. CqdJF
-#: cui/uiconfig/ui/accelconfigpage.ui:563
+#: cui/uiconfig/ui/accelconfigpage.ui:564
msgctxt "accelconfigpage|label22"
msgid "F_unctions"
msgstr "F_unciones"
#. kVeWd
-#: cui/uiconfig/ui/accelconfigpage.ui:576
+#: cui/uiconfig/ui/accelconfigpage.ui:577
msgctxt "accelconfigpage|extended_tip|AccelConfigPage"
msgid "Assigns or edits the shortcut keys for the office suite commands, or Basic macros."
msgstr ""
@@ -7542,24 +7548,28 @@ msgid "HSB"
msgstr "HSB"
#. sesZZ
+#. This is the C of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:639
msgctxt "colorpickerdialog|label5"
msgid "_Cyan:"
msgstr ""
#. Gw7rx
+#. This is the M of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:654
msgctxt "colorpickerdialog|label6"
msgid "_Magenta:"
msgstr "_Maxenta:"
#. Uv2KG
+#. This is the Y of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:669
msgctxt "colorpickerdialog|label7"
msgid "_Yellow:"
msgstr "Marie_llu:"
#. aFvbe
+#. This is the K of the CMYK color model: https://en.wikipedia.org/wiki/CMYK_color_model
#: cui/uiconfig/ui/colorpickerdialog.ui:684
msgctxt "colorpickerdialog|label8"
msgid "_Key:"
@@ -7596,7 +7606,7 @@ msgid "CMYK"
msgstr "CMYK"
#. HuUmH
-#: cui/uiconfig/ui/colorpickerdialog.ui:815
+#: cui/uiconfig/ui/colorpickerdialog.ui:812
msgctxt "extended tip | ColorPicker"
msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
msgstr ""
@@ -7605,7 +7615,7 @@ msgstr ""
#: cui/uiconfig/ui/comment.ui:18
msgctxt "comment|CommentDialog"
msgid "Insert Comment"
-msgstr "Inxertar Comentariu"
+msgstr "Inxertar un comentariu"
#. 22CJX
#: cui/uiconfig/ui/comment.ui:160
@@ -14442,7 +14452,7 @@ msgstr ""
#: cui/uiconfig/ui/optemailpage.ui:62
msgctxt "optemailpage|browse"
msgid "Browse..."
-msgstr "Desaminar..."
+msgstr "Restolar…"
#. Vs69j
#: cui/uiconfig/ui/optemailpage.ui:69
@@ -17353,181 +17363,155 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automáticu"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxa"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Altu contraste"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxíxenu"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Clásicu"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. SXzWW
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "_Theme:"
msgstr "_Tema:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. F7kTw
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Theme"
msgstr "Tema d'iconos"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Usar l'aceleración por hard_ware"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Apuerta directamente a les funciones de hardware del adaptador de gráficos en pantalla p'ameyorar la visualización en pantalla."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
#, fuzzy
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Usar el suavi_záu de fontes"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Cuando ye soportáu, pue habilitase o evacuar l'anti-aliasing de gráficos. Con anti-aliasing habilitáu, la visualización de la mayoría de los oxetos gráficos llucen nidios y con menos artefactos."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
#, fuzzy
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Salida gráfica"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Amosar vista p_revia de les fontes"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Suavizar les _fontes na pantalla"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
#, fuzzy
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "_dende"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Especifica'l tamañu de fonte más pequeñu p'aplicar l'anidiáu."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Llistes de fontes"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
@@ -17557,221 +17541,221 @@ msgid "_Orientation:"
msgstr "_Orientación:"
#. mtFWf
-#: cui/uiconfig/ui/pageformatpage.ui:131
+#: cui/uiconfig/ui/pageformatpage.ui:135
msgctxt "pageformatpage|radiobuttonPortrait"
msgid "_Portrait"
msgstr "_Vertical"
#. LGkU8
-#: cui/uiconfig/ui/pageformatpage.ui:150
+#: cui/uiconfig/ui/pageformatpage.ui:154
msgctxt "pageformatpage|radiobuttonLandscape"
msgid "L_andscape"
msgstr "_Apaisada"
#. PTwDK
-#: cui/uiconfig/ui/pageformatpage.ui:172
+#: cui/uiconfig/ui/pageformatpage.ui:176
msgctxt "pageformatpage|labelTextFlow"
msgid "_Text direction:"
msgstr "Direición del _testu:"
#. FmMdc
-#: cui/uiconfig/ui/pageformatpage.ui:228
+#: cui/uiconfig/ui/pageformatpage.ui:232
msgctxt "pageformatpage|labelPaperTray"
msgid "Paper _tray:"
msgstr "_Bandexa del papel:"
#. u8DFb
-#: cui/uiconfig/ui/pageformatpage.ui:260
+#: cui/uiconfig/ui/pageformatpage.ui:264
#, fuzzy
msgctxt "pageformatpage|labelPaperFormat"
msgid "Paper Format"
msgstr "Formatu de papel"
#. 479hs
-#: cui/uiconfig/ui/pageformatpage.ui:305
+#: cui/uiconfig/ui/pageformatpage.ui:309
msgctxt "pageformatpage|labelLeftMargin"
msgid "Left:"
msgstr "Izquierda:"
#. EoGm2
-#: cui/uiconfig/ui/pageformatpage.ui:319
+#: cui/uiconfig/ui/pageformatpage.ui:323
msgctxt "pageformatpage|labelInner"
msgid "I_nner:"
msgstr "I_nterior:"
#. 7FFiR
-#: cui/uiconfig/ui/pageformatpage.ui:357
+#: cui/uiconfig/ui/pageformatpage.ui:361
msgctxt "pageformatpage|labelRightMargin"
msgid "Right:"
msgstr "Drecha:"
#. RfnGu
-#: cui/uiconfig/ui/pageformatpage.ui:371
+#: cui/uiconfig/ui/pageformatpage.ui:375
msgctxt "pageformatpage|labelOuter"
msgid "O_uter:"
msgstr "E_sterior:"
#. tGMLA
-#: cui/uiconfig/ui/pageformatpage.ui:404
+#: cui/uiconfig/ui/pageformatpage.ui:408
msgctxt "pageformatpage|labelTopMargin"
msgid "Top:"
msgstr "Arriba:"
#. eaqBS
-#: cui/uiconfig/ui/pageformatpage.ui:430
+#: cui/uiconfig/ui/pageformatpage.ui:434
msgctxt "pageformatpage|labelBottomMargin"
msgid "Bottom:"
msgstr "Abaxo:"
#. TYx6B
-#: cui/uiconfig/ui/pageformatpage.ui:456
+#: cui/uiconfig/ui/pageformatpage.ui:460
msgctxt "pageformatpage|labelGutterMargin"
msgid "Gutter:"
msgstr ""
#. Tvwu6
-#: cui/uiconfig/ui/pageformatpage.ui:484
+#: cui/uiconfig/ui/pageformatpage.ui:488
msgctxt "pageformatpage|labelMargins"
msgid "Margins"
msgstr "Márxenes"
#. WcuCU
-#: cui/uiconfig/ui/pageformatpage.ui:517
+#: cui/uiconfig/ui/pageformatpage.ui:521
msgctxt "pageformatpage|labelPageLayout"
msgid "_Page layout:"
msgstr "Diseñu de _páxina:"
#. vnXWF
-#: cui/uiconfig/ui/pageformatpage.ui:531
+#: cui/uiconfig/ui/pageformatpage.ui:535
msgctxt "pageformatpage|labelPageNumbers"
msgid "Page numbers:"
msgstr "Númberos de páxina:"
#. tyvA3
-#: cui/uiconfig/ui/pageformatpage.ui:543
+#: cui/uiconfig/ui/pageformatpage.ui:547
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Use page li_ne-spacing"
msgstr ""
#. DtZQG
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:547
+#: cui/uiconfig/ui/pageformatpage.ui:551
msgctxt "pageformatpage|checkRegisterTrue"
msgid "Enables page line-spacing (register-true) using the selected Reference Style"
msgstr ""
#. p2egb
-#: cui/uiconfig/ui/pageformatpage.ui:552
+#: cui/uiconfig/ui/pageformatpage.ui:556
msgctxt "extended_tip|checkRegisterTrue"
msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height."
msgstr ""
#. 46djR
-#: cui/uiconfig/ui/pageformatpage.ui:566
+#: cui/uiconfig/ui/pageformatpage.ui:570
msgctxt "pageformatpage|liststorePageLayout"
msgid "Right and left"
msgstr "Derecha y esquierda"
#. xetCH
-#: cui/uiconfig/ui/pageformatpage.ui:567
+#: cui/uiconfig/ui/pageformatpage.ui:571
msgctxt "pageformatpage|liststorePageLayout"
msgid "Mirrored"
msgstr "Reflejado"
#. 47EHF
-#: cui/uiconfig/ui/pageformatpage.ui:568
+#: cui/uiconfig/ui/pageformatpage.ui:572
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only right"
msgstr "Namái drecha"
#. ALSy9
-#: cui/uiconfig/ui/pageformatpage.ui:569
+#: cui/uiconfig/ui/pageformatpage.ui:573
msgctxt "pageformatpage|liststorePageLayout"
msgid "Only left"
msgstr "Namái esquierda"
#. Fhvzk
-#: cui/uiconfig/ui/pageformatpage.ui:591
+#: cui/uiconfig/ui/pageformatpage.ui:595
msgctxt "pageformatpage|labelTblAlign"
msgid "Table alignment:"
msgstr "Alliniación de tabla:"
#. 79BH9
-#: cui/uiconfig/ui/pageformatpage.ui:603
+#: cui/uiconfig/ui/pageformatpage.ui:607
msgctxt "pageformatpage|checkbuttonHorz"
msgid "Hori_zontal"
msgstr "Hori_zontal"
#. krxQZ
-#: cui/uiconfig/ui/pageformatpage.ui:617
+#: cui/uiconfig/ui/pageformatpage.ui:621
msgctxt "pageformatpage|checkbuttonVert"
msgid "_Vertical"
msgstr "_Vertical"
#. FPLFK
-#: cui/uiconfig/ui/pageformatpage.ui:631
+#: cui/uiconfig/ui/pageformatpage.ui:635
msgctxt "pageformatpage|checkAdaptBox"
msgid "_Fit object to paper format"
msgstr "_Axustar l'oxetu al formatu del papel"
#. bqcXW
-#: cui/uiconfig/ui/pageformatpage.ui:648
+#: cui/uiconfig/ui/pageformatpage.ui:651
msgctxt "pageformatpage|labelRegisterStyle"
msgid "Reference _Style:"
msgstr "E_stilu de referencia:"
#. FnoPF
-#: cui/uiconfig/ui/pageformatpage.ui:672
+#: cui/uiconfig/ui/pageformatpage.ui:675
msgctxt "pageformatpage|labelGutterPosition"
msgid "Gutter position:"
msgstr ""
#. LF4Ex
-#: cui/uiconfig/ui/pageformatpage.ui:687
+#: cui/uiconfig/ui/pageformatpage.ui:690
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Left"
msgstr ""
#. DSBY5
-#: cui/uiconfig/ui/pageformatpage.ui:688
+#: cui/uiconfig/ui/pageformatpage.ui:691
msgctxt "pageformatpage|liststoreGutterPosition"
msgid "Top"
msgstr ""
#. AosV5
-#: cui/uiconfig/ui/pageformatpage.ui:704
+#: cui/uiconfig/ui/pageformatpage.ui:701
msgctxt "pageformatpage|checkRtlGutter"
msgid "Gutter on right side of page"
msgstr ""
#. cuazP
-#: cui/uiconfig/ui/pageformatpage.ui:718
+#: cui/uiconfig/ui/pageformatpage.ui:715
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Background covers margins"
msgstr ""
#. ApZcb
#. xdds
-#: cui/uiconfig/ui/pageformatpage.ui:722
+#: cui/uiconfig/ui/pageformatpage.ui:719
msgctxt "pageformatpage|checkBackgroundFullSize"
msgid "Any background will cover margins of the page as well"
msgstr ""
#. XtMGD
-#: cui/uiconfig/ui/pageformatpage.ui:727
+#: cui/uiconfig/ui/pageformatpage.ui:724
msgctxt "extended_tip|checkBackgroundFullSize"
msgid "If enabled, then any background will cover the entire page, including margins. If disabled, any background will cover the page only inside the margins."
msgstr ""
#. xdECe
-#: cui/uiconfig/ui/pageformatpage.ui:742
+#: cui/uiconfig/ui/pageformatpage.ui:754
#, fuzzy
msgctxt "pageformatpage|label5"
msgid "Layout Settings"
msgstr "Configuración del diseñu"
#. eBMbb
-#: cui/uiconfig/ui/pageformatpage.ui:763
+#: cui/uiconfig/ui/pageformatpage.ui:775
msgctxt "pageformatpage|labelMsg"
msgid ""
"The margin settings are out of print range.\n"
@@ -21285,10 +21269,10 @@ msgctxt "textcolumnstabpage|extended_tip|MTR_FLD_COL_SPACING"
msgid "Enter the amount of space to leave between the columns."
msgstr ""
-#. 4u4bL
+#. 7Fgep
#: cui/uiconfig/ui/textcolumnstabpage.ui:108
msgctxt "textcolumnstabpage|extended_tip|TextColumnsPage"
-msgid "Sets the columns layout properties for text in the selected drawing or text object."
+msgid "Sets the columns’ layout properties for text in the selected drawing or text object."
msgstr ""
#. 3Huae
@@ -21361,7 +21345,7 @@ msgstr "Cará_uteres al entamu de la llinia"
#: cui/uiconfig/ui/textflowpage.ui:181
msgctxt "textflowpage|labelMaxNum"
msgid "_Maximum consecutive hyphenated lines"
-msgstr ""
+msgstr "Ringleres guionaes consecutives _máximes"
#. GgHhP
#: cui/uiconfig/ui/textflowpage.ui:192
@@ -22365,37 +22349,37 @@ msgid "In columns view layout you see pages in a given number of columns side by
msgstr ""
#. opsyv
-#: cui/uiconfig/ui/zoomdialog.ui:367
+#: cui/uiconfig/ui/zoomdialog.ui:366
msgctxt "zoomdialog|columnssb-atkobject"
msgid "Columns"
msgstr "Columnes"
#. psRyA
-#: cui/uiconfig/ui/zoomdialog.ui:368
+#: cui/uiconfig/ui/zoomdialog.ui:367
msgctxt "zoomdialog|extended_tip|columnssb"
msgid "In columns view layout you see pages in a given number of columns side by side. Enter the number of columns."
msgstr ""
#. rhLet
-#: cui/uiconfig/ui/zoomdialog.ui:387
+#: cui/uiconfig/ui/zoomdialog.ui:386
msgctxt "zoomdialog|bookmode"
msgid "Book mode"
msgstr "Mou llibru"
#. egdNS
-#: cui/uiconfig/ui/zoomdialog.ui:400
+#: cui/uiconfig/ui/zoomdialog.ui:398
msgctxt "zoomdialog|extended_tip|bookmode"
msgid "In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number."
msgstr ""
#. pdZqi
-#: cui/uiconfig/ui/zoomdialog.ui:416
+#: cui/uiconfig/ui/zoomdialog.ui:414
msgctxt "zoomdialog|label1"
msgid "View Layout"
msgstr "Formatu de visualización"
#. DWWgJ
-#: cui/uiconfig/ui/zoomdialog.ui:448
+#: cui/uiconfig/ui/zoomdialog.ui:446
msgctxt "zoomdialog|extended_tip|ZoomDialog"
msgid "Reduces or enlarges the screen display."
msgstr ""
diff --git a/source/ast/dbaccess/messages.po b/source/ast/dbaccess/messages.po
index 9476fef7c91..22768946b4e 100644
--- a/source/ast/dbaccess/messages.po
+++ b/source/ast/dbaccess/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-16 08:40+0000\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
+"PO-Revision-Date: 2022-03-31 22:31+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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524566374.000000\n"
#. BiN6g
@@ -1907,11 +1907,11 @@ msgctxt "STR_WRITER_PATH_OR_FILE"
msgid "Path to the Writer document"
msgstr "Camín al documentu de Writer"
-#. zQxCp
+#. JScWd
#: dbaccess/inc/strings.hrc:335
msgctxt "STR_MYSQL_DATABASE_NAME"
-msgid "Name of the MySQL database"
-msgstr "Nome de la base de datos MySQL"
+msgid "Name of the MySQL/MariaDB database"
+msgstr "Nome de la base datos MySQL/MariaDB"
#. uhRMQ
#: dbaccess/inc/strings.hrc:336
@@ -2097,11 +2097,11 @@ msgctxt "STR_PAGETITLE_ORACLE"
msgid "Set up Oracle database connection"
msgstr "Afitar una conexón base de datos Oracle"
-#. KbAqW
+#. rdZFv
#: dbaccess/inc/strings.hrc:368
msgctxt "STR_PAGETITLE_MYSQL"
-msgid "Set up MySQL connection"
-msgstr "Configurar conexón de MySQL"
+msgid "Set up MySQL/MariaDB connection"
+msgstr ""
#. uJuNs
#: dbaccess/inc/strings.hrc:369
@@ -2121,11 +2121,11 @@ msgctxt "STR_PAGETITLE_AUTHENTIFICATION"
msgid "Set up user authentication"
msgstr "Configurar autenticación del usuariu"
-#. YgsyA
+#. twW6d
#: dbaccess/inc/strings.hrc:372
msgctxt "STR_PAGETITLE_MYSQL_NATIVE"
-msgid "Set up MySQL server data"
-msgstr "Configurar datos del sirvidor MySQL"
+msgid "Set up MySQL/MariaDB server data"
+msgstr ""
#. 6Fy7C
#: dbaccess/inc/strings.hrc:373
@@ -2139,27 +2139,25 @@ msgctxt "STR_DATABASEDEFAULTNAME"
msgid "New Database"
msgstr "Base de datos nueva"
-#. DoGLb
+#. f5EbK
#: dbaccess/inc/strings.hrc:375
msgctxt "STR_MYSQLJDBC_HEADERTEXT"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "Configurar conexón con una base de datos MySQL usando JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. B5kEC
+#. tqpeM
#: dbaccess/inc/strings.hrc:376
msgctxt "STR_MYSQLJDBC_HELPTEXT"
msgid ""
-"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
+"Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
-"Escribi la información necesaria pa coneutar con una base de datos MySQL usando JDBC. Ten en cuenta que'l sistema tien que tener una clase de controlador JDBC instalada y rexistrada con %PRODUCTNAME.\n"
-"Comunícate col alministrador del sistema si nun tas seguru de la configuración siguiente."
-#. uGTyY
+#. Lrd3G
#: dbaccess/inc/strings.hrc:377
msgctxt "STR_MYSQL_DRIVERCLASSTEXT"
-msgid "MySQL JDBC d~river class:"
-msgstr "Cla~se de controlador MySQL JDBC:"
+msgid "MySQL/MariaDB JDBC d~river class:"
+msgstr ""
#. cBiSe
#: dbaccess/inc/strings.hrc:378
@@ -3013,10 +3011,9 @@ msgstr "Nota: Cuando apaecen rexistros desaniciaos y poro, inactivos, nun pues d
#. fhzxC
#: dbaccess/uiconfig/ui/dbasepage.ui:126
-#, fuzzy
msgctxt "dbasepage|label1"
msgid "Optional Settings"
-msgstr "Configuraciones Opcionales"
+msgstr "Axustes opcionales"
#. sLxfs
#: dbaccess/uiconfig/ui/dbasepage.ui:141
@@ -3076,12 +3073,11 @@ msgctxt "dbwizmysqlintropage|jdbc"
msgid "Connect using JDBC (Java Database Connectivity)"
msgstr "Coneutar usando JDBC (Java Database Connectivity)"
-#. AW2n6
+#. 3haAx
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:93
-#, fuzzy
msgctxt "dbwizmysqlintropage|directly"
-msgid "Connect directly"
-msgstr "Coneutar direutamente"
+msgid "Connect directly (using MariaDB C connector)"
+msgstr ""
#. C9PFE
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:112
@@ -3090,26 +3086,23 @@ msgctxt "dbwizmysqlintropage|label1"
msgid "How do you want to connect to your MySQL database?"
msgstr "¿Cómo quies coneutate a la base de datos MySQL?"
-#. pdEL5
+#. C9PGh
#: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:128
-#, fuzzy
msgctxt "dbwizmysqlintropage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "Configura una conexón con una base de datos JDBC"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
-#. E8ACc
+#. 3cSEi
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:35
-#, fuzzy
msgctxt "dbwizmysqlnativepage|helptext"
-msgid "Please enter the required information to connect to a MySQL database."
-msgstr "Por favor introduza la información requería pa coneutar a una base de datos MySQL."
+msgid "Please enter the required information to connect to a MySQL/MariaDB database."
+msgstr ""
-#. 2HCAG
+#. 4uetU
#: dbaccess/uiconfig/ui/dbwizmysqlnativepage.ui:70
-#, fuzzy
msgctxt "dbwizmysqlnativepage|header"
-msgid "Set Up a Connection to a MySQL Database"
-msgstr "Configura una conexón con una base de datos JDBC"
+msgid "Set Up a Connection to a MySQL/MariaDB Database"
+msgstr ""
#. AEty7
#: dbaccess/uiconfig/ui/dbwizspreadsheetpage.ui:55
@@ -4043,10 +4036,9 @@ msgstr "Emplegar el catálogu pa bases de datos basaes en ficheros"
#. GMUZg
#: dbaccess/uiconfig/ui/odbcpage.ui:151
-#, fuzzy
msgctxt "odbcpage|label1"
msgid "Optional Settings"
-msgstr "Configuraciones Opcionales"
+msgstr "Axustes opcionales"
#. zjHDt
#: dbaccess/uiconfig/ui/parametersdialog.ui:18
@@ -4071,10 +4063,9 @@ msgstr "Siguiente"
#. xirKR
#: dbaccess/uiconfig/ui/parametersdialog.ui:209
-#, fuzzy
msgctxt "parametersdialog|label1"
msgid "_Parameters"
-msgstr "Parámetros"
+msgstr "_Parámetros"
#. cJozC
#: dbaccess/uiconfig/ui/password.ui:8
@@ -4105,7 +4096,7 @@ msgstr ""
#: dbaccess/uiconfig/ui/password.ui:187
msgctxt "password|label1"
msgid "User “$name$: $”"
-msgstr ""
+msgstr "Usuariu «$name$: $»"
#. 9sAsA
#: dbaccess/uiconfig/ui/querycolmenu.ui:12
@@ -4703,20 +4694,17 @@ msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Specifies the sort criteria for the data display."
msgstr "Especifica los criterios de clasificación pa visualizar los datos."
-#. CsLXB
+#. nDP3A
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:24
msgctxt "specialjdbcconnectionpage|header"
-msgid "Set up connection to a MySQL database using JDBC"
-msgstr "Configurar conexón con una base de datos MySQL usando JDBC"
+msgid "Set up connection to a MySQL/MariaDB database using JDBC"
+msgstr ""
-#. oxw5Q
+#. EVDCG
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:39
-#, fuzzy
msgctxt "specialjdbcconnectionpage|helpLabel"
-msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
+msgid "Please enter the required information to connect to a MySQL/MariaDB database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
msgstr ""
-"Escribi la información necesaria pa coneutar con una base de datos MySQL usando JDBC. Ten en cuenta que'l sistema tien que tener una clase de controlador JDBC instalada y rexistrada con %PRODUCTNAME.\n"
-"Contauta col alministrador del sistema si nun tas seguru de la configuración."
#. GchzZ
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:64
@@ -4745,12 +4733,11 @@ msgctxt "specialjdbcconnectionpage|portNumDefLabel"
msgid "Default: 3306"
msgstr "Predetermináu: 3306"
-#. dhiYx
+#. o9YhU
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:188
-#, fuzzy
msgctxt "specialjdbcconnectionpage|jdbcDriverLabel"
-msgid "MySQL JDBC d_river class:"
-msgstr "Cla~se de controlador MySQL JDBC:"
+msgid "MySQL/MariaDB JDBC d_river class:"
+msgstr ""
#. 8oG6P
#: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:212
diff --git a/source/ast/editeng/messages.po b/source/ast/editeng/messages.po
index 903cb13d46b..5dba352c098 100644
--- a/source/ast/editeng/messages.po
+++ b/source/ast/editeng/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-11 21:39+0000\n"
+"PO-Revision-Date: 2022-03-31 22:31+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1516043757.000000\n"
#. BHYB4
@@ -190,7 +190,7 @@ msgstr "Revisión ortográfica..."
#: editeng/uiconfig/ui/spellmenu.ui:56
msgctxt "spellmenu|autocorrect"
msgid "AutoCorrect _To"
-msgstr "Autocorreición _por"
+msgstr "Correición n'automático _por"
#. 4qA7Z
#: editeng/uiconfig/ui/spellmenu.ui:70
diff --git a/source/ast/extensions/messages.po b/source/ast/extensions/messages.po
index 53d11aa9561..9d49954dd67 100644
--- a/source/ast/extensions/messages.po
+++ b/source/ast/extensions/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-11 21:39+0000\n"
+"PO-Revision-Date: 2022-04-04 09: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"
"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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1542022490.000000\n"
#. cBx8W
@@ -3234,7 +3234,7 @@ msgstr "Yá hai otra fonte de datos con esti nome. Escueyi otru, porque'l nome d
#: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:231
msgctxt "datasourcepage|extended_tip|DataSourcePage"
msgid "Specifies a location for the address book file and a name under which the data source will be listed in the data source explorer."
-msgstr "Especifica l'allugamientu del ficheru de llibreta de direiciones y el nome col que se va amosar l'orixe de datos nel esplorador d'oríxenes de datos."
+msgstr "Especifica l'allugamientu del ficheru de llibreta de señes y el nome col que se va amosar l'orixe de datos nel esplorador d'oríxenes de datos."
#. CWNrs
#: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:18
@@ -3278,7 +3278,7 @@ msgstr "Asignación de campu"
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:46
msgctxt "fieldassignpage|extended_tip|assign"
msgid "Opens the Templates: Address Book Assignment dialog."
-msgstr "Abre'l diálogu Plantíes: Asignación de llibreta de direiciones."
+msgstr "Abre'l diálogu Plantíes: Asignación de llibreta de señes."
#. CuPoK
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:77
@@ -3567,7 +3567,7 @@ msgstr "Evolution"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:51
msgctxt "selecttypepage|extended_tip|evolution"
msgid "Select this option if you already use an address book in Evolution."
-msgstr "Escueya esta opción si en Evolution yá utiliza una llibreta de direiciones."
+msgstr "Escueya esta opción si en Evolution yá utiliza una llibreta de señes."
#. F6JYD
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:62
@@ -3579,7 +3579,7 @@ msgstr "Groupwise"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:71
msgctxt "selecttypepage|extended_tip|groupwise"
msgid "Select this option if you already use an address book in Groupwise."
-msgstr "Escueya esta opción si en Groupwise yá utiliza una llibreta de direiciones."
+msgstr "Escueya esta opción si en Groupwise yá utiliza una llibreta de señes."
#. cuXRp
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:82
@@ -3591,7 +3591,7 @@ msgstr "LDAP d'Evolution"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:91
msgctxt "selecttypepage|extended_tip|evoldap"
msgid "Select this option if you already use an address book in Evolution LDAP."
-msgstr "Escueya esta opción si en Evolution LDAP yá utiliza una llibreta de direiciones."
+msgstr "Escueya esta opción si en Evolution LDAP yá utiliza una llibreta de señes."
#. C4oTw
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:102
@@ -3943,13 +3943,13 @@ msgstr ""
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:915
msgctxt "generalpage|browse"
msgid "Browse..."
-msgstr ""
+msgstr "Restolar…"
#. vrVJF
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:939
msgctxt "generalpage|localpagecb"
msgid "Page"
-msgstr ""
+msgstr "Páxina"
#. x9s9K
#: extensions/uiconfig/sbibliography/ui/generalpage.ui:1015
diff --git a/source/ast/formula/messages.po b/source/ast/formula/messages.po
index 11d66763b83..84f814a1bf5 100644
--- a/source/ast/formula/messages.po
+++ b/source/ast/formula/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-11 21:39+0000\n"
+"PO-Revision-Date: 2022-03-07 01:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/ast/>\n"
"Language: ast\n"
@@ -1297,7 +1297,7 @@ msgstr "INDIREUTU"
#: formula/inc/core_resource.hrc:2494
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "ADDRESS"
-msgstr "DIREICIÓN"
+msgstr "SEÑES"
#. oC9GV
#: formula/inc/core_resource.hrc:2495
diff --git a/source/ast/fpicker/messages.po b/source/ast/fpicker/messages.po
index 1e7ec65ba1c..8f7c6c7d91a 100644
--- a/source/ast/fpicker/messages.po
+++ b/source/ast/fpicker/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-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-02-11 21:38+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-03-31 22:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/ast/>\n"
"Language: ast\n"
@@ -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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1538496517.000000\n"
#. SJGCw
@@ -502,8 +502,20 @@ msgstr ""
"\n"
"¿Quier trocalu?"
-#. z6Eo3
+#. t4wDh
#: include/fpicker/strings.hrc:32
+msgctxt "STR_SVT_ALREADYEXISTOVERWRITE_SECONDARY"
+msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents."
+msgstr "Yá esiste'l ficheru en «$dirname$». Al trocalu sobrescribiráse'l so conteníu."
+
+#. cBvCB
+#: include/fpicker/strings.hrc:33
+msgctxt "STR_SVT_ALLFORMATS"
+msgid "All Formats"
+msgstr "Tolos formatos"
+
+#. z6Eo3
+#: include/fpicker/strings.hrc:34
msgctxt "STR_SVT_DELETESERVICE"
msgid ""
"Are you sure you want to delete the service?\n"
@@ -511,32 +523,32 @@ msgid ""
msgstr ""
#. KegFE
-#: include/fpicker/strings.hrc:33
+#: include/fpicker/strings.hrc:35
#, fuzzy
msgctxt "STR_SVT_ROOTLABEL"
msgid "Root"
msgstr "Pie"
#. sWRTd
-#: include/fpicker/strings.hrc:34
+#: include/fpicker/strings.hrc:36
msgctxt "STR_FILTERNAME_ALL"
msgid "All files"
msgstr "Tolos ficheros"
#. FBggE
-#: include/fpicker/strings.hrc:35
+#: include/fpicker/strings.hrc:37
msgctxt "STR_FILEDLG_OPEN"
msgid "Open"
msgstr "Abrir"
#. wJYsA
-#: include/fpicker/strings.hrc:36
+#: include/fpicker/strings.hrc:38
msgctxt "STR_FILEDLG_TYPE"
msgid "File ~type"
msgstr "~Triba de ficheru"
#. EEBg4
-#: include/fpicker/strings.hrc:37
+#: include/fpicker/strings.hrc:39
#, fuzzy
msgctxt "STR_FILEDLG_SAVE"
msgid "Save"
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index 3151f57cebc..6e99fb3dfd2 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: 2022-02-21 15:22+0100\n"
-"PO-Revision-Date: 2022-02-12 19:39+0000\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
+"PO-Revision-Date: 2022-03-31 22:25+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"
@@ -257,7 +257,7 @@ msgctxt ""
"par_id3155854\n"
"help.text"
msgid "Black"
-msgstr "Negru"
+msgstr "Prietu"
#. fNgfA
#: 00000003.xhp
@@ -2923,13 +2923,13 @@ msgctxt ""
msgid "<bookmark_value>procedures</bookmark_value> <bookmark_value>functions;using</bookmark_value> <bookmark_value>variables;passing to procedures, functions, properties</bookmark_value> <bookmark_value>parameters;for procedures, functions or properties</bookmark_value> <bookmark_value>parameters;passing by reference or value</bookmark_value> <bookmark_value>variables;scope</bookmark_value> <bookmark_value>scope of variables</bookmark_value> <bookmark_value>GLOBAL variables</bookmark_value> <bookmark_value>PUBLIC variables</bookmark_value> <bookmark_value>PRIVATE variables</bookmark_value> <bookmark_value>functions;return value type</bookmark_value> <bookmark_value>return value type of functions</bookmark_value>"
msgstr ""
-#. AYcBA
+#. RY6Z4
#: 01020300.xhp
msgctxt ""
"01020300.xhp\n"
"hd_id3149456\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures, Functions and Properties</link>"
+msgid "<variable id=\"UsingSubs_h1\"><link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures, Functions and Properties</link></variable>"
msgstr ""
#. DSyYW
@@ -4343,7 +4343,7 @@ msgctxt ""
"par_id3150361\n"
"help.text"
msgid "Click <emph>Delete</emph>."
-msgstr "Calque en <emph>Desaniciar</emph>."
+msgstr "Calca <emph>Desaniciar</emph>."
#. 8s8sV
#: 01030400.xhp
@@ -4352,7 +4352,7 @@ msgctxt ""
"par_id3152986\n"
"help.text"
msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
-msgstr "Nota: En cuanto bórrase una biblioteca, tolos módulos esistentes y los sos SUBS y FUNCIONES correspondientes desaniciar de forma permanente."
+msgstr "Nota: En cuanto se desanicia una biblioteca, tolos módulos esistentes y los sos procedimientos y funciones correspondientes desaníciense de forma permanente."
#. Mfwwv
#: 01030400.xhp
@@ -4361,7 +4361,7 @@ msgctxt ""
"par_id3148868\n"
"help.text"
msgid "You cannot delete the default library named \"Standard\"."
-msgstr "La biblioteca predeterminada \"Standard\" nun pue desaniciar."
+msgstr "La biblioteca predeterminada «Standard» nun pue desaniciase."
#. CYvda
#: 01030400.xhp
@@ -4370,7 +4370,7 @@ msgctxt ""
"par_id3146869\n"
"help.text"
msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
-msgstr "Si desanicia una biblioteca que s'inxertó como referencia, namái se desaniciar referenciar pero non la biblioteca en sí."
+msgstr "Si desanicia una biblioteca que s'inxertó como referencia, namái se desanicia la referencia pero non la biblioteca en sí."
#. v2QTY
#: 01030400.xhp
@@ -6458,7 +6458,7 @@ msgctxt ""
"par_id6519974\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether the nodes of the tree control are editable.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica si los nodos d'un control árbol son editable.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica si los nueyos d'un control árbol son editables.</ahelp>"
#. 6E3fY
#: 01170101.xhp
@@ -19114,13 +19114,13 @@ msgctxt ""
msgid "Performs the integer division on two numbers and returns the result."
msgstr ""
-#. iN7zc
+#. 7hxCB
#: 03070700.xhp
msgctxt ""
"03070700.xhp\n"
"bm_id3150669\n"
"help.text"
-msgid "<bookmark_value>Operators;Integer division (\\)</bookmark_value> <bookmark_value>\"\\\\\" operator (mathematical)</bookmark_value>"
+msgid "<bookmark_value>Operators;Integer division (\\\\)</bookmark_value> <bookmark_value>\"\\\\\" operator (mathematical)</bookmark_value>"
msgstr ""
#. KDgG2
@@ -23056,13 +23056,13 @@ msgctxt ""
msgid "<bookmark_value>Call statement</bookmark_value>"
msgstr "<bookmark_value>Call;instrucción</bookmark_value>"
-#. LmAwf
+#. HW8av
#: 03090401.xhp
msgctxt ""
"03090401.xhp\n"
"hd_id3154422\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">Call Statement</link>"
+msgid "<variable id=\"Call_h1\"><link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">Call Statement</link></variable>"
msgstr ""
#. nPKzF
@@ -23074,15 +23074,6 @@ msgctxt ""
msgid "Transfers the control of the program to a subroutine, a function, or a procedure of a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">Dynamic Link Library (DLL)</link>. The keyword, type and number of parameters is dependent on the routine that is being called."
msgstr ""
-#. MdeJS
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
-"help.text"
-msgid "Syntax:"
-msgstr "Sintaxis:"
-
#. CXLBw
#: 03090401.xhp
msgctxt ""
@@ -23101,15 +23092,6 @@ msgctxt ""
msgid "[Call] name [(] [param :=] value, ... [)]"
msgstr ""
-#. 5MBBJ
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parámetros:"
-
#. C2MXB
#: 03090401.xhp
msgctxt ""
@@ -23155,15 +23137,6 @@ msgctxt ""
msgid "When a function is used as an expression, enclosing parameters with brackets becomes necessary. Using a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Declare statement</link> is compulsory prior to call a DLL."
msgstr ""
-#. QZZ8c
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"help.text"
-msgid "Example:"
-msgstr "Exemplu:"
-
#. eyeVE
#: 03090402.xhp
msgctxt ""
@@ -23731,31 +23704,40 @@ msgctxt ""
msgid "<bookmark_value>Function statement</bookmark_value>"
msgstr "<bookmark_value>Function;instrucción</bookmark_value>"
-#. 4m9Rw
+#. 4AZJf
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"hd_id3153346\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">Function Statement</link>"
+msgid "<variable id=\"Function_h1\"><link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">Function Statement</link></variable>"
msgstr ""
-#. mLEJz
+#. i3BLj
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
"par_id3159158\n"
"help.text"
-msgid "Defines a subroutine that can be used as an expression to determine a return type."
-msgstr "Define una subrutina que pue usase como espresión pa determinar un tipu de torna."
+msgid "A function is a block of code which runs when it is called. A function is usually called in an expression."
+msgstr ""
+
+#. fLBaF
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id451647246564161\n"
+"help.text"
+msgid "You can pass data, known as parameters or arguments, into a function. You may pass a parameter by value or by reference. When by reference, modifications applied to the parameter in the function will be sent back to the calling code."
+msgstr ""
-#. qCx4G
+#. 9wMCM
#: 03090406.xhp
msgctxt ""
"03090406.xhp\n"
-"par_id661588586825434\n"
+"par_id101647247154065\n"
"help.text"
-msgid "<literal>Sub</literal>, <literal>Function</literal> or <literal>Property</literal> statements are similar methods, without distinction. They receive parameters by reference allowing them to be modified in return. %PRODUCTNAME Basic compiler accepts their respective argument syntax to be used interchangeably."
+msgid "A function usually returns data as a result."
msgstr ""
#. zFnQ7
@@ -23857,6 +23839,15 @@ msgctxt ""
msgid "Exit For ' sItem found"
msgstr "Exit For ' sItem atopáu"
+#. FTf7A
+#: 03090406.xhp
+msgctxt ""
+"03090406.xhp\n"
+"par_id181647247913872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgstr ""
+
#. yZEAJ
#: 03090407.xhp
msgctxt ""
@@ -24055,6 +24046,15 @@ msgctxt ""
msgid "<emph>arguments:</emph> Optional parameters that you want to pass to the subroutine."
msgstr ""
+#. gPQ9W
+#: 03090409.xhp
+msgctxt ""
+"03090409.xhp\n"
+"par_id181647247913872\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
+msgstr ""
+
#. CCDzt
#: 03090410.xhp
msgctxt ""
@@ -34369,13 +34369,13 @@ msgctxt ""
msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) ' to get a byte sequence."
msgstr ""
-#. rSTG8
+#. pEjGF
#: 03132300.xhp
msgctxt ""
"03132300.xhp\n"
"par_id3150541\n"
"help.text"
-msgid "If <literal>CreateUnoValue</literal> cannot be converted to the specified Uno type, and error occurs. For the conversion, the <literal>TypeConverter</literal> service is used."
+msgid "If <literal>CreateUnoValue</literal> cannot be converted to the specified Uno type, and error occurs. For the conversion, the <literal>com.sun.star.script.Converter</literal> service is used."
msgstr ""
#. bT3DS
@@ -37249,13 +37249,13 @@ msgctxt ""
msgid "CallByName Function"
msgstr ""
-#. tbCrP
+#. 3957Y
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"hd_id3150669\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/CallByName.xhp\">CallByName Function</link>"
+msgid "<variable id=\"CallByName_h1\"><link href=\"text/sbasic/shared/CallByName.xhp\">CallByName Function</link></variable>"
msgstr ""
#. 7EWyG
@@ -37267,13 +37267,13 @@ msgctxt ""
msgid "Invokes a subroutine by its string name."
msgstr ""
-#. GSJB7
+#. V4GLV
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"bm_id3150669\n"
"help.text"
-msgid "<bookmark_value>CallByName function</bookmark_value>"
+msgid "<bookmark_value>CallByName function</bookmark_value> <bookmark_value>API;OfficeFilePicker</bookmark_value>"
msgstr ""
#. kJE7K
@@ -37346,7 +37346,7 @@ msgctxt ""
"par_id331644505028463\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Valor"
#. arGjh
#: CallByName.xhp
@@ -37411,13 +37411,13 @@ msgctxt ""
msgid "<literal>ScriptForge.Platform.Architecture</literal> information is retrieved."
msgstr ""
-#. WR7MJ
+#. rvtXD
#: CallByName.xhp
msgctxt ""
"CallByName.xhp\n"
"par_id651644588404943\n"
"help.text"
-msgid "<literal>DisplayDirectory</literal> property of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker-members.html\" name=\"FilePicker\">com.sun.star.ui.dialogs.FilePicker</link> UNO service is assigned a value, its content is read twice."
+msgid "<literal>DisplayDirectory</literal> property of <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1ui_1_1dialogs_1_1FilePicker-members.html\" name=\"FilePicker\">com.sun.star.ui.dialogs.FilePicker</link> UNO service is set to the user home folder, its content is read twice."
msgstr ""
#. 3DsDt
@@ -37436,7 +37436,7 @@ msgctxt ""
"hd_id971644589733247\n"
"help.text"
msgid "Calc.Maths module"
-msgstr ""
+msgstr "Módulu Calc.Maths"
#. jkaab
#: CallByName.xhp
@@ -38399,7 +38399,7 @@ msgctxt ""
"par_id511592356505781\n"
"help.text"
msgid "Calc Function name"
-msgstr ""
+msgstr "Nome de la función de Calc"
#. b2FSD
#: calc_functions.xhp
@@ -38408,7 +38408,7 @@ msgctxt ""
"par_id471592356505782\n"
"help.text"
msgid "UNO service name"
-msgstr ""
+msgstr "Nome del serviciu UNO"
#. emGWD
#: calc_functions.xhp
@@ -39344,7 +39344,7 @@ msgctxt ""
"par_id511593356505781\n"
"help.text"
msgid "Calc Function name"
-msgstr ""
+msgstr "Nome de la función de Calc"
#. TEzJG
#: calc_functions.xhp
@@ -39353,7 +39353,7 @@ msgctxt ""
"par_id471593356505782\n"
"help.text"
msgid "UNO service name"
-msgstr ""
+msgstr "Nome del serviciu UNO"
#. J6Jdh
#: calc_functions.xhp
@@ -39443,7 +39443,7 @@ msgctxt ""
"par_id511593356506781\n"
"help.text"
msgid "Calc Function name"
-msgstr ""
+msgstr "Nome de la función de Calc"
#. TRZn5
#: calc_functions.xhp
@@ -39452,7 +39452,7 @@ msgctxt ""
"par_id471593356505762\n"
"help.text"
msgid "UNO service name"
-msgstr ""
+msgstr "Nome del serviciu UNO"
#. rQJPp
#: calc_functions.xhp
@@ -39967,13 +39967,13 @@ msgctxt ""
msgid "<variable id=\"compatibilitymodeh1\"><link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"CompatibilityMode\">CompatibilityMode() Function</link></variable>"
msgstr ""
-#. ipFPG
+#. 4EEry
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"N0120\n"
"help.text"
-msgid "<literal>CompatibilityMode()</literal> function controls runtime mode and affects all code executed after setting or resetting the mode."
+msgid "<literal>CompatibilityMode()</literal> function controls or queries runtime mode. It affects all code executed after setting or resetting the runtime mode."
msgstr ""
#. YSokk
@@ -39985,13 +39985,40 @@ msgctxt ""
msgid "Use this feature with caution, limit it to document conversion for example."
msgstr ""
-#. GJLGQ
+#. VDnNU
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
-"par_id271561645872679\n"
+"bas_id751645014686110\n"
"help.text"
-msgid "<literal>Option Compatible</literal> turns on VBA compatibility at module level for the %PRODUCTNAME Basic interpreter."
+msgid "CompatibilityMode(Optional Enable As Boolean) As Boolean"
+msgstr ""
+
+#. 34s7C
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id551648117368688\n"
+"help.text"
+msgid "<literal>CompatibilityMode</literal> function always returns the mode that is active after its execution. That is if called with argument, it returns the new mode, if called without argument, it returns active mode without modifying it."
+msgstr ""
+
+#. buGpD
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id971648117815981\n"
+"help.text"
+msgid "<emph>Enable</emph>: Sets or unsets new compatibility mode when the argument is present."
+msgstr ""
+
+#. ouFEB
+#: compatibilitymode.xhp
+msgctxt ""
+"compatibilitymode.xhp\n"
+"par_id371648123169691\n"
+"help.text"
+msgid "<literal>CompatibilityMode</literal> function relates to <link href=\"text/sbasic/shared/03103350.xhp#vbasupportstatement\" name=\"VBASupport compiler option\">Option VBASupport 1</link>, in which case it always returns <literal>True</literal>. It is unrelated to <link href=\"text/sbasic/shared/compatible.xhp#compatiblestatement\" name=\"Option Compatible compiler directive\">Option Compatible</link> compiler directive."
msgstr ""
#. NM3yP
@@ -40003,13 +40030,13 @@ msgctxt ""
msgid "This function may affect or help in the following situations:"
msgstr ""
-#. 9jVgZ
+#. RSBt2
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
-"N0122\n"
+"par_id301645018760314\n"
"help.text"
-msgid "Creating enumerations with <link href=\"text/sbasic/shared/enum.xhp\" name=\"enum statement\">Enum statement</link>"
+msgid "Scoping of variables."
msgstr ""
#. f6LjG
@@ -40039,15 +40066,6 @@ msgctxt ""
msgid "Color components calculation with the <link href=\"text/sbasic/shared/03010303.xhp\" name=\"linkred\"><literal>Red</literal></link> and <link href=\"text/sbasic/shared/03010301.xhp\" name=\"linkblue\"><literal>Blue</literal></link> functions which <emph>are interchanged</emph> (The <link href=\"text/sbasic/shared/03010302.xhp\" name=\"linkgreen\"><literal>Green</literal></link> function is not affected)."
msgstr ""
-#. piCTC
-#: compatibilitymode.xhp
-msgctxt ""
-"compatibilitymode.xhp\n"
-"N0126\n"
-"help.text"
-msgid "<literal>CompatibilityMode()</literal> function may be necessary when resorting to <literal>Option Compatible</literal> or <literal>Option VBASupport</literal> compiler modes."
-msgstr ""
-
#. cFz7C
#: compatibilitymode.xhp
msgctxt ""
@@ -40057,13 +40075,13 @@ msgctxt ""
msgid "Given a NOT empty directory at <emph>file:///home/me/Test</emph>"
msgstr ""
-#. 7mLBk
+#. yntDo
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"par_id461561646613414\n"
"help.text"
-msgid "With <literal>CompatibilityMode( true )</literal> the program results in an error, otherwise the Test directory and all its content is deleted."
+msgid "With <literal>CompatibilityMode( True )</literal> the program raises an error, otherwise the <literal>Test</literal> directory and all its content is deleted."
msgstr ""
#. TcWG2
@@ -40075,22 +40093,22 @@ msgctxt ""
msgid "Modifying <literal>Dir</literal> behavior"
msgstr ""
-#. S3VK4
+#. RcnAo
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
"par_id831561647900147\n"
"help.text"
-msgid "CompatibilityMode( true ) ' Shows also normal files"
-msgstr "CompatibilityMode( true ) ' Amuesa tamién los ficheros normales"
+msgid "CompatibilityMode( Enable := True ) ' Shows also normal files"
+msgstr ""
-#. YJM4j
+#. oBqaD
#: compatibilitymode.xhp
msgctxt ""
"compatibilitymode.xhp\n"
-"N0129\n"
+"bas_id641645017016611\n"
"help.text"
-msgid "Refer to <link href=\"text/sbasic/python/python_platform.xhp\">Identifying the Operating System</link> and <link href=\"text/sbasic/python/python_session.xhp\">Getting Session Information</link> for <literal>Option Compatible</literal> simple examples, or <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link> for other class examples making use of <literal>Option Compatible</literal> compiler mode."
+msgid "CompatibilityMode Enable := False ' Shows only directories"
msgstr ""
#. P7qDB
@@ -40102,15 +40120,6 @@ msgctxt ""
msgid "Variables scope modification in <link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link> with <literal>CompatibilityMode()</literal> function."
msgstr ""
-#. YwBF4
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"N0103\n"
-"help.text"
-msgid "<bookmark_value>VBA compatibility option</bookmark_value>"
-msgstr ""
-
#. imVdb
#: compatible.xhp
msgctxt ""
@@ -40129,15 +40138,6 @@ msgctxt ""
msgid "<literal>Option Compatible</literal> extends %PRODUCTNAME Basic compiler and runtime, allowing supplemental language constructs to Basic."
msgstr ""
-#. SNhhH
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"par_id931561646897105\n"
-"help.text"
-msgid "The function <link href=\"text/sbasic/shared/compatibilitymode.xhp\" name=\"copatibilitymode\"><literal>CompatibilityMode()</literal></link> controls runtime mode and affects all code executed after setting or resetting the mode."
-msgstr ""
-
#. w5NPC
#: compatible.xhp
msgctxt ""
@@ -40165,24 +40165,6 @@ msgctxt ""
msgid "Create <link href=\"text/sbasic/shared/03040000.xhp#addvbaconstants\" name=\"addvbaconstants\">VBA constants including non-printable characters</link>."
msgstr ""
-#. jGHBX
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"N0110\n"
-"help.text"
-msgid "Support <literal>Private</literal>/<literal>Public</literal> keywords for procedures."
-msgstr ""
-
-#. VGYZH
-#: compatible.xhp
-msgctxt ""
-"compatible.xhp\n"
-"N0111\n"
-"help.text"
-msgid "Compulsory <literal>Set</literal> statement for objects."
-msgstr ""
-
#. xwLEC
#: compatible.xhp
msgctxt ""
@@ -40237,13 +40219,13 @@ msgctxt ""
msgid "' With this option the code works, otherwise it causes a compiling error"
msgstr ""
-#. E6GpA
+#. rWE5B
#: compatible.xhp
msgctxt ""
"compatible.xhp\n"
"par_id381561650119146\n"
"help.text"
-msgid "Statement <literal>Option VBAsupport 1</literal> sets <literal>Option Compatible</literal> statement automatically."
+msgid "Statement <literal>Option VBAsupport 1</literal> implies <literal>Option Compatible</literal> statement automatically."
msgstr ""
#. j8iHM
@@ -41416,13 +41398,13 @@ msgctxt ""
msgid "<bookmark_value>Property statement</bookmark_value>"
msgstr ""
-#. 6Gjab
+#. a5AX6
#: property.xhp
msgctxt ""
"property.xhp\n"
"N0182\n"
"help.text"
-msgid "Property Statement"
+msgid "<variable id=\"Property_h1\"><link href=\"text/sbasic/shared/Property.xhp\" name=\"Property statement\">Property Statement</link></variable>"
msgstr ""
#. CxW74
@@ -41569,22 +41551,22 @@ msgctxt ""
msgid "Use <emph>Let</emph> or <emph>Set</emph> when handling UNO services or class objects:"
msgstr ""
-#. KbzAx
+#. mbhy9
#: property.xhp
msgctxt ""
"property.xhp\n"
-"N0237\n"
+"par_id181647247913872\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> statements"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Subroutine basics\">Subroutines basics</link>"
msgstr ""
-#. Dh5aG
+#. KbzAx
#: property.xhp
msgctxt ""
"property.xhp\n"
-"N0238\n"
+"N0237\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\" name=\"Using Procedures and Fonctions\">Using Procedures and Functions</link>"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> statements"
msgstr ""
#. uM2zs
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/03.po b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
index eca7b84b6d2..87899f7ef49 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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-02-04 11:53+0000\n"
+"POT-Creation-Date: 2022-04-04 11:40+0200\n"
+"PO-Revision-Date: 2022-03-01 13:39+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"
@@ -196,22 +196,22 @@ msgctxt ""
msgid "Invoking ScriptForge services"
msgstr ""
-#. wKZM6
+#. SaBEy
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id781606153472028\n"
"help.text"
-msgid "The described modules and classes are invoked from user scripts as \"Services\". A generic constructor of those services has been designed for that purpose for each language:"
+msgid "The described modules and classes are invoked from user scripts as \"Services\". A generic constructor of those services has been designed for that purpose for each language."
msgstr ""
-#. VQNBs
+#. xhj84
#: lib_ScriptForge.xhp
msgctxt ""
"lib_ScriptForge.xhp\n"
"par_id871637256506167\n"
"help.text"
-msgid "The <literal>Dispose</literal> method is available in all services and should be called to free up resources after usage."
+msgid "The <literal>Dispose</literal> method is available in all services and should be called to free up resources after usage:"
msgstr ""
#. Depaw
@@ -2527,6 +2527,15 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
+#. AvW3k
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Base</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. vi6hS
#: sf_base.xhp
msgctxt ""
@@ -3868,6 +3877,15 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
+#. RAtZX
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Calc</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. z3JcW
#: sf_calc.xhp
msgctxt ""
@@ -4597,6 +4615,33 @@ msgctxt ""
msgid "A sheet reference that can be used as argument of methods like <literal>CopySheet</literal>."
msgstr ""
+#. WanFm
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id541591025591322\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. wRCYZ
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id661591025591188\n"
+"help.text"
+msgid "RangeName As String"
+msgstr ""
+
+#. w7Gft
+#: sf_calc.xhp
+msgctxt ""
+"sf_calc.xhp\n"
+"par_id731591025591006\n"
+"help.text"
+msgid "Returns the sheet name of a given range address."
+msgstr ""
+
#. HLpEQ
#: sf_calc.xhp
msgctxt ""
@@ -7090,6 +7135,15 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
+#. jkE4f
+#: sf_chart.xhp
+msgctxt ""
+"sf_chart.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Chart</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. LvW6m
#: sf_chart.xhp
msgctxt ""
@@ -7783,6 +7837,15 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
+#. 8ASCW
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Database</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. Cr4oo
#: sf_database.xhp
msgctxt ""
@@ -11770,6 +11833,15 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
+#. XVADJ
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Document</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. X6BV3
#: sf_document.xhp
msgctxt ""
@@ -12553,13 +12625,13 @@ msgctxt ""
msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
msgstr ""
-#. DEEhz
+#. m9AyA
#: sf_document.xhp
msgctxt ""
"sf_document.xhp\n"
"par_id191611153511038\n"
"help.text"
-msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools > Customize > Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools - Customize - Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
msgstr ""
#. enSv9
@@ -15334,6 +15406,15 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
+#. WyEtQ
+#: sf_form.xhp
+msgctxt ""
+"sf_form.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Form</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. KfjEA
#: sf_form.xhp
msgctxt ""
@@ -16549,6 +16630,15 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
+#. pzkhK
+#: sf_formcontrol.xhp
+msgctxt ""
+"sf_formcontrol.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>FormControl</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. BeDqF
#: sf_formcontrol.xhp
msgctxt ""
@@ -18727,13 +18817,13 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
-#. nkcFt
+#. 9xE8t
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id421614353247163\n"
"help.text"
-msgid "To invoke the <literal>L10N</literal> service, two optional arguments can be specified to determine the folder where PO files are located and the locale to be used, as described below."
+msgid "There are several ways to invoke the <literal>L10N</literal> service using up to five optional arguments that specify the folder where PO files are stored, the locale and encoding to be used, as well as a fallback PO file and its encoding."
msgstr ""
#. cCwBS
@@ -18754,49 +18844,85 @@ msgctxt ""
msgid "<emph>locale</emph>: A string in the form \"la-CO\" (language-COUNTRY) or in the form \"la\" (language) only."
msgstr ""
-#. Z5Pb3
+#. gswGR
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
-"par_id301614358956087\n"
+"par_id591646219881864\n"
"help.text"
-msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgid "<emph>encoding</emph>: The character set to be used. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. CXd3e
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id281646219882464\n"
+"help.text"
+msgid "<emph>locale2</emph>: A string specifying the fallback locale to be used in case the PO file corresponding to the locale defined the <literal>locale</literal> parameter does not exist. This parameter is expressed in the form \"la-CO\" (language-COUNTRY) or \"la\" (language) only."
+msgstr ""
+
+#. TaFFX
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id881646219882951\n"
+"help.text"
+msgid "<emph>encoding2</emph>: The character set of the fallback PO file corresponding to the <literal>locale2</literal> argument. The default encoding is \"UTF-8\"."
+msgstr ""
+
+#. wbSFz
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id141613001281573\n"
+"help.text"
+msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Beware that %PRODUCTNAME does not implement all existing character sets."
msgstr ""
-#. 3YPqe
+#. 3ApdD
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id891614358528334\n"
"help.text"
-msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods."
+msgid "The following example instantiates the <literal>L10N</literal> service without any optional arguments. This will only enable the <literal>AddText</literal> and <literal>ExportToPOTFile</literal> methods, which is useful for creating POT files."
msgstr ""
-#. XUTWZ
+#. rFfgF
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id611614358672609\n"
"help.text"
-msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the current %PRODUCTNAME locale settings."
+msgid "The example below specifies the folder containing the PO files. Because the locale is not defined, the service instance will use the locale defined for the %PRODUCTNAME user interface, which is the same locale defined in the <literal>OfficeLocale</literal> property of the <link href=\"text/sbasic/shared/03/sf_platform.xhp\" name=\"OfficeLocale_link\">Platform</link> service."
msgstr ""
-#. F998n
+#. FewYJ
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id391625855630975\n"
"help.text"
-msgid "The example above will result in an runtime error if the PO file for the current locale does not exist in the specified folder."
+msgid "The example above will result in an runtime error if the PO file corresponding to the <literal>OfficeLocale</literal> locale does not exist in the specified folder."
msgstr ""
-#. Ab7iH
+#. gSzLN
#: sf_l10n.xhp
msgctxt ""
"sf_l10n.xhp\n"
"par_id321614358809763\n"
"help.text"
-msgid "In the example below, both the folder name and locale settings are explicitly defined to be Belgian French."
+msgid "In the example below, the locale is explicitly defined to be Belgian French (\"fr-BE\"), hence the service will load the file \"fr-BE.po\" from the folder \"C:\\myPOFiles\". If the file does not exist, an error will occur."
+msgstr ""
+
+#. WpYLF
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id271646220649616\n"
+"help.text"
+msgid "To avoid errors, it is possible to specify a preferred and a fallback locale and encoding. The following example will first try to load the file \"fr-BE.po\" from the specified folder and if it does not exist, the file \"en-US.po\" will be loaded."
msgstr ""
#. UGFWB
@@ -18826,6 +18952,15 @@ msgctxt ""
msgid "The examples above can be translated to Python as follows:"
msgstr ""
+#. Z5Pb3
+#: sf_l10n.xhp
+msgctxt ""
+"sf_l10n.xhp\n"
+"par_id301614358956087\n"
+"help.text"
+msgid "Several instances of the <literal>L10N</literal> service may coexist. However, each instance must use a separate directory for its PO files."
+msgstr ""
+
#. 6mcLb
#: sf_l10n.xhp
msgctxt ""
@@ -19492,22 +19627,22 @@ msgctxt ""
msgid "The examples above can be written in Python as follows:"
msgstr ""
-#. ENT7Q
+#. 6LQF4
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"pyc_id981636717957632\n"
"help.text"
-msgid "msg = f\"Menu item: {s_args[0]}\\n\""
+msgid "msg = f\"Menu name: {s_args[0]}\\n\""
msgstr ""
-#. 8MYNj
+#. GPKGe
#: sf_menu.xhp
msgctxt ""
"sf_menu.xhp\n"
"pyc_id851636718008427\n"
"help.text"
-msgid "msg += f\"Menu name: {s_args[1]}\\n\""
+msgid "msg += f\"Menu item: {s_args[1]}\\n\""
msgstr ""
#. EfEaE
@@ -20318,7 +20453,7 @@ msgctxt ""
"par_id561633021747014\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. T2MVx
#: sf_platform.xhp
@@ -20372,7 +20507,7 @@ msgctxt ""
"par_id561633021748013\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. 9qBZR
#: sf_platform.xhp
@@ -20426,7 +20561,7 @@ msgctxt ""
"par_id561633021706513\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. ZZcSc
#: sf_platform.xhp
@@ -20462,7 +20597,7 @@ msgctxt ""
"par_id621614902220807\n"
"help.text"
msgid "Example: '<literal>LibreOffice 7.4.1.2 (The Document Foundation, Debian and Ubuntu)</literal>'"
-msgstr ""
+msgstr "Exemplu: «<literal>LibreOffice 7.4.1.2 (The Document Foundation, Debian and Ubuntu)</literal>»"
#. 7WDer
#: sf_platform.xhp
@@ -20633,7 +20768,7 @@ msgctxt ""
"par_id561633021708547\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. Aue6E
#: sf_platform.xhp
@@ -25963,13 +26098,13 @@ msgctxt ""
msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
msgstr ""
-#. TxY93
+#. shCRf
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id201588520551463\n"
"help.text"
-msgid "Returns a document object referring to either the active window, a given window or the active document."
+msgid "Returns an open document object referring to either the active window, a given window or the active document."
msgstr ""
#. xgMAv
@@ -26278,13 +26413,13 @@ msgctxt ""
msgid "In Python it is also possible to call <literal>RunCommand</literal> using keyword arguments:"
msgstr ""
-#. khKSW
+#. Em5in
#: sf_ui.xhp
msgctxt ""
"sf_ui.xhp\n"
"par_id191611153511038\n"
"help.text"
-msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools > Customize > Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
+msgid "Each %PRODUCTNAME component has its own set of commands available. One easy way to learn commands is going to <emph>Tools - Customize - Keyboard</emph>. When you position your mouse over a function in the <emph>Function</emph> list, a tooltip will appear with the corresponding UNO command."
msgstr ""
#. NnBWM
@@ -26440,6 +26575,15 @@ msgctxt ""
msgid "Service invocation"
msgstr "Invocación del serviciu"
+#. YFLf6
+#: sf_writer.xhp
+msgctxt ""
+"sf_writer.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>Writer</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
#. 3LPrN
#: sf_writer.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/scalc/00.po b/source/ast/helpcontent2/source/text/scalc/00.po
index 6b984f330b6..a3a0a5d1f11 100644
--- a/source/ast/helpcontent2/source/text/scalc/00.po
+++ b/source/ast/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2021-06-26 11:04+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/ast/>\n"
@@ -1105,6 +1105,24 @@ msgctxt ""
msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph>.</variable>"
msgstr ""
+#. YELPK
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id971647297529392\n"
+"help.text"
+msgid "<variable id=\"tools_forms\">Choose <emph>Tools - Forms</emph>.</variable>"
+msgstr ""
+
+#. QLPxD
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id371647273694433\n"
+"help.text"
+msgid "<variable id=\"share_spreadsheet\">Choose <menuitem>Tools - Share Spreadsheet</menuitem></variable>"
+msgstr ""
+
#. uHRwy
#: 00000406.xhp
msgctxt ""
@@ -1132,14 +1150,14 @@ msgctxt ""
msgid "Choose <emph>Data - Calculate - Recalculate</emph>."
msgstr ""
-#. egZqC
+#. CwoaA
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3149257\n"
"help.text"
-msgid "F9"
-msgstr "Tecla (F9)"
+msgid "Press <keycode>F9</keycode>"
+msgstr ""
#. EA2vV
#: 00000406.xhp
@@ -1150,6 +1168,33 @@ msgctxt ""
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph>."
msgstr ""
+#. CAGQA
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id891645217179561\n"
+"help.text"
+msgid "Choose <menuitem>Data - Calculate - Recalculate hard</menuitem>."
+msgstr ""
+
+#. e6kAE
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id21645217233263\n"
+"help.text"
+msgid "Press <keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>"
+msgstr ""
+
+#. soEE4
+#: 00000406.xhp
+msgctxt ""
+"00000406.xhp\n"
+"par_id31645223233125\n"
+"help.text"
+msgid "Select a formula cell or a formula cell range and choose <menuitem>Data - Calculate - Formula to values</menuitem>"
+msgstr ""
+
#. YmRzU
#: 00000406.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 299135b5f40..99cbca63b1e 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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-02-21 10:39+0000\n"
+"POT-Creation-Date: 2022-04-01 00:19+0200\n"
+"PO-Revision-Date: 2022-03-31 22:25+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"
@@ -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-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1542028585.000000\n"
@@ -4677,7 +4677,7 @@ msgctxt ""
"hd_id481615892281210\n"
"help.text"
msgid "Defining Search Criteria"
-msgstr ""
+msgstr "Definición de criterios pa guetar"
#. zTQX5
#: 04060101.xhp
@@ -15189,7 +15189,7 @@ msgctxt ""
"par_id2091433\n"
"help.text"
msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
-msgstr "Pa xenerar númberos aleatorios que nunca recalcular, copie'l conteníu de les caxelles d'esta funció, y use <item type=\"menuitem\">Editar - Pegáu especial</item> (with <item type=\"menuitem\">Apegar too</item> y <item type=\"menuitem\">Fórmules</item> non marcaes y <item type=\"menuitem\">Númberos</item> marcaos)."
+msgstr "Pa xenerar númberos aleatorios qu'enxamás se recalculen, copia les caxelles con esta función y usa <item type=\"menuitem\">Editar - Apegáu especial</item> (coles opciones <item type=\"menuitem\">Apegalo too</item> y <item type=\"menuitem\">Fórmules</item> ensin marcar y <item type=\"menuitem\">Númberos</item> marcada)."
#. bfcug
#: 04060106.xhp
@@ -15236,13 +15236,13 @@ msgctxt ""
msgid "RANDBETWEEN.NV(Bottom; Top)"
msgstr ""
-#. q82vw
+#. Cwb6C
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id91590242400917\n"
"help.text"
-msgid "Returns an non-volatile integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive). A non-volatile function is not recalculated at new input events or pressing <keycode>F9</keycode>. However, the function is recalculated when pressing <keycode>F9</keycode> with the cursor on the cell containing the function, when opening the file, and when <emph>Top</emph> or <emph>Bottom</emph> are recalculated."
+msgid "Returns an non-volatile integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive). A non-volatile function is not recalculated at new input events or pressing <keycode>F9</keycode>. However, the function is recalculated when pressing <keycode>F9</keycode> with the cursor on the cell containing the function, when opening the file, when using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>) and when <emph>Top</emph> or <emph>Bottom</emph> are recalculated."
msgstr ""
#. AngvN
@@ -15389,13 +15389,13 @@ msgctxt ""
msgid "RAND.NV()"
msgstr ""
-#. QARNV
+#. G5FWM
#: 04060106.xhp
msgctxt ""
"04060106.xhp\n"
"par_id271590239748534\n"
"help.text"
-msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing <keycode>F9</keycode>, except when the cursor is on the cell containing the function. The function is recalculated when opening the file."
+msgid "This function produces a non-volatile random number on input. A non-volatile function is not recalculated at new input events. The function does not recalculate when pressing <keycode>F9</keycode>, except when the cursor is on the cell containing the function or using the <link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\"><menuitem>Recalculate Hard</menuitem></link> command (<keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode>). The function is recalculated when opening the file."
msgstr ""
#. sCwno
@@ -16467,7 +16467,7 @@ msgctxt ""
"hd_id3154970\n"
"help.text"
msgid "TRANSPOSE"
-msgstr "TRANSPONER"
+msgstr "TRESPONER"
#. DQZoL
#: 04060107.xhp
@@ -17637,7 +17637,7 @@ msgctxt ""
"hd_id3146968\n"
"help.text"
msgid "ADDRESS"
-msgstr "ADDRESS"
+msgstr "SEÑES"
#. EDZCM
#: 04060109.xhp
@@ -41262,7 +41262,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "+ (Plus)"
-msgstr "+ (Más)"
+msgstr "+ (más)"
#. 8VGky
#: 04060199.xhp
@@ -41748,7 +41748,7 @@ msgctxt ""
"par_id4003723\n"
"help.text"
msgid "~ (Tilde)"
-msgstr "(Virgulilla)"
+msgstr "~ (vírgula)"
#. aAvYu
#: 04060199.xhp
@@ -41829,7 +41829,7 @@ msgctxt ""
"hd_id3155764\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
-msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Aplicar...\">Aplicar...</link>"
+msgstr "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Aplicar</link>"
#. rFeRo
#: 04070000.xhp
@@ -41838,7 +41838,7 @@ msgctxt ""
"hd_id3156382\n"
"help.text"
msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
-msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Etiquetas...\">Etiquetes...</link>"
+msgstr "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Etiquetes</link>"
#. WoeVL
#: 04070100.xhp
@@ -46853,49 +46853,31 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Calculate\">In either mode, with formula cell(s) selected pressing F9 recalculates the currently selected cells and formula cells that depend on them. This can be useful after reading documents with recalculation disabled and individual cells need recalculation.</ahelp>"
msgstr ""
-#. jVUni
+#. g7GEo
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"par_id315475899\n"
"help.text"
-msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
-msgstr "Prima F9 pa recalcular. Prima Mayús+<switchinline select=\"sys\"><caseinline select=\"MAC\">Comandu</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 pa recalcular toles fórmules del documentu."
-
-#. wosFk
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id3150793\n"
-"help.text"
-msgid "Recalculation options are, Recalculation on File Load, with values:"
-msgstr ""
-
-#. Cr8g8
-#: 06080000.xhp
-msgctxt ""
-"06080000.xhp\n"
-"par_id3150795\n"
-"help.text"
-msgid "Always recalculate, Never recalculate (default option), Prompt user."
+msgid "Press <keycode>F9</keycode> to recalculate. Press <keycode>Shift</keycode>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+<keycode>F9</keycode> to recalculate all formulas in the document, including Add-In functions and non-volatile functions."
msgstr ""
-#. TCBFm
+#. qyZ6P
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
-"par_id315475855\n"
+"par_id3150799\n"
"help.text"
-msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document, including Add-In functions. The hard recalculation correctly recalculates all formula cells."
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
msgstr ""
-#. qyZ6P
+#. a9keX
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
-"par_id3150799\n"
+"par_id641645233417894\n"
"help.text"
-msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgid "<link href=\"text/shared/optionen/01060900.xhp\" name=\"recalculationoptions\">Recalculation options</link>"
msgstr ""
#. CWRgk
@@ -52667,14 +52649,23 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/calculate.xhp\" name=\"Calculate\">Calculate</link>"
msgstr ""
-#. CFB7A
+#. 8YGcD
#: calculate.xhp
msgctxt ""
"calculate.xhp\n"
"par_id241584668179318\n"
"help.text"
-msgid "<ahelp hid=\".\">Commands to calculate formula cells.</ahelp>"
-msgstr ""
+msgid "Commands to calculate formula cells."
+msgstr "Comandos pa calcular caxelles con fórmules."
+
+#. f2aRJ
+#: calculate.xhp
+msgctxt ""
+"calculate.xhp\n"
+"par_id251645222672072\n"
+"help.text"
+msgid "Choose <menuitem>Data - Calculate</menuitem>"
+msgstr "Escueyi <menuitem>Datos - Calcular</menuitem>"
#. 9AbDs
#: calculation_accuracy.xhp
@@ -54431,6 +54422,51 @@ msgctxt ""
msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
msgstr "<ahelp hid=\".\">Alterna el mou<emph>Editar puntos</emph> p'activar y desactivar una llinia a mano alzada inxertada.</ahelp>"
+#. 363bk
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formula to values"
+msgstr ""
+
+#. tthof
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"bm_id321645231251889\n"
+"help.text"
+msgid "<bookmark_value>convert;formula to values</bookmark_value><bookmark_value>replace formula with values</bookmark_value><bookmark_value>recalculate;formula to values</bookmark_value><bookmark_value>formula to values;convert</bookmark_value><bookmark_value>formula to values;recalculate</bookmark_value>"
+msgstr ""
+
+#. u3A5z
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"hd_id701645222861113\n"
+"help.text"
+msgid "<variable id=\"formula2valueh1\"><link href=\"text/scalc/01/formula2value.xhp\" name=\"formula to values\">Formula to value</link></variable>"
+msgstr ""
+
+#. CATpt
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"par_id501645222861116\n"
+"help.text"
+msgid "Replaces the formula cell with value calculated by the formula. The formula is lost."
+msgstr ""
+
+#. AKrcm
+#: formula2value.xhp
+msgctxt ""
+"formula2value.xhp\n"
+"par_id51645230882532\n"
+"help.text"
+msgid "Use this command to convert formula cells into data cells. The converted cells contents becomes static and will not be recalculated."
+msgstr ""
+
#. ebLBc
#: ful_func.xhp
msgctxt ""
@@ -67445,6 +67481,123 @@ msgctxt ""
msgid "Limit the maximum numbers of rows to a specified value or leave undefined, but limited to the %PRODUCTNAME Calc row limit."
msgstr ""
+#. AWPkL
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"tit\n"
+"help.text"
+msgid "Recalculate hard"
+msgstr ""
+
+#. EB6vW
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"bm_id351645231629404\n"
+"help.text"
+msgid "<bookmark_value>calculate;recalculate hard</bookmark_value> <bookmark_value>formulas;recalculate hard</bookmark_value> <bookmark_value>calculate;force recalculation</bookmark_value> <bookmark_value>formulas;force recalculation</bookmark_value> <bookmark_value>non volatile functions;force recalculation</bookmark_value> <bookmark_value>cell contents;force recalculation</bookmark_value>"
+msgstr ""
+
+#. WXR6C
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"hd_id611645217532285\n"
+"help.text"
+msgid "<variable id=\"recalculatehardh1\"><link href=\"text/scalc/01/recalculate_hard.xhp\" name=\"recalculate hard\">Recalculate Hard</link></variable>"
+msgstr ""
+
+#. gCAFM
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"par_id631645217532291\n"
+"help.text"
+msgid "Recalculates all formulas in the document, including Add-In functions and non-volatile functions."
+msgstr ""
+
+#. uDfgm
+#: recalculate_hard.xhp
+msgctxt ""
+"recalculate_hard.xhp\n"
+"par_id361645227084327\n"
+"help.text"
+msgid "The <menuitem>Recalculate Hard</menuitem> command forces recalculation of all formula cells of the spreadsheet document, including explicit non-volatile functions, even if no new input event exist. Examples of explicit non-volatile functions are <link href=\"text/scalc/01/04060106.xhp#rand_nv\" name=\"RAND.NV\">RAND.NV</link> and <link href=\"text/scalc/01/04060106.xhp#randbetween_nv\" name=\"RANDBETWEEN.NV\">RANDBETWEEN.NV</link>."
+msgstr ""
+
+#. t5LiZ
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sharing Spreadsheets"
+msgstr ""
+
+#. nGSyy
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"bm_id671647274159909\n"
+"help.text"
+msgid "<bookmark_value>share spreadsheet</bookmark_value> <bookmark_value>spreadsheet;collaboration</bookmark_value> <bookmark_value>spreadsheet;share</bookmark_value>"
+msgstr ""
+
+#. 3vzpA
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"hd_id461647272004705\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/shared_spreadsheet.xhp\" name=\"Share spreadsheet\">Share Spreadsheet</link></variable>"
+msgstr ""
+
+#. KZGLG
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id551647272004709\n"
+"help.text"
+msgid "Sharing a spreadsheet allows several users to open the same file for editing at the same time."
+msgstr ""
+
+#. 9BuYS
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id211647275285230\n"
+"help.text"
+msgid "The spreadsheet needs to be on a shared drive, server, website, or similar. Some conditions must be met on operating systems with user permission management:"
+msgstr ""
+
+#. 7Cbn3
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id621647275321672\n"
+"help.text"
+msgid "The shared file needs to reside in a location which is accessible by all collaborators."
+msgstr "El ficheru compartíu tien d'asitiase nun llugar que seya accesible pa tolos collaboradores."
+
+#. 6hGDF
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id731647275360618\n"
+"help.text"
+msgid "The file permissions for both the document and the corresponding lock file need to be set so that all collaborators can create, delete, and change the files."
+msgstr ""
+
+#. UhRSD
+#: shared_spreadsheet.xhp
+msgctxt ""
+"shared_spreadsheet.xhp\n"
+"par_id631647275500217\n"
+"help.text"
+msgid "In order to correctly identify the changes, each collaborator should enter their name in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - User Data</menuitem> on the Menu bar."
+msgstr ""
+
#. k7H5Y
#: solver.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/scalc/02.po b/source/ast/helpcontent2/source/text/scalc/02.po
index 1e7e5454dd4..7afa8da5981 100644
--- a/source/ast/helpcontent2/source/text/scalc/02.po
+++ b/source/ast/helpcontent2/source/text/scalc/02.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-06-29 13:08+0200\n"
-"PO-Revision-Date: 2020-08-04 11:16+0000\n"
+"PO-Revision-Date: 2022-03-31 22:25+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textscalc02/ast/>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc02/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.1.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1542196264.000000\n"
#. aSE5T
@@ -563,7 +563,7 @@ msgctxt ""
"par_id3153360\n"
"help.text"
msgid "This icon is only available when the <emph>Input line</emph> box is not active."
-msgstr "Esti símbolu namái ta disponible si'l cuadru <emph>Llinia d'entrada</emph> ta ocultu."
+msgstr "Esti iconu namái ta disponible si'l cuadru <emph>Llinia d'entrada</emph> ta anubríu."
#. yAAo7
#: 06040000.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index 1ae684754c9..78c31d7d5cf 100644
--- a/source/ast/helpcontent2/source/text/scalc/guide.po
+++ b/source/ast/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-02-04 12:33+0100\n"
-"PO-Revision-Date: 2022-02-09 15:47+0000\n"
+"PO-Revision-Date: 2022-03-10 16:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/ast/>\n"
"Language: ast\n"
@@ -12318,7 +12318,7 @@ msgctxt ""
"par_id3144764\n"
"help.text"
msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
-msgstr "Nel diálogu escueya les opciones <emph>Apegar too</emph> y <emph>Transponer</emph>."
+msgstr "Nel diálogu, escueyi les opciones <emph>Apegalo too</emph> y <emph>Tresponer</emph>."
#. nFUUg
#: table_rotate.xhp
diff --git a/source/ast/helpcontent2/source/text/sdatabase.po b/source/ast/helpcontent2/source/text/sdatabase.po
index a6ff8916be3..76ba8024f4d 100644
--- a/source/ast/helpcontent2/source/text/sdatabase.po
+++ b/source/ast/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-02-21 15:22+0100\n"
-"PO-Revision-Date: 2022-02-20 06:24+0000\n"
+"PO-Revision-Date: 2022-02-24 15:39+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
@@ -11344,7 +11344,7 @@ msgctxt ""
"par_idN1056E\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Valor"
#. ZKEEw
#: querywizard03.xhp
diff --git a/source/ast/helpcontent2/source/text/sdraw/01.po b/source/ast/helpcontent2/source/text/sdraw/01.po
index f129c5319e6..602732d563a 100644
--- a/source/ast/helpcontent2/source/text/sdraw/01.po
+++ b/source/ast/helpcontent2/source/text/sdraw/01.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-25 12:48+0200\n"
-"PO-Revision-Date: 2020-11-06 12:35+0000\n"
+"PO-Revision-Date: 2022-04-04 09:45+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"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw01/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.11.2\n"
"X-POOTLE-MTIME: 1494345812.000000\n"
#. ybhKD
@@ -230,7 +230,7 @@ msgctxt ""
"par_idN105FC\n"
"help.text"
msgid "Depth"
-msgstr ""
+msgstr "Profundidá"
#. 5wPta
#: 3dsettings_toolbar.xhp
@@ -266,7 +266,7 @@ msgctxt ""
"par_id181592604250112\n"
"help.text"
msgid "Depth"
-msgstr ""
+msgstr "Profundidá"
#. 76ESK
#: 3dsettings_toolbar.xhp
@@ -284,7 +284,7 @@ msgctxt ""
"par_idN1064C\n"
"help.text"
msgid "Direction"
-msgstr ""
+msgstr "Direición"
#. SBj3W
#: 3dsettings_toolbar.xhp
@@ -311,7 +311,7 @@ msgctxt ""
"par_id731592604418039\n"
"help.text"
msgid "Direction"
-msgstr ""
+msgstr "Direición"
#. tRGKu
#: 3dsettings_toolbar.xhp
diff --git a/source/ast/helpcontent2/source/text/shared.po b/source/ast/helpcontent2/source/text/shared.po
index 6cb6a35d84c..d44f9818ae2 100644
--- a/source/ast/helpcontent2/source/text/shared.po
+++ b/source/ast/helpcontent2/source/text/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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-02-21 10:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-04-04 09:46+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1542196266.000000\n"
#. fcmzq
@@ -230,7 +230,7 @@ msgctxt ""
"par_id171641582176913\n"
"help.text"
msgid "<image src=\"cmd/lc_searchdialog.svg\" id=\"img_id171641582176913\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171641582176913\">Find and Replace Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_searchdialog.svg\" id=\"img_id171641582176913\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id171641582176913\">Iconu Guetar y trocar</alt></image>"
#. BUQcH
#: find_toolbar.xhp
@@ -239,7 +239,7 @@ msgctxt ""
"par_id171641582176943\n"
"help.text"
msgid "Find and Replace Icon"
-msgstr ""
+msgstr "Iconu Guetar y trocar"
#. DBz3U
#: fontwork_toolbar.xhp
@@ -277,13 +277,22 @@ msgctxt ""
msgid "Fontwork Gallery"
msgstr "Galería de Fontwork"
-#. Zcwt5
+#. A6ecD
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id81646926301557\n"
+"help.text"
+msgid "<image src=\"cmd/lc_fontworkgalleryfloater.svg\" id=\"img_id311646926301559\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id331646926301560\">Icon Fontwork Gallery</alt></image>"
+msgstr ""
+
+#. zBxMN
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
"par_idN10571\n"
"help.text"
-msgid "Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object."
+msgid "Opens the Fontwork Gallery where you can select another preview. Click <emph>OK</emph> to apply the new set of properties to your Fontwork object."
msgstr ""
#. nG6ME
@@ -295,6 +304,15 @@ msgctxt ""
msgid "Fontwork Shape"
msgstr "Forma de Fontwork"
+#. PgQM4
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id51646926964588\n"
+"help.text"
+msgid "<image src=\"cmd/lc_fontwork.svg\" id=\"img_id801646926964589\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761646926964590\">Icon Fontwork Shape</alt></image>"
+msgstr ""
+
#. CTe3i
#: fontwork_toolbar.xhp
msgctxt ""
@@ -313,6 +331,15 @@ msgctxt ""
msgid "Fontwork Same Letter Heights"
msgstr "Mesmu altu de lletres de Fontwork"
+#. gBD67
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id501646927155677\n"
+"help.text"
+msgid "<image src=\"cmd/lc_fontworksameletterheights.svg\" id=\"img_id41646927155678\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id141646927155679\">Icon Fontwork Same Letter Height</alt></image>"
+msgstr ""
+
#. dyVEY
#: fontwork_toolbar.xhp
msgctxt ""
@@ -331,6 +358,15 @@ msgctxt ""
msgid "Fontwork Alignment"
msgstr "Alliniación de Fontwork"
+#. dPegd
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_id211646927242197\n"
+"help.text"
+msgid "<image src=\"cmd/lc_alignhorizontalcenter.svg\" id=\"img_id281646927242198\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id731646927242199\">Icon Fontwork Alignment</alt></image>"
+msgstr ""
+
#. FvBdo
#: fontwork_toolbar.xhp
msgctxt ""
@@ -358,76 +394,67 @@ msgctxt ""
msgid "Fontwork Character Spacing"
msgstr "Espaciu ente caráuteres de Fontwork"
-#. WnmJf
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105F7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
-msgstr "<ahelp hid=\".\">Abre la ventana Espaciu ente caráuteres de Fontwork.</ahelp>"
-
-#. DBE3J
+#. uMC4D
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1060E\n"
+"par_id251646927506111\n"
"help.text"
-msgid "Click to apply the character spacing to the selected Fontwork objects."
+msgid "<image src=\"cmd/lc_spacing.svg\" id=\"img_id441646927506112\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821646927506113\">Icon Fontwork Character Spacing</alt></image>"
msgstr ""
-#. sNDsK
+#. WLvKk
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1061D\n"
+"par_id791646928579114\n"
"help.text"
-msgid "Custom"
-msgstr "Personalizáu"
+msgid "Select the character spacing values to apply to the Fontwork object."
+msgstr ""
-#. MJAQ5
+#. xERFF
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
"par_idN10621\n"
"help.text"
-msgid "Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
+msgid "<emph>Custom:</emph> Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value."
msgstr ""
-#. HhFZK
+#. sgFfF
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN10638\n"
+"par_idN1063C\n"
"help.text"
-msgid "Value"
-msgstr "Valor"
+msgid "<ahelp hid=\".\"><emph>Value:</emph> enter the Fontwork character spacing value.</ahelp>"
+msgstr ""
-#. W2WE8
+#. 2aGeB
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1063C\n"
+"hd_id981646929182163\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifique'l valor d'espaciu ente caráuteres de Fontwork.</ahelp>"
+msgid "Toggle Extrusion"
+msgstr ""
-#. Si9bP
+#. FcnBM
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1064B\n"
+"par_id611646929193237\n"
"help.text"
-msgid "Kern Character Pairs"
-msgstr "Axustar interlletraxe de pares de caráuteres"
+msgid "<image src=\"cmd/lc_extrusiontoggle.png\" id=\"img_id951646929193238\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id211646929193239\">Icon Toggle Extrusion</alt></image>"
+msgstr ""
-#. MpdDc
+#. Dems2
#: fontwork_toolbar.xhp
msgctxt ""
"fontwork_toolbar.xhp\n"
-"par_idN1064F\n"
+"par_id191646929193241\n"
"help.text"
-msgid "Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off."
+msgid "Switches the 3D effects on and off for the Fontwork objects."
msgstr ""
#. yEKhT
@@ -851,7 +878,7 @@ msgctxt ""
"par_idN10818\n"
"help.text"
msgid "What’s This?"
-msgstr ""
+msgstr "¿Qué ye esto?"
#. UDDTK
#: main0201.xhp
@@ -869,7 +896,7 @@ msgctxt ""
"par_idN10855\n"
"help.text"
msgid "<image id=\"img_id3174230\" src=\"cmd/sc_extendedhelp.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3174230\">Icon “What’s This?”</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3174230\" src=\"cmd/sc_extendedhelp.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3174230\">Iconu «¿Qué ye esto?»</alt></image>"
#. KPZBD
#: main0201.xhp
@@ -878,7 +905,7 @@ msgctxt ""
"par_idN10873\n"
"help.text"
msgid "What’s This?"
-msgstr ""
+msgstr "¿Qué ye esto?"
#. Xtuxp
#: main0204.xhp
@@ -1213,6 +1240,15 @@ msgctxt ""
msgid "If an SQL statement is the basis for a form (see <emph>Form Properties</emph> - tab <emph>Data</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Data Source\"><emph>Data Source</emph></link>), then the filter and sort functions are only available when the SQL statement refers to only one table and is not written in the native SQL mode."
msgstr "Si una espresión SQL ye la base d'un formulariu (ver <emph>Propiedaes del formulariu</emph> - llingüeta <emph>Datos</emph> - <link href=\"text/shared/02/01170203.xhp\" name=\"Fonte de datos\"><emph>Fonte de datos</emph></link>), entós les funciones de filtru y ordenación namái van tar disponibles cuando la espresión SQL refiérase namái a una tabla y nun tea escrita nel mou SQL nativu."
+#. Ck3Di
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"hd_id3156448\n"
+"help.text"
+msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
+msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Atopar rexistru</link>"
+
#. daKA6
#: main0213.xhp
msgctxt ""
@@ -1240,14 +1276,14 @@ msgctxt ""
msgid "First Record"
msgstr "Primer rexistru de datos"
-#. nDepA
+#. 4VXqZ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3154013\n"
"help.text"
-msgid "<image id=\"img_id3150010\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150010\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150010\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150010\">Iconu</alt></image>"
+msgid "<image id=\"img_id3150010\" src=\"cmd/lc_firstrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150010\">Icon First Record</alt></image>"
+msgstr ""
#. VCqM6
#: main0213.xhp
@@ -1267,14 +1303,14 @@ msgctxt ""
msgid "Previous Record"
msgstr "Rexistru de datos anterior"
-#. pAiKq
+#. AgQb3
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3145647\n"
"help.text"
-msgid "<image id=\"img_id3147394\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147394\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147394\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147394\">Iconu</alt></image>"
+msgid "<image id=\"img_id3147394\" src=\"cmd/lc_prevrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147394\">Icon Previous Record</alt> </image>"
+msgstr ""
#. gitqo
#: main0213.xhp
@@ -1294,14 +1330,14 @@ msgctxt ""
msgid "Next Record"
msgstr "Siguiente rexistru de datos"
-#. zrwqF
+#. ShvmR
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3146913\n"
"help.text"
-msgid "<image id=\"img_id3150753\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150753\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150753\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150753\">Iconu</alt></image>"
+msgid "<image id=\"img_id3150753\" src=\"cmd/lc_nextrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150753\">Icon Next Record</alt></image>"
+msgstr ""
#. BJBj8
#: main0213.xhp
@@ -1321,14 +1357,14 @@ msgctxt ""
msgid "Last Record"
msgstr "Últimu rexistru de datos"
-#. 7Rc9Q
+#. up7uJ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3155337\n"
"help.text"
-msgid "<image id=\"img_id3163808\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163808\">Icon</alt></image>"
-msgstr "<image id=\"img_id3163808\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163808\">Iconu</alt></image>"
+msgid "<image id=\"img_id3163808\" src=\"cmd/lc_lastrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3163808\">Icon Last Record</alt></image>"
+msgstr ""
#. 65BvC
#: main0213.xhp
@@ -1339,6 +1375,33 @@ msgctxt ""
msgid "<ahelp hid=\".uno:LastRecord\">Takes you to the last record.</ahelp>"
msgstr "<ahelp hid=\".uno:LastRecord\">Mover al últimu rexistru.</ahelp>"
+#. aKiBF
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"hd_id3149967\n"
+"help.text"
+msgid "New Record"
+msgstr "Nuevu rexistru de datos"
+
+#. D8UvX
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"par_id3149735\n"
+"help.text"
+msgid "<image id=\"img_id3155578\" src=\"cmd/lc_newrecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155578\">Icon New Record</alt></image>"
+msgstr ""
+
+#. e4GJo
+#: main0213.xhp
+msgctxt ""
+"main0213.xhp\n"
+"par_id3148460\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewRecord\">Creates a new record.</ahelp>"
+msgstr "<ahelp hid=\".uno:NewRecord\">Crea un rexistru nuevu.</ahelp>"
+
#. xhXB3
#: main0213.xhp
msgctxt ""
@@ -1348,14 +1411,14 @@ msgctxt ""
msgid "Save Record"
msgstr "Atroxar rexistru"
-#. 8jt28
+#. aLCSc
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3150647\n"
"help.text"
-msgid "<image id=\"img_id3150941\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150941\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150941\" src=\"cmd/sc_recsave.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150941\">Iconu</alt></image>"
+msgid "<image id=\"img_id3150941\" src=\"cmd/lc_recsave.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150941\">Icon</alt></image>"
+msgstr "<image id=\"img_id3150941\" src=\"cmd/lc_recsave.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150941\">Iconu</alt></image>"
#. Dbdf5
#: main0213.xhp
@@ -1375,14 +1438,14 @@ msgctxt ""
msgid "Undo: Data entry"
msgstr "Desfacer Entrada de datos"
-#. PUZuM
+#. AbFTp
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
"par_id3166423\n"
"help.text"
-msgid "<image id=\"img_id3156138\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156138\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156138\" src=\"cmd/sc_recundo.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156138\">Iconu</alt></image>"
+msgid "<image id=\"img_id3156138\" src=\"cmd/lc_recundo.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156138\">Icon Undo Data Entry</alt></image>"
+msgstr ""
#. GAZ7t
#: main0213.xhp
@@ -1393,68 +1456,59 @@ msgctxt ""
msgid "<ahelp hid=\".uno:RecUndo\">Allows you to undo a data entry.</ahelp>"
msgstr "<ahelp hid=\".uno:RecUndo\">Dexa desfacer una entrada de datos.</ahelp>"
-#. aKiBF
-#: main0213.xhp
-msgctxt ""
-"main0213.xhp\n"
-"hd_id3149967\n"
-"help.text"
-msgid "New Record"
-msgstr "Nuevu rexistru de datos"
-
-#. 6m8Ym
+#. BEGSZ
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3149735\n"
+"hd_id3153659\n"
"help.text"
-msgid "<image id=\"img_id3155578\" src=\"cmd/sc_newrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155578\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155578\" src=\"cmd/sc_newrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155578\">Iconu</alt></image>"
+msgid "Delete Record"
+msgstr "Desaniciar rexistru"
-#. e4GJo
+#. QiWg2
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3148460\n"
+"par_id3145584\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewRecord\">Creates a new record.</ahelp>"
-msgstr "<ahelp hid=\".uno:NewRecord\">Crea un rexistru nuevu.</ahelp>"
+msgid "<image id=\"img_id3166434\" src=\"cmd/lc_deleterecord.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3166434\">Icon Delete Record</alt></image>"
+msgstr ""
-#. BEGSZ
+#. noMmE
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"hd_id3153659\n"
+"par_id3148817\n"
"help.text"
-msgid "Delete Record"
-msgstr "Desaniciar rexistru"
+msgid "<ahelp hid=\".uno:DeleteRecord\">Deletes a record. A query needs to be confirmed before deleting.</ahelp>"
+msgstr "<ahelp hid=\".uno:DeleteRecord\">Desanicia un rexistru. Tien d'efeutuase una confirmación enantes de desaniciar.</ahelp>"
-#. GBGFJ
+#. oon6s
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3145584\n"
+"hd_id161647003427601\n"
"help.text"
-msgid "<image id=\"img_id3166434\" src=\"cmd/sc_deleterecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3166434\">Icon</alt></image>"
-msgstr "<image id=\"img_id3166434\" src=\"cmd/sc_deleterecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3166434\">Iconu</alt></image>"
+msgid "Refresh Control"
+msgstr ""
-#. noMmE
+#. zuPjH
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"par_id3148817\n"
+"par_id861647005853278\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteRecord\">Deletes a record. A query needs to be confirmed before deleting.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteRecord\">Desanicia un rexistru. Tien d'efeutuase una confirmación enantes de desaniciar.</ahelp>"
+msgid "<image src=\"cmd/lc_refreshformcontrol.svg\" id=\"img_id901647005853278\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id581647005853278\">Icon Refresh Control</alt></image>"
+msgstr ""
-#. Ck3Di
+#. 8RmLu
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
-"hd_id3156448\n"
+"par_id811647005853278\n"
"help.text"
-msgid "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Find Record</link>"
-msgstr "<link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\">Atopar rexistru</link>"
+msgid "Refresh current control"
+msgstr ""
#. BUNUA
#: main0213.xhp
@@ -1555,41 +1609,32 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
msgstr "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Amestar campu</link>"
-#. wRQBB
+#. ibj9F
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
-"hd_id3150669\n"
+"hd_id3146815\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Grupu</link>"
-
-#. wGJxh
-#: main0226.xhp
-msgctxt ""
-"main0226.xhp\n"
-"hd_id3147335\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Desagrupar</link>"
+msgid "Automatic Control Focus"
+msgstr ""
-#. xGUB3
+#. gg2Ag
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
-"hd_id3156024\n"
+"par_id3150261\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
-msgstr "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Entrar al Grupu</link>"
+msgid "<image id=\"img_id3149351\" src=\"cmd/sc_autocontrolfocus.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149351\">Icon</alt></image>"
+msgstr ""
-#. 2C7BG
+#. ZbBmL
#: main0226.xhp
msgctxt ""
"main0226.xhp\n"
-"hd_id3149295\n"
+"par_id3109848\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
-msgstr "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Salir del grupu</link>"
+msgid "<ahelp hid=\".uno:AutoControlFocus\">If <emph>Automatic Control Focus</emph> is activated, the first form control will be selected when you open the document. If the button is not activated, the text will be selected after opening. The <link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Tab Order</link> that you have specified determines which is the first form control.</ahelp>"
+msgstr ""
#. pE5xB
#: main0226.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index 3fa056b391b..a50c74b593e 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: 2022-02-04 12:33+0100\n"
-"PO-Revision-Date: 2022-02-17 11:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-03-20 12:48+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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542196267.000000\n"
#. 3B8ZN
@@ -419,7 +419,7 @@ msgctxt ""
"par_id3145069\n"
"help.text"
msgid "Reset"
-msgstr "Restablecer"
+msgstr "Reafitar"
#. 79sAc
#: 00000001.xhp
@@ -473,7 +473,7 @@ msgctxt ""
"hd_id3149670\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Reafitar"
#. Fm6tQ
#: 00000001.xhp
@@ -491,7 +491,7 @@ msgctxt ""
"hd_id3148755\n"
"help.text"
msgid "Reset"
-msgstr "Restablecer"
+msgstr "Reafitar"
#. aGwjy
#: 00000001.xhp
@@ -554,7 +554,7 @@ msgctxt ""
"hd_id601616709204188\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Reafitar"
#. YmYPB
#: 00000001.xhp
@@ -572,7 +572,7 @@ msgctxt ""
"hd_id541616711560721\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Aplicar"
#. pjHJH
#: 00000001.xhp
@@ -761,7 +761,7 @@ msgctxt ""
"hd_id321597440555403\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Aplicar"
#. yJtrx
#: 00000001.xhp
@@ -9907,13 +9907,13 @@ msgctxt ""
msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar."
msgstr ""
-#. vXBgY
+#. sDtNU
#: 00000450.xhp
msgctxt ""
"00000450.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145606\">Sort Order Icon</alt></image>"
+msgid "<image id=\"img_id3145606\" src=\"cmd/lc_datasort.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145606\">Sort Order Icon</alt></image>"
msgstr ""
#. gPJGC
@@ -14722,6 +14722,15 @@ msgctxt ""
msgid "<variable id=\"dvergl\">Choose <menuitem>Edit - Track Changes - Compare Document</menuitem>.</variable>"
msgstr ""
+#. 6BEEG
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id561647263926698\n"
+"help.text"
+msgid "<variable id=\"protect\">Choose <menuitem>Edit - Track Changes - Protect</menuitem></variable>"
+msgstr ""
+
#. DrLSp
#: edit_menu.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 70dae41397e..7ba9e1e0a18 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: 2022-02-18 12:38+0100\n"
-"PO-Revision-Date: 2022-02-21 10:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-04-04 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1542196269.000000\n"
#. 3u8hR
@@ -7268,7 +7268,7 @@ msgctxt ""
"hd_id81630440632865\n"
"help.text"
msgid "Transpose All"
-msgstr ""
+msgstr "Tresponelo too"
#. dszzk
#: 02070000.xhp
@@ -7331,7 +7331,7 @@ msgctxt ""
"hd_id3145120\n"
"help.text"
msgid "Paste all"
-msgstr ""
+msgstr "Apegalo too"
#. aBXw3
#: 02070000.xhp
@@ -7628,7 +7628,7 @@ msgctxt ""
"hd_id3147173\n"
"help.text"
msgid "Transpose"
-msgstr ""
+msgstr "Tresponer"
#. yGdbE
#: 02070000.xhp
@@ -12364,6 +12364,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Tracks each change that is made in the current document by author and date.</ahelp>"
msgstr ""
+#. FCvXm
+#: 02230100.xhp
+msgctxt ""
+"02230100.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. FJDpx
#: 02230100.xhp
msgctxt ""
@@ -12553,6 +12562,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Prevents a user from deactivating the record changes feature, or from accepting or rejecting changes unless the user enters a password.</ahelp>"
msgstr ""
+#. T47Qe
+#: 02230150.xhp
+msgctxt ""
+"02230150.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. SuBoG
#: 02230200.xhp
msgctxt ""
@@ -12589,6 +12607,15 @@ msgctxt ""
msgid "<variable id=\"text\"><ahelp hid=\".\">Shows or hides recorded changes.</ahelp></variable>"
msgstr ""
+#. BkpRH
+#: 02230200.xhp
+msgctxt ""
+"02230200.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. yi8Qe
#: 02230200.xhp
msgctxt ""
@@ -12670,22 +12697,22 @@ msgctxt ""
msgid "Comment"
msgstr "Comentariu"
-#. kACnW
+#. gYF3A
#: 02230300.xhp
msgctxt ""
"02230300.xhp\n"
"hd_id3083278\n"
"help.text"
-msgid "Comment"
-msgstr "Comentariu"
+msgid "Insert Track Change Comment"
+msgstr ""
-#. PGH6N
+#. 56iv7
#: 02230300.xhp
msgctxt ""
"02230300.xhp\n"
"par_id3148983\n"
"help.text"
-msgid "<variable id=\"kommentartext\"><ahelp hid=\".\">Enter a comment for the recorded change.</ahelp></variable>"
+msgid "<variable id=\"kommentartext\"><ahelp hid=\".\">Enter a comment for the recorded change.</ahelp> </variable>"
msgstr ""
#. C9xGD
@@ -12715,13 +12742,13 @@ msgctxt ""
msgid "Manage changes"
msgstr ""
-#. boG5C
+#. PLMdJ
#: 02230400.xhp
msgctxt ""
"02230400.xhp\n"
"hd_id3145138\n"
"help.text"
-msgid "Manage changes"
+msgid "<variable id=\"Manage changesh1\"><link href=\"text/shared/01/02230400.xhp\" name=\"Manage changes\">Manage changes</link></variable>"
msgstr ""
#. frkxa
@@ -12733,6 +12760,15 @@ msgctxt ""
msgid "<variable id=\"redlining\"><ahelp hid=\".\">Accept or reject recorded changes.</ahelp></variable>"
msgstr ""
+#. Em4CR
+#: 02230400.xhp
+msgctxt ""
+"02230400.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. y9E7m
#: 02230401.xhp
msgctxt ""
@@ -13453,6 +13489,15 @@ msgctxt ""
msgid "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">Imports changes made to copies of the same document into the original document. Changes made to footnotes, headers, frames and fields are ignored.</ahelp></variable> Identical changes are merged automatically."
msgstr ""
+#. TDL3V
+#: 02230500.xhp
+msgctxt ""
+"02230500.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. fogGd
#: 02240000.xhp
msgctxt ""
@@ -13462,13 +13507,13 @@ msgctxt ""
msgid "Compare Document"
msgstr ""
-#. GWDPD
+#. gRCCF
#: 02240000.xhp
msgctxt ""
"02240000.xhp\n"
"hd_id3149877\n"
"help.text"
-msgid "Compare Document"
+msgid "<variable id=\"Compare Documenth1\"><link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link></variable>"
msgstr ""
#. hoReE
@@ -13480,6 +13525,15 @@ msgctxt ""
msgid "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Compares the current document with a document that you select.</ahelp></variable> The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking <emph>Reject</emph>, and then clicking <emph>Insert</emph>."
msgstr ""
+#. JUG2v
+#: 02240000.xhp
+msgctxt ""
+"02240000.xhp\n"
+"par_id251647262886504\n"
+"help.text"
+msgid "On the <emph>Track Changes</emph> toolbar, click"
+msgstr ""
+
#. RncNB
#: 02240000.xhp
msgctxt ""
@@ -14378,7 +14432,7 @@ msgctxt ""
"hd_id371715\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Reafitar"
#. iivF7
#: 03990000.xhp
@@ -25772,7 +25826,7 @@ msgctxt ""
"hd_id3145249\n"
"help.text"
msgid "Direction"
-msgstr ""
+msgstr "Direición"
#. L7drd
#: 05100200.xhp
@@ -32621,7 +32675,7 @@ msgctxt ""
"par_id3144437\n"
"help.text"
msgid "Specifies a name for this set of colors."
-msgstr ""
+msgstr "Especifica un nome pa esti conxuntu de colores."
#. bQc5u
#: 05320002.xhp
@@ -34394,7 +34448,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Geometry"
-msgstr ""
+msgstr "Xeometría"
#. sKAWa
#: 05350200.xhp
@@ -34403,7 +34457,7 @@ msgctxt ""
"hd_id3149551\n"
"help.text"
msgid "<link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\">Geometry</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\">Xeometría</link>"
#. p3RzR
#: 05350200.xhp
@@ -34421,7 +34475,7 @@ msgctxt ""
"par_id231592540156123\n"
"help.text"
msgid "<image src=\"svx/res/3dgeo.png\" id=\"img_id561592540156124\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id481592540156125\">Geometry Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/3dgeo.png\" id=\"img_id561592540156124\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id481592540156125\">Iconu Xeometría</alt></image>"
#. kgxwZ
#: 05350200.xhp
@@ -34430,7 +34484,7 @@ msgctxt ""
"par_id151592540156126\n"
"help.text"
msgid "Geometry"
-msgstr ""
+msgstr "Xeometría"
#. ncWkA
#: 05350200.xhp
@@ -34439,7 +34493,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Geometry"
-msgstr ""
+msgstr "Xeometría"
#. Qrt9Q
#: 05350200.xhp
@@ -34511,7 +34565,7 @@ msgctxt ""
"hd_id3149276\n"
"help.text"
msgid "Depth"
-msgstr ""
+msgstr "Profundidá"
#. FP8FC
#: 05350200.xhp
@@ -38876,7 +38930,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Localized Options"
-msgstr ""
+msgstr "Opciones rexonales"
#. 2WXpD
#: 06040400.xhp
@@ -38894,7 +38948,7 @@ msgctxt ""
"hd_id3153899\n"
"help.text"
msgid "<link href=\"text/shared/01/06040400.xhp\" name=\"Localized Options\">Localized Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040400.xhp\" name=\"Localized Options\">Opciones rexonales</link>"
#. pTkZE
#: 06040400.xhp
@@ -42712,24 +42766,6 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/accelconfigpage/save\">Saves the current shortcut key configuration, so that you can load it later.</ahelp>"
msgstr ""
-#. 8FyVA
-#: 06140200.xhp
-msgctxt ""
-"06140200.xhp\n"
-"hd_id3150824\n"
-"help.text"
-msgid "Reset"
-msgstr ""
-
-#. TnfSW
-#: 06140200.xhp
-msgctxt ""
-"06140200.xhp\n"
-"par_id756248\n"
-"help.text"
-msgid "<ahelp hid=\".\">Resets modified values back to the default values.</ahelp>"
-msgstr ""
-
#. D33Wg
#: 06140200.xhp
msgctxt ""
@@ -46310,7 +46346,7 @@ msgctxt ""
"par_id481638101674763\n"
"help.text"
msgid "On macOS, the default certificate manager is <emph>Keychain Access</emph>."
-msgstr ""
+msgstr "En macOS, el xestor de certificaos predetermináu ye <emph>Keychain Access</emph>."
#. oENdS
#: digitalsignatures.xhp
@@ -52997,7 +53033,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Data Navigator"
-msgstr ""
+msgstr "Restolador de datos"
#. dNuPG
#: xformsdata.xhp
@@ -53033,7 +53069,7 @@ msgctxt ""
"par_idN1056F\n"
"help.text"
msgid "Model name"
-msgstr ""
+msgstr "Nome del modelu"
#. Y8gEZ
#: xformsdata.xhp
@@ -53051,7 +53087,7 @@ msgctxt ""
"par_idN10576\n"
"help.text"
msgid "Models"
-msgstr ""
+msgstr "Modelos"
#. Q5CqP
#: xformsdata.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/02.po b/source/ast/helpcontent2/source/text/shared/02.po
index 94a48bdb57f..4ba20a5c74d 100644
--- a/source/ast/helpcontent2/source/text/shared/02.po
+++ b/source/ast/helpcontent2/source/text/shared/02.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-10 23:11+0200\n"
-"PO-Revision-Date: 2022-02-12 19:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-03-31 22:25+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/ast/>\n"
"Language: ast\n"
@@ -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: Weblate 4.11.2\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1542028589.000000\n"
@@ -683,14 +683,14 @@ msgctxt ""
msgid "Icon on the <emph>Insert</emph> toolbar (you may need to enable this initially invisible icon):"
msgstr "Iconu na barra de ferramientes <emph>inxertar</emph> (Probablemente precises habilitar esti iconu invisible primeramente):"
-#. h7uSA
+#. D33rn
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3155341\n"
"help.text"
-msgid "<image id=\"img_id3150943\" src=\"cmd/sc_config.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150943\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150943\" src=\"cmd/sc_config.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150943\">Iconu</alt></image>"
+msgid "<image id=\"img_id3150943\" src=\"cmd/lc_choosecontrols.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150943\">Icon Select</alt></image>"
+msgstr ""
#. Dbydo
#: 01170000.xhp
@@ -818,13 +818,13 @@ msgctxt ""
msgid "Select"
msgstr "Seleición"
-#. RGwii
+#. fgdPL
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3156106\n"
"help.text"
-msgid "<image id=\"img_id3153516\" src=\"cmd/sc_drawselect.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153516\">Icon</alt></image>"
+msgid "<image id=\"img_id3153516\" src=\"cmd/lc_selectobject.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153516\">Icon Select</alt></image>"
msgstr ""
#. G4itx
@@ -836,131 +836,149 @@ msgctxt ""
msgid "This icon switches the mouse pointer to the select mode, or deactivates this mode. The select mode is used to select the controls of the current form."
msgstr "Esti iconu camuda'l punteru del mur a el mou de seleición o la desactiva. El mou de seleición utilizar pa escoyer los campos de control del formulariu actual."
-#. bHC3y
+#. PaHBt
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3146914\n"
+"par_idN11B57\n"
"help.text"
-msgid "Check Box"
-msgstr "Caxellu de verificación"
+msgid "Wizards On/Off"
+msgstr "Activar o desactivar asistentes"
-#. xGAoN
+#. fhDwK
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148483\n"
+"par_idN11B65\n"
"help.text"
-msgid "<image id=\"img_id3156380\" src=\"cmd/sc_checkbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156380\">Icon Check Box</alt></image>"
+msgid "<image id=\"img_id6128727\" src=\"cmd/lc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6128727\">Icon Toggle Form Control Wizards</alt></image>"
msgstr ""
-#. fbJjh
+#. ySzEv
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3153927\n"
+"par_idN11B76\n"
"help.text"
-msgid "<ahelp hid=\".uno:CheckBox\">Creates a check box.</ahelp> Check boxes allow you to activate or deactivate a function in a form."
-msgstr "<ahelp hid=\".uno:CheckBox\">Crea un caxellu de verificación.</ahelp> Los caxellos de verificación dexen activar o desactivar una función nun formulariu."
+msgid "Turns on and turns off the automatic form controls wizards."
+msgstr "Activa o desactiva los asistentes pa los campos de control de formulariu automáticos."
-#. gpFGz
+#. DAjtU
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3153794\n"
+"par_id6403088\n"
"help.text"
-msgid "Text Box"
-msgstr "Campu de testu"
+msgid "These wizards help you to enter the properties of list boxes, table controls, and other controls."
+msgstr "Estos asistentes ayuden a introducir les propiedaes de los cuadros de llistes, los campos de control de tables y otros campos de control."
-#. jxTx3
+#. aoQcs
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3163665\n"
+"par_idN10CF7\n"
"help.text"
-msgid "<image id=\"img_id3153266\" src=\"cmd/sc_edit.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153266\">Icon Text Box</alt></image>"
+msgid "Form Design"
+msgstr "Diseñu de formularios"
+
+#. JCSYg
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_id671646965582973\n"
+"help.text"
+msgid "<image src=\"cmd/lc_formdesigntools.svg\" id=\"img_id1001646965582975\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641646965582976\">Icon Form Design Tools</alt></image>"
msgstr ""
-#. p3BAw
+#. vxxz2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3158444\n"
+"par_idN10D0D\n"
"help.text"
-msgid "<ahelp hid=\".uno:Edit\">Creates a text box.</ahelp> Text boxes are fields in which the user can enter text. In a form, text boxes display data or allow for new data input."
-msgstr "<ahelp hid=\".uno:Edit\">Crea un campu de testu.</ahelp> Nos campos de testu l'usuariu pue escribir testu. Nun formulariu, los cuadros de testu amuesen datos o dexen introducir datos nuevos."
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/main0226.xhp\"><emph>Form Design</emph></link> toolbar.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre la barra de ferramientes <link href=\"text/shared/main0226.xhp\"><emph>Diseñu de formularios</emph></link>.</ahelp>"
-#. cEtdx
+#. yDFji
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3151218\n"
+"hd_id3145618\n"
"help.text"
-msgid "Formatted Field"
-msgstr "Campu formateáu"
+msgid "Label Field"
+msgstr "Campu d'etiqueta"
-#. ehyrQ
+#. z6KGA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154836\n"
+"par_id3145295\n"
"help.text"
-msgid "<image id=\"img_id3143277\" src=\"cmd/sc_formattedfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143277\">Icon Formatted Field</alt></image>"
+msgid "<image id=\"img_id3151017\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151017\">Icon Label Field</alt></image>"
msgstr ""
-#. W4Jis
+#. xAedG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3147547\n"
+"par_id3148534\n"
"help.text"
-msgid "<ahelp hid=\".uno:FormattedField\">Creates a formatted field.</ahelp> A formatted field is a text box in which you can define how the inputs and outputs are formatted, and which limiting values apply."
-msgstr "<ahelp hid=\".uno:FormattedField\">Crea un campu formateáu.</ahelp> Un campu formateáu ye un cuadru de testu nel que se define'l formatu de les entraes y salíes, según valorar llendadores que les afecten."
+msgid "<ahelp hid=\".uno:Label\">Creates a field for displaying text.</ahelp> These labels are only for displaying predefined text. Entries cannot be made in these fields."
+msgstr "<ahelp hid=\".uno:Label\">Crea un campu pa la visualización de testu.</ahelp> Estes etiquetes namái sirven p'amosar testu predefiníu. Nun ye posible efeutuar entraes nestos campos."
-#. aVSCN
+#. gpFGz
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3155346\n"
+"hd_id3153794\n"
"help.text"
-msgid "A formatted field has <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">special control properties</link> (choose <emph>Format - Control</emph>)."
-msgstr "Un campu formateáu contién <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">carauterístiques de campu de control especiales</link> (<emph>Formatu - Riolo de control</emph>)"
+msgid "Text Box"
+msgstr "Campu de testu"
-#. gcjjG
+#. 4jdgA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3148774\n"
+"par_id3163665\n"
"help.text"
-msgid "Push Button"
-msgstr "Botón"
+msgid "<image id=\"img_id3153266\" src=\"cmd/lc_edit.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153266\">Icon Text Box</alt></image>"
+msgstr ""
-#. GsVDb
+#. p3BAw
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145801\n"
+"par_id3158444\n"
"help.text"
-msgid "<image id=\"img_id3151073\" src=\"cmd/sc_insertpushbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151073\">Icon Push Button</alt></image>"
-msgstr ""
+msgid "<ahelp hid=\".uno:Edit\">Creates a text box.</ahelp> Text boxes are fields in which the user can enter text. In a form, text boxes display data or allow for new data input."
+msgstr "<ahelp hid=\".uno:Edit\">Crea un campu de testu.</ahelp> Nos campos de testu l'usuariu pue escribir testu. Nun formulariu, los cuadros de testu amuesen datos o dexen introducir datos nuevos."
-#. KTA7G
+#. bHC3y
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3147046\n"
+"hd_id3146914\n"
"help.text"
-msgid "<ahelp hid=\".uno:Pushbutton\">Creates a push button.</ahelp> This function can be used to execute a command for a defined event, such as a mouse click."
-msgstr "<ahelp hid=\".uno:Pushbutton\">Crea un botón.</ahelp> Esta función pue emplegase pa executar un comandu pa una aición definida, por exemplu un clic de mur."
+msgid "Check Box"
+msgstr "Caxellu de verificación"
-#. WB9wA
+#. GypEC
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154731\n"
+"par_id3148483\n"
"help.text"
-msgid "You can apply text and graphics to these buttons."
-msgstr "Pue aplicar a estos botones testu ya imaxes."
+msgid "<image id=\"img_id3156380\" src=\"cmd/lc_checkbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156380\">Icon Check Box</alt></image>"
+msgstr ""
+
+#. fbJjh
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_id3153927\n"
+"help.text"
+msgid "<ahelp hid=\".uno:CheckBox\">Creates a check box.</ahelp> Check boxes allow you to activate or deactivate a function in a form."
+msgstr "<ahelp hid=\".uno:CheckBox\">Crea un caxellu de verificación.</ahelp> Los caxellos de verificación dexen activar o desactivar una función nun formulariu."
#. J2PmD
#: 01170000.xhp
@@ -971,13 +989,13 @@ msgctxt ""
msgid "Option Button"
msgstr "Campu d'opción"
-#. qpeu3
+#. DQofS
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3152971\n"
"help.text"
-msgid "<image id=\"img_id3152999\" src=\"cmd/sc_radiobutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Icon Option Button</alt></image>"
+msgid "<image id=\"img_id3152999\" src=\"cmd/lc_radiobutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Icon Option Button</alt></image>"
msgstr ""
#. DJdqY
@@ -998,13 +1016,13 @@ msgctxt ""
msgid "List Box"
msgstr "Llistáu"
-#. NBqDr
+#. xeMzN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3154326\n"
"help.text"
-msgid "<image id=\"img_id3154135\" src=\"cmd/sc_listbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154135\">Icon List Box</alt></image>"
+msgid "<image id=\"img_id3154135\" src=\"cmd/lc_listbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154135\">Icon List Box</alt></image>"
msgstr ""
#. Dbwav
@@ -1025,13 +1043,13 @@ msgctxt ""
msgid "Combo Box"
msgstr "Cuadru combináu"
-#. 8M2uc
+#. pdZ4w
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3149981\n"
"help.text"
-msgid "<image id=\"img_id3148817\" src=\"cmd/sc_combobox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148817\">Icon Combo Box</alt></image>"
+msgid "<image id=\"img_id3148817\" src=\"cmd/lc_combobox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148817\">Icon Combo Box</alt></image>"
msgstr ""
#. bUeTF
@@ -1043,392 +1061,410 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ComboBox\">Creates a combo box.</ahelp> A combo box is a single-line list box with a drop-down list from which users choose an option. You can assign the \"read-only\" property to the combo box so that users cannot enter other entries than those found in the list. If the form is bound to a database and the database connection is active, the <link href=\"text/shared/02/01170900.xhp\" name=\"Combo Box Wizard\"><emph>Combo Box Wizard</emph></link> will automatically appear after you insert the combo box in the document."
msgstr "<ahelp hid=\".uno:ComboBox\">Crea un cuadru combináu.</ahelp> Un cuadru combináu ye un llistáu d'una sola llinia con una llista desplegable na que los usuarios puen escoyer una opción. Pue asignar al cuadru combináu la propiedá \"namái llectura\" por que los usuarios nun puedan escribir entraes distintes de les qu'apaecen na llista. Si'l formulariu ta rellacionáu con una base de datos y la conexón con ella ta activa, el <link href=\"text/shared/02/01170900.xhp\" name=\"Combo Box Wizard\"><emph>Asistente pa cuadros combinaos</emph></link> abrir de forma automática dempués d'inxertar el cuadru combináu nel documentu."
-#. yDFji
+#. gcjjG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3145618\n"
+"hd_id3148774\n"
"help.text"
-msgid "Label Field"
-msgstr "Campu d'etiqueta"
+msgid "Push Button"
+msgstr "Botón"
-#. z6KGA
+#. EYKJx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145295\n"
+"par_id3145801\n"
"help.text"
-msgid "<image id=\"img_id3151017\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151017\">Icon Label Field</alt></image>"
+msgid "<image id=\"img_id3151073\" src=\"cmd/sc_pushbutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151073\">Icon Push Button</alt></image>"
msgstr ""
-#. xAedG
+#. KTA7G
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148534\n"
+"par_id3147046\n"
"help.text"
-msgid "<ahelp hid=\".uno:Label\">Creates a field for displaying text.</ahelp> These labels are only for displaying predefined text. Entries cannot be made in these fields."
-msgstr "<ahelp hid=\".uno:Label\">Crea un campu pa la visualización de testu.</ahelp> Estes etiquetes namái sirven p'amosar testu predefiníu. Nun ye posible efeutuar entraes nestos campos."
+msgid "<ahelp hid=\".uno:Pushbutton\">Creates a push button.</ahelp> This function can be used to execute a command for a defined event, such as a mouse click."
+msgstr "<ahelp hid=\".uno:Pushbutton\">Crea un botón.</ahelp> Esta función pue emplegase pa executar un comandu pa una aición definida, por exemplu un clic de mur."
-#. aoQcs
+#. WB9wA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN10CF7\n"
+"par_id3154731\n"
"help.text"
-msgid "Form Design"
-msgstr "Diseñu de formularios"
+msgid "You can apply text and graphics to these buttons."
+msgstr "Pue aplicar a estos botones testu ya imaxes."
-#. vxxz2
+#. YzDya
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN10D0D\n"
+"hd_id3153316\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/main0226.xhp\"><emph>Form Design</emph></link> toolbar.</ahelp>"
-msgstr "<ahelp hid=\".\">Abre la barra de ferramientes <link href=\"text/shared/main0226.xhp\"><emph>Diseñu de formularios</emph></link>.</ahelp>"
+msgid "Image Button"
+msgstr "Botón gráficu"
-#. PaHBt
+#. SpSoG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B57\n"
+"par_id3159622\n"
"help.text"
-msgid "Wizards On/Off"
-msgstr "Activar o desactivar asistentes"
+msgid "<image id=\"img_id3154378\" src=\"cmd/lc_imagebutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154378\">Icon image button</alt></image>"
+msgstr ""
-#. GY3P2
+#. B9Era
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B65\n"
+"par_id3148601\n"
"help.text"
-msgid "<image id=\"img_id6128727\" src=\"cmd/sc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6128727\">Icon</alt></image>"
-msgstr ""
+msgid "<ahelp hid=\".uno:Imagebutton\">Creates a button displayed as an image.</ahelp> Aside from the graphic representation, an image button has the same properties as a \"normal\" button."
+msgstr "<ahelp hid=\".uno:Imagebutton\">Crea un botón que s'amuesa en forma d'imaxe.</ahelp> Amás de la representación gráfica, un botón d'imaxe tien les mesmes propiedaes qu'un botón \"normal\"."
-#. ySzEv
+#. cEtdx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B76\n"
+"hd_id3151218\n"
"help.text"
-msgid "Turns on and turns off the automatic form controls wizards."
-msgstr "Activa o desactiva los asistentes pa los campos de control de formulariu automáticos."
+msgid "Formatted Field"
+msgstr "Campu formateáu"
-#. DAjtU
+#. eFvnd
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id6403088\n"
+"par_id3154836\n"
"help.text"
-msgid "These wizards help you to enter the properties of list boxes, table controls, and other controls."
-msgstr "Estos asistentes ayuden a introducir les propiedaes de los cuadros de llistes, los campos de control de tables y otros campos de control."
+msgid "<image id=\"img_id3143277\" src=\"cmd/lc_formattedfield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143277\">Icon Formatted Field</alt></image>"
+msgstr ""
-#. DKSBw
+#. W4Jis
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3149436\n"
+"par_id3147547\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">Context Menu Commands</link>"
-msgstr "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">Comandos del menú contestual</link>"
+msgid "<ahelp hid=\".uno:FormattedField\">Creates a formatted field.</ahelp> A formatted field is a text box in which you can define how the inputs and outputs are formatted, and which limiting values apply."
+msgstr "<ahelp hid=\".uno:FormattedField\">Crea un campu formateáu.</ahelp> Un campu formateáu ye un cuadru de testu nel que se define'l formatu de les entraes y salíes, según valorar llendadores que les afecten."
-#. MoAVD
+#. aVSCN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11A56\n"
+"par_id3155346\n"
"help.text"
-msgid "Spin Button"
-msgstr "Campu xiratorio"
+msgid "A formatted field has <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">special control properties</link> (choose <emph>Format - Control</emph>)."
+msgstr "Un campu formateáu contién <link href=\"text/shared/02/01170002.xhp\" name=\"special control properties\">carauterístiques de campu de control especiales</link> (<emph>Formatu - Riolo de control</emph>)"
-#. 2dBYJ
+#. FDhXd
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11A64\n"
+"hd_id3156040\n"
"help.text"
-msgid "<image id=\"img_id7816400\" src=\"cmd/sc_spinbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id7816400\">Icon</alt></image>"
+msgid "Date Field"
+msgstr "Campu de fecha"
+
+#. g7AvH
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_id3149423\n"
+"help.text"
+msgid "<image id=\"img_id3150096\" src=\"cmd/lc_datefield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150096\">Icon Date Field</alt></image>"
msgstr ""
-#. rY5Pe
+#. sSv2y
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11A75\n"
+"par_id3151312\n"
"help.text"
-msgid "<ahelp hid=\".uno:SpinButton\">Creates a spin button.</ahelp>"
-msgstr "<ahelp hid=\".uno:SpinButton\">Crea un botón de seleición.</ahelp>"
+msgid "<ahelp hid=\".uno:DateField\">Creates a date field.</ahelp> If the form is linked to a database, the date values can be adopted from the database."
+msgstr "<ahelp hid=\".uno:DateField\">Crea un campu de fecha.</ahelp> Si'l formulariu ta enllazáu a una base de datos, los valores de fecha puen adoptase de la base de datos."
-#. L6D5h
+#. rAgZA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id710776\n"
+"par_id3151302\n"
"help.text"
-msgid "If you add a spin button to a Calc spreadsheet, you can use the Data tab page to create a two-way link between the spin button and a cell. As a result, when you change the contents of a cell, the contents of the spin button are updated. Conversely, if you change the value of the spin button, the contents of the cell are updated."
-msgstr "Si amiesta un botón de seleición a una fueya de cálculu de Calc, pue utilizar fichar Datos pa crear un enllaz de dos sentíos ente'l botón de seleición y una caxella. De resultes, al camudar el conteníu d'una caxella, actualízase'l conteníu del botón de seleición. De la mesma, si camuda'l valor del botón de seleición, actualízase'l conteníu de la caxella."
+msgid "If you assign the \"Dropdown\" property to the date field, the user can open a calendar to select a date under the date field. This also applies to a date field within a <emph>Table Control</emph> field."
+msgstr ""
-#. dHgny
+#. kx8f2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11ABC\n"
+"par_id3154395\n"
"help.text"
-msgid "Scrollbar"
-msgstr "Barra de desplazamientu"
+msgid "Date fields can be easily edited by the user with the up arrow and down arrow keys. Depending on the cursor position, the day, month, or the year is can be increased or decreased using the arrow keys."
+msgstr "L'usuariu pue editar con facilidá los campos de fecha coles tecles de flecha enriba y embaxo. Según cuál seya la posición del cursor, el día, el mes o l'añu pue amontase o menguar coles tecles de flecha."
-#. Mhj4A
+#. zBejA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11ACA\n"
+"par_id3153112\n"
"help.text"
-msgid "<image id=\"img_id8203985\" src=\"cmd/sc_scrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8203985\">Icon</alt></image>"
-msgstr ""
+msgid "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">Specific Remarks on Date Fields</link>."
+msgstr "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">Instrucciones específiques pa campos de fecha</link>."
-#. RNigC
+#. Qw4Qa
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11ADB\n"
+"hd_id3154652\n"
"help.text"
-msgid "<ahelp hid=\".uno:ScrollBar\">Creates a scrollbar.</ahelp>"
-msgstr "<ahelp hid=\".uno:ScrollBar\">Crea una barra de desplazamientu.</ahelp>"
+msgid "Numerical Field"
+msgstr "Campu numbérico"
-#. C8usb
+#. KFezM
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CA3\n"
+"par_id3149396\n"
"help.text"
-msgid "You can specify the following properties for a scrollbar:"
-msgstr "Pue especificar les siguientes propiedaes d'una barra de desplazamientu:"
+msgid "<image id=\"img_id3153012\" src=\"cmd/lc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153012\">Icon Numerical Field</alt></image>"
+msgstr ""
-#. 5NXLp
+#. 3jPvp
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CDA\n"
+"par_id3145601\n"
"help.text"
-msgid "UI name"
-msgstr "Nome de la interfaz d'usuariu"
+msgid "<ahelp hid=\".uno:NumericField\">Creates a numerical field.</ahelp> If the form is linked to a database, the numerical values in the form can be adopted from the database."
+msgstr "<ahelp hid=\".uno:NumericField\">Crea un campu numbérico.</ahelp> Si'l formulariu ta enllazáu a una base de datos, los valores numbéricos puen adoptase de la base de datos."
-#. KiE2x
+#. 7u2GY
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CE0\n"
+"hd_id3145147\n"
"help.text"
-msgid "Semantics"
-msgstr "Semántica"
+msgid "Group Box"
+msgstr "Cuadru de grupu"
-#. PNDZB
+#. G7yzH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CE7\n"
+"par_id3159334\n"
"help.text"
-msgid "Scroll value min"
-msgstr "Valor de desplazamientu máx."
+msgid "<image id=\"img_id3153790\" src=\"cmd/lc_groupbox.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153790\">Icon Group Box</alt></image>"
+msgstr ""
-#. h7UcE
+#. 3Suwy
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CED\n"
+"par_id3154572\n"
"help.text"
-msgid "Specifies the minimum height or the minimum width of a scrollbar."
-msgstr "Especifica l'anchu o altu mínimos d'una barra de desplazamientu."
+msgid "<ahelp hid=\".uno:GroupBox\">Creates a frame to visually group several controls.</ahelp> <emph>Group boxes</emph> allow you to group option buttons in a frame."
+msgstr ""
-#. 8R3PE
+#. GXbwz
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CF4\n"
+"par_id3148394\n"
"help.text"
-msgid "Scroll value max"
-msgstr "Valor de desplazamientu máx."
+msgid "If you insert a group frame into the document, the <link href=\"text/shared/autopi/01120000.xhp\" name=\"Group Element Wizard\"><emph>Group Element Wizard</emph></link> starts, which allows you to easily create an option group."
+msgstr ""
-#. BGGh8
+#. YPpYV
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11CFA\n"
+"par_id3150567\n"
"help.text"
-msgid "Specifies the maximum height or the maximum width of a scrollbar."
-msgstr "Especifica l'anchor o altor máximos d'una barra de desplazamientu."
+msgid "<emph>Note:</emph> When you drag a group box over already existing controls and then want to select a control, you have to first open the context menu of the group box and choose <emph>Arrange - Send to Back</emph>. Then select the control while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>."
+msgstr ""
-#. 44sBA
+#. 6DEDD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D01\n"
+"par_id3145615\n"
"help.text"
-msgid "Default scroll value"
-msgstr "Valor predetermináu de desplazamientu"
+msgid "<emph>Group boxes</emph> are used only for a visual effect. A functional grouping of option fields can be made through the name definition: under the <link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph>Name</emph></link> properties of all option fields, enter the same name in order to group them."
+msgstr ""
-#. TFnZ8
+#. Aj5PP
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D07\n"
+"hd_id3152369\n"
"help.text"
-msgid "Specifies the default value of a scrollbar, used when the form is reset."
-msgstr "Especifica'l valor predetermináu d'una barra de desplazamientu. Utilizar al restablecer el formulariu."
+msgid "Time Field"
+msgstr "Campu horario"
-#. bK7Vi
+#. ebcMe
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D0E\n"
+"par_id3153687\n"
"help.text"
-msgid "Orientation"
-msgstr "Orientación"
+msgid "<image id=\"img_id3155949\" src=\"cmd/lc_timefield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155949\">Icon Time Field</alt></image>"
+msgstr ""
-#. xUPB2
+#. 7apBh
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D14\n"
+"par_id3155399\n"
"help.text"
-msgid "Specifies the orientation of a scrollbar, that is, horizontal or vertical."
-msgstr "Especifica la orientación (horizontal o vertical) d'una barra de desplazamientu."
+msgid "<ahelp hid=\".uno:TimeField\">Creates a time field.</ahelp> If the form is linked to a database, the time values for the form can be adopted from the database."
+msgstr "<ahelp hid=\".uno:TimeField\">Crea un campu d'hora.</ahelp> Si'l formulariu ta enllazáu a una base de datos, los valores d'hora puen adoptase de la base de datos."
-#. fmsPT
+#. keYu2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D1B\n"
+"par_id3154764\n"
"help.text"
-msgid "Small change"
-msgstr "Cambéu pequeñu"
+msgid "Time fields can be easily edited by the user with the up and down arrow keys. Depending on the cursor position, the hours, minutes, or the seconds are increased or decreased using the arrow keys."
+msgstr "L'usuariu pue editar con facilidá los campos d'hora coles tecles de flecha enriba y embaxo. Según cuál seya la posición del cursor, les hores, los minutos o los segundos puen amontase o menguar coles tecles de flecha."
-#. ZXezA
+#. EGmCN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D21\n"
+"hd_id3153612\n"
"help.text"
-msgid "Specifies the minimum amount by which you can scroll a scrollbar, for example, by clicking an arrow."
-msgstr "Especifica la cantidá mínima na que pue movese una barra de desplazamientu, por exemplu, faciendo clic nuna flecha."
+msgid "Currency Field"
+msgstr "Campu de moneda"
-#. CySRJ
+#. Znjzh
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D28\n"
+"par_id3145324\n"
"help.text"
-msgid "Large change"
-msgstr "Cambéu grande"
+msgid "<image id=\"img_id3152866\" src=\"cmd/lc_currencyfield.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152866\">Icon Currency Field</alt></image>"
+msgstr ""
-#. h3r9X
+#. dc7AD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D2E\n"
+"par_id3145115\n"
"help.text"
-msgid "Specifies the amount that a large step scrolls a scrollbar, for example, when you click between the scrollbar thumb and a scrollbar arrow."
-msgstr "Determina'l desplazamientu d'un pasu llargu nuna barra de desplazamientu, por exemplu, al faer clic ente'l control de la barra de desplazamientu y una flecha d'ésta."
+msgid "<ahelp hid=\".uno:CurrencyField\">Creates a currency field.</ahelp> If the form is linked to a database, the currency field contents for in the form can be adopted from the database."
+msgstr "<ahelp hid=\".uno:CurrencyField\">Crea un campu de moneda.</ahelp> Si'l formulariu ta enllazáu a una base de datos, el conteníu del campu de moneda nel formulariu pue tomase de la base de datos."
-#. 34PS4
+#. 2KYgF
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D35\n"
+"hd_id3148825\n"
"help.text"
-msgid "Delay"
-msgstr "Retrasu"
+msgid "Pattern Field"
+msgstr "Campu amazcaráu"
-#. RAwEx
+#. 3CqxF
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D3B\n"
+"par_id3149742\n"
"help.text"
-msgid "Specifies the delay in milliseconds between scrollbar trigger events. For example, the delay that occurs when you click an arrow button on the scrollbar and hold down the mouse button."
-msgstr "Especifica'l retrasu en milisegundos ente los eventos desencadenadores de la barra de desplazamientu. Por exemplu, el retrasu que se produz al faer cilc nun botón de flecha de la barra de desplazamientu y caltener calcáu'l botón del mur."
+msgid "<image id=\"img_id3148924\" src=\"cmd/lc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148924\">Icon Pattern Field</alt></image>"
+msgstr ""
-#. 4cEzG
+#. 4SYQW
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D42\n"
+"par_id3150122\n"
"help.text"
-msgid "Symbol color"
-msgstr "Color de símbolu"
+msgid "<ahelp hid=\".uno:PatternField\">Creates a pattern field.</ahelp> Pattern fields consist of an edit mask and a literal mask. The edit mask determines which data can be entered. The literal mask determines the contents of the pattern field when loading the form."
+msgstr "<ahelp hid=\".uno:PatternField\">Crea un campu amazcaráu.</ahelp> Los campos amazcaraos consten d'una mázcara d'edición y d'una mázcara lliteral. La mázcara d'edición determina los datos que puen entrar los usuarios. La mázcara lliteral define'l conteníu del campu amazcaráu al cargar el formulariu."
-#. wrXfx
+#. NiY7c
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D48\n"
+"par_id3152947\n"
"help.text"
-msgid "Specifies the color of the arrows on the scrollbar."
-msgstr "Especifica'l color de les fleches de la barra de desplazamientu."
+msgid "Please note that pattern fields are not exported into HTML format."
+msgstr "En formatu HTML nun se van tener en cuenta los campos amazcaraos."
-#. nqHkR
+#. JBDBc
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D4F\n"
+"hd_id3157996\n"
"help.text"
-msgid "Visible Size"
-msgstr "Tamañu visible"
+msgid "Table Control"
+msgstr "Control de tables"
-#. bGBpN
+#. bxMfG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D55\n"
+"par_id3156402\n"
"help.text"
-msgid "Specifies the size of the scrollbar thumb in \"value units\". For example, a value of <emph>(\"Scroll value max.\" minus \"Scroll value min.\") / 2</emph> results in a scrollbar thumb that occupies half of the scrollbar."
+msgid "<image id=\"img_id3146324\" src=\"cmd/lc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146324\">Icon Table Control</alt></image>"
msgstr ""
-#. kPyUP
+#. YNpAD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D58\n"
+"par_id3154579\n"
"help.text"
-msgid "To make the width of the scrollbar equal to the height of the scrollbar, set the <emph>Visible Size</emph> to zero."
+msgid "<ahelp hid=\".\">Creates a <emph>table control</emph> to display a database table.</ahelp> If you create a new table control, the <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph>Table Element Wizard</emph></link> appears."
msgstr ""
-#. E82RH
+#. n4JKM
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11D63\n"
+"par_id3154697\n"
"help.text"
-msgid "In a Calc spreadsheet, you can use the <emph>Data</emph> tab page to create a two-way link between a scrollbar and a cell."
-msgstr ""
+msgid "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Special information about Table Controls</link>."
+msgstr "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Información especial sobre campos de control de tabla</link>."
-#. YzDya
+#. yJm6y
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3153316\n"
+"par_idN11B1E\n"
"help.text"
-msgid "Image Button"
-msgstr "Botón gráficu"
+msgid "Navigation bar"
+msgstr "Barra de navegación"
-#. Dc2HC
+#. vGBDH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3159622\n"
+"par_idN11B2C\n"
"help.text"
-msgid "<image id=\"img_id3154378\" src=\"cmd/sc_imagebutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154378\">Icon image button</alt></image>"
+msgid "<image id=\"img_id5074922\" src=\"cmd/lc_navigationbar.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5074922\">Icon Navigation bar</alt></image>"
msgstr ""
-#. B9Era
+#. dmjpG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148601\n"
+"par_idN11B3D\n"
"help.text"
-msgid "<ahelp hid=\".uno:Imagebutton\">Creates a button displayed as an image.</ahelp> Aside from the graphic representation, an image button has the same properties as a \"normal\" button."
-msgstr "<ahelp hid=\".uno:Imagebutton\">Crea un botón que s'amuesa en forma d'imaxe.</ahelp> Amás de la representación gráfica, un botón d'imaxe tien les mesmes propiedaes qu'un botón \"normal\"."
+msgid "<ahelp hid=\".\">Creates a <emph>Navigation</emph> bar.</ahelp>"
+msgstr ""
+
+#. VUmFZ
+#: 01170000.xhp
+msgctxt ""
+"01170000.xhp\n"
+"par_idN11DB1\n"
+"help.text"
+msgid "The <emph>Navigation</emph> bar allows you to move through the records of a database or a database form. The controls on this <emph>Navigation</emph> bar work the same way as the controls on the default <link href=\"text/shared/main0213.xhp\"><emph>Navigation</emph> bar</link> in $[officename]."
+msgstr ""
#. uB2m7
#: 01170000.xhp
@@ -1439,13 +1475,13 @@ msgctxt ""
msgid "Image Control"
msgstr "Campu de control gráficu"
-#. ymnGP
+#. TFQ2v
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
"par_id3155869\n"
"help.text"
-msgid "<image id=\"img_id3152381\" src=\"cmd/sc_objectcatalog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152381\">Icon Image Control</alt></image>"
+msgid "<image id=\"img_id3152381\" src=\"cmd/lc_objectcatalog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152381\">Icon Image Control</alt></image>"
msgstr ""
#. ZJDNH
@@ -1466,365 +1502,311 @@ msgctxt ""
msgid "Images from a database can be displayed in a form, and new images can be inserted in the database as long as the image control is not write-protected. The control must refer to a database field of the image type. Therefore, enter the data field into the properties window on the <emph>Data</emph> tab page."
msgstr "Un formulariu pue amosar imaxes d'una base de datos y inxertar imaxes nueves nésta si'l campu de control d'imaxe nun ta protexíu contra escritura. El campu de control tien de faer referencia a un campu de la base de datos de tipu imaxen. Por tanto, especifique'l campu de datos na ventana de propiedaes de la llingüeta <emph>Datos</emph>."
-#. FDhXd
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"hd_id3156040\n"
-"help.text"
-msgid "Date Field"
-msgstr "Campu de fecha"
-
-#. faE9Y
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_id3149423\n"
-"help.text"
-msgid "<image id=\"img_id3150096\" src=\"cmd/sc_adddatefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150096\">Icon</alt></image>"
-msgstr ""
-
-#. sSv2y
+#. 4iACX
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3151312\n"
+"hd_id3156186\n"
"help.text"
-msgid "<ahelp hid=\".uno:DateField\">Creates a date field.</ahelp> If the form is linked to a database, the date values can be adopted from the database."
-msgstr "<ahelp hid=\".uno:DateField\">Crea un campu de fecha.</ahelp> Si'l formulariu ta enllazáu a una base de datos, los valores de fecha puen adoptase de la base de datos."
+msgid "File Selection"
+msgstr "Seleición de ficheru"
-#. rAgZA
+#. VRYA8
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3151302\n"
+"par_id3150531\n"
"help.text"
-msgid "If you assign the \"Dropdown\" property to the date field, the user can open a calendar to select a date under the date field. This also applies to a date field within a <emph>Table Control</emph> field."
+msgid "<image id=\"img_id3154344\" src=\"cmd/lc_filecontrol.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon File Selection</alt></image>"
msgstr ""
-#. kx8f2
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_id3154395\n"
-"help.text"
-msgid "Date fields can be easily edited by the user with the up arrow and down arrow keys. Depending on the cursor position, the day, month, or the year is can be increased or decreased using the arrow keys."
-msgstr "L'usuariu pue editar con facilidá los campos de fecha coles tecles de flecha enriba y embaxo. Según cuál seya la posición del cursor, el día, el mes o l'añu pue amontase o menguar coles tecles de flecha."
-
-#. zBejA
+#. 4CELT
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3153112\n"
+"par_id3149438\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">Specific Remarks on Date Fields</link>."
-msgstr "<link href=\"text/shared/02/01170003.xhp\" name=\"Specific Remarks on Date Fields\">Instrucciones específiques pa campos de fecha</link>."
+msgid "<ahelp hid=\".uno:FileControl\">Creates a button that enables file selection.</ahelp>"
+msgstr "<ahelp hid=\".uno:FileControl\">Crea un botón que dexa la seleición de ficheros.</ahelp>"
-#. Aj5PP
+#. MoAVD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3152369\n"
+"par_idN11A56\n"
"help.text"
-msgid "Time Field"
-msgstr "Campu horario"
+msgid "Spin Button"
+msgstr "Campu xiratorio"
-#. T6act
+#. CtQfD
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3153687\n"
+"par_idN11A64\n"
"help.text"
-msgid "<image id=\"img_id3155949\" src=\"cmd/sc_timefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155949\">Icon</alt></image>"
+msgid "<image id=\"img_id7816400\" src=\"cmd/lc_spinbutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id7816400\">Icon Spin Button</alt></image>"
msgstr ""
-#. 7apBh
+#. rY5Pe
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3155399\n"
+"par_idN11A75\n"
"help.text"
-msgid "<ahelp hid=\".uno:TimeField\">Creates a time field.</ahelp> If the form is linked to a database, the time values for the form can be adopted from the database."
-msgstr "<ahelp hid=\".uno:TimeField\">Crea un campu d'hora.</ahelp> Si'l formulariu ta enllazáu a una base de datos, los valores d'hora puen adoptase de la base de datos."
+msgid "<ahelp hid=\".uno:SpinButton\">Creates a spin button.</ahelp>"
+msgstr "<ahelp hid=\".uno:SpinButton\">Crea un botón de seleición.</ahelp>"
-#. keYu2
+#. L6D5h
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154764\n"
+"par_id710776\n"
"help.text"
-msgid "Time fields can be easily edited by the user with the up and down arrow keys. Depending on the cursor position, the hours, minutes, or the seconds are increased or decreased using the arrow keys."
-msgstr "L'usuariu pue editar con facilidá los campos d'hora coles tecles de flecha enriba y embaxo. Según cuál seya la posición del cursor, les hores, los minutos o los segundos puen amontase o menguar coles tecles de flecha."
+msgid "If you add a spin button to a Calc spreadsheet, you can use the Data tab page to create a two-way link between the spin button and a cell. As a result, when you change the contents of a cell, the contents of the spin button are updated. Conversely, if you change the value of the spin button, the contents of the cell are updated."
+msgstr "Si amiesta un botón de seleición a una fueya de cálculu de Calc, pue utilizar fichar Datos pa crear un enllaz de dos sentíos ente'l botón de seleición y una caxella. De resultes, al camudar el conteníu d'una caxella, actualízase'l conteníu del botón de seleición. De la mesma, si camuda'l valor del botón de seleición, actualízase'l conteníu de la caxella."
-#. 4iACX
+#. dHgny
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3156186\n"
+"par_idN11ABC\n"
"help.text"
-msgid "File Selection"
-msgstr "Seleición de ficheru"
+msgid "Scrollbar"
+msgstr "Barra de desplazamientu"
-#. oGq2E
+#. teRA6
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150531\n"
+"par_idN11ACA\n"
"help.text"
-msgid "<image id=\"img_id3154344\" src=\"cmd/sc_filecontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon File Selection</alt></image>"
+msgid "<image id=\"img_id8203985\" src=\"cmd/lc_scrollbar.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8203985\">Icon Scrollbar</alt></image>"
msgstr ""
-#. 4CELT
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"par_id3149438\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FileControl\">Creates a button that enables file selection.</ahelp>"
-msgstr "<ahelp hid=\".uno:FileControl\">Crea un botón que dexa la seleición de ficheros.</ahelp>"
-
-#. Qw4Qa
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"hd_id3154652\n"
-"help.text"
-msgid "Numerical Field"
-msgstr "Campu numbérico"
-
-#. c2Gra
+#. RNigC
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3149396\n"
+"par_idN11ADB\n"
"help.text"
-msgid "<image id=\"img_id3153012\" src=\"cmd/sc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153012\">Icon</alt></image>"
-msgstr ""
+msgid "<ahelp hid=\".uno:ScrollBar\">Creates a scrollbar.</ahelp>"
+msgstr "<ahelp hid=\".uno:ScrollBar\">Crea una barra de desplazamientu.</ahelp>"
-#. 3jPvp
+#. C8usb
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145601\n"
+"par_idN11CA3\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumericField\">Creates a numerical field.</ahelp> If the form is linked to a database, the numerical values in the form can be adopted from the database."
-msgstr "<ahelp hid=\".uno:NumericField\">Crea un campu numbérico.</ahelp> Si'l formulariu ta enllazáu a una base de datos, los valores numbéricos puen adoptase de la base de datos."
+msgid "You can specify the following properties for a scrollbar:"
+msgstr "Pue especificar les siguientes propiedaes d'una barra de desplazamientu:"
-#. EGmCN
+#. 5NXLp
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3153612\n"
+"par_idN11CDA\n"
"help.text"
-msgid "Currency Field"
-msgstr "Campu de moneda"
+msgid "UI name"
+msgstr "Nome de la interfaz d'usuariu"
-#. 6nQhR
+#. KiE2x
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145324\n"
+"par_idN11CE0\n"
"help.text"
-msgid "<image id=\"img_id3152866\" src=\"cmd/sc_currencyfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152866\">Icon</alt></image>"
-msgstr ""
+msgid "Semantics"
+msgstr "Semántica"
-#. dc7AD
+#. PNDZB
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145115\n"
+"par_idN11CE7\n"
"help.text"
-msgid "<ahelp hid=\".uno:CurrencyField\">Creates a currency field.</ahelp> If the form is linked to a database, the currency field contents for in the form can be adopted from the database."
-msgstr "<ahelp hid=\".uno:CurrencyField\">Crea un campu de moneda.</ahelp> Si'l formulariu ta enllazáu a una base de datos, el conteníu del campu de moneda nel formulariu pue tomase de la base de datos."
+msgid "Scroll value min"
+msgstr "Valor de desplazamientu máx."
-#. 2KYgF
+#. h7UcE
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3148825\n"
+"par_idN11CED\n"
"help.text"
-msgid "Pattern Field"
-msgstr "Campu amazcaráu"
+msgid "Specifies the minimum height or the minimum width of a scrollbar."
+msgstr "Especifica l'anchu o altu mínimos d'una barra de desplazamientu."
-#. zwZsE
+#. 8R3PE
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3149742\n"
+"par_idN11CF4\n"
"help.text"
-msgid "<image id=\"img_id3148924\" src=\"cmd/sc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148924\">Icon</alt></image>"
-msgstr ""
+msgid "Scroll value max"
+msgstr "Valor de desplazamientu máx."
-#. 4SYQW
+#. BGGh8
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150122\n"
+"par_idN11CFA\n"
"help.text"
-msgid "<ahelp hid=\".uno:PatternField\">Creates a pattern field.</ahelp> Pattern fields consist of an edit mask and a literal mask. The edit mask determines which data can be entered. The literal mask determines the contents of the pattern field when loading the form."
-msgstr "<ahelp hid=\".uno:PatternField\">Crea un campu amazcaráu.</ahelp> Los campos amazcaraos consten d'una mázcara d'edición y d'una mázcara lliteral. La mázcara d'edición determina los datos que puen entrar los usuarios. La mázcara lliteral define'l conteníu del campu amazcaráu al cargar el formulariu."
+msgid "Specifies the maximum height or the maximum width of a scrollbar."
+msgstr "Especifica l'anchor o altor máximos d'una barra de desplazamientu."
-#. NiY7c
+#. 44sBA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3152947\n"
+"par_idN11D01\n"
"help.text"
-msgid "Please note that pattern fields are not exported into HTML format."
-msgstr "En formatu HTML nun se van tener en cuenta los campos amazcaraos."
+msgid "Default scroll value"
+msgstr "Valor predetermináu de desplazamientu"
-#. 7u2GY
+#. TFnZ8
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3145147\n"
+"par_idN11D07\n"
"help.text"
-msgid "Group Box"
-msgstr "Cuadru de grupu"
+msgid "Specifies the default value of a scrollbar, used when the form is reset."
+msgstr "Especifica'l valor predetermináu d'una barra de desplazamientu. Utilizar al restablecer el formulariu."
-#. ZpKrz
+#. bK7Vi
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3159334\n"
+"par_idN11D0E\n"
"help.text"
-msgid "<image id=\"img_id3153790\" src=\"cmd/sc_groupbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153790\">Icon Group Box</alt></image>"
-msgstr ""
+msgid "Orientation"
+msgstr "Orientación"
-#. 3Suwy
+#. xUPB2
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154572\n"
+"par_idN11D14\n"
"help.text"
-msgid "<ahelp hid=\".uno:GroupBox\">Creates a frame to visually group several controls.</ahelp> <emph>Group boxes</emph> allow you to group option buttons in a frame."
-msgstr ""
+msgid "Specifies the orientation of a scrollbar, that is, horizontal or vertical."
+msgstr "Especifica la orientación (horizontal o vertical) d'una barra de desplazamientu."
-#. GXbwz
+#. fmsPT
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3148394\n"
+"par_idN11D1B\n"
"help.text"
-msgid "If you insert a group frame into the document, the <link href=\"text/shared/autopi/01120000.xhp\" name=\"Group Element Wizard\"><emph>Group Element Wizard</emph></link> starts, which allows you to easily create an option group."
-msgstr ""
+msgid "Small change"
+msgstr "Cambéu pequeñu"
-#. YPpYV
+#. ZXezA
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150567\n"
+"par_idN11D21\n"
"help.text"
-msgid "<emph>Note:</emph> When you drag a group box over already existing controls and then want to select a control, you have to first open the context menu of the group box and choose <emph>Arrange - Send to Back</emph>. Then select the control while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>."
-msgstr ""
+msgid "Specifies the minimum amount by which you can scroll a scrollbar, for example, by clicking an arrow."
+msgstr "Especifica la cantidá mínima na que pue movese una barra de desplazamientu, por exemplu, faciendo clic nuna flecha."
-#. 6DEDD
+#. CySRJ
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3145615\n"
+"par_idN11D28\n"
"help.text"
-msgid "<emph>Group boxes</emph> are used only for a visual effect. A functional grouping of option fields can be made through the name definition: under the <link href=\"text/shared/02/01170101.xhp\" name=\"Name\"><emph>Name</emph></link> properties of all option fields, enter the same name in order to group them."
-msgstr ""
+msgid "Large change"
+msgstr "Cambéu grande"
-#. JBDBc
+#. h3r9X
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"hd_id3157996\n"
+"par_idN11D2E\n"
"help.text"
-msgid "Table Control"
-msgstr "Control de tables"
+msgid "Specifies the amount that a large step scrolls a scrollbar, for example, when you click between the scrollbar thumb and a scrollbar arrow."
+msgstr "Determina'l desplazamientu d'un pasu llargu nuna barra de desplazamientu, por exemplu, al faer clic ente'l control de la barra de desplazamientu y una flecha d'ésta."
-#. sXNiD
+#. 34PS4
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3156402\n"
+"par_idN11D35\n"
"help.text"
-msgid "<image id=\"img_id3146324\" src=\"cmd/sc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146324\">Icon Table Control</alt></image>"
-msgstr ""
+msgid "Delay"
+msgstr "Retrasu"
-#. YNpAD
+#. RAwEx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154579\n"
+"par_idN11D3B\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates a <emph>table control</emph> to display a database table.</ahelp> If you create a new table control, the <link href=\"text/shared/02/01170800.xhp\" name=\"Table Element Wizard\"><emph>Table Element Wizard</emph></link> appears."
-msgstr ""
+msgid "Specifies the delay in milliseconds between scrollbar trigger events. For example, the delay that occurs when you click an arrow button on the scrollbar and hold down the mouse button."
+msgstr "Especifica'l retrasu en milisegundos ente los eventos desencadenadores de la barra de desplazamientu. Por exemplu, el retrasu que se produz al faer cilc nun botón de flecha de la barra de desplazamientu y caltener calcáu'l botón del mur."
-#. n4JKM
+#. 4cEzG
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3154697\n"
+"par_idN11D42\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Special information about Table Controls</link>."
-msgstr "<link href=\"text/shared/02/01170004.xhp\" name=\"Special Information about Table Controls\">Información especial sobre campos de control de tabla</link>."
+msgid "Symbol color"
+msgstr "Color de símbolu"
-#. yJm6y
+#. wrXfx
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B1E\n"
+"par_idN11D48\n"
"help.text"
-msgid "Navigation bar"
-msgstr "Barra de navegación"
+msgid "Specifies the color of the arrows on the scrollbar."
+msgstr "Especifica'l color de les fleches de la barra de desplazamientu."
-#. z63Mz
+#. nqHkR
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B2C\n"
+"par_idN11D4F\n"
"help.text"
-msgid "<image id=\"img_id5074922\" src=\"cmd/sc_navigationbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5074922\">Icon Navigation bar</alt></image>"
-msgstr ""
+msgid "Visible Size"
+msgstr "Tamañu visible"
-#. dmjpG
+#. bGBpN
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11B3D\n"
+"par_idN11D55\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates a <emph>Navigation</emph> bar.</ahelp>"
+msgid "Specifies the size of the scrollbar thumb in \"value units\". For example, a value of <emph>(\"Scroll value max.\" minus \"Scroll value min.\") / 2</emph> results in a scrollbar thumb that occupies half of the scrollbar."
msgstr ""
-#. VUmFZ
+#. kPyUP
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_idN11DB1\n"
+"par_idN11D58\n"
"help.text"
-msgid "The <emph>Navigation</emph> bar allows you to move through the records of a database or a database form. The controls on this <emph>Navigation</emph> bar work the same way as the controls on the default <link href=\"text/shared/main0213.xhp\"><emph>Navigation</emph> bar</link> in $[officename]."
+msgid "To make the width of the scrollbar equal to the height of the scrollbar, set the <emph>Visible Size</emph> to zero."
msgstr ""
-#. R6tBB
-#: 01170000.xhp
-msgctxt ""
-"01170000.xhp\n"
-"hd_id3146815\n"
-"help.text"
-msgid "Automatic Control Focus"
-msgstr "Focu automáticu de control"
-
-#. LWHkL
+#. E82RH
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3150261\n"
+"par_idN11D63\n"
"help.text"
-msgid "<image id=\"img_id3149351\" src=\"cmd/sc_autocontrolfocus.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149351\">Icon</alt></image>"
+msgid "In a Calc spreadsheet, you can use the <emph>Data</emph> tab page to create a two-way link between a scrollbar and a cell."
msgstr ""
-#. iDFFL
+#. DKSBw
#: 01170000.xhp
msgctxt ""
"01170000.xhp\n"
-"par_id3109848\n"
+"hd_id3149436\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoControlFocus\">If <emph>Automatic Control Focus</emph> is activated, the first form control will be selected when you open the document. If the button is not activated, the text will be selected after opening. The <link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Tab Order</link> that you have specified determines which is the first form control.</ahelp>"
-msgstr ""
+msgid "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">Context Menu Commands</link>"
+msgstr "<link href=\"text/shared/02/01170001.xhp\" name=\"Context Menu Commands\">Comandos del menú contestual</link>"
#. EphvU
#: 01170001.xhp
@@ -5514,7 +5496,7 @@ msgctxt ""
"par_id3146898\n"
"help.text"
msgid "Second case: The control belongs to a subform that is created by an SQL query."
-msgstr "Segundu casu: El campu de control pertenez a un subformulario creáu por una consulta SQL."
+msgstr "Segundu casu: el control pertenez a un soformulariu creáu por una consulta SQL."
#. UkdBb
#: 01170102.xhp
@@ -8574,7 +8556,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "Defines the data source on which the form is based, or specifies whether the data can be edited by the user. Apart from the sort and filter functions, you will also find all the necessary properties to create a <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">subform</link>."
-msgstr "Define la fonte de datos na que se basa'l formulariu o especifica si l'usuariu pue editar los datos. Amás de les funciones d'ordenación y filtraje, tamién tán les funciones necesaries pa crear un <link href=\"text/shared/02/01170203.xhp\" name=\"subformulario\">subformulario</link>."
+msgstr "Define la fonte de datos na que se basa'l formulariu o especifica si l'usuariu pue editar los datos. Amás de les funciones d'ordenación y filtraxe, tamién tán les funciones necesaries pa crear un <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">soformulariu</link>."
#. LChMy
#: 01170203.xhp
@@ -9069,7 +9051,7 @@ msgctxt ""
"hd_id3152778\n"
"help.text"
msgid "What is a subform?"
-msgstr "¿Qué ye un subformulario?"
+msgstr "¿Qué ye un soformulariu?"
#. 9cMxG
#: 01170203.xhp
@@ -9096,7 +9078,7 @@ msgctxt ""
"par_id3157972\n"
"help.text"
msgid "A subform is an additional component of the main form. The main form can be called the \"parent form\" or \"master\". Subforms are needed as soon as you want to access more than one table from a form. Each additional table requires its own subform."
-msgstr "Un subformulario ye un componente adicional del formulariu principal. El formulariu principal pue denominase \"formulariu cimeru\" o \"maestru\". Los subformularios faen falta en cuanto deseyar aportar a más d'una tabla d'un formulariu. Cada tabla adicional precisa'l so propiu subformulario."
+msgstr "Un soformulariu ye un componente adicional del formulariu principal. El formulariu principal pue denominase «formulariu cimeru» o «maestru». Los soformularios faen falta en cuanto deseyes aportar a más d'una tabla d'un formulariu. Cada tabla adicional precisa'l so propiu soformulariu."
#. gCDCK
#: 01170203.xhp
@@ -9269,6 +9251,15 @@ msgctxt ""
msgid "Add Field"
msgstr "Amestar un Campu"
+#. EJFFb
+#: 01170400.xhp
+msgctxt ""
+"01170400.xhp\n"
+"bm_id871647297744020\n"
+"help.text"
+msgid "<bookmark_value>database field;add to form</bookmark_value><bookmark_value>forms;add database field</bookmark_value><bookmark_value>database field;add to report</bookmark_value><bookmark_value>report;add database field</bookmark_value>"
+msgstr ""
+
#. AmADg
#: 01170400.xhp
msgctxt ""
@@ -9393,7 +9384,7 @@ msgctxt ""
"par_id3149760\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowFmExplorer\">Opens the <emph>Form Navigator</emph>. The <emph>Form Navigator</emph> displays all forms and subforms of the current document with their respective controls.</ahelp>"
-msgstr "<ahelp hid=\".uno:ShowFmExplorer\">Abre'l diálogu <emph>Navegador de formulariu</emph>. El <emph>Navegador de formulariu</emph> amuesa tolos formularios y subformularios del documentu actual colos sos respectivos campos de control.</ahelp>"
+msgstr "<ahelp hid=\".uno:ShowFmExplorer\">Abre'l diálogu <emph>Navegador de formulariu</emph>. El <emph>Navegador de formulariu</emph> amuesa tolos formularios y soformularios del documentu actual colos sos respectivos controles.</ahelp>"
#. sXR4a
#: 01170600.xhp
@@ -9483,7 +9474,7 @@ msgctxt ""
"par_id3156117\n"
"help.text"
msgid "<ahelp hid=\"SID_FM_NEW_FORM\">Creates a new form in the document. </ahelp> To create a <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">subform</link>, add the new form under the desired parent form."
-msgstr "<ahelp hid=\"SID_FM_NEW_FORM\">Crea un nuevu formulariu nel documentu. </ahelp> Pa crear un <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">subformulario</link>, amieste un formulariu nuevu dientro del formulariu principal."
+msgstr "<ahelp hid=\"SID_FM_NEW_FORM\">Crea un nuevu formulariu nel documentu.</ahelp> Pa crear un <link href=\"text/shared/02/01170203.xhp\" name=\"subform\">soformulariu</link>, amiesta un formulariu nuevu dientro del formulariu principal."
#. QLUJU
#: 01170600.xhp
@@ -10484,14 +10475,14 @@ msgctxt ""
msgid "Display Grid"
msgstr "Amosar cuadrícula"
-#. TqCDo
+#. RQ8je
#: 01171200.xhp
msgctxt ""
"01171200.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "<image id=\"img_id3153049\" src=\"cmd/sc_gridvisible.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3153049\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_gridvisible.png\" id=\"img_id3153049\"><alt id=\"alt_id3153049\">Iconu</alt></image>"
+msgid "<image id=\"img_id3153049\" src=\"cmd/lc_gridvisible.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153049\">Icon Display Grid</alt></image>"
+msgstr ""
#. UKBCB
#: 01171200.xhp
@@ -10529,14 +10520,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specifies whether to move frames, drawing elements, and controls only between grid points.</ahelp>"
msgstr "<ahelp hid=\".\">Especifica si'l desplazamientu de marcos, elementos de dibuxu y campos de control de formulariu tien d'efeutuase namái ente puntos de la cuadrícula.</ahelp>"
-#. SGEDb
+#. m7PAZ
#: 01171300.xhp
msgctxt ""
"01171300.xhp\n"
"par_id3156027\n"
"help.text"
-msgid "<image id=\"img_id3157896\" src=\"cmd/sc_griduse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157896\">Icon</alt></image>"
-msgstr "<image id=\"img_id3157896\" src=\"cmd/sc_griduse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3157896\">Iconu</alt></image>"
+msgid "<image id=\"img_id3157896\" src=\"cmd/lc_griduse.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157896\">Icon Snap to Grid</alt></image>"
+msgstr ""
#. Fb5KQ
#: 01171300.xhp
@@ -10565,13 +10556,13 @@ msgctxt ""
msgid "Helplines While Moving"
msgstr "Guíes al mover"
-#. CLGAJ
+#. KFSbC
#: 01171400.xhp
msgctxt ""
"01171400.xhp\n"
"par_id3149549\n"
"help.text"
-msgid "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149760\">Icon</alt></image>"
+msgid "<image id=\"img_id3149760\" src=\"cmd/sc_helplinesmove.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149760\">Icon Helplines While Moving</alt></image>"
msgstr ""
#. AFaA2
@@ -12984,7 +12975,7 @@ msgctxt ""
"hd_id3156192\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Reafitar"
#. x6Hfw
#: 09070000.xhp
@@ -14075,14 +14066,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:AutoFilter\">Filters the records, based on the content of the currently selected data field.</ahelp>"
msgstr "<ahelp hid=\".uno:AutoFilter\">Peneráu de rexistros, basar nel conteníu del campu de datos escoyíu.</ahelp>"
-#. sbJDk
+#. 74YJk
#: 12030000.xhp
msgctxt ""
"12030000.xhp\n"
"par_id3151234\n"
"help.text"
-msgid "<image id=\"img_id3147261\" src=\"cmd/sc_formfiltered.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147261\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147261\" src=\"cmd/sc_formfiltered.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147261\">Iconu</alt></image>"
+msgid "<image id=\"img_id3147261\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147261\">Icon AutoFilter</alt></image>"
+msgstr ""
#. qhCWv
#: 12030000.xhp
@@ -14201,14 +14192,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:Refresh\">Refreshes the displayed data.</ahelp> In a multi-user environment, refreshing the data ensures that it remains current."
msgstr "<ahelp hid=\".uno:Refresh\">Anova los datos amosaos.</ahelp> Nun entornu multiusuariu, l'anovamientu de los datos garantiza disponer de la información más recién."
-#. sCdzm
+#. FDdEV
#: 12050000.xhp
msgctxt ""
"12050000.xhp\n"
"par_id3147261\n"
"help.text"
-msgid "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153910\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153910\">Iconu</alt></image>"
+msgid "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153910\">Icon Refresh</alt></image>"
+msgstr "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153910\">Iconu Anovar</alt></image>"
#. fovgD
#: 12050000.xhp
@@ -16541,14 +16532,14 @@ msgctxt ""
msgid "Unlike the normal search, which is activated by the <link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\"><emph>Find Record</emph></link> icon on the <emph>Form</emph> bar, you can search more quickly by using the form-based filter. Usually a quick database server is charged with the search. Also, you can enter more complex search conditions."
msgstr ""
-#. LnpgE
+#. kDLDD
#: 12110000.xhp
msgctxt ""
"12110000.xhp\n"
"par_id3153394\n"
"help.text"
-msgid "<image id=\"img_id3147226\" src=\"cmd/sc_formfilter.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147226\">Icon</alt></image>"
-msgstr "<image id=\"img_id3147226\" src=\"cmd/sc_formfilter.png\"><alt id=\"alt_id3147226\">Iconu</alt></image>"
+msgid "<image id=\"img_id3147226\" src=\"cmd/lc_datafilterspecialfilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147226\">Icon Form Filter</alt></image>"
+msgstr ""
#. 5NfGA
#: 12110000.xhp
@@ -16586,13 +16577,13 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormFiltered\" visibility=\"visible\">Switches between the filtered and unfiltered view of the table.</ahelp>"
msgstr "<ahelp hid=\".uno:FormFiltered\" visibility=\"visible\">Conmuta ente la vista de la tabla con o ensin filtru.</ahelp>"
-#. zstf3
+#. WUQE5
#: 12120000.xhp
msgctxt ""
"12120000.xhp\n"
"par_id3149999\n"
"help.text"
-msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3146130\" width=\"38px\" height=\"38px\"><alt id=\"alt_id3146130\">Icon</alt></image>"
+msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3146130\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Form Filter</alt></image>"
msgstr ""
#. yEcEB
@@ -16649,14 +16640,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ViewFormAsGrid\">Activates an additional table view when in the form view.</ahelp> When the <emph>Data source as table</emph> function is activated, you see the table in an area above the form."
msgstr ""
-#. 3C96W
+#. zFZbc
#: 12130000.xhp
msgctxt ""
"12130000.xhp\n"
"par_id3093440\n"
"help.text"
-msgid "<image id=\"img_id3156414\" src=\"cmd/sc_viewformasgrid.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156414\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156414\" src=\"cmd/sc_viewformasgrid.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156414\">Iconu</alt></image>"
+msgid "<image id=\"img_id3156414\" src=\"cmd/lc_viewformasgrid.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156414\">Icon</alt></image>"
+msgstr ""
#. u7TDW
#: 12130000.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/04.po b/source/ast/helpcontent2/source/text/shared/04.po
index 10e3a946303..767c1a04068 100644
--- a/source/ast/helpcontent2/source/text/shared/04.po
+++ b/source/ast/helpcontent2/source/text/shared/04.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-03-19 17:31+0100\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
"PO-Revision-Date: 2020-06-16 20:22+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textshared04/ast/>\n"
@@ -107,13 +107,13 @@ msgctxt ""
msgid "You can enter arbitrary Unicode characters in the document typing the Unicode hexadecimal code point and then pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> (default). Type the Unicode hexadecimal notation and press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> to toggle between the Unicode character and its hexadecimal notation. Selection is not necessary but the conversion will apply to the selected characters. Toggling occurs on the characters prior to the cursor position when these characters form a valid Unicode hexadecimal point. Hexadecimal code points with value in the range U+0000 to U+0020 are not converted."
msgstr ""
-#. u4AsW
+#. PwHVE
#: 01010000.xhp
msgctxt ""
"01010000.xhp\n"
"par_id1001591272531804\n"
"help.text"
-msgid "The default Unicode conversion shortcut is <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> and <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+C</keycode></caseinline><defaultinline><keycode>Alt+C</keycode></defaultinline></switchinline> in some locales where the default Unicode shortcut interferes with the main menu shortcut. To reassign the shortcut, choose <menuitem>Tools > Customize > Keyboard</menuitem> and select <emph>Category:Options</emph> with <emph>Function:Toggle Unicode Notation</emph>."
+msgid "The default Unicode conversion shortcut is <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+X</keycode></caseinline><defaultinline><keycode>Alt+X</keycode></defaultinline></switchinline> and <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+Option+C</keycode></caseinline><defaultinline><keycode>Alt+C</keycode></defaultinline></switchinline> in some locales where the default Unicode shortcut interferes with the main menu shortcut. To reassign the shortcut, choose <menuitem>Tools - Customize - Keyboard</menuitem> and select <emph>Category:Options</emph> with <emph>Function:Toggle Unicode Notation</emph>."
msgstr ""
#. cBDHp
diff --git a/source/ast/helpcontent2/source/text/shared/autopi.po b/source/ast/helpcontent2/source/text/shared/autopi.po
index fc2c9072991..b47f7be060d 100644
--- a/source/ast/helpcontent2/source/text/shared/autopi.po
+++ b/source/ast/helpcontent2/source/text/shared/autopi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: autopi\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-21 10:39+0000\n"
+"PO-Revision-Date: 2022-04-04 09:46+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedautopi/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1524568663.000000\n"
@@ -1635,7 +1635,7 @@ msgctxt ""
"par_idN10600\n"
"help.text"
msgid "Use address database for mail merge"
-msgstr "Use la base de datos de direiciones pa combinar correspondencia"
+msgstr "Usar la base datos de señes pa combinar correspondencia"
#. UZfBc
#: 01020300.xhp
@@ -2940,7 +2940,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "Add subform"
-msgstr "Amestar subformulario"
+msgstr "Amestar un soformulariu"
#. SnVCG
#: 01090200.xhp
@@ -3003,7 +3003,7 @@ msgctxt ""
"par_idN105DF\n"
"help.text"
msgid "<ahelp hid=\".\">Click to add a subform based on a manual selection of fields. </ahelp>"
-msgstr "<ahelp hid=\".\">Faiga clic p'amestar un subformulario basáu nuna seleición manual de campos. </ahelp>"
+msgstr "<ahelp hid=\".\">Calca p'amestar un soformulariu basáu nuna esbilla manual de campos.</ahelp>"
#. BPBmp
#: 01090200.xhp
@@ -3057,7 +3057,7 @@ msgctxt ""
"par_idN1055D\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the table or query for which the subform is to be created.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica la tabla o la consulta pa la que se va a crear el subformulario.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica la tabla o la consulta pa la que se va crear el soformulariu.</ahelp>"
#. TSkRs
#: 01090210.xhp
@@ -3066,7 +3066,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "Fields in my subform"
-msgstr "Campos del subformulario"
+msgstr "Campos nel mio soformulariu"
#. ZgoQx
#: 01090210.xhp
@@ -3075,7 +3075,7 @@ msgctxt ""
"par_idN10594\n"
"help.text"
msgid "<ahelp hid=\".\">Displays all fields that will be included in the new subform.</ahelp>"
-msgstr "<ahelp hid=\".\">Amuesa tolos campos que se van incluyir nel nuevu subformulario.</ahelp>"
+msgstr "<ahelp hid=\".\">Amuesa tolos campos que se van incluyir nel nuevu soformulariu.</ahelp>"
#. nPCEg
#: 01090210.xhp
@@ -3120,7 +3120,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "First joined subform field"
-msgstr "Primer campu de subformulario combináu"
+msgstr "Primer campu de soformulariu combináu"
#. cZFUw
#: 01090220.xhp
@@ -3156,7 +3156,7 @@ msgctxt ""
"par_idN105CE\n"
"help.text"
msgid "Second joined subform field"
-msgstr "Segundu campu de subformulario combináu"
+msgstr "Segundu campu de soformulariu combináu"
#. SLyVM
#: 01090220.xhp
@@ -3192,7 +3192,7 @@ msgctxt ""
"par_idN105DC\n"
"help.text"
msgid "Third joined subform field"
-msgstr "Tercer campu de subformulario combináu"
+msgstr "Tercer campu de soformulariu combináu"
#. HGBBJ
#: 01090220.xhp
@@ -3228,7 +3228,7 @@ msgctxt ""
"par_idN105EA\n"
"help.text"
msgid "Fourth joined subform field"
-msgstr "Cuartu campu de subformulario combináu"
+msgstr "Cuartu campu de soformulariu combináu"
#. PDajP
#: 01090220.xhp
@@ -7512,7 +7512,7 @@ msgctxt ""
"par_id3153910\n"
"help.text"
msgid "<ahelp hid=\".\">This wizard registers an existing address book as a data source in $[officename].</ahelp>"
-msgstr "<ahelp hid=\".\">Esti Asistente rexistra una llibreta de direiciones como orixe de datos en $[officename].</ahelp>"
+msgstr "<ahelp hid=\".\">Esti encontu rexistra una llibreta de señes esistente como fonte de datos en $[officename].</ahelp>"
#. SbPAF
#: 01170000.xhp
@@ -7530,7 +7530,7 @@ msgctxt ""
"hd_id3153527\n"
"help.text"
msgid "Please select the type of your external address book"
-msgstr "Escueya'l tipu de llibreta de direiciones esterna."
+msgstr "Escueyi'l tipu de llibreta de señes esterna."
#. 6XszA
#: 01170000.xhp
@@ -7611,7 +7611,7 @@ msgctxt ""
"par_id4368724\n"
"help.text"
msgid "<ahelp hid=\".\">Select this option if you already use an address book in Evolution.</ahelp>"
-msgstr "<ahelp hid=\".\">Escueya esta opción si en Evolution yá utiliza una llibreta de direiciones.</ahelp>"
+msgstr "<ahelp hid=\".\">Escueya esta opción si en Evolution yá utiliza una llibreta de señes.</ahelp>"
#. qw2A9
#: 01170000.xhp
@@ -7629,7 +7629,7 @@ msgctxt ""
"par_id6269112\n"
"help.text"
msgid "<ahelp hid=\".\">Select this option if you already use an address book in Evolution LDAP.</ahelp>"
-msgstr "<ahelp hid=\".\">Escueya esta opción si en Evolution LDAP yá utiliza una llibreta de direiciones.</ahelp>"
+msgstr "<ahelp hid=\".\">Escueya esta opción si en Evolution LDAP yá utiliza una llibreta de señes.</ahelp>"
#. duPBr
#: 01170000.xhp
@@ -7647,7 +7647,7 @@ msgctxt ""
"par_id5294045\n"
"help.text"
msgid "<ahelp hid=\".\">Select this option if you already use an address book in Groupwise.</ahelp>"
-msgstr "<ahelp hid=\".\">Escueya esta opción si en Groupwise yá utiliza una llibreta de direiciones.</ahelp>"
+msgstr "<ahelp hid=\".\">Escueya esta opción si en Groupwise yá utiliza una llibreta de señes.</ahelp>"
#. HWNER
#: 01170000.xhp
@@ -7665,7 +7665,7 @@ msgctxt ""
"par_id3156192\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/selecttypepage/other\">Select this option if you want to register another data source as address book in $[officename].</ahelp>"
-msgstr "<ahelp hid=\"modules/sabpilot/ui/selecttypepage/other\">Escueya esta opción pa rexistrar otru orixe de datos como llibreta de direiciones en $[officename].</ahelp>"
+msgstr "<ahelp hid=\"modules/sabpilot/ui/selecttypepage/other\">Escueya esta opción pa rexistrar otru orixe de datos como llibreta de señes en $[officename].</ahelp>"
#. 8uMDB
#: 01170000.xhp
@@ -7818,7 +7818,7 @@ msgctxt ""
"par_id3147043\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/selecttablepage/table\">Specifies the table that is to serve as the address book for the $[officename] templates.</ahelp>"
-msgstr "<ahelp hid=\"modules/sabpilot/ui/selecttablepage/table\">Especifica la tabla que va actuar como llibreta de direiciones pa les plantíes de $[officename].</ahelp>"
+msgstr "<ahelp hid=\"modules/sabpilot/ui/selecttablepage/table\">Especifica la tabla que va actuar como llibreta de señes pa les plantíes de $[officename].</ahelp>"
#. zzChA
#: 01170300.xhp
@@ -7854,7 +7854,7 @@ msgctxt ""
"par_id3144740\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies a location for the address book file and a name under which the data source will be listed in the data source explorer.</ahelp>"
-msgstr "<ahelp hid=\".\">Especifica l'allugamientu del ficheru de llibreta de direiciones y el nome col que se va amosar l'orixe de datos nel esplorador d'oríxenes de datos.</ahelp>"
+msgstr "<ahelp hid=\".\">Especifica l'allugamientu del ficheru de llibreta de señes y el nome col que se va amosar l'orixe de datos nel esplorador d'oríxenes de datos.</ahelp>"
#. gSJGW
#: 01170400.xhp
@@ -7899,7 +7899,7 @@ msgctxt ""
"par_idN105C5\n"
"help.text"
msgid "Make this address book available to all modules in %PRODUCTNAME"
-msgstr "Faer qu'esta llibreta de direiciones tea disponible pa tolos módulos de %PRODUCTNAME"
+msgstr "Faer qu'esta llibreta de señes tea disponible pa tolos módulos de %PRODUCTNAME"
#. pFkuF
#: 01170400.xhp
@@ -7971,4 +7971,4 @@ msgctxt ""
"par_id3149549\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/fieldassignpage/assign\">Opens the <link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\">Templates: Address Book Assignment</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\"modules/sabpilot/ui/fieldassignpage/assign\">Abre'l diálogu <link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\">Plantíes: Asignación de llibreta de direiciones</link>.</ahelp>"
+msgstr "<ahelp hid=\"modules/sabpilot/ui/fieldassignpage/assign\">Abre'l diálogu <link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\">Plantíes: Asignación de llibreta de señes</link>.</ahelp>"
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index d3e3368c6fb..cb8983b4f76 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/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: 2022-02-21 15:23+0100\n"
-"PO-Revision-Date: 2022-02-20 06:24+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-04-04 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ast/>\n"
"Language: ast\n"
@@ -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.11.2\n"
"X-POOTLE-MTIME: 1542196271.000000\n"
#. iharT
@@ -673,22 +673,31 @@ msgctxt ""
msgid "<bookmark_value>spreadsheet; auto-redact</bookmark_value> <bookmark_value>presentations; auto-redact</bookmark_value> <bookmark_value>text documents; auto-redact contents</bookmark_value> <bookmark_value>automatic redaction</bookmark_value>"
msgstr ""
-#. dujqZ
+#. ycDxe
#: auto_redact.xhp
msgctxt ""
"auto_redact.xhp\n"
"hd_id171562795247122\n"
"help.text"
-msgid "<variable id=\"autoredact_h1\"><link href=\"text/shared/guide/auto_redact.xhp\" name=\"auto_redact\">Automatic Redaction</link></variable>"
+msgid "<variable id=\"autoredact_h1\"><link href=\"text/shared/guide/auto_redact.xhp\" name=\"auto_redact\">Auto-Redact</link></variable>"
msgstr ""
-#. 5TXro
+#. wiGmP
#: auto_redact.xhp
msgctxt ""
"auto_redact.xhp\n"
"par_id4715627952214572\n"
"help.text"
-msgid "<variable id=\"auto_redact_var\"><ahelp hid=\"sfx/ui/autoredactdialog/\">Use automatic redaction to define words and patterns that are automatically marked for redaction.</ahelp></variable> This makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues."
+msgid "<variable id=\"auto_redact_var\"><ahelp hid=\"sfx/ui/autoredactdialog/\">Use automatic redaction to define words and patterns that are automatically marked for redaction.</ahelp></variable>"
+msgstr ""
+
+#. kCE9E
+#: auto_redact.xhp
+msgctxt ""
+"auto_redact.xhp\n"
+"par_id641647277510873\n"
+"help.text"
+msgid "Automatic redaction makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues."
msgstr ""
#. erJBg
@@ -6656,7 +6665,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Registering an Address Book"
-msgstr "Rexistrar una llibreta de direiciones"
+msgstr "Rexistrar una llibreta de señes"
#. bekqA
#: data_addressbook.xhp
@@ -6674,7 +6683,7 @@ msgctxt ""
"hd_id3154228\n"
"help.text"
msgid "<variable id=\"data_addressbook\"><link href=\"text/shared/guide/data_addressbook.xhp\" name=\"Registering an Address Book\">Registering an Address Book</link></variable>"
-msgstr "<variable id=\"data_addressbook\"><link href=\"text/shared/guide/data_addressbook.xhp\" name=\"Registering an Address Book\">Rexistrar llibreta de direiciones</link></variable>"
+msgstr "<variable id=\"data_addressbook\"><link href=\"text/shared/guide/data_addressbook.xhp\" name=\"Registering an Address Book\">Rexistrar llibreta de señes</link></variable>"
#. 9N6KC
#: data_addressbook.xhp
@@ -6683,7 +6692,7 @@ msgctxt ""
"par_id3154927\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> you can register different data sources. The contents of the data fields are then available to you for use in various fields and controls. Your system address book is such a data source."
-msgstr "En <item type=\"productname\">%PRODUCTNAME</item> pue rexistrar distintes fontes de datos. El conteníu de los campos de datos va tar entós disponible nos diversos campos y controles. La llibreta de direiciones del sistema ye un exemplu de fonte de datos."
+msgstr "En <item type=\"productname\">%PRODUCTNAME</item> pue rexistrar distintes fontes de datos. El conteníu de los campos de datos va tar entós disponible nos diversos campos y controles. La llibreta de señes del sistema ye un exemplu de fonte de datos."
#. EpULm
#: data_addressbook.xhp
@@ -6692,7 +6701,7 @@ msgctxt ""
"par_id3149346\n"
"help.text"
msgid "<item type=\"productname\">%PRODUCTNAME</item> templates and wizards use fields for the contents of the address book. When activated, the general fields in the templates are automatically replaced with the fields from the data source of your address book."
-msgstr "Les plantíes y los asistentes de <item type=\"productname\">%PRODUCTNAME</item> utilicen campos pal conteníu de la llibreta de direiciones. Si ta activáu, los campos xenerales de les plantíes reemplácense automáticamente colos campos del orixe de datos de la llibreta de direiciones."
+msgstr "Les plantíes y los asistentes de <item type=\"productname\">%PRODUCTNAME</item> utilicen campos pal conteníu de la llibreta de señes. Si ta activáu, los campos xenerales de les plantíes reemplácense automáticamente colos campos del orixe de datos de la llibreta de señes."
#. FakeA
#: data_addressbook.xhp
@@ -6701,7 +6710,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "In order for the replacement to take place, you must tell <item type=\"productname\">%PRODUCTNAME</item> which address book you use. The wizard asking for this information appears automatically the first time you activate, for example, a business letter template. You can also call the wizard by following the steps listed below."
-msgstr "Por que la sustitución surta efeutu, indique a <item type=\"productname\">%PRODUCTNAME</item> la llibreta de direiciones que s'utiliza. L'Asistente que solicita esta información apaez de forma automática la primer vegada que s'activa, por exemplu una plantía de carta comercial. L'Asistente tamién pue executase siguiendo los pasos que s'indiquen de siguío."
+msgstr "Por que la sustitución surta efeutu, indique a <item type=\"productname\">%PRODUCTNAME</item> la llibreta de señes que s'utiliza. L'Asistente que solicita esta información apaez de forma automática la primer vegada que s'activa, por exemplu una plantía de carta comercial. L'Asistente tamién pue executase siguiendo los pasos que s'indiquen de siguío."
#. eCPAV
#: data_addressbook.xhp
@@ -6719,7 +6728,7 @@ msgctxt ""
"hd_id3149096\n"
"help.text"
msgid "Address Data Source Wizard"
-msgstr "Asistente pa oríxenes de datos de direiciones"
+msgstr "Asistente pa oríxenes de datos de señes"
#. y7tad
#: data_addressbook.xhp
@@ -6737,7 +6746,7 @@ msgctxt ""
"hd_id3149811\n"
"help.text"
msgid "Registering An Existing Address Book Manually"
-msgstr "Rexistrar manualmente una llibreta de direiciones que yá esiste"
+msgstr "Rexistrar manualmente una llibreta de señes que yá esiste"
#. yL6qE
#: data_addressbook.xhp
@@ -6746,7 +6755,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "Choose <emph>Tools - Address Book Source</emph>. The <link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\"><emph>Templates: Address Book Assignment</emph></link> dialog appears."
-msgstr "Escueya <emph>Ferramientes - Fonte de la llibreta de direiciones</emph>. Apaez el diálogu <link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\"><emph>Plantíes: Designación de llibreta de direiciones</emph></link>."
+msgstr "Escueya <emph>Ferramientes - Fonte de la llibreta de señes</emph>. Apaez el diálogu <link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\"><emph>Plantíes: Designación de llibreta de señes</emph></link>."
#. pvqtk
#: data_addressbook.xhp
@@ -6755,7 +6764,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "In the <emph>Data source</emph> combo box, select the system address book or the data source you want to use as an address book."
-msgstr "Nel cuadru combináu <emph>Fonte de datos</emph>, escueya la llibreta de direiciones del sistema o la fonte de datos que deseye usar como llibreta de direiciones."
+msgstr "Nel cuadru combináu <emph>Fonte de datos</emph>, escueya la llibreta de señes del sistema o la fonte de datos que deseye usar como llibreta de señes."
#. wR3EY
#: data_addressbook.xhp
@@ -6764,7 +6773,7 @@ msgctxt ""
"par_id3149669\n"
"help.text"
msgid "If you have not yet registered the system address book in <item type=\"productname\">%PRODUCTNAME</item> as the data source, click the <emph>Address Data Source ...</emph> button. This takes you to the <emph>Address Book Data Source Wizard</emph>, in which you can register your address book as a new data source in <item type=\"productname\">%PRODUCTNAME</item>."
-msgstr "Si inda nun rexistró la llibreta de direiciones del sistema en <item type=\"productname\">%PRODUCTNAME</item> como orixe de datos, faiga clic nel botón <emph>Orixe de datos de direiciones</emph>. D'esta forma, aportar al <emph>Asistente d'Orixe de datos de llibreta de direiciones</emph>, pa poder rexistrar la llibreta de direiciones como nuevu orixe de datos en <item type=\"productname\">%PRODUCTNAME</item>."
+msgstr "Si inda nun rexistró la llibreta de señes del sistema en <item type=\"productname\">%PRODUCTNAME</item> como orixe de datos, faiga clic nel botón <emph>Orixe de datos de direiciones</emph>. D'esta forma, aportar al <emph>Asistente d'Orixe de datos de llibreta de señes</emph>, pa poder rexistrar la llibreta de señes como nuevu orixe de datos en <item type=\"productname\">%PRODUCTNAME</item>."
#. otNu9
#: data_addressbook.xhp
@@ -6773,7 +6782,7 @@ msgctxt ""
"par_id3154365\n"
"help.text"
msgid "In the <emph>Table</emph> combo box, select the database table you want to use as the address book."
-msgstr "Nel cuadru combináu <emph>Tabla</emph>, escueya la tabla de la base de datos que deseye usar como llibreta de direiciones."
+msgstr "Nel cuadru combináu <emph>Tabla</emph>, escueya la tabla de la base de datos que deseye usar como llibreta de señes."
#. iddcX
#: data_addressbook.xhp
@@ -6782,7 +6791,7 @@ msgctxt ""
"par_id3147084\n"
"help.text"
msgid "Under <emph>Field assignment</emph>, match the fields for first name, company, department, and so on to the actual field names used in your address book."
-msgstr "En <emph>Asignación de campu</emph>, acomuñe los campos de nome, empresa, departamentu, etc., colos nomes de campu utilizaos na so llibreta de direiciones."
+msgstr "En <emph>Asignación de campu</emph>, acomuñe los campos de nome, empresa, departamentu, etc., colos nomes de campu utilizaos na so llibreta de señes."
#. sD63Z
#: data_addressbook.xhp
@@ -6800,7 +6809,7 @@ msgctxt ""
"par_id3149983\n"
"help.text"
msgid "Now your data source is registered in <item type=\"productname\">%PRODUCTNAME</item> as the address book. If you now open a template from the <emph>Business Correspondence</emph> category, <item type=\"productname\">%PRODUCTNAME</item> can automatically insert the correct fields for a form letter."
-msgstr "D'equí p'arriba la fonte de datos queda rexistrada en <item type=\"productname\">%PRODUCTNAME</item> como llibreta de direiciones. Si agora abre una plantía de la categoría <emph>Correspondencia comercial</emph>, <item type=\"productname\">%PRODUCTNAME</item> pue inxertar automáticamente los campos correutos nun formulariu de carta."
+msgstr "D'equí p'arriba la fonte de datos queda rexistrada en <item type=\"productname\">%PRODUCTNAME</item> como llibreta de señes. Si agora abre una plantía de la categoría <emph>Correspondencia comercial</emph>, <item type=\"productname\">%PRODUCTNAME</item> pue inxertar automáticamente los campos correutos nun formulariu de carta."
#. vuAzq
#: data_dbase2office.xhp
@@ -7331,7 +7340,7 @@ msgctxt ""
"par_id8494521\n"
"help.text"
msgid "You can import text files, spreadsheet files, and your system address book in read-only mode only."
-msgstr "Pue importar documentos de testu, documentos de fueyes de cálculu según la llibreta de direiciones en mou de namái llectura."
+msgstr "Pue importar documentos de testu, documentos de fueyes de cálculu según la llibreta de señes en mou de namái llectura."
#. h7bWA
#: data_im_export.xhp
@@ -8971,13 +8980,22 @@ msgctxt ""
msgid "<variable id=\"DevTools_h1\"><link href=\"text/shared/guide/dev_tools.xhp\" name=\"DevTools_help\">Development Tools</link></variable>"
msgstr "<variable id=\"DevTools_h1\"><link href=\"text/shared/guide/dev_tools.xhp\" name=\"DevTools_help\">Ferramientes de desendolcu</link></variable>"
-#. p3pqz
+#. khuRq
#: dev_tools.xhp
msgctxt ""
"dev_tools.xhp\n"
"par_id3155069\n"
"help.text"
-msgid "<variable id=\"DevTools_intro\"><ahelp hid=\".uno:LoadToolBox\">Inspects objects in %PRODUCTNAME documents and shows supported UNO services, as well as available methods, properties and implemented interfaces. This feature also allows to explore the document structure using the Document Object Model (DOM).</ahelp></variable>"
+msgid "<variable id=\"DevTools_intro\"><ahelp hid=\".uno:LoadToolBox\">Inspects objects in %PRODUCTNAME documents and shows supported UNO services, as well as available methods, properties and implemented interfaces.</ahelp></variable>"
+msgstr ""
+
+#. DtSfG
+#: dev_tools.xhp
+msgctxt ""
+"dev_tools.xhp\n"
+"par_id791647281944610\n"
+"help.text"
+msgid "This feature also allows to explore the document structure using the Document Object Model (DOM)."
msgstr ""
#. st97j
@@ -13343,7 +13361,7 @@ msgctxt ""
"par_id598162\n"
"help.text"
msgid "Choose <emph>Group</emph>."
-msgstr "Escueya <emph>Editar - Copiar</emph>."
+msgstr "Escueyi <emph>Agrupar</emph>."
#. XxjEG
#: groups.xhp
@@ -22552,22 +22570,31 @@ msgctxt ""
msgid "<bookmark_value>spreadsheet; redacting contents</bookmark_value> <bookmark_value>presentations; redacting contents</bookmark_value> <bookmark_value>text documents; redacting contents</bookmark_value> <bookmark_value>redaction</bookmark_value>"
msgstr ""
-#. A7KDQ
+#. vYCGW
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"hd_id171562795247717\n"
"help.text"
-msgid "<variable id=\"redaction_h1\"><link href=\"text/shared/guide/redaction.xhp\" name=\"redaction_link\">Redacting Documents</link></variable>"
+msgid "<variable id=\"redaction_h1\"><link href=\"text/shared/guide/redaction.xhp\" name=\"redaction_link\">Redaction</link></variable>"
msgstr ""
-#. AFwWF
+#. 4DfDB
#: redaction.xhp
msgctxt ""
"redaction.xhp\n"
"par_id471562795247717\n"
"help.text"
-msgid "<variable id=\"redaction_desc\"><ahelp hid=\".\">Redacting documents blocks out words or portions of a document for authorized use or viewing.</ahelp></variable> Redaction protects sensitive information and helps enterprises and organizations to comply with regulations on confidentiality or privacy."
+msgid "<variable id=\"redaction_desc\"><ahelp hid=\".\">Redacting documents blocks out words or portions of a document for authorized use or viewing.</ahelp></variable>"
+msgstr ""
+
+#. sB25i
+#: redaction.xhp
+msgctxt ""
+"redaction.xhp\n"
+"par_id291647277725275\n"
+"help.text"
+msgid "Redaction protects sensitive information and helps enterprises and organizations to comply with regulations on confidentiality or privacy."
msgstr ""
#. QdoMp
@@ -24701,7 +24728,7 @@ msgctxt ""
"par_id3147561\n"
"help.text"
msgid "\"{install}\\program\\soffice.com\" {parameter}"
-msgstr ""
+msgstr "\"{install}\\program\\soffice.com\" {parámetru}"
#. FEwgW
#: start_parameters.xhp
@@ -26402,7 +26429,7 @@ msgctxt ""
"par_id711642944419925\n"
"help.text"
msgid "This option appears only if you have set a template as default. Use this command to remove that setting. Use <menuitem>Filter</menuitem> to specify which application template will be reset. Select <menuitem>All Applications</menuitem> in Filter to reset templates for all applications."
-msgstr ""
+msgstr "Esta opción apaez namái si afitasti una plantía como la predeterminada. Utiliza esti comandu pa quitar esa definición. Usa <menuitem>Filtru</menuitem> pa especificar cuál plantía d'aplicación va reafitase. Escueyi <menuitem>Toles aplicaciones</menuitem> en Filtru pa reafitar les plantíes de toles aplicaciones."
#. aNTjV
#: template_manager.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/menu.po b/source/ast/helpcontent2/source/text/shared/menu.po
index db5bbc28e04..e9561efe3db 100644
--- a/source/ast/helpcontent2/source/text/shared/menu.po
+++ b/source/ast/helpcontent2/source/text/shared/menu.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: 2019-11-08 19:34+0100\n"
-"PO-Revision-Date: 2022-01-02 15:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-04-04 09:46+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedmenu/ast/>\n"
"Language: ast\n"
@@ -13,9 +13,27 @@ 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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1464059254.000000\n"
+#. rxCQJ
+#: forms.xhp
+msgctxt ""
+"forms.xhp\n"
+"tit\n"
+"help.text"
+msgid "Forms submenu"
+msgstr "Somenú Formularios"
+
+#. EHLP3
+#: forms.xhp
+msgctxt ""
+"forms.xhp\n"
+"hd_id491647289210348\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/menu/forms.xhp\" name=\"Forms Submenu\">Forms Submenu</link></variable>"
+msgstr "<variable id=\"h1\"><link href=\"text/shared/menu/forms.xhp\" name=\"Forms Submenu\">Somenú Formularios</link></variable>"
+
#. EEMss
#: insert_chart.xhp
msgctxt ""
@@ -131,7 +149,7 @@ msgctxt ""
"par_id030720160629546864\n"
"help.text"
msgid "Basic"
-msgstr ""
+msgstr "Básiques"
#. 8CEvF
#: insert_shape.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index e6c3e19713e..87284580b66 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
-"PO-Revision-Date: 2022-02-21 10:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-03-31 22:25+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ast/>\n"
"Language: ast\n"
@@ -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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1542196273.000000\n"
#. PzSYs
@@ -15667,6 +15667,24 @@ msgctxt ""
msgid "<emph>Calc A1 | Excel A1</emph>"
msgstr ""
+#. oJiom
+#: detailedcalculation.xhp
+msgctxt ""
+"detailedcalculation.xhp\n"
+"hd_id71645215179431\n"
+"help.text"
+msgid "Apply those settings to current document only"
+msgstr "Aplicar estos axustes namái al documentu actual"
+
+#. AKoD6
+#: detailedcalculation.xhp
+msgctxt ""
+"detailedcalculation.xhp\n"
+"par_id111645215251396\n"
+"help.text"
+msgid "Mark this checkbox to apply the settings to the document only."
+msgstr ""
+
#. YBuej
#: detailedcalculation.xhp
msgctxt ""
@@ -15962,7 +15980,7 @@ msgctxt ""
"hd_id0709201508091163\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Reafitar"
#. ok2UB
#: expertconfig.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/02.po b/source/ast/helpcontent2/source/text/simpress/02.po
index 8c4741b7057..5066e212ef2 100644
--- a/source/ast/helpcontent2/source/text/simpress/02.po
+++ b/source/ast/helpcontent2/source/text/simpress/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-20 13:03+0200\n"
-"PO-Revision-Date: 2022-01-02 15:38+0000\n"
+"PO-Revision-Date: 2022-03-13 07:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress02/ast/>\n"
"Language: ast\n"
@@ -743,7 +743,7 @@ msgctxt ""
"hd_id3147264\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030000.xhp\" name=\"Transformations\">Transformations</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030000.xhp\" name=\"Transformations\">Tresformaciones</link>"
#. EpoHs
#: 10030000.xhp
@@ -788,7 +788,7 @@ msgctxt ""
"par_id3154018\n"
"help.text"
msgid "Transformations"
-msgstr ""
+msgstr "Tresformaciones"
#. pfG6c
#: 10030000.xhp
diff --git a/source/ast/helpcontent2/source/text/smath/guide.po b/source/ast/helpcontent2/source/text/smath/guide.po
index 6dae13b50a9..1e4a2184ef8 100644
--- a/source/ast/helpcontent2/source/text/smath/guide.po
+++ b/source/ast/helpcontent2/source/text/smath/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:20+0100\n"
-"PO-Revision-Date: 2022-02-12 19:38+0000\n"
+"PO-Revision-Date: 2022-02-28 12:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsmathguide/ast/>\n"
"Language: ast\n"
@@ -231,7 +231,7 @@ msgctxt ""
"bm_id3156384\n"
"help.text"
msgid "<bookmark_value>Color in formulas</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>color nes fórmules</bookmark_value>"
#. UXL5W
#: color.xhp
@@ -294,7 +294,7 @@ msgctxt ""
"bm_id521641858375937\n"
"help.text"
msgid "<bookmark_value>RGB colors</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>colores RGB</bookmark_value>"
#. beAyt
#: color.xhp
@@ -474,7 +474,7 @@ msgctxt ""
"par_id841641846830036\n"
"help.text"
msgid "Black"
-msgstr ""
+msgstr "Prietu"
#. iGEDP
#: color.xhp
@@ -501,7 +501,7 @@ msgctxt ""
"par_id841641846833014\n"
"help.text"
msgid "Crimson"
-msgstr ""
+msgstr "Carmesín"
#. G6mfq
#: color.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter.po b/source/ast/helpcontent2/source/text/swriter.po
index 8c3cdb98fdd..fa18b565140 100644
--- a/source/ast/helpcontent2/source/text/swriter.po
+++ b/source/ast/helpcontent2/source/text/swriter.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:20+0100\n"
-"PO-Revision-Date: 2022-02-21 10:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:31+0100\n"
+"PO-Revision-Date: 2022-03-31 22:25+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"
"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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1540152129.000000\n"
#. x2qZ6
@@ -1726,13 +1726,13 @@ msgctxt ""
msgid "<link href=\"text/swriter/main0120.xhp\" name=\"Form menu\">Form</link>"
msgstr ""
-#. LQF4M
+#. FK2va
#: main0120.xhp
msgctxt ""
"main0120.xhp\n"
"par_id991529755027118\n"
"help.text"
-msgid "<variable id=\"variable name\"><ahelp hid=\"hid path or command\">Contains commands for activate form design mode, open control wizards and insert form controls in your text document.</ahelp></variable>"
+msgid "<variable id=\"form_intro\"><ahelp hid=\".\">Contains commands for activate form design mode, open control wizards and insert form controls in your document.</ahelp></variable>"
msgstr ""
#. AdXBE
@@ -2895,3 +2895,399 @@ msgctxt ""
"help.text"
msgid "You can use the <link href=\"text/shared/05/00000110.xhp\" name=\"Help system\">Help system</link> as a complete reference for $[officename] applications, including <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">instructions</link> for simple and complex tasks."
msgstr "Pue usar el <link href=\"text/shared/05/00000110.xhp\" name=\"sistema de ayuda\">sistema d'ayuda</link> en llinia ampliada como una referencia completa pa les aplicaciones de $[officename], incluyíes les <link href=\"text/swriter/guide/main.xhp\" name=\"instructions\">instrucciones</link> pa xeres cencielles y complexes."
+
+#. DNbRR
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"tit\n"
+"help.text"
+msgid "Track Changes Toolbar"
+msgstr ""
+
+#. a8US4
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id671647012520594\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/track_changes_toolbar.xhp\" name=\"Track Changes Toolbar\">Track Changes Toolbar</link></variable>"
+msgstr ""
+
+#. 4XWe5
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id471647012520596\n"
+"help.text"
+msgid "Contains the commands that are available for tracking changes in your file."
+msgstr ""
+
+#. iUjGN
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id261647012734234\n"
+"help.text"
+msgid "Choose <menuitem>View - Toolbars - Track Changes</menuitem>."
+msgstr ""
+
+#. T8AaM
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id221647013245370\n"
+"help.text"
+msgid "<image src=\"cmd/lc_showtrackedchanges.svg\" id=\"img_id801647013245371\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821647013245372\">Icon Show track changes</alt></image>"
+msgstr ""
+
+#. eBTMj
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id31647013245373\n"
+"help.text"
+msgid "Show track changes"
+msgstr ""
+
+#. FSoq4
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id791647013362400\n"
+"help.text"
+msgid "<image src=\"cmd/lc_trackchanges.svg\" id=\"img_id921647013362401\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id561647013362402\">Icon Record Changes</alt></image>"
+msgstr ""
+
+#. BxM8k
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id781647013362404\n"
+"help.text"
+msgid "Record Changes"
+msgstr ""
+
+#. R7EFt
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id731647013552967\n"
+"help.text"
+msgid "Previous Track Change"
+msgstr ""
+
+#. nxbjC
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id901647013566069\n"
+"help.text"
+msgid "<image src=\"cmd/lc_previoustrackedchange.svg\" id=\"img_id151647013566070\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id981647013566071\">Icon Previous track change</alt></image>"
+msgstr ""
+
+#. poJng
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id391647013566073\n"
+"help.text"
+msgid "Previous track change"
+msgstr ""
+
+#. v76PF
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id551647013674361\n"
+"help.text"
+msgid "Next Track Change"
+msgstr ""
+
+#. NyWdo
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id231647013679440\n"
+"help.text"
+msgid "<image src=\"cmd/lc_nexttrackedchange.svg\" id=\"img_id1001647013679441\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id971647013679442\">Icon Next track change</alt></image>"
+msgstr ""
+
+#. XE2LH
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id531647013679443\n"
+"help.text"
+msgid "Next track change"
+msgstr ""
+
+#. cniUB
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id421647013795427\n"
+"help.text"
+msgid "Accept Track Change"
+msgstr ""
+
+#. UgReW
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id1001647013785665\n"
+"help.text"
+msgid "<image src=\"cmd/lc_accepttrackedchange.svg\" id=\"img_id491647013785666\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id301647013785667\">Icon Accept Track Change</alt></image>"
+msgstr ""
+
+#. qe8kW
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id971647013785668\n"
+"help.text"
+msgid "Accept Track Change"
+msgstr ""
+
+#. 37qtQ
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id871647013918576\n"
+"help.text"
+msgid "Reject Track Change"
+msgstr ""
+
+#. Dw5dd
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id981647013912301\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rejecttrackedchange.svg\" id=\"img_id931647013912302\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id811647013912303\">Icon Reject Track Change</alt></image>"
+msgstr ""
+
+#. D68WB
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id21647013912304\n"
+"help.text"
+msgid "Reject Track Change"
+msgstr ""
+
+#. DZWAf
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id991647014048136\n"
+"help.text"
+msgid "Accept All Tracked Changes"
+msgstr ""
+
+#. 6FjwL
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id161647014053976\n"
+"help.text"
+msgid "<image src=\"cmd/lc_acceptalltrackedchanges.svg\" id=\"img_id981647014053977\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761647014053978\">Icon Accept All Tracked Changes</alt></image>"
+msgstr ""
+
+#. B8Sna
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id701647014053979\n"
+"help.text"
+msgid "Accept All Tracked Changes"
+msgstr ""
+
+#. CxSzX
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id341647014115494\n"
+"help.text"
+msgid "Reject All Tracked Changes"
+msgstr ""
+
+#. Nh45F
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id891647014121791\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rejectalltrackedchanges.svg\" id=\"img_id141647014121792\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861647014121793\">Icon Reject All Tracked Changes</alt></image>"
+msgstr ""
+
+#. YAGs7
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id451647014121795\n"
+"help.text"
+msgid "Reject All Tracked Changes"
+msgstr ""
+
+#. aEELF
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id901647014258055\n"
+"help.text"
+msgid "Accept Track Change and select next one"
+msgstr ""
+
+#. vCCQp
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id511647014293796\n"
+"help.text"
+msgid "<image src=\"cmd/lc_accepttrackedchangetonext.svg\" id=\"img_id791647014293797\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id611647014293798\">Icon Accept Track Change and select next one</alt></image>"
+msgstr ""
+
+#. 2E2qH
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id851647014293800\n"
+"help.text"
+msgid "Accept Track Change and select next one"
+msgstr ""
+
+#. o2wCB
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"hd_id451647014408416\n"
+"help.text"
+msgid "Reject Track Change and select next one"
+msgstr ""
+
+#. LGqTK
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id971647014413668\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rejecttrackedchangetonext.svg\" id=\"img_id631647014413669\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661647014413670\">Icon Reject Track Change and select next one</alt></image>"
+msgstr ""
+
+#. h9smy
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id361647014413671\n"
+"help.text"
+msgid "Reject Track Change and select next one"
+msgstr ""
+
+#. s3jxf
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id721647014498850\n"
+"help.text"
+msgid "<image src=\"cmd/lc_accepttrackedchanges.svg\" id=\"img_id551647014498851\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381647014498852\">Icon Manage Track Changes</alt></image>"
+msgstr ""
+
+#. nyhMH
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id641647014498854\n"
+"help.text"
+msgid "Manage Track Changes"
+msgstr ""
+
+#. WAoEE
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id111647018300377\n"
+"help.text"
+msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id271647018300378\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61647018300380\">Icon Insert Comment</alt></image>"
+msgstr "<image src=\"cmd/lc_shownote.svg\" id=\"img_id271647018300378\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61647018300380\">Iconu Inxertar un comentariu</alt></image>"
+
+#. JRJZp
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id851647018300382\n"
+"help.text"
+msgid "Insert Comment"
+msgstr "Inxertar un comentariu"
+
+#. KxwHJ
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id411647015103299\n"
+"help.text"
+msgid "<image src=\"cmd/lc_commentchangetracking.svg\" id=\"img_id181647015103300\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381647015103301\">Icon Insert Track Change Comment</alt></image>"
+msgstr ""
+
+#. w43CP
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id611647015103302\n"
+"help.text"
+msgid "Insert Track Change Comment"
+msgstr ""
+
+#. vHtJD
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id481647015406606\n"
+"help.text"
+msgid "<image src=\"cmd/lc_protecttracechangemode.svg\" id=\"img_id591647015406607\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311647015406608\">Icon Protect Changes</alt></image>"
+msgstr ""
+
+#. GrZBC
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id901647015406609\n"
+"help.text"
+msgid "Protect Changes"
+msgstr ""
+
+#. n4z84
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id611647015829636\n"
+"help.text"
+msgid "<image src=\"cmd/lc_comparedocuments.svg\" id=\"img_id31647015829637\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id691647015829638\">Icon Compare Document</alt></image>"
+msgstr ""
+
+#. RxYUx
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id441647015829640\n"
+"help.text"
+msgid "Compare Document"
+msgstr ""
+
+#. RMv9v
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id331647019044607\n"
+"help.text"
+msgid "<image src=\"cmd/lc_mergedocuments.svg\" id=\"img_id271647019044609\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id451647019044610\">Icon Merge Document</alt></image>"
+msgstr ""
+
+#. GPhfh
+#: track_changes_toolbar.xhp
+msgctxt ""
+"track_changes_toolbar.xhp\n"
+"par_id201647019044612\n"
+"help.text"
+msgid "Merge Document"
+msgstr ""
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index d56f96266a0..8c5a171400e 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: 2022-01-31 18:20+0100\n"
-"PO-Revision-Date: 2022-02-10 16:37+0000\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
+"PO-Revision-Date: 2022-04-04 09:45+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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540152130.000000\n"
#. sZfWF
@@ -4516,13 +4516,229 @@ msgctxt ""
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
msgstr "Remata la ringlera actual y mueve'l testu asitiáu a la derecha del cursor a la ringlera siguiente, ensin crear un párrafu nuevu."
-#. K54uB
+#. dG28G
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3149806\n"
+"help.text"
+msgid "The restart location specifies where the next line will start after a line break."
+msgstr ""
+
+#. dAvpm
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id781648827677698\n"
+"help.text"
+msgid "Possible values are below."
+msgstr ""
+
+#. 2VByF
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id251648822718602\n"
+"help.text"
+msgid "Original text layout"
+msgstr ""
+
+#. Y2mYP
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id341648819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_orig.png\" id=\"img_id941648819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id361648819712406\">Original text layout</alt></image>"
+msgstr ""
+
+#. GhVWf
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id191648813862661\n"
+"help.text"
+msgid "Value"
+msgstr ""
+
+#. dmg79
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id251648813862662\n"
+"help.text"
+msgid "Formatting Mark"
+msgstr ""
+
+#. fjDym
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id61648813862663\n"
+"help.text"
+msgid "Meaning"
+msgstr ""
+
+#. GgweD
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id141648813862664\n"
+"help.text"
+msgid "[None]"
+msgstr ""
+
+#. MhD6q
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id71648813862665\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_none.png\" id=\"img_id71648815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815500905\">Line break none</alt></image>"
+msgstr ""
+
+#. C3oyH
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id811648813862667\n"
+"help.text"
+msgid "Continue right after the current line."
+msgstr ""
+
+#. r9gv5
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id346648819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_none.png\" id=\"img_id941148819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id361648819752406\">Sample line break none (default)</alt></image>"
+msgstr ""
+
+#. gmKv3
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id991648813999363\n"
+"help.text"
+msgid "Next Full Line"
+msgstr ""
+
+#. 5jXBF
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id401648813999364\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_full.png\" id=\"img_id71638815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815501905\">Line break full</alt></image>"
+msgstr ""
+
+#. yP6GD
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id871648813999365\n"
+"help.text"
+msgid "Continue at the next full line, that is below all of the anchored objects intersecting with the current line."
+msgstr ""
+
+#. szejD
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id341641819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_full.png\" id=\"img_id341648819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id961648819712406\">Sample line break full</alt></image>"
+msgstr ""
+
+#. M4cmF
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id161648814025099\n"
+"help.text"
+msgid "Left"
+msgstr ""
+
+#. pD6fu
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id731748814025100\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_left.png\" id=\"img_id71647815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815500905\">Line break left</alt></image>"
+msgstr ""
+
+#. jrVKp
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id791648814025101\n"
+"help.text"
+msgid "Continue at the next line which is unblocked on the left hand side."
+msgstr ""
+
+#. ZBxDu
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id351648819712404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_left.png\" id=\"img_id941649819712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id321648819712406\">Original text layout</alt></image>"
+msgstr ""
+
+#. hRhpk
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id271648814369416\n"
+"help.text"
+msgid "Right"
+msgstr ""
+
+#. 2BFuP
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id801648814369418\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_right.png\" id=\"img_id71648815500904\" width=\"25px\" height=\"44px\"><alt id=\"alt_id121648815500905\">Line break right</alt></image>"
+msgstr ""
+
+#. RE7s8
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id671648814369419\n"
+"help.text"
+msgid "Continue at the next line which is unblocked on the right hand side."
+msgstr ""
+
+#. Jd3mG
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id341648819715404\n"
+"help.text"
+msgid "<image src=\"media/helpimg/line_break_sample_right.png\" id=\"img_id94164883712405\" width=\"477px\" height=\"215px\"><alt id=\"alt_id361648819712407\">Original text layout</alt></image>"
+msgstr ""
+
+#. HjTa9
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id961648814424612\n"
+"help.text"
+msgid "The default value for the line break is none."
+msgstr ""
+
+#. L77Xt
#: 04010000.xhp
msgctxt ""
"04010000.xhp\n"
"par_id3149685\n"
"help.text"
-msgid "You can also insert a line break by pressing <keycode>Shift+Enter</keycode>."
+msgid "You can also insert a default line break by pressing <keycode>Shift+Enter</keycode>."
msgstr ""
#. CZccf
@@ -7970,7 +8186,7 @@ msgctxt ""
"hd_id3145595\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Formatu"
#. 2iDAk
#: 04090003.xhp
@@ -10904,7 +11120,7 @@ msgctxt ""
"par_id3148841\n"
"help.text"
msgid "In the<emph> Database selection</emph> box, double-click an address book, click \"First Name\", and then click<emph> Insert</emph>. Repeat for \"Last Name\"."
-msgstr "Nel cuadru <emph>Escoyer base de datos</emph>, calque dos vegaes sobre una llibreta de direiciones, de siguío calque \"Nome\" y dempués <emph>Inxertar</emph>. Faiga lo mesmo con \"Apellíos\"."
+msgstr "Nel cuadru <emph>Escoyer base de datos</emph>, calque dos vegaes sobre una llibreta de señes, de siguío calque \"Nome\" y dempués <emph>Inxertar</emph>. Faiga lo mesmo con \"Apellíos\"."
#. EAvoR
#: 04090200.xhp
@@ -15440,7 +15656,7 @@ msgctxt ""
"hd_id3147405\n"
"help.text"
msgid "<link href=\"text/swriter/01/04990000.xhp\" name=\"Fields\">Field</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04990000.xhp\" name=\"Fields\">Campu</link>"
#. qVhAD
#: 04990000.xhp
@@ -15575,7 +15791,7 @@ msgctxt ""
"hd_id3149804\n"
"help.text"
msgid "Maximum consecutive hyphenated lines"
-msgstr ""
+msgstr "Ringleres guionaes consecutives máximes"
#. Yv4JU
#: 05030200.xhp
@@ -24323,7 +24539,7 @@ msgctxt ""
"hd_id3153147\n"
"help.text"
msgid "List"
-msgstr ""
+msgstr "Llista"
#. Gpytx
#: 05170000.xhp
@@ -28031,7 +28247,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "This document shall contain an address block"
-msgstr "Esti documentu va contener un bloque de direiciones"
+msgstr "Esti documentu va contener un bloque de señes"
#. xPizV
#: mailmerge03.xhp
@@ -28094,7 +28310,7 @@ msgctxt ""
"par_idN1058B\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/swriter/01/mm_seladdblo.xhp\">Select Address Block</link> dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Abre'l diálogu <link href=\"text/swriter/01/mm_seladdblo.xhp\">Escoyer llibreta de direiciones</link>.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre'l diálogu <link href=\"text/swriter/01/mm_seladdblo.xhp\">Escoyer llibreta de señes</link>.</ahelp>"
#. mSbut
#: mailmerge03.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 9fac4564627..06c552d8f66 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: 2022-01-31 18:20+0100\n"
-"PO-Revision-Date: 2022-02-02 12:38+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-31 22:24+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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1542028604.000000\n"
#. XAt2Y
@@ -599,7 +599,7 @@ msgctxt ""
"par_id3145645\n"
"help.text"
msgid "Click <emph>Delete</emph>."
-msgstr "Calque <emph>Desaniciar</emph>."
+msgstr "Calca <emph>Desaniciar</emph>."
#. C6A4D
#: auto_off.xhp
@@ -644,7 +644,7 @@ msgctxt ""
"par_id3155123\n"
"help.text"
msgid "Click the <emph>Options</emph> tab."
-msgstr "Calque la llingüeta <emph>Opciones</emph>."
+msgstr "Calca la llingüeta <emph>Opciones</emph>."
#. v63kw
#: auto_off.xhp
@@ -680,7 +680,7 @@ msgctxt ""
"par_id3155463\n"
"help.text"
msgid "Click the <emph>Options</emph> tab."
-msgstr "Calque la llingüeta <emph>Opciones</emph>."
+msgstr "Calca la llingüeta <emph>Opciones</emph>."
#. vABgs
#: auto_off.xhp
@@ -709,23 +709,23 @@ msgctxt ""
msgid "<bookmark_value>spellcheck;Automatic Spell Checking on/off</bookmark_value> <bookmark_value>automatic spellcheck</bookmark_value> <bookmark_value>checking spelling;while typing</bookmark_value> <bookmark_value>words;disabling spellcheck</bookmark_value>"
msgstr "<bookmark_value>revisión ortográfica;Activar/desactivar la revisión ortográfica automática</bookmark_value> <bookmark_value>revisión ortográfica automática</bookmark_value> <bookmark_value>comprobar ortografía;al escribir</bookmark_value> <bookmark_value>pallabres;desactivar la revisión ortográfica</bookmark_value>"
-#. NED6R
+#. D3Z5v
#: auto_spellcheck.xhp
msgctxt ""
"auto_spellcheck.xhp\n"
"hd_id3154265\n"
"help.text"
-msgid "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\" name=\"Automatically Check Spelling\">Automatically Check Spelling</link></variable>"
-msgstr "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\" name=\"Revisión ortográfica automática\">Revisión ortográfica automática</link></variable>"
+msgid "<variable id=\"auto_spellcheck\"><link href=\"text/swriter/guide/auto_spellcheck.xhp\" name=\"Automatically Check Spelling\">Automatic Check Spelling</link></variable>"
+msgstr ""
-#. S35vF
+#. 2zePN
#: auto_spellcheck.xhp
msgctxt ""
"auto_spellcheck.xhp\n"
"par_id3154664\n"
"help.text"
-msgid "You can have $[officename] automatically check spelling while you type and underline possible misspelt words with a red wavy line."
-msgstr "Si deseyar, $[officename] pue comprobar automáticamente la ortografía mientres escribe y sorrayar les posibles faltes con una llinia colorada ondulada."
+msgid "%PRODUCTNAME can automatically check spelling while you type and underline possible misspelled words with a red wavy line."
+msgstr "%PRODUCTNAME pue comprobar automáticamente la ortografía mientres escribes y sorrayar les posibles faltes con una llinia colorada ondulada."
#. tUdEw
#: auto_spellcheck.xhp
@@ -797,7 +797,7 @@ msgctxt ""
"par_id3147282\n"
"help.text"
msgid "Click the Language control on the Status bar to open a menu."
-msgstr "Calque nel control Llingua na barra d'estáu p'abrir un menú."
+msgstr "Calca'l control Llingua na barra d'estáu p'abrir un menú."
#. RvwCW
#: auto_spellcheck.xhp
@@ -15397,14 +15397,14 @@ msgctxt ""
msgid "To Enable and Disable Smart Tags"
msgstr "P'habilitar y evacuar etiquetes intelixentes"
-#. oLnFX
+#. dFEPA
#: smarttags.xhp
msgctxt ""
"smarttags.xhp\n"
"par_id349131\n"
"help.text"
-msgid "When you have installed at least one Smart Tags extension, you see the <link href=\"text/shared/01/06040700.xhp\">Smart Tags</link> page in <item type=\"menuitem\">Tools - Autocorrect Options</item>. Use this dialog to enable or disable Smart Tags and to manage the installed tags."
-msgstr "Cuando instalasti a lo menos una estensión d'etiquetes intelixentes, pues ver la páxina de <link href=\"text/shared/01/06040700.xhp\">etiquetes intelixentes</link> dientro de <item type=\"menuitem\">Ferramientes - Correición automática</item> opciones. Usa esti diálogu p'activar o desactivar les etiquetes intelixentes pa remanar los tabuladores instalaos."
+msgid "When you have installed at least one Smart Tags extension, you see the <link href=\"text/shared/01/06040700.xhp\">Smart Tags</link> page in <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>. Use this dialog to enable or disable Smart Tags and to manage the installed tags."
+msgstr ""
#. CPCjL
#: smarttags.xhp
@@ -19096,14 +19096,14 @@ msgctxt ""
msgid "<variable id=\"using_thesaurus\"><link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"Thesaurus\">Thesaurus</link></variable>"
msgstr "<variable id=\"using_thesaurus\"><link href=\"text/swriter/guide/using_thesaurus.xhp\" name=\"Diccionariu de sinónimos\">Diccionariu de sinónimos</link></variable>"
-#. PSuH5
+#. FdDJr
#: using_thesaurus.xhp
msgctxt ""
"using_thesaurus.xhp\n"
"par_id3149820\n"
"help.text"
-msgid "You can use the thesaurus to look up synonyms or related terms."
-msgstr "Pue usar el diccionariu de sinónimos pa guetar sinónimos o términos rellacionaos."
+msgid "Use the thesaurus to look up synonyms or related terms."
+msgstr ""
#. ynxEV
#: using_thesaurus.xhp
@@ -19112,7 +19112,7 @@ msgctxt ""
"par_id3155920\n"
"help.text"
msgid "Click in the word that you want to look up or replace."
-msgstr "Faiga clic na pallabra que deseye guetar o remplazar."
+msgstr "Calca na pallabra que quieras guetar o sustituyir."
#. HHEfd
#: using_thesaurus.xhp
@@ -19175,7 +19175,7 @@ msgctxt ""
"par_id3196263\n"
"help.text"
msgid "If a thesaurus library is installed for the language of a word, the context menu of the word shows a Synonyms submenu. Select any of the terms from the submenu to replace the word."
-msgstr "Si ta instalada una biblioteca de sinónimos pal idioma d'una pallabra, el menú contestual de la pallabra va amosar un submenú \"Sinónimos\". Escueya cualesquier de los términos del submenú pa trocar la pallabra."
+msgstr "Si ta instalada una biblioteca de sinónimos pa la llingua d'una pallabra, el menú contestual de la pallabra va amosar un somenú «Sinónimos». Escueyi cualesquier de los términos del somenú pa trocar la pallabra."
#. wEyvj
#: using_thesaurus.xhp
diff --git a/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 626de79de47..b4aadb01cc2 100644
--- a/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2020-03-31 10:35+0200\n"
-"PO-Revision-Date: 2022-02-10 13:16+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-31 22:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/ast/>\n"
"Language: ast\n"
@@ -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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1542022490.000000\n"
#. tBfTE
@@ -2455,15 +2455,6 @@ msgctxt ""
msgid "&Cancel"
msgstr "&Encaboxar"
-#. rvG8Q
-#: Control.ulf
-msgctxt ""
-"Control.ulf\n"
-"OOO_CONTROL_206\n"
-"LngText.text"
-msgid "error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here error text goes here"
-msgstr "el testu d'error va equí el testu d'error va equí el testu d'error va equí el testu d'error va equí el testu d'error va equí el testu d'error va equí el testu d'error va equí el testu d'error va equí el testu d'error va equí el testu d'error va equí"
-
#. D6Bgs
#: Control.ulf
msgctxt ""
@@ -4316,7 +4307,7 @@ msgctxt ""
"OOO_ERROR_126\n"
"LngText.text"
msgid "The description for service '[2]' ([3]) could not be changed."
-msgstr "La descripción del serviciu '[2]' ([3]) nun se pudo camudar."
+msgstr "Nun pudo camudase la descripción del serviciu «[2]» ([3])."
#. BypXi
#: Error.ulf
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index 4dd69f6862a..cb2166fb637 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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-02-20 06:13+0000\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
+"PO-Revision-Date: 2022-03-20 12:44+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: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022492.000000\n"
#. W5ukN
@@ -935,7 +935,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Scaling Factor"
-msgstr "Factor Escala"
+msgstr "Fautor d'escala"
#. pimpB
#: CalcCommands.xcu
@@ -2112,6 +2112,26 @@ msgctxt ""
msgid "F~ourier Analysis..."
msgstr ""
+#. aTBPM
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:InsertSparkline\n"
+"Label\n"
+"value.text"
+msgid "Insert Sparkline..."
+msgstr ""
+
+#. CoZgJ
+#: CalcCommands.xcu
+msgctxt ""
+"CalcCommands.xcu\n"
+"..CalcCommands.UserInterface.Commands..uno:DeleteSparkline\n"
+"Label\n"
+"value.text"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dTXDB
#: CalcCommands.xcu
#, fuzzy
@@ -2143,16 +2163,6 @@ msgctxt ""
msgid "Data ~Validation..."
msgstr ""
-#. xxDxd
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "Desaniciar fileres"
-
#. wZAYL
#: CalcCommands.xcu
msgctxt ""
@@ -2163,16 +2173,6 @@ msgctxt ""
msgid "Insert"
msgstr "Inxertar"
-#. jgGQR
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "Desaniciar columnes"
-
#. 5PPGW
#: CalcCommands.xcu
msgctxt ""
@@ -2303,27 +2303,6 @@ msgctxt ""
msgid "Delete All Comments"
msgstr "Desaniciar tolos comentarios"
-#. PzCtT
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comm~ent"
-msgstr "Com~entariu"
-
-#. HAWW3
-#: CalcCommands.xcu
-#, fuzzy
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:InsertAnnotation\n"
-"PopupLabel\n"
-"value.text"
-msgid "Insert Co~mment"
-msgstr "Inxertar comandu"
-
#. uUwKE
#: CalcCommands.xcu
msgctxt ""
@@ -3235,16 +3214,6 @@ msgctxt ""
msgid "~Show Sheet..."
msgstr "Amo~sar fueyes..."
-#. BARqL
-#: CalcCommands.xcu
-msgctxt ""
-"CalcCommands.xcu\n"
-"..CalcCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Xunir caxelles"
-
#. APBqu
#: CalcCommands.xcu
msgctxt ""
@@ -4661,7 +4630,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste Transposed"
-msgstr ""
+msgstr "Apegar con tresposición"
#. EbDtX
#: CalcCommands.xcu
@@ -4671,7 +4640,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Trans~pose"
-msgstr ""
+msgstr "Tres~poner"
#. JG27R
#: CalcCommands.xcu
@@ -10692,26 +10661,6 @@ msgctxt ""
msgid "Tas~k Pane"
msgstr "Panel de xe~res"
-#. EAawg
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Xunir caxelles"
-
-#. eQphw
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells"
-msgstr "Dixebrar caxelles"
-
#. Bvk8Q
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10845,26 +10794,6 @@ msgctxt ""
msgid "Insert Columns"
msgstr "Inxertar co~lumnes"
-#. momxn
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Row"
-msgstr "Desaniciar filera"
-
-#. YzuWU
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Column"
-msgstr "Desaniciar columna"
-
#. yTCcA
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10975,16 +10904,6 @@ msgctxt ""
msgid "~Table..."
msgstr "~Tabla..."
-#. apmru
-#: DrawImpressCommands.xcu
-msgctxt ""
-"DrawImpressCommands.xcu\n"
-"..DrawImpressCommands.UserInterface.Popups..uno:InsertAnnotation\n"
-"Label\n"
-"value.text"
-msgid "Comme~nt"
-msgstr "Come~ntariu"
-
#. XUrBD
#: DrawImpressCommands.xcu
msgctxt ""
@@ -19840,18 +19759,17 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Insert Comment"
-msgstr ""
+msgstr "Inxertar un comentariu"
#. ikAAA
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertAnnotation\n"
"TooltipLabel\n"
"value.text"
msgid "Insert Comment"
-msgstr "Inxertar comandu"
+msgstr "Inxertar un comentariu"
#. 4UGuX
#: GenericCommands.xcu
@@ -22141,6 +22059,26 @@ msgctxt ""
msgid "~Merge"
msgstr "~Xuncir"
+#. rAjSP
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:MergeCells\n"
+"Label\n"
+"value.text"
+msgid "Merge Cells"
+msgstr ""
+
+#. ktF7K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Commands..uno:SplitCell\n"
+"Label\n"
+"value.text"
+msgid "Split Cells..."
+msgstr ""
+
#. 2gYcx
#: GenericCommands.xcu
msgctxt ""
@@ -25452,7 +25390,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Explorer On/Off"
-msgstr "Amosar/Tapecer Restolador"
+msgstr "Amosar/anubrir el restolador"
#. 6d5bv
#: GenericCommands.xcu
@@ -26676,6 +26614,66 @@ msgctxt ""
msgid "Insert Column"
msgstr ""
+#. LhLtz
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"Label\n"
+"value.text"
+msgid "Delete Columns"
+msgstr ""
+
+#. AG4Qy
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Columns"
+msgstr ""
+
+#. KxsdA
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteColumns\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected columns"
+msgstr ""
+
+#. VL8Wa
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"Label\n"
+"value.text"
+msgid "Delete Rows"
+msgstr ""
+
+#. uAPr9
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"ContextLabel\n"
+"value.text"
+msgid "Delete ~Rows"
+msgstr ""
+
+#. wjm8K
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:DeleteRows\n"
+"TooltipLabel\n"
+"value.text"
+msgid "Delete selected rows"
+msgstr ""
+
#. poXFa
#: GenericCommands.xcu
msgctxt ""
@@ -29383,6 +29381,16 @@ msgctxt ""
msgid "Slide"
msgstr "Diapositiva"
+#. zDinJ
+#: Sidebar.xcu
+msgctxt ""
+"Sidebar.xcu\n"
+"..Sidebar.Content.PanelList.DrawPageDeck\n"
+"Title\n"
+"value.text"
+msgid "Page"
+msgstr ""
+
#. E9FJB
#: Sidebar.xcu
#, fuzzy
@@ -32731,66 +32739,6 @@ msgctxt ""
msgid "Columns ~Before"
msgstr ""
-#. rzDZU
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"Label\n"
-"value.text"
-msgid "Delete Rows"
-msgstr "Desaniciar fileres"
-
-#. DDmHu
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Rows"
-msgstr "~Fileres"
-
-#. mBMTr
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteRows\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected rows"
-msgstr ""
-
-#. WGcRm
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"Label\n"
-"value.text"
-msgid "Delete Columns"
-msgstr "Desaniciar columnes"
-
-#. P6wy9
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"ContextLabel\n"
-"value.text"
-msgid "~Columns"
-msgstr "~Columnes"
-
-#. rhbdp
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:DeleteColumns\n"
-"TooltipLabel\n"
-"value.text"
-msgid "Delete selected columns"
-msgstr ""
-
#. RxF66
#: WriterCommands.xcu
#, fuzzy
@@ -32822,26 +32770,6 @@ msgctxt ""
msgid "Delete table"
msgstr ""
-#. f2Fpk
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:SplitCell\n"
-"Label\n"
-"value.text"
-msgid "Split Cells..."
-msgstr "Dixebrar caxelles..."
-
-#. DqRgD
-#: WriterCommands.xcu
-msgctxt ""
-"WriterCommands.xcu\n"
-"..WriterCommands.UserInterface.Commands..uno:MergeCells\n"
-"Label\n"
-"value.text"
-msgid "Merge Cells"
-msgstr "Xunir caxelles"
-
#. TTVL5
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index b37d88b64b1..cc68de0ec98 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: 2022-02-18 12:18+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-04-04 11:41+0200\n"
+"PO-Revision-Date: 2022-03-31 22:31+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
@@ -561,7 +561,7 @@ msgstr "Inxertar fórmula matriz"
#: sc/inc/globstr.hrc:102
msgctxt "STR_UNDO_INSERTNOTE"
msgid "Insert Comment"
-msgstr "Inxertar comentariu"
+msgstr "Inxertar un comentariu"
#. QvVPq
#: sc/inc/globstr.hrc:103
@@ -3254,6 +3254,18 @@ msgctxt "STR_INDENTCELL"
msgid "Indent: "
msgstr ""
+#. HWAmv
+#: sc/inc/globstr.hrc:542
+msgctxt "STR_UNDO_INSERT_SPARKLINE"
+msgid "Insert Sparkline Group"
+msgstr ""
+
+#. LiBMo
+#: sc/inc/globstr.hrc:543
+msgctxt "STR_UNDO_DELETE_SPARKLINE"
+msgid "Delete Sparkline"
+msgstr ""
+
#. dB8cp
#: sc/inc/pvfundlg.hrc:28
msgctxt "SCSTR_DPFUNCLISTBOX"
@@ -18487,7 +18499,7 @@ msgstr ""
#: sc/inc/strings.hrc:321
msgctxt "STR_LABEL_RESIDUAL"
msgid "Residual"
-msgstr ""
+msgstr "Residuu"
#. 4DANj
#: sc/inc/strings.hrc:322
@@ -19517,7 +19529,7 @@ msgstr "Anubre les fórmules de les caxelles escoyíes."
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:75
msgctxt "cellprotectionpage|checkHideAll"
msgid "Hide _all"
-msgstr "Tapecer _too"
+msgstr "Anubrilo _too"
#. 5v3YW
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:84
@@ -27703,35 +27715,35 @@ msgctxt "pastespecial|PasteSpecial"
msgid "Paste Special"
msgstr "Apegáu especial"
-#. diPtG
+#. 9DVsp
#: sc/uiconfig/scalc/ui/pastespecial.ui:130
msgctxt "pastespecial|paste_values_only|label"
-msgid "_Values Only"
-msgstr ""
+msgid "Values Only"
+msgstr "Namái los valores"
#. XyU8o
#: sc/uiconfig/scalc/ui/pastespecial.ui:134
msgctxt "pastespecial|paste_values_only|tooltip_text"
msgid "Values Only"
-msgstr ""
+msgstr "Namái los valores"
#. 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 ""
+msgstr "Apega númberos, testu, dates y los resultaos de les fórmules."
-#. CTEKF
+#. qDbrz
#: sc/uiconfig/scalc/ui/pastespecial.ui:153
msgctxt "pastespecial|paste_values_formats|label"
-msgid "Values & _Formats"
-msgstr ""
+msgid "Values & Formats"
+msgstr "Valores y formatos"
#. 7GuDi
#: sc/uiconfig/scalc/ui/pastespecial.ui:157
msgctxt "pastespecial|paste_values_formats|tooltip_text"
msgid "Values & Formats"
-msgstr ""
+msgstr "Valores y formatos"
#. FjJPU
#: sc/uiconfig/scalc/ui/pastespecial.ui:164
@@ -27739,17 +27751,17 @@ msgctxt "pastespecial|extended_tip|paste_values_formats"
msgid "Pastes cell values, formula results and formats applied to cells."
msgstr ""
-#. Rb8KR
+#. uCJBB
#: sc/uiconfig/scalc/ui/pastespecial.ui:176
msgctxt "pastespecial|paste_format|label"
-msgid "Formats Onl_y"
-msgstr ""
+msgid "Formats Only"
+msgstr "Namái los formatos"
#. Cvyjn
#: sc/uiconfig/scalc/ui/pastespecial.ui:180
msgctxt "pastespecial|paste_format|tooltip_text"
msgid "Formats Only"
-msgstr ""
+msgstr "Namái los formatos"
#. Jhc4o
#: sc/uiconfig/scalc/ui/pastespecial.ui:187
@@ -27757,17 +27769,17 @@ 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
+#. osqEX
#: sc/uiconfig/scalc/ui/pastespecial.ui:199
msgctxt "pastespecial|paste_transpose|label"
-msgid "_Transpose All"
-msgstr ""
+msgid "Transpose All"
+msgstr "Tresponelo too"
#. sbLGi
#: sc/uiconfig/scalc/ui/pastespecial.ui:203
msgctxt "pastespecial|paste_transpose|tooltip_text"
msgid "Transpose All"
-msgstr ""
+msgstr "Tresponelo too"
#. 3BC6U
#: sc/uiconfig/scalc/ui/pastespecial.ui:210
@@ -27775,10 +27787,10 @@ msgctxt "pastespecial|extended_tip|paste_transpose"
msgid "Pastes cell contents transposed, hence columns are converted to rows."
msgstr ""
-#. 4ETCT
+#. B28BC
#: sc/uiconfig/scalc/ui/pastespecial.ui:229
msgctxt "pastespecial|cbImmediately"
-msgid "_Run immediately"
+msgid "Run immediately"
msgstr ""
#. 7a9JE
@@ -27793,11 +27805,11 @@ msgctxt "pastespecial|frPresets"
msgid "Presets"
msgstr ""
-#. g6DfA
+#. huhPQ
#: sc/uiconfig/scalc/ui/pastespecial.ui:290
msgctxt "pastespecial|paste_all"
-msgid "_All"
-msgstr ""
+msgid "All"
+msgstr "Too"
#. Labin
#: sc/uiconfig/scalc/ui/pastespecial.ui:298
@@ -27805,11 +27817,11 @@ msgctxt "pastespecial|extended_tip|paste_all"
msgid "Pastes all cell contents, comments, formats, and objects into the current document."
msgstr ""
-#. qzFbg
+#. sg69o
#: sc/uiconfig/scalc/ui/pastespecial.ui:309
msgctxt "pastespecial|numbers"
-msgid "_Numbers"
-msgstr "_Númberos"
+msgid "Numbers"
+msgstr "Númberos"
#. SCVEu
#: sc/uiconfig/scalc/ui/pastespecial.ui:317
@@ -27817,11 +27829,10 @@ msgctxt "pastespecial|extended_tip|numbers"
msgid "Inserts cells containing numbers."
msgstr ""
-#. BSEWE
+#. APG3W
#: sc/uiconfig/scalc/ui/pastespecial.ui:328
-#, fuzzy
msgctxt "pastespecial|text"
-msgid "Te_xt"
+msgid "Text"
msgstr "Testu"
#. JWDk5
@@ -27830,11 +27841,11 @@ msgctxt "pastespecial|extended_tip|text"
msgid "Inserts cells containing text."
msgstr ""
-#. DBaJD
+#. HEwjB
#: sc/uiconfig/scalc/ui/pastespecial.ui:347
msgctxt "pastespecial|datetime"
-msgid "_Date & time"
-msgstr "_Data y tiempu"
+msgid "Date & time"
+msgstr "Data y hora"
#. jq6Md
#: sc/uiconfig/scalc/ui/pastespecial.ui:355
@@ -27842,11 +27853,11 @@ msgctxt "pastespecial|extended_tip|datetime"
msgid "Inserts cells containing date and time values."
msgstr ""
-#. aHXF8
+#. HKgB9
#: sc/uiconfig/scalc/ui/pastespecial.ui:366
msgctxt "pastespecial|formats"
-msgid "For_mats"
-msgstr "_Formatos"
+msgid "Formats"
+msgstr "Formatos"
#. ehyEf
#: sc/uiconfig/scalc/ui/pastespecial.ui:374
@@ -27854,11 +27865,11 @@ msgctxt "pastespecial|extended_tip|formats"
msgid "Inserts cell format attributes."
msgstr ""
-#. NT4Am
+#. vAFRC
#: sc/uiconfig/scalc/ui/pastespecial.ui:385
msgctxt "pastespecial|comments"
-msgid "_Comments"
-msgstr "_Comentarios"
+msgid "Comments"
+msgstr "Comentarios"
#. 3uP7i
#: sc/uiconfig/scalc/ui/pastespecial.ui:393
@@ -27866,11 +27877,11 @@ 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
+#. 5n5r7
#: sc/uiconfig/scalc/ui/pastespecial.ui:404
msgctxt "pastespecial|objects"
-msgid "Ob_jects"
-msgstr ""
+msgid "Objects"
+msgstr "Oxetos"
#. DZsnr
#: sc/uiconfig/scalc/ui/pastespecial.ui:412
@@ -27878,11 +27889,11 @@ 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
+#. 2wYuG
#: sc/uiconfig/scalc/ui/pastespecial.ui:423
msgctxt "pastespecial|formulas"
-msgid "F_ormulas"
-msgstr ""
+msgid "Formulas"
+msgstr "Fórmules"
#. Na5Ba
#: sc/uiconfig/scalc/ui/pastespecial.ui:431
@@ -27896,10 +27907,10 @@ msgctxt "pastespecial|label1"
msgid "Paste"
msgstr "Apegar"
-#. fonBJ
+#. SKs5y
#: sc/uiconfig/scalc/ui/pastespecial.ui:477
msgctxt "pastespecial|no_shift"
-msgid "Don't sh_ift"
+msgid "Don't shift"
msgstr ""
#. q3Xv3
@@ -27908,10 +27919,10 @@ msgctxt "pastespecial|extended_tip|no_shift"
msgid "Inserted cells replace the target cells."
msgstr ""
-#. RuiU6
+#. 4hD8A
#: sc/uiconfig/scalc/ui/pastespecial.ui:498
msgctxt "pastespecial|move_down"
-msgid "_Down"
+msgid "Down"
msgstr ""
#. BNALN
@@ -27920,11 +27931,11 @@ msgctxt "pastespecial|extended_tip|move_down"
msgid "Target cells are shifted downward when you insert cells from the clipboard."
msgstr ""
-#. obSAt
+#. Psyof
#: sc/uiconfig/scalc/ui/pastespecial.ui:519
msgctxt "pastespecial|move_right"
-msgid "_Right"
-msgstr "D_recha"
+msgid "Right"
+msgstr ""
#. GEFe7
#: sc/uiconfig/scalc/ui/pastespecial.ui:528
@@ -27938,11 +27949,11 @@ msgctxt "pastespecial|label4"
msgid "Shift Cells"
msgstr ""
-#. nuJd9
+#. JXJTf
#: sc/uiconfig/scalc/ui/pastespecial.ui:588
msgctxt "pastespecial|link"
-msgid "As _Link"
-msgstr ""
+msgid "As Link"
+msgstr "Como enllaz"
#. Bg9dc
#: sc/uiconfig/scalc/ui/pastespecial.ui:596
@@ -27950,11 +27961,11 @@ 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
+#. 7yzbi
#: sc/uiconfig/scalc/ui/pastespecial.ui:607
msgctxt "pastespecial|transpose"
-msgid "Trans_pose"
-msgstr ""
+msgid "Transpose"
+msgstr "Tresponer"
#. P3eE4
#: sc/uiconfig/scalc/ui/pastespecial.ui:615
@@ -27962,10 +27973,10 @@ 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
+#. 3VcAr
#: sc/uiconfig/scalc/ui/pastespecial.ui:626
msgctxt "pastespecial|skip_empty"
-msgid "_Skip empty cells"
+msgid "Skip empty cells"
msgstr ""
#. BodqB
@@ -27986,12 +27997,11 @@ msgctxt "pastespecial|OptionsFrame"
msgid "Options"
msgstr "Opciones"
-#. nJiy4
+#. ekYg5
#: sc/uiconfig/scalc/ui/pastespecial.ui:681
-#, fuzzy
msgctxt "pastespecial|none"
-msgid "Non_e"
-msgstr "Nota"
+msgid "None"
+msgstr ""
#. 7GKDG
#: sc/uiconfig/scalc/ui/pastespecial.ui:690
@@ -27999,11 +28009,11 @@ 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
+#. QhQnq
#: sc/uiconfig/scalc/ui/pastespecial.ui:702
msgctxt "pastespecial|add"
-msgid "_Add"
-msgstr "_Amestar"
+msgid "Add"
+msgstr "Sumar"
#. bNyh2
#: sc/uiconfig/scalc/ui/pastespecial.ui:711
@@ -28011,12 +28021,11 @@ 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
+#. 4SmrC
#: sc/uiconfig/scalc/ui/pastespecial.ui:723
-#, fuzzy
msgctxt "pastespecial|subtract"
-msgid "_Subtract"
-msgstr "~Sustrayer"
+msgid "Subtract"
+msgstr ""
#. 2SKbT
#: sc/uiconfig/scalc/ui/pastespecial.ui:732
@@ -28024,11 +28033,11 @@ msgctxt "pastespecial|extended_tip|subtract"
msgid "Subtracts the values in the clipboard cells from the values in the target cells."
msgstr ""
-#. zdDUB
+#. 4HCRU
#: sc/uiconfig/scalc/ui/pastespecial.ui:744
msgctxt "pastespecial|multiply"
-msgid "_Multiply"
-msgstr ""
+msgid "Multiply"
+msgstr "Multiplicar"
#. jkRDm
#: sc/uiconfig/scalc/ui/pastespecial.ui:753
@@ -28036,11 +28045,11 @@ msgctxt "pastespecial|extended_tip|multiply"
msgid "Multiplies the values in the clipboard cells with the values in the target cells."
msgstr ""
-#. 7Nd8u
+#. 55rBT
#: sc/uiconfig/scalc/ui/pastespecial.ui:765
msgctxt "pastespecial|divide"
-msgid "_Divide"
-msgstr ""
+msgid "Divide"
+msgstr "Dividir"
#. 9VKdS
#: sc/uiconfig/scalc/ui/pastespecial.ui:774
@@ -28050,10 +28059,9 @@ msgstr ""
#. 9otLM
#: sc/uiconfig/scalc/ui/pastespecial.ui:790
-#, fuzzy
msgctxt "pastespecial|label2"
msgid "Operations"
-msgstr "Operaciones:"
+msgstr "Operaciones"
#. ypkML
#: sc/uiconfig/scalc/ui/pastespecial.ui:825
@@ -30814,312 +30822,312 @@ msgid "Optimize result to"
msgstr "Optimizar resultáu a"
#. GCmET
-#: sc/uiconfig/scalc/ui/solverdlg.ui:155
+#: sc/uiconfig/scalc/ui/solverdlg.ui:162
msgctxt "solverdlg|changelabel"
msgid "_By changing cells"
msgstr "Cam_biando les caxelles"
#. mGFbf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:166
+#: sc/uiconfig/scalc/ui/solverdlg.ui:173
msgctxt "solverdlg|min"
msgid "Minim_um"
msgstr "Mínim_u"
#. FFcJ5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:178
+#: sc/uiconfig/scalc/ui/solverdlg.ui:185
msgctxt "solverdlg|extended_tip|min"
msgid "Enter the cell range that can be changed."
msgstr ""
#. gB8JN
-#: sc/uiconfig/scalc/ui/solverdlg.ui:189
+#: sc/uiconfig/scalc/ui/solverdlg.ui:196
msgctxt "solverdlg|max"
msgid "_Maximum"
msgstr "_Máximu"
#. CCUEf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:201
+#: sc/uiconfig/scalc/ui/solverdlg.ui:208
msgctxt "solverdlg|extended_tip|max"
msgid "Enter the cell range that can be changed."
msgstr ""
#. fqxHx
-#: sc/uiconfig/scalc/ui/solverdlg.ui:226
+#: sc/uiconfig/scalc/ui/solverdlg.ui:233
msgctxt "solverdlg|extended_tip|changeedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. qsQDn
-#: sc/uiconfig/scalc/ui/solverdlg.ui:269
+#: sc/uiconfig/scalc/ui/solverdlg.ui:276
msgctxt "solverdlg|extended_tip|targetedit"
msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized."
msgstr ""
#. ze8nv
-#: sc/uiconfig/scalc/ui/solverdlg.ui:305
+#: sc/uiconfig/scalc/ui/solverdlg.ui:312
msgctxt "solverdlg|value"
msgid "_Value of"
msgstr "_Valor de"
#. VyrGQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:317
+#: sc/uiconfig/scalc/ui/solverdlg.ui:324
msgctxt "solverdlg|extended_tip|value"
msgid "Enter the cell range that can be changed."
msgstr ""
#. uzDam
-#: sc/uiconfig/scalc/ui/solverdlg.ui:342
+#: sc/uiconfig/scalc/ui/solverdlg.ui:349
msgctxt "solverdlg|extended_tip|valueedit"
msgid "Enter the cell range that can be changed."
msgstr ""
#. UWsBu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:428
+#: sc/uiconfig/scalc/ui/solverdlg.ui:435
msgctxt "solverdlg|cellreflabel"
msgid "_Cell reference"
msgstr "Referencia de _caxella"
#. Fj7m7
-#: sc/uiconfig/scalc/ui/solverdlg.ui:442
+#: sc/uiconfig/scalc/ui/solverdlg.ui:449
msgctxt "solverdlg|oplabel"
msgid "_Operator"
msgstr "_Operador"
#. qsDhL
-#: sc/uiconfig/scalc/ui/solverdlg.ui:456
+#: sc/uiconfig/scalc/ui/solverdlg.ui:463
msgctxt "solverdlg|constraintlabel"
msgid "V_alue"
msgstr "V_alor"
#. ergok
-#: sc/uiconfig/scalc/ui/solverdlg.ui:476
+#: sc/uiconfig/scalc/ui/solverdlg.ui:483
#, fuzzy
msgctxt "solverdlg|ref1edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de _caxella"
#. EDNPp
-#: sc/uiconfig/scalc/ui/solverdlg.ui:495
+#: sc/uiconfig/scalc/ui/solverdlg.ui:502
#, fuzzy
msgctxt "solverdlg|ref2edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de _caxella"
#. NzCXc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:514
+#: sc/uiconfig/scalc/ui/solverdlg.ui:521
#, fuzzy
msgctxt "solverdlg|ref3edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de _caxella"
#. 5Wrfy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:533
+#: sc/uiconfig/scalc/ui/solverdlg.ui:540
#, fuzzy
msgctxt "solverdlg|ref4edit-atkobject"
msgid "Cell reference"
msgstr "Referencia de _caxella"
#. kugmw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:591
+#: sc/uiconfig/scalc/ui/solverdlg.ui:598
msgctxt "solverdlg|op1list"
msgid "<="
msgstr "<="
#. PJJBP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:592
+#: sc/uiconfig/scalc/ui/solverdlg.ui:599
msgctxt "solverdlg|op1list"
msgid "="
msgstr "="
#. br9qw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:593
+#: sc/uiconfig/scalc/ui/solverdlg.ui:600
msgctxt "solverdlg|op1list"
msgid "=>"
msgstr "=>"
#. zEFNz
-#: sc/uiconfig/scalc/ui/solverdlg.ui:594
+#: sc/uiconfig/scalc/ui/solverdlg.ui:601
msgctxt "solverdlg|op1list"
msgid "Integer"
msgstr "Enteru"
#. u6rX4
-#: sc/uiconfig/scalc/ui/solverdlg.ui:595
+#: sc/uiconfig/scalc/ui/solverdlg.ui:602
msgctxt "solverdlg|op1list"
msgid "Binary"
msgstr "Binariu"
#. BBBzf
-#: sc/uiconfig/scalc/ui/solverdlg.ui:599
+#: sc/uiconfig/scalc/ui/solverdlg.ui:606
msgctxt "solverdlg|op1list-atkobject"
msgid "Operator"
msgstr "Operador"
#. B5xAm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:613
+#: sc/uiconfig/scalc/ui/solverdlg.ui:620
msgctxt "solverdlg|op2list"
msgid "<="
msgstr "<="
#. SkKCD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:614
+#: sc/uiconfig/scalc/ui/solverdlg.ui:621
msgctxt "solverdlg|op2list"
msgid "="
msgstr "="
#. B8JEm
-#: sc/uiconfig/scalc/ui/solverdlg.ui:615
+#: sc/uiconfig/scalc/ui/solverdlg.ui:622
msgctxt "solverdlg|op2list"
msgid "=>"
msgstr "=>"
#. F8mFP
-#: sc/uiconfig/scalc/ui/solverdlg.ui:616
+#: sc/uiconfig/scalc/ui/solverdlg.ui:623
msgctxt "solverdlg|op2list"
msgid "Integer"
msgstr "Enteru"
#. dFF3E
-#: sc/uiconfig/scalc/ui/solverdlg.ui:617
+#: sc/uiconfig/scalc/ui/solverdlg.ui:624
msgctxt "solverdlg|op2list"
msgid "Binary"
msgstr "Binariu"
#. soS8F
-#: sc/uiconfig/scalc/ui/solverdlg.ui:621
+#: sc/uiconfig/scalc/ui/solverdlg.ui:628
msgctxt "solverdlg|op2list-atkobject"
msgid "Operator"
msgstr "Operador"
#. h7Qty
-#: sc/uiconfig/scalc/ui/solverdlg.ui:635
+#: sc/uiconfig/scalc/ui/solverdlg.ui:642
msgctxt "solverdlg|op3list"
msgid "<="
msgstr "<="
#. nNApc
-#: sc/uiconfig/scalc/ui/solverdlg.ui:636
+#: sc/uiconfig/scalc/ui/solverdlg.ui:643
msgctxt "solverdlg|op3list"
msgid "="
msgstr "="
#. n6rxy
-#: sc/uiconfig/scalc/ui/solverdlg.ui:637
+#: sc/uiconfig/scalc/ui/solverdlg.ui:644
msgctxt "solverdlg|op3list"
msgid "=>"
msgstr "=>"
#. CTQdS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:638
+#: sc/uiconfig/scalc/ui/solverdlg.ui:645
msgctxt "solverdlg|op3list"
msgid "Integer"
msgstr "Enteru"
#. 5RTdh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:639
+#: sc/uiconfig/scalc/ui/solverdlg.ui:646
msgctxt "solverdlg|op3list"
msgid "Binary"
msgstr "Binariu"
#. Q2GFE
-#: sc/uiconfig/scalc/ui/solverdlg.ui:643
+#: sc/uiconfig/scalc/ui/solverdlg.ui:650
msgctxt "solverdlg|op3list-atkobject"
msgid "Operator"
msgstr "Operador"
#. GUgdo
-#: sc/uiconfig/scalc/ui/solverdlg.ui:657
+#: sc/uiconfig/scalc/ui/solverdlg.ui:664
msgctxt "solverdlg|op4list"
msgid "<="
msgstr "<="
#. t7LRh
-#: sc/uiconfig/scalc/ui/solverdlg.ui:658
+#: sc/uiconfig/scalc/ui/solverdlg.ui:665
msgctxt "solverdlg|op4list"
msgid "="
msgstr "="
#. ET9ho
-#: sc/uiconfig/scalc/ui/solverdlg.ui:659
+#: sc/uiconfig/scalc/ui/solverdlg.ui:666
msgctxt "solverdlg|op4list"
msgid "=>"
msgstr "=>"
#. mJFHw
-#: sc/uiconfig/scalc/ui/solverdlg.ui:660
+#: sc/uiconfig/scalc/ui/solverdlg.ui:667
msgctxt "solverdlg|op4list"
msgid "Integer"
msgstr "Enteru"
#. CshEu
-#: sc/uiconfig/scalc/ui/solverdlg.ui:661
+#: sc/uiconfig/scalc/ui/solverdlg.ui:668
msgctxt "solverdlg|op4list"
msgid "Binary"
msgstr "Binariu"
#. AvF96
-#: sc/uiconfig/scalc/ui/solverdlg.ui:665
+#: sc/uiconfig/scalc/ui/solverdlg.ui:672
msgctxt "solverdlg|op4list-atkobject"
msgid "Operator"
msgstr "Operador"
#. NGbaD
-#: sc/uiconfig/scalc/ui/solverdlg.ui:685
+#: sc/uiconfig/scalc/ui/solverdlg.ui:692
msgctxt "solverdlg|val1edit-atkobject"
msgid "Value"
msgstr "Valor"
#. y52h9
-#: sc/uiconfig/scalc/ui/solverdlg.ui:705
+#: sc/uiconfig/scalc/ui/solverdlg.ui:712
msgctxt "solverdlg|val2edit-atkobject"
msgid "Value"
msgstr "Valor"
#. 2Bbsq
-#: sc/uiconfig/scalc/ui/solverdlg.ui:725
+#: sc/uiconfig/scalc/ui/solverdlg.ui:732
msgctxt "solverdlg|val3edit-atkobject"
msgid "Value"
msgstr "Valor"
#. smjSQ
-#: sc/uiconfig/scalc/ui/solverdlg.ui:745
+#: sc/uiconfig/scalc/ui/solverdlg.ui:752
msgctxt "solverdlg|val4edit-atkobject"
msgid "Value"
msgstr "Valor"
#. YSBhR
-#: sc/uiconfig/scalc/ui/solverdlg.ui:803
+#: sc/uiconfig/scalc/ui/solverdlg.ui:810
msgctxt "solverdlg|del2|tooltip_text"
msgid "Remove"
msgstr "Desaniciar"
#. 6dsa5
-#: sc/uiconfig/scalc/ui/solverdlg.ui:815
+#: sc/uiconfig/scalc/ui/solverdlg.ui:822
msgctxt "solverdlg|del1|tooltip_text"
msgid "Remove"
msgstr "Desaniciar"
#. JgssS
-#: sc/uiconfig/scalc/ui/solverdlg.ui:827
+#: sc/uiconfig/scalc/ui/solverdlg.ui:834
msgctxt "solverdlg|del3|tooltip_text"
msgid "Remove"
msgstr "Desaniciar"
#. SHTSA
-#: sc/uiconfig/scalc/ui/solverdlg.ui:839
+#: sc/uiconfig/scalc/ui/solverdlg.ui:846
msgctxt "solverdlg|del4|tooltip_text"
msgid "Remove"
msgstr "Desaniciar"
#. 8uHoa
-#: sc/uiconfig/scalc/ui/solverdlg.ui:862
+#: sc/uiconfig/scalc/ui/solverdlg.ui:869
#, fuzzy
msgctxt "solverdlg|label1"
msgid "Limiting Conditions"
msgstr "Condiciones llímites"
#. bXYQB
-#: sc/uiconfig/scalc/ui/solverdlg.ui:895
+#: sc/uiconfig/scalc/ui/solverdlg.ui:899
msgctxt "solverdlg|extended_tip|SolverDialog"
msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods."
msgstr ""
@@ -31228,14 +31236,14 @@ msgid "Sort"
msgstr "Ordenar"
#. BMbZ7
-#: sc/uiconfig/scalc/ui/sortdialog.ui:139
+#: sc/uiconfig/scalc/ui/sortdialog.ui:112
#, fuzzy
msgctxt "sortdialog|criteria"
msgid "Sort Criteria"
msgstr "Criteriu d'ordenación"
#. gMSdg
-#: sc/uiconfig/scalc/ui/sortdialog.ui:186
+#: sc/uiconfig/scalc/ui/sortdialog.ui:135
msgctxt "sortdialog|options"
msgid "Options"
msgstr "Opciones"
@@ -31541,6 +31549,102 @@ msgctxt "sortwarning|sorttip"
msgid "Tip: The sort range can be detected automatically. Place the cell cursor inside a list and execute sort. The whole range of neighboring non-empty cells will then be sorted."
msgstr "Conseyu: El rangu d'ordenación se pue detectar automáticamente. Pon el cursor de caxella nuna llista y executa ordenar. S'ordenará tol rangu de caxelles vecines non baleres."
+#. 5YeNV
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:8
+msgctxt "SparklineDialog"
+msgid "Sparkline Dialog"
+msgstr ""
+
+#. Atj7n
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:161
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Input range:"
+msgstr ""
+
+#. gYQBd
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:178
+msgctxt "SparklineDialog|cell-range-label"
+msgid "Output range:"
+msgstr ""
+
+#. faM2q
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:197
+msgctxt "SparklineDialog|label-data"
+msgid "Data"
+msgstr ""
+
+#. mcBDU
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:231
+msgctxt "SparklineDialog|label-series"
+msgid "Series:"
+msgstr ""
+
+#. N5L8b
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:246
+msgctxt "SparklineDialog|label-negative"
+msgid "Negative Points:"
+msgstr ""
+
+#. y5dsG
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:318
+msgctxt "SparklineDialog|label-low"
+msgid "Low Points:"
+msgstr ""
+
+#. LRGMH
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:390
+msgctxt "SparklineDialog|label-high"
+msgid "High Points:"
+msgstr ""
+
+#. WSgFy
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:426
+msgctxt "SparklineDialog|label-marker"
+msgid "Marker:"
+msgstr ""
+
+#. 6kVrt
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:556
+msgctxt "SparklineDialog|label-first"
+msgid "First Points:"
+msgstr ""
+
+#. tdvGa
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:572
+msgctxt "SparklineDialog|label-last"
+msgid "Last Points:"
+msgstr ""
+
+#. UAFwj
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:588
+msgctxt "SparklineDialog|label-type"
+msgid "Type:"
+msgstr ""
+
+#. gxMQL
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:608
+msgctxt "SparklineDialog|line-radiobutton"
+msgid "Line"
+msgstr ""
+
+#. VPdbn
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:627
+msgctxt "SparklineDialog|column-radiobutton"
+msgid "Column"
+msgstr ""
+
+#. oLsAN
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:646
+msgctxt "SparklineDialog|stacked-radiobutton"
+msgid "Stacked"
+msgstr ""
+
+#. 9uKMb
+#: sc/uiconfig/scalc/ui/sparklinedialog.ui:688
+msgctxt "SparklineDialog|label-properties"
+msgid "Properties"
+msgstr ""
+
#. p9BBw
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:29
msgctxt "splitcolumnentry|name"
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index ba344a32e3f..ee0f017652c 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: 2022-02-21 15:23+0100\n"
-"PO-Revision-Date: 2022-02-11 21:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-31 22:30+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"
@@ -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.11.2\n"
"X-POOTLE-MTIME: 1542022496.000000\n"
#. WDjkB
@@ -2892,7 +2892,7 @@ msgstr "%PRODUCTNAME Draw aportó al entamu del documentu. Quies continuar fasta
#: sd/inc/strings.hrc:445
msgctxt "STR_ANNOTATION_UNDO_INSERT"
msgid "Insert Comment"
-msgstr "Inxertar Comentariu"
+msgstr "Inxertar un comentariu"
#. s4c9W
#: sd/inc/strings.hrc:446
@@ -9261,11 +9261,11 @@ msgctxt "publishingdialog|resolution4Radiobutton"
msgid "Full HD (1_920 × 1080 pixels)"
msgstr ""
-#. GuDqe
+#. CA9F9
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1195
msgctxt "publishingdialog|extended_tip|resolution4Radiobutton"
-msgid "Select a full hd resolution for a very high quality slide display."
-msgstr ""
+msgid "Select a full HD resolution for a very high-quality slide display."
+msgstr "Escueyi una resolución Full HD pa una presentación de diapositives de mui alta calidá."
#. zsvW6
#: sd/uiconfig/simpress/ui/publishingdialog.ui:1211
diff --git a/source/ast/setup_native/source/mac.po b/source/ast/setup_native/source/mac.po
index 3702b86c657..a09d517aac4 100644
--- a/source/ast/setup_native/source/mac.po
+++ b/source/ast/setup_native/source/mac.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-02-24 13:38+0000\n"
-"Last-Translator: Xandru Martino Ruz <xandrumartino@softastur.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/setup_nativesourcemac/ast/>\n"
+"PO-Revision-Date: 2022-02-24 15:40+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/setup_nativesourcemac/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: Weblate 4.8.1\n"
"X-POOTLE-MTIME: 1513029095.000000\n"
#. HQKCW
@@ -140,7 +140,7 @@ msgctxt ""
"StartInstallText1\n"
"LngText.text"
msgid "Click Install to start the installation"
-msgstr "Calque n'Instalar p'aniciar la instalación"
+msgstr "Calca Instalar p'aniciar la instalación"
#. ikAwX
#: macinstall.ulf
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index abb168cc851..8907bf522ac 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-09 16:46+0100\n"
-"PO-Revision-Date: 2022-02-17 14:39+0000\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
+"PO-Revision-Date: 2022-04-04 09:50+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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1540149375.000000\n"
#. bHbFE
@@ -1633,334 +1633,346 @@ msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr ""
+#. BSyb4
+#: include/sfx2/strings.hrc:293
+msgctxt "STR_REFRESH_MASTER_PASSWORD"
+msgid "The master password is stored in an outdated format, you should refresh it"
+msgstr "La contraseña maestra ta atroxada nun formatu vieyu. Anuévala."
+
+#. ysChU
+#: include/sfx2/strings.hrc:294
+msgctxt "STR_REFRESH_PASSWORD"
+msgid "Refresh Password"
+msgstr ""
+
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianu"
#. mrbiq
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderna"
#. CVJEC
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. ZaGGB
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:331
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Desaniciar"
#. JReRY
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:332
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:334
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Llargor de la clave"
#. FKFmJ
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:335
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:337
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:338
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:340
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilícenlu: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:342
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Documentu"
#. XDGTb
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Fueya de cálculu"
#. 3UZXB
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentación"
#. noN5s
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:345
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Dibuxu"
#. QpuFo
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Utilizaos recientemente"
#. EcAjb
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Nun hai caráuteres recién"
#. tfjbD
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:350
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:357
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
@@ -2031,308 +2043,308 @@ msgid "_Yes"
msgstr "_Sí"
#. F5rSU
-#: sfx2/inc/dinfdlg.hrc:27
+#: sfx2/inc/dinfdlg.hrc:29
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Checked by"
msgstr "Verificáu por"
#. BCYGG
-#: sfx2/inc/dinfdlg.hrc:28
+#: sfx2/inc/dinfdlg.hrc:30
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Client"
msgstr "Veceru"
#. nSrT3
-#: sfx2/inc/dinfdlg.hrc:29
+#: sfx2/inc/dinfdlg.hrc:31
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date completed"
msgstr "Data completada"
#. HEaEC
-#: sfx2/inc/dinfdlg.hrc:30
+#: sfx2/inc/dinfdlg.hrc:32
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Department"
msgstr "Departamentu"
#. TxAux
-#: sfx2/inc/dinfdlg.hrc:31
+#: sfx2/inc/dinfdlg.hrc:33
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Destinations"
msgstr "Destinatarios"
#. f3nqh
-#: sfx2/inc/dinfdlg.hrc:32
+#: sfx2/inc/dinfdlg.hrc:34
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Disposition"
msgstr "Disposición"
#. uznMD
-#: sfx2/inc/dinfdlg.hrc:33
+#: sfx2/inc/dinfdlg.hrc:35
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Division"
msgstr "División"
#. 6DuFF
-#: sfx2/inc/dinfdlg.hrc:34
+#: sfx2/inc/dinfdlg.hrc:36
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Document number"
msgstr "Númberu de documentu"
#. XXKuP
-#: sfx2/inc/dinfdlg.hrc:35
+#: sfx2/inc/dinfdlg.hrc:37
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Editor"
msgstr "Editor"
#. hRRmF
-#: sfx2/inc/dinfdlg.hrc:36
+#: sfx2/inc/dinfdlg.hrc:38
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Email"
msgstr "Corréu"
#. xNvDx
-#: sfx2/inc/dinfdlg.hrc:37
+#: sfx2/inc/dinfdlg.hrc:39
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Forward to"
msgstr "Reunviar a"
#. xwv85
-#: sfx2/inc/dinfdlg.hrc:38
+#: sfx2/inc/dinfdlg.hrc:40
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Group"
msgstr "Grupu"
#. u59Qp
-#: sfx2/inc/dinfdlg.hrc:39
+#: sfx2/inc/dinfdlg.hrc:41
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Info"
msgstr "Información"
#. Ltq9H
-#: sfx2/inc/dinfdlg.hrc:40
+#: sfx2/inc/dinfdlg.hrc:42
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Language"
msgstr "Llingua"
#. bv3HC
-#: sfx2/inc/dinfdlg.hrc:41
+#: sfx2/inc/dinfdlg.hrc:43
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Mailstop"
msgstr "Parar corréu"
#. AFGi2
-#: sfx2/inc/dinfdlg.hrc:42
+#: sfx2/inc/dinfdlg.hrc:44
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Matter"
msgstr "Asuntu"
#. wGAD6
-#: sfx2/inc/dinfdlg.hrc:43
+#: sfx2/inc/dinfdlg.hrc:45
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Office"
msgstr "Oficina"
#. ZqphY
-#: sfx2/inc/dinfdlg.hrc:44
+#: sfx2/inc/dinfdlg.hrc:46
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Owner"
msgstr "Propietariu"
#. mK8Th
-#: sfx2/inc/dinfdlg.hrc:45
+#: sfx2/inc/dinfdlg.hrc:47
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Project"
msgstr "Proyeutu"
#. zFeHt
-#: sfx2/inc/dinfdlg.hrc:46
+#: sfx2/inc/dinfdlg.hrc:48
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Publisher"
msgstr "Editor"
#. pF2eJ
-#: sfx2/inc/dinfdlg.hrc:47
+#: sfx2/inc/dinfdlg.hrc:49
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Purpose"
msgstr "Finalidá"
#. GTPFZ
-#: sfx2/inc/dinfdlg.hrc:48
+#: sfx2/inc/dinfdlg.hrc:50
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Received from"
msgstr "Recibío de"
#. dvGyQ
-#: sfx2/inc/dinfdlg.hrc:49
+#: sfx2/inc/dinfdlg.hrc:51
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded by"
msgstr "Grabáu por"
#. GjVXD
-#: sfx2/inc/dinfdlg.hrc:50
+#: sfx2/inc/dinfdlg.hrc:52
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Recorded date"
msgstr "Data de grabación"
#. o5oXa
-#: sfx2/inc/dinfdlg.hrc:51
+#: sfx2/inc/dinfdlg.hrc:53
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Reference"
msgstr "Referencia"
#. ex26g
-#: sfx2/inc/dinfdlg.hrc:52
+#: sfx2/inc/dinfdlg.hrc:54
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Source"
msgstr "Orixe"
#. 4HSZB
-#: sfx2/inc/dinfdlg.hrc:53
+#: sfx2/inc/dinfdlg.hrc:55
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Status"
msgstr "Estáu"
#. U3RdC
-#: sfx2/inc/dinfdlg.hrc:54
+#: sfx2/inc/dinfdlg.hrc:56
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Telephone number"
msgstr "Númberu teléfonu"
#. Geeuu
-#: sfx2/inc/dinfdlg.hrc:55
+#: sfx2/inc/dinfdlg.hrc:57
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Typist"
msgstr "Escritor"
#. xxHtR
-#: sfx2/inc/dinfdlg.hrc:56
+#: sfx2/inc/dinfdlg.hrc:58
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "URL"
msgstr "URL"
#. CxTQY
-#: sfx2/inc/dinfdlg.hrc:71
+#: sfx2/inc/dinfdlg.hrc:73
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Text"
msgstr "Testu"
#. MMGFi
-#: sfx2/inc/dinfdlg.hrc:72
+#: sfx2/inc/dinfdlg.hrc:74
#, fuzzy
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "DateTime"
msgstr "DataHora"
#. GvJMH
-#: sfx2/inc/dinfdlg.hrc:73
+#: sfx2/inc/dinfdlg.hrc:75
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Date"
msgstr "Data"
#. GyrbX
-#: sfx2/inc/dinfdlg.hrc:74
+#: sfx2/inc/dinfdlg.hrc:76
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Duration"
msgstr "Duración"
#. CxZ4Z
-#: sfx2/inc/dinfdlg.hrc:75
+#: sfx2/inc/dinfdlg.hrc:77
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Number"
msgstr "Númberu"
#. CDgvL
-#: sfx2/inc/dinfdlg.hrc:76
+#: sfx2/inc/dinfdlg.hrc:78
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Yes or no"
msgstr "Sí o non"
#. AxhLy
-#: sfx2/inc/doctempl.hrc:27
+#: sfx2/inc/doctempl.hrc:29
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "My Templates"
msgstr "Les mios plantíes"
#. 5aNp8
-#: sfx2/inc/doctempl.hrc:28
+#: sfx2/inc/doctempl.hrc:30
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Styles"
msgstr "Estilos"
#. t5QK9
-#: sfx2/inc/doctempl.hrc:29
+#: sfx2/inc/doctempl.hrc:31
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Business Correspondence"
msgstr "Correspondencia comercial"
#. Y79e8
-#: sfx2/inc/doctempl.hrc:30
+#: sfx2/inc/doctempl.hrc:32
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Other Business Documents"
msgstr "Otros documentos comerciales"
#. 2RCC9
-#: sfx2/inc/doctempl.hrc:31
+#: sfx2/inc/doctempl.hrc:33
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Personal Correspondence and Documents"
msgstr "Correspondencia y documentos personales"
#. 6Dgiz
-#: sfx2/inc/doctempl.hrc:32
+#: sfx2/inc/doctempl.hrc:34
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Forms and Contracts"
msgstr "Formularios y contratos"
#. VCKTG
-#: sfx2/inc/doctempl.hrc:33
+#: sfx2/inc/doctempl.hrc:35
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Finances"
msgstr "Finances"
#. HmqGP
-#: sfx2/inc/doctempl.hrc:34
+#: sfx2/inc/doctempl.hrc:36
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Education"
msgstr "Educación"
#. xopM8
-#: sfx2/inc/doctempl.hrc:35
+#: sfx2/inc/doctempl.hrc:37
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentation Backgrounds"
msgstr "Fondos de presentación"
#. tSQLA
-#: sfx2/inc/doctempl.hrc:36
+#: sfx2/inc/doctempl.hrc:38
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Presentations"
msgstr "Presentaciones"
#. KuNzz
-#: sfx2/inc/doctempl.hrc:37
+#: sfx2/inc/doctempl.hrc:39
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Miscellaneous"
msgstr "Diversos"
#. SC4E5
-#: sfx2/inc/doctempl.hrc:38
+#: sfx2/inc/doctempl.hrc:40
msgctxt "TEMPLATE_LONG_NAMES_ARY"
msgid "Labels"
msgstr "Etiquetes"
diff --git a/source/ast/starmath/messages.po b/source/ast/starmath/messages.po
index d471bd7452a..91715dfee56 100644
--- a/source/ast/starmath/messages.po
+++ b/source/ast/starmath/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:12+0200\n"
-"PO-Revision-Date: 2022-02-13 04:51+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-02-28 13:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/ast/>\n"
"Language: ast\n"
@@ -13,413 +13,413 @@ 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: 1525785908.000000\n"
#. GrDhX
-#: starmath/inc/smmod.hrc:16
+#: starmath/inc/smmod.hrc:18
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Greek"
msgstr "Griegu"
#. bApbv
-#: starmath/inc/smmod.hrc:17
+#: starmath/inc/smmod.hrc:19
msgctxt "RID_UI_SYMBOLSET_NAMES"
msgid "Special"
msgstr "Especial"
#. aXhLc
-#: starmath/inc/smmod.hrc:22
+#: starmath/inc/smmod.hrc:24
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "alpha"
msgstr "alfa"
#. rhVhw
-#: starmath/inc/smmod.hrc:23
+#: starmath/inc/smmod.hrc:25
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ALPHA"
msgstr "ALPHA"
#. U3CqD
-#: starmath/inc/smmod.hrc:24
+#: starmath/inc/smmod.hrc:26
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "beta"
msgstr "beta"
#. pEoCL
-#: starmath/inc/smmod.hrc:25
+#: starmath/inc/smmod.hrc:27
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "BETA"
msgstr "BETA"
#. D2jkQ
-#: starmath/inc/smmod.hrc:26
+#: starmath/inc/smmod.hrc:28
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "gamma"
msgstr "gamma"
#. 4Cw8A
-#: starmath/inc/smmod.hrc:27
+#: starmath/inc/smmod.hrc:29
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "GAMMA"
msgstr "GAMMA"
#. uMmke
-#: starmath/inc/smmod.hrc:28
+#: starmath/inc/smmod.hrc:30
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "delta"
msgstr "delta"
#. dBy8u
-#: starmath/inc/smmod.hrc:29
+#: starmath/inc/smmod.hrc:31
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "DELTA"
msgstr "DELTA"
#. CrJqB
-#: starmath/inc/smmod.hrc:30
+#: starmath/inc/smmod.hrc:32
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "epsilon"
msgstr "epsilon"
#. jSZ7F
-#: starmath/inc/smmod.hrc:31
+#: starmath/inc/smmod.hrc:33
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "EPSILON"
msgstr "EPSILON"
#. kRvNs
-#: starmath/inc/smmod.hrc:32
+#: starmath/inc/smmod.hrc:34
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "zeta"
msgstr "zeta"
#. YA3sh
-#: starmath/inc/smmod.hrc:33
+#: starmath/inc/smmod.hrc:35
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ZETA"
msgstr "ZETA"
#. kEWFU
-#: starmath/inc/smmod.hrc:34
+#: starmath/inc/smmod.hrc:36
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "eta"
msgstr "eta"
#. r8ivE
-#: starmath/inc/smmod.hrc:35
+#: starmath/inc/smmod.hrc:37
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "ETA"
msgstr "ETA"
#. CaW5B
-#: starmath/inc/smmod.hrc:36
+#: starmath/inc/smmod.hrc:38
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "theta"
msgstr "theta"
#. MUaj7
-#: starmath/inc/smmod.hrc:37
+#: starmath/inc/smmod.hrc:39
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "THETA"
msgstr "THETA"
#. FAdCp
-#: starmath/inc/smmod.hrc:38
+#: starmath/inc/smmod.hrc:40
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "iota"
msgstr "iota"
#. 2RFqS
-#: starmath/inc/smmod.hrc:39
+#: starmath/inc/smmod.hrc:41
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "IOTA"
msgstr "IOTA"
#. E6LBi
-#: starmath/inc/smmod.hrc:40
+#: starmath/inc/smmod.hrc:42
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "kappa"
msgstr "kappa"
#. PGGyZ
-#: starmath/inc/smmod.hrc:41
+#: starmath/inc/smmod.hrc:43
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "KAPPA"
msgstr "KAPPA"
#. QhGid
-#: starmath/inc/smmod.hrc:42
+#: starmath/inc/smmod.hrc:44
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "lambda"
msgstr "lambda"
#. JBLgu
-#: starmath/inc/smmod.hrc:43
+#: starmath/inc/smmod.hrc:45
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "LAMBDA"
msgstr "LAMBDA"
#. AkyEU
-#: starmath/inc/smmod.hrc:44
+#: starmath/inc/smmod.hrc:46
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "mu"
msgstr "mu"
#. t4RFD
-#: starmath/inc/smmod.hrc:45
+#: starmath/inc/smmod.hrc:47
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "MU"
msgstr "MU"
#. DwBRA
-#: starmath/inc/smmod.hrc:46
+#: starmath/inc/smmod.hrc:48
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "nu"
msgstr "nu"
#. sDc6Z
-#: starmath/inc/smmod.hrc:47
+#: starmath/inc/smmod.hrc:49
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "NU"
msgstr "NU"
#. dMns2
-#: starmath/inc/smmod.hrc:48
+#: starmath/inc/smmod.hrc:50
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "xi"
msgstr "xi"
#. 2cEVh
-#: starmath/inc/smmod.hrc:49
+#: starmath/inc/smmod.hrc:51
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "XI"
msgstr "XI"
#. PWUDK
-#: starmath/inc/smmod.hrc:50
+#: starmath/inc/smmod.hrc:52
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omicron"
msgstr "omicron"
#. ZvPw7
-#: starmath/inc/smmod.hrc:51
+#: starmath/inc/smmod.hrc:53
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMICRON"
msgstr "OMICRON"
#. VmDhA
-#: starmath/inc/smmod.hrc:52
+#: starmath/inc/smmod.hrc:54
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "pi"
msgstr "pi"
#. A3eoZ
-#: starmath/inc/smmod.hrc:53
+#: starmath/inc/smmod.hrc:55
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PI"
msgstr "PI"
#. Pu9vL
-#: starmath/inc/smmod.hrc:54
+#: starmath/inc/smmod.hrc:56
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "rho"
msgstr "rho"
#. HjNFe
-#: starmath/inc/smmod.hrc:55
+#: starmath/inc/smmod.hrc:57
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "RHO"
msgstr "RHO"
#. 9Aa3V
-#: starmath/inc/smmod.hrc:56
+#: starmath/inc/smmod.hrc:58
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "sigma"
msgstr "sigma"
#. JLWqn
-#: starmath/inc/smmod.hrc:57
+#: starmath/inc/smmod.hrc:59
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "SIGMA"
msgstr "SIGMA"
#. NTuqk
-#: starmath/inc/smmod.hrc:58
+#: starmath/inc/smmod.hrc:60
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tau"
msgstr "tau"
#. GdhQ5
-#: starmath/inc/smmod.hrc:59
+#: starmath/inc/smmod.hrc:61
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "TAU"
msgstr "TAU"
#. 6djSp
-#: starmath/inc/smmod.hrc:60
+#: starmath/inc/smmod.hrc:62
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "upsilon"
msgstr "ipsilon"
#. ymFBb
-#: starmath/inc/smmod.hrc:61
+#: starmath/inc/smmod.hrc:63
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "UPSILON"
msgstr "ÍPSILON"
#. YxRXi
-#: starmath/inc/smmod.hrc:62
+#: starmath/inc/smmod.hrc:64
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "phi"
msgstr "fi"
#. enCD7
-#: starmath/inc/smmod.hrc:63
+#: starmath/inc/smmod.hrc:65
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PHI"
msgstr "FI"
#. GcQPF
-#: starmath/inc/smmod.hrc:64
+#: starmath/inc/smmod.hrc:66
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "chi"
msgstr "chi"
#. 6SBnr
-#: starmath/inc/smmod.hrc:65
+#: starmath/inc/smmod.hrc:67
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "CHI"
msgstr "CHI"
#. NAmaK
-#: starmath/inc/smmod.hrc:66
+#: starmath/inc/smmod.hrc:68
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "psi"
msgstr "psi"
#. GLZ2h
-#: starmath/inc/smmod.hrc:67
+#: starmath/inc/smmod.hrc:69
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "PSI"
msgstr "PSI"
#. JEF5A
-#: starmath/inc/smmod.hrc:68
+#: starmath/inc/smmod.hrc:70
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "omega"
msgstr "omega"
#. 9QKj8
-#: starmath/inc/smmod.hrc:69
+#: starmath/inc/smmod.hrc:71
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "OMEGA"
msgstr "OMEGA"
#. YQGDY
-#: starmath/inc/smmod.hrc:70
+#: starmath/inc/smmod.hrc:72
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varepsilon"
msgstr "varepsilon"
#. VLAFM
-#: starmath/inc/smmod.hrc:71
+#: starmath/inc/smmod.hrc:73
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "vartheta"
msgstr "vartheta"
#. UJB26
-#: starmath/inc/smmod.hrc:72
+#: starmath/inc/smmod.hrc:74
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varpi"
msgstr "varpi"
#. BCNqp
-#: starmath/inc/smmod.hrc:73
+#: starmath/inc/smmod.hrc:75
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varrho"
msgstr "varrho"
#. SUNDb
-#: starmath/inc/smmod.hrc:74
+#: starmath/inc/smmod.hrc:76
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varsigma"
msgstr "varsigma"
#. cHCgN
-#: starmath/inc/smmod.hrc:75
+#: starmath/inc/smmod.hrc:77
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "varphi"
msgstr "varphi"
#. c9n9F
-#: starmath/inc/smmod.hrc:76
+#: starmath/inc/smmod.hrc:78
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "element"
msgstr "elementu"
#. yXYWE
-#: starmath/inc/smmod.hrc:77
+#: starmath/inc/smmod.hrc:79
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "noelement"
msgstr "nonelementu"
#. nDkSp
-#: starmath/inc/smmod.hrc:78
+#: starmath/inc/smmod.hrc:80
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlylessthan"
msgstr "sólomenorque"
#. 9AZxy
-#: starmath/inc/smmod.hrc:79
+#: starmath/inc/smmod.hrc:81
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "strictlygreaterthan"
msgstr "sólomayorque"
#. 4F3qH
-#: starmath/inc/smmod.hrc:80
+#: starmath/inc/smmod.hrc:82
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "notequal"
msgstr "nonigual"
#. 6UYC3
-#: starmath/inc/smmod.hrc:81
+#: starmath/inc/smmod.hrc:83
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "identical"
msgstr "idénticu"
#. 38B2B
-#: starmath/inc/smmod.hrc:82
+#: starmath/inc/smmod.hrc:84
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "tendto"
msgstr "tiendea"
#. kDCC4
-#: starmath/inc/smmod.hrc:83
+#: starmath/inc/smmod.hrc:85
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "infinite"
msgstr "infinitu"
#. CnJUL
-#: starmath/inc/smmod.hrc:84
+#: starmath/inc/smmod.hrc:86
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "angle"
msgstr "ángulu"
#. MVfFZ
-#: starmath/inc/smmod.hrc:85
+#: starmath/inc/smmod.hrc:87
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "perthousand"
msgstr "pormil"
#. tqFYX
-#: starmath/inc/smmod.hrc:86
+#: starmath/inc/smmod.hrc:88
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "and"
msgstr "y"
#. jFASF
-#: starmath/inc/smmod.hrc:87
+#: starmath/inc/smmod.hrc:89
msgctxt "RID_UI_SYMBOL_NAMES"
msgid "or"
msgstr "o"
@@ -1442,7 +1442,7 @@ msgstr "Cambear la fonte"
#: starmath/inc/strings.hrc:190
msgctxt "RID_COLORX_BLACK_HELP"
msgid "Color Black"
-msgstr "Color prieto"
+msgstr "Color prietu"
#. GrXZS
#: starmath/inc/strings.hrc:191
@@ -1540,7 +1540,7 @@ msgstr "Color RGB"
#: starmath/inc/strings.hrc:206
msgctxt "RID_COLORX_RGBA_HELP"
msgid "Color RGBA"
-msgstr ""
+msgstr "Color RGBA"
#. UxFDW
#: starmath/inc/strings.hrc:207
@@ -1558,7 +1558,7 @@ msgstr "Color coral"
#: starmath/inc/strings.hrc:209
msgctxt "RID_COLORX_CRIMSON_HELP"
msgid "Color Crimson"
-msgstr ""
+msgstr "Color carmesín"
#. oDRbR
#: starmath/inc/strings.hrc:210
@@ -2224,43 +2224,43 @@ msgstr ""
#: starmath/inc/strings.hrc:321
msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
msgid "Mass–energy equivalence"
-msgstr ""
+msgstr "Equivalencia masa-enerxía"
#. nwdFs
#: starmath/inc/strings.hrc:322
msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
msgid "Pythagorean theorem"
-msgstr ""
+msgstr "Teorema de Pitágores"
#. b5eq8
#: starmath/inc/strings.hrc:323
msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP"
msgid "Taylor series"
-msgstr ""
+msgstr "Serie de Taylor"
#. MuqjR
#: starmath/inc/strings.hrc:324
msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
msgid "Gauss distribution"
-msgstr ""
+msgstr "Distribución de Gauss"
#. sWaki
#: starmath/inc/strings.hrc:325
msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP"
msgid "Euler-Lagrange equation"
-msgstr ""
+msgstr "Ecuación d'Euler-Lagrange"
#. LnNNA
#: starmath/inc/strings.hrc:326
msgctxt "RID_EXAMPLE_FTC_HELP"
msgid "Fundamental theorem of calculus"
-msgstr ""
+msgstr "Teorema fundamental del cálculu"
#. jF2GD
#: starmath/inc/strings.hrc:327
msgctxt "RID_EXAMPLE_CHAOS_HELP"
msgid "Chaos equation"
-msgstr ""
+msgstr "Ecuación del caos"
#. afEQ8
#: starmath/inc/strings.hrc:328
@@ -2308,7 +2308,7 @@ msgstr "Negrina"
#: starmath/inc/strings.hrc:336
msgctxt "STR_BLACK"
msgid "black"
-msgstr "prieto"
+msgstr "prietu"
#. n4qFR
#: starmath/inc/strings.hrc:337
@@ -2404,7 +2404,7 @@ msgstr "coral"
#: starmath/inc/strings.hrc:352
msgctxt "STR_CRIMSON"
msgid "crimson"
-msgstr ""
+msgstr "carmesín"
#. QGibF
#: starmath/inc/strings.hrc:353
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index dad5ee40a42..c32c4ae4432 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: 2022-01-31 18:20+0100\n"
-"PO-Revision-Date: 2022-02-11 21:39+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-03-15 14:37+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"
@@ -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: 1542195213.000000\n"
#. fLdeV
@@ -1799,115 +1799,115 @@ msgid "_Yes"
msgstr "_Sí"
#. tBGDJ
-#: svtools/inc/borderline.hrc:17
+#: svtools/inc/borderline.hrc:18
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "None"
msgstr ""
#. Xx4Fb
-#: svtools/inc/borderline.hrc:18
+#: svtools/inc/borderline.hrc:19
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Solid"
msgstr ""
#. Paqxg
-#: svtools/inc/borderline.hrc:19
+#: svtools/inc/borderline.hrc:20
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dotted"
msgstr ""
#. Bucas
-#: svtools/inc/borderline.hrc:20
+#: svtools/inc/borderline.hrc:21
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dashed"
msgstr ""
#. 6XEca
-#: svtools/inc/borderline.hrc:21
+#: svtools/inc/borderline.hrc:22
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double"
msgstr ""
#. fB75B
-#: svtools/inc/borderline.hrc:22
+#: svtools/inc/borderline.hrc:23
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Small Gap"
msgstr ""
#. MwnWC
-#: svtools/inc/borderline.hrc:23
+#: svtools/inc/borderline.hrc:24
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Medium Gap"
msgstr ""
#. V2QAy
-#: svtools/inc/borderline.hrc:24
+#: svtools/inc/borderline.hrc:25
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thin Thick, Large Gap"
msgstr ""
#. 4pwSe
-#: svtools/inc/borderline.hrc:25
+#: svtools/inc/borderline.hrc:26
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Small Gap"
msgstr ""
#. PYjTF
-#: svtools/inc/borderline.hrc:26
+#: svtools/inc/borderline.hrc:27
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Medium Gap"
msgstr ""
#. EYXfK
-#: svtools/inc/borderline.hrc:27
+#: svtools/inc/borderline.hrc:28
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Thick Thin, Large Gap"
msgstr ""
#. 7gh6t
-#: svtools/inc/borderline.hrc:28
+#: svtools/inc/borderline.hrc:29
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Embossed"
msgstr ""
#. WK8Yy
-#: svtools/inc/borderline.hrc:29
+#: svtools/inc/borderline.hrc:30
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Engraved"
msgstr ""
#. NDS6G
-#: svtools/inc/borderline.hrc:30
+#: svtools/inc/borderline.hrc:31
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Outset"
msgstr ""
#. 7m7iw
-#: svtools/inc/borderline.hrc:31
+#: svtools/inc/borderline.hrc:32
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Inset"
msgstr ""
#. F9rwV
-#: svtools/inc/borderline.hrc:32
+#: svtools/inc/borderline.hrc:33
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Fine Dashed"
msgstr ""
#. GyT7A
-#: svtools/inc/borderline.hrc:33
+#: svtools/inc/borderline.hrc:34
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Double Thin"
msgstr ""
#. FyVvE
-#: svtools/inc/borderline.hrc:34
+#: svtools/inc/borderline.hrc:35
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot"
msgstr ""
#. 7yoVE
-#: svtools/inc/borderline.hrc:35
+#: svtools/inc/borderline.hrc:36
msgctxt "RID_SVXSTR_BORDERLINE"
msgid "Dash Dot Dot"
msgstr ""
@@ -2563,2473 +2563,2473 @@ msgid "$(ERR) activating object"
msgstr "$(ERR) al activar l'oxetu"
#. jGYA8
-#: svtools/inc/langtab.hrc:28
+#: svtools/inc/langtab.hrc:29
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "[None]"
msgstr "[None]"
#. aUWzb
-#: svtools/inc/langtab.hrc:29
+#: svtools/inc/langtab.hrc:30
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Unknown"
msgstr "Desconocíu"
#. AQgxZ
-#: svtools/inc/langtab.hrc:30 svtools/inc/langtab.hrc:31
+#: svtools/inc/langtab.hrc:31 svtools/inc/langtab.hrc:32
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Default"
msgstr "Predetermináu"
#. hsqmD
-#: svtools/inc/langtab.hrc:32
+#: svtools/inc/langtab.hrc:33
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (South Africa)"
msgstr "Africáans (Suráfrica)"
#. TVGco
-#: svtools/inc/langtab.hrc:33
+#: svtools/inc/langtab.hrc:34
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Albanian"
msgstr "Albanu"
#. unNc6
-#: svtools/inc/langtab.hrc:34
+#: svtools/inc/langtab.hrc:35
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic"
msgstr "Árabe"
#. yStAU
-#: svtools/inc/langtab.hrc:35
+#: svtools/inc/langtab.hrc:36
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Algeria)"
msgstr "Árabe (Arxelia)"
#. 6GPFd
-#: svtools/inc/langtab.hrc:36
+#: svtools/inc/langtab.hrc:37
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Bahrain)"
msgstr "Árabe (Baḥréin)"
#. tvtct
-#: svtools/inc/langtab.hrc:37
+#: svtools/inc/langtab.hrc:38
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Chad)"
msgstr "Árabe (Chad)"
#. sAaq7
-#: svtools/inc/langtab.hrc:38
+#: svtools/inc/langtab.hrc:39
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Comoros)"
msgstr "Árabe (Comores)"
#. CtwpU
-#: svtools/inc/langtab.hrc:39
+#: svtools/inc/langtab.hrc:40
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Djibouti)"
msgstr "Árabe (Xibuti)"
#. XgGyg
-#: svtools/inc/langtab.hrc:40
+#: svtools/inc/langtab.hrc:41
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Egypt)"
msgstr "Árabe (Exiptu)"
#. iwYQR
-#: svtools/inc/langtab.hrc:41
+#: svtools/inc/langtab.hrc:42
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Eritrea)"
msgstr "Árabe (Eritrea)"
#. nKF3r
-#: svtools/inc/langtab.hrc:42
+#: svtools/inc/langtab.hrc:43
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Iraq)"
msgstr "Árabe (Iraq)"
#. JdGNA
-#: svtools/inc/langtab.hrc:43
+#: svtools/inc/langtab.hrc:44
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Israel)"
msgstr "Árabe (Israel)"
#. bVjMH
-#: svtools/inc/langtab.hrc:44
+#: svtools/inc/langtab.hrc:45
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Jordan)"
msgstr "Árabe (Xordania)"
#. 2tQFC
-#: svtools/inc/langtab.hrc:45
+#: svtools/inc/langtab.hrc:46
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Kuwait)"
msgstr "Árabe (Kuwait)"
#. EvECi
-#: svtools/inc/langtab.hrc:46
+#: svtools/inc/langtab.hrc:47
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Lebanon)"
msgstr "Árabe (Líbanu)"
#. AWBGA
-#: svtools/inc/langtab.hrc:47
+#: svtools/inc/langtab.hrc:48
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Libya)"
msgstr "Árabe (Libia)"
#. FBSpG
-#: svtools/inc/langtab.hrc:48
+#: svtools/inc/langtab.hrc:49
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Mauritania)"
msgstr "Árabe (Mauritania)"
#. YmCZY
-#: svtools/inc/langtab.hrc:49
+#: svtools/inc/langtab.hrc:50
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Morocco)"
msgstr "Árabe (Marruecos)"
#. VB6tk
-#: svtools/inc/langtab.hrc:50
+#: svtools/inc/langtab.hrc:51
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Oman)"
msgstr "Árabe (Omán)"
#. ErqSh
-#: svtools/inc/langtab.hrc:51
+#: svtools/inc/langtab.hrc:52
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Palestine)"
msgstr "Árabe (Palestina)"
#. nURdz
-#: svtools/inc/langtab.hrc:52
+#: svtools/inc/langtab.hrc:53
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Qatar)"
msgstr "Árabe (Qatar)"
#. FdyFU
-#: svtools/inc/langtab.hrc:53
+#: svtools/inc/langtab.hrc:54
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Saudi Arabia)"
msgstr "Árabe (Arabia Saudina)"
#. x8UtA
-#: svtools/inc/langtab.hrc:54
+#: svtools/inc/langtab.hrc:55
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Somalia)"
msgstr "Árabe (Somalia)"
#. y9ptg
-#: svtools/inc/langtab.hrc:55
+#: svtools/inc/langtab.hrc:56
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Sudan)"
msgstr "Árabe (Sudán)"
#. caDrq
-#: svtools/inc/langtab.hrc:56
+#: svtools/inc/langtab.hrc:57
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Syria)"
msgstr "Árabe (Siria)"
#. TqKZQ
-#: svtools/inc/langtab.hrc:57
+#: svtools/inc/langtab.hrc:58
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Tunisia)"
msgstr "Árabe (Tunicia)"
#. VfYi2
-#: svtools/inc/langtab.hrc:58
+#: svtools/inc/langtab.hrc:59
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (UAE)"
msgstr "Árabe (EAX)"
#. f7D5o
-#: svtools/inc/langtab.hrc:59
+#: svtools/inc/langtab.hrc:60
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Yemen)"
msgstr "Árabe (Yeme)"
#. vDhQJ
-#: svtools/inc/langtab.hrc:60
+#: svtools/inc/langtab.hrc:61
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aragonese"
msgstr "Aragonés"
#. yE4TR
-#: svtools/inc/langtab.hrc:61
+#: svtools/inc/langtab.hrc:62
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Armenia)"
msgstr ""
#. bacGJ
-#: svtools/inc/langtab.hrc:62
+#: svtools/inc/langtab.hrc:63
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Assamese"
msgstr "Asamés"
#. xAg9Q
-#: svtools/inc/langtab.hrc:63
+#: svtools/inc/langtab.hrc:64
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Latin"
msgstr "Azerbaixanu llatín"
#. juADB
-#: svtools/inc/langtab.hrc:64
+#: svtools/inc/langtab.hrc:65
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Azerbaijani Cyrillic"
msgstr "Azerbaixanu cirílicu"
#. C3C7G
-#: svtools/inc/langtab.hrc:65
+#: svtools/inc/langtab.hrc:66
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Basque"
msgstr "Vascu"
#. dJPsj
-#: svtools/inc/langtab.hrc:66
+#: svtools/inc/langtab.hrc:67
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (India)"
msgstr "Bengalín (India)"
#. K6cbb
-#: svtools/inc/langtab.hrc:67
+#: svtools/inc/langtab.hrc:68
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bulgarian"
msgstr "Búlgaru"
#. sBBmA
-#: svtools/inc/langtab.hrc:68
+#: svtools/inc/langtab.hrc:69
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Belarusian"
msgstr "Bielorrusu"
#. 3SEoJ
-#: svtools/inc/langtab.hrc:69
+#: svtools/inc/langtab.hrc:70
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan"
msgstr "Catalán"
#. PoUeZ
-#: svtools/inc/langtab.hrc:70
+#: svtools/inc/langtab.hrc:71
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Catalan (Valencian)"
msgstr "Catalán (Valencia)"
#. ErGw2
-#: svtools/inc/langtab.hrc:71
+#: svtools/inc/langtab.hrc:72
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (traditional)"
msgstr "Chinu (tradicional)"
#. Gbige
-#: svtools/inc/langtab.hrc:72
+#: svtools/inc/langtab.hrc:73
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (simplified)"
msgstr "Chinu (simplificáu)"
#. WzgGw
-#: svtools/inc/langtab.hrc:73
+#: svtools/inc/langtab.hrc:74
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Hong Kong)"
msgstr "Chinu (Ḥong Kong)"
#. Kfrv5
-#: svtools/inc/langtab.hrc:74
+#: svtools/inc/langtab.hrc:75
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Singapore)"
msgstr "Chinu (Singapur)"
#. BSHqu
-#: svtools/inc/langtab.hrc:75
+#: svtools/inc/langtab.hrc:76
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chinese (Macau)"
msgstr "Chinu (Macáu)"
#. FMwd9
-#: svtools/inc/langtab.hrc:76
+#: svtools/inc/langtab.hrc:77
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Church Slavic"
msgstr "Eslavu eclesiásticu"
#. cAkoV
-#: svtools/inc/langtab.hrc:77
+#: svtools/inc/langtab.hrc:78
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Croatian"
msgstr "Croata"
#. DjdDj
-#: svtools/inc/langtab.hrc:78
+#: svtools/inc/langtab.hrc:79
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Czech"
msgstr "Checu"
#. xnGM2
-#: svtools/inc/langtab.hrc:79
+#: svtools/inc/langtab.hrc:80
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Danish"
msgstr "Danés"
#. yMGyj
-#: svtools/inc/langtab.hrc:80
+#: svtools/inc/langtab.hrc:81
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Netherlands)"
msgstr "Holandés (Holanda)"
#. qgJE9
-#: svtools/inc/langtab.hrc:81
+#: svtools/inc/langtab.hrc:82
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dutch (Belgium)"
msgstr "Holandés (Bélxica)"
#. STsDT
-#: svtools/inc/langtab.hrc:82
+#: svtools/inc/langtab.hrc:83
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (USA)"
msgstr "Inglés (EE.XX.)"
#. aCBBC
-#: svtools/inc/langtab.hrc:83
+#: svtools/inc/langtab.hrc:84
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (UK)"
msgstr "Inglés (Reinu Xuníu)"
#. 46Cte
-#: svtools/inc/langtab.hrc:84
+#: svtools/inc/langtab.hrc:85
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English, OED spelling (UK)"
msgstr "Inglés, ortografía del OED (Reinu Xuníu)"
#. XCJAF
-#: svtools/inc/langtab.hrc:85
+#: svtools/inc/langtab.hrc:86
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Australia)"
msgstr "Inglés (Australia)"
#. KPGdA
-#: svtools/inc/langtab.hrc:86
+#: svtools/inc/langtab.hrc:87
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Canada)"
msgstr "Inglés (Canadá)"
#. vGWET
-#: svtools/inc/langtab.hrc:87
+#: svtools/inc/langtab.hrc:88
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (New Zealand)"
msgstr "Inglés (Nueva Zelanda)"
#. JpNB4
-#: svtools/inc/langtab.hrc:88
+#: svtools/inc/langtab.hrc:89
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ireland)"
msgstr "Inglés (Irlanda)"
#. RYtwA
-#: svtools/inc/langtab.hrc:89
+#: svtools/inc/langtab.hrc:90
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (South Africa)"
msgstr "Inglés (Sudáfrica)"
#. fEWbR
-#: svtools/inc/langtab.hrc:90
+#: svtools/inc/langtab.hrc:91
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Jamaica)"
msgstr "Inglés (Xamaica)"
#. 4tDmL
-#: svtools/inc/langtab.hrc:91
+#: svtools/inc/langtab.hrc:92
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Caribbean)"
msgstr "Inglés (Caribe)"
#. craLz
-#: svtools/inc/langtab.hrc:92
+#: svtools/inc/langtab.hrc:93
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Belize)"
msgstr "Inglés (Belice)"
#. oAnX9
-#: svtools/inc/langtab.hrc:93
+#: svtools/inc/langtab.hrc:94
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Trinidad)"
msgstr "Inglés (Trinidá)"
#. DbBaG
-#: svtools/inc/langtab.hrc:94
+#: svtools/inc/langtab.hrc:95
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zimbabwe)"
msgstr "Inglés (Zimbabue)"
#. bGuDT
-#: svtools/inc/langtab.hrc:95
+#: svtools/inc/langtab.hrc:96
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Philippines)"
msgstr "Inglés (Filipines)"
#. sf7j9
-#: svtools/inc/langtab.hrc:96
+#: svtools/inc/langtab.hrc:97
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (India)"
msgstr "Inglés (India)"
#. uqECc
-#: svtools/inc/langtab.hrc:97
+#: svtools/inc/langtab.hrc:98
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Estonian"
msgstr "Estoniu"
#. AGGnV
-#: svtools/inc/langtab.hrc:98
+#: svtools/inc/langtab.hrc:99
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Finnish"
msgstr "Finés"
#. UyH2X
-#: svtools/inc/langtab.hrc:99
+#: svtools/inc/langtab.hrc:100
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Faroese"
msgstr "Feroés"
#. riCt7
-#: svtools/inc/langtab.hrc:100
+#: svtools/inc/langtab.hrc:101
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Persian"
msgstr "Persa"
#. FSxwV
-#: svtools/inc/langtab.hrc:101
+#: svtools/inc/langtab.hrc:102
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (France)"
msgstr "Francés (Francia)"
#. LGkgS
-#: svtools/inc/langtab.hrc:102
+#: svtools/inc/langtab.hrc:103
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Belgium)"
msgstr "Francés (Bélxica)"
#. TFQ8G
-#: svtools/inc/langtab.hrc:103
+#: svtools/inc/langtab.hrc:104
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Canada)"
msgstr "Francés (Canadá)"
#. 8NnQa
-#: svtools/inc/langtab.hrc:104
+#: svtools/inc/langtab.hrc:105
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Switzerland)"
msgstr "Francés (Suiza)"
#. DkXiH
-#: svtools/inc/langtab.hrc:105
+#: svtools/inc/langtab.hrc:106
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Luxembourg)"
msgstr "Francés (Luxemburgu)"
#. 8BeKQ
-#: svtools/inc/langtab.hrc:106
+#: svtools/inc/langtab.hrc:107
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Monaco)"
msgstr "Francés (Mónacu)"
#. DoQUZ
-#: svtools/inc/langtab.hrc:107
+#: svtools/inc/langtab.hrc:108
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gascon"
msgstr "Gascón"
#. 6m5ud
-#: svtools/inc/langtab.hrc:108
+#: svtools/inc/langtab.hrc:109
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Germany)"
msgstr "Alemán (Alemaña)"
#. bTDdf
-#: svtools/inc/langtab.hrc:109
+#: svtools/inc/langtab.hrc:110
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Switzerland)"
msgstr "Alemán (Suiza)"
#. H6rUb
-#: svtools/inc/langtab.hrc:110
+#: svtools/inc/langtab.hrc:111
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Austria)"
msgstr "Alemán (Austria)"
#. EXUrT
-#: svtools/inc/langtab.hrc:111
+#: svtools/inc/langtab.hrc:112
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Luxembourg)"
msgstr "Alemán (Luxemburgu)"
#. wYXvd
-#: svtools/inc/langtab.hrc:112
+#: svtools/inc/langtab.hrc:113
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Liechtenstein)"
msgstr "Alemán (Liechtenstein)"
#. yBvcg
-#: svtools/inc/langtab.hrc:113
+#: svtools/inc/langtab.hrc:114
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek"
msgstr "Griegu"
#. QzGHA
-#: svtools/inc/langtab.hrc:114
+#: svtools/inc/langtab.hrc:115
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gujarati"
msgstr "Gujarati"
#. gU5Y9
-#: svtools/inc/langtab.hrc:115
+#: svtools/inc/langtab.hrc:116
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hebrew"
msgstr "Hebréu"
#. vkmai
-#: svtools/inc/langtab.hrc:116
+#: svtools/inc/langtab.hrc:117
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hindi"
msgstr "Hindí"
#. FdD6d
-#: svtools/inc/langtab.hrc:117
+#: svtools/inc/langtab.hrc:118
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian"
msgstr "Húngaru"
#. sRD2B
-#: svtools/inc/langtab.hrc:118
+#: svtools/inc/langtab.hrc:119
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Icelandic"
msgstr "Islandés"
#. K95FW
-#: svtools/inc/langtab.hrc:119
+#: svtools/inc/langtab.hrc:120
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Indonesian"
msgstr "Indonesiu"
#. dshDi
-#: svtools/inc/langtab.hrc:120
+#: svtools/inc/langtab.hrc:121
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Italy)"
msgstr "Italianu (Italia)"
#. DELVB
-#: svtools/inc/langtab.hrc:121
+#: svtools/inc/langtab.hrc:122
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Italian (Switzerland)"
msgstr "Italianu (Suiza)"
#. ruFE2
-#: svtools/inc/langtab.hrc:122
+#: svtools/inc/langtab.hrc:123
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Japanese"
msgstr "Xaponés"
#. qFQYv
-#: svtools/inc/langtab.hrc:123
+#: svtools/inc/langtab.hrc:124
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kannada"
msgstr "Kannada"
#. HBG3C
-#: svtools/inc/langtab.hrc:124
+#: svtools/inc/langtab.hrc:125
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (Kashmir)"
msgstr "Cachemirí (Cachemir)"
#. DwhmJ
-#: svtools/inc/langtab.hrc:125
+#: svtools/inc/langtab.hrc:126
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashmiri (India)"
msgstr "Cachemirí (India)"
#. UMfCV
-#: svtools/inc/langtab.hrc:126
+#: svtools/inc/langtab.hrc:127
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kazakh"
msgstr "Kazaquistanín"
#. fABxX
-#: svtools/inc/langtab.hrc:127
+#: svtools/inc/langtab.hrc:128
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Konkani"
msgstr "Konkani"
#. 5XXpX
-#: svtools/inc/langtab.hrc:128
+#: svtools/inc/langtab.hrc:129
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Korean (RoK)"
msgstr "Coreanu (República de Corea)"
#. Ynb76
-#: svtools/inc/langtab.hrc:129
+#: svtools/inc/langtab.hrc:130
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latvian"
msgstr "Letón"
#. C4VrT
-#: svtools/inc/langtab.hrc:130
+#: svtools/inc/langtab.hrc:131
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lithuanian"
msgstr "Lituanu"
#. zPNto
-#: svtools/inc/langtab.hrc:131
+#: svtools/inc/langtab.hrc:132
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Macedonian"
msgstr "Macedoniu"
#. nVTHg
-#: svtools/inc/langtab.hrc:132
+#: svtools/inc/langtab.hrc:133
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Malaysia)"
msgstr "Malayu (Malasia)"
#. fwb55
-#: svtools/inc/langtab.hrc:133
+#: svtools/inc/langtab.hrc:134
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay (Brunei Darussalam)"
msgstr "Malayu (Brunéi Darusalam)"
#. 8niko
-#: svtools/inc/langtab.hrc:134
+#: svtools/inc/langtab.hrc:135
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malayalam"
msgstr "Malayalam"
#. wX45Q
-#: svtools/inc/langtab.hrc:135
+#: svtools/inc/langtab.hrc:136
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manipuri"
msgstr "Manipuri"
#. wdBgL
-#: svtools/inc/langtab.hrc:136
+#: svtools/inc/langtab.hrc:137
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Marathi"
msgstr "Maratí"
#. gkEEQ
-#: svtools/inc/langtab.hrc:137
+#: svtools/inc/langtab.hrc:138
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (Nepal)"
msgstr "Nepalí (Nepal)"
#. LaDAA
-#: svtools/inc/langtab.hrc:138
+#: svtools/inc/langtab.hrc:139
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nepali (India)"
msgstr "Nepalí (India)"
#. 7HpyY
-#: svtools/inc/langtab.hrc:139
+#: svtools/inc/langtab.hrc:140
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Bokmål"
msgstr "Noruegu, Bokmål"
#. kCv9u
-#: svtools/inc/langtab.hrc:140
+#: svtools/inc/langtab.hrc:141
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Norwegian, Nynorsk"
msgstr "Noruegu, Nynorsk"
#. 3BNF8
-#: svtools/inc/langtab.hrc:141
+#: svtools/inc/langtab.hrc:142
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Odia"
msgstr ""
#. KEoWD
-#: svtools/inc/langtab.hrc:142
+#: svtools/inc/langtab.hrc:143
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Polish"
msgstr "Polacu"
#. yyj9v
-#: svtools/inc/langtab.hrc:143
+#: svtools/inc/langtab.hrc:144
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Angola)"
msgstr "Portugués (Angola)"
#. hZAXE
-#: svtools/inc/langtab.hrc:144
+#: svtools/inc/langtab.hrc:145
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Portugal)"
msgstr "Portugués (Portugal)"
#. A5CG3
-#: svtools/inc/langtab.hrc:145
+#: svtools/inc/langtab.hrc:146
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Portuguese (Brazil)"
msgstr "Portugués (Brasil)"
#. EGfKG
-#: svtools/inc/langtab.hrc:146
+#: svtools/inc/langtab.hrc:147
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punjabi"
msgstr "Punjabí"
#. 4ATDT
-#: svtools/inc/langtab.hrc:147
+#: svtools/inc/langtab.hrc:148
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rhaeto-Romance"
msgstr "Reto-Romance"
#. TLUGG
-#: svtools/inc/langtab.hrc:148
+#: svtools/inc/langtab.hrc:149
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Romania)"
msgstr "Rumanu (Rumania)"
#. uCPF7
-#: svtools/inc/langtab.hrc:149
+#: svtools/inc/langtab.hrc:150
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Romanian (Moldova)"
msgstr "Rumanu (Moldavia)"
#. tJTih
-#: svtools/inc/langtab.hrc:150
+#: svtools/inc/langtab.hrc:151
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Russian"
msgstr "Rusu"
#. Rih6F
-#: svtools/inc/langtab.hrc:151
+#: svtools/inc/langtab.hrc:152
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sanskrit"
msgstr "Sánscritu"
#. CyZtm
-#: svtools/inc/langtab.hrc:152
+#: svtools/inc/langtab.hrc:153
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia and Montenegro)"
msgstr "Serbiu (Cirílicu)"
#. sFnB8
-#: svtools/inc/langtab.hrc:153
+#: svtools/inc/langtab.hrc:154
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia and Montenegro)"
msgstr "Serbiu (Latín)"
#. WbsFA
-#: svtools/inc/langtab.hrc:154
+#: svtools/inc/langtab.hrc:155
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Serbia)"
msgstr "Serbiu Cirílicu (Serbia)"
#. WL3zM
-#: svtools/inc/langtab.hrc:155
+#: svtools/inc/langtab.hrc:156
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Serbia)"
msgstr "Serbiu Latin (Serbia)"
#. JFnsJ
-#: svtools/inc/langtab.hrc:156
+#: svtools/inc/langtab.hrc:157
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Cyrillic (Montenegro)"
msgstr "Serbiu Cirílicu (Montenegro)"
#. AHpmF
-#: svtools/inc/langtab.hrc:157
+#: svtools/inc/langtab.hrc:158
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin (Montenegro)"
msgstr "Serbiu Latin (Montenegro)"
#. JcJT4
-#: svtools/inc/langtab.hrc:158
+#: svtools/inc/langtab.hrc:159
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Serbian Latin"
msgstr "Serbiu (llatín)"
#. ubCyV
-#: svtools/inc/langtab.hrc:159
+#: svtools/inc/langtab.hrc:160
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sidama"
msgstr "Sidama"
#. 66wdH
-#: svtools/inc/langtab.hrc:160
+#: svtools/inc/langtab.hrc:161
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Devanagari"
msgstr ""
#. RF77g
-#: svtools/inc/langtab.hrc:161
+#: svtools/inc/langtab.hrc:162
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sindhi, Arabic"
msgstr ""
#. E8DXb
-#: svtools/inc/langtab.hrc:162
+#: svtools/inc/langtab.hrc:163
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovak"
msgstr "Eslovacu"
#. GS6BZ
-#: svtools/inc/langtab.hrc:163
+#: svtools/inc/langtab.hrc:164
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Slovenian"
msgstr "Eslovenu"
#. bCFN3
-#: svtools/inc/langtab.hrc:164
+#: svtools/inc/langtab.hrc:165
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Spain)"
msgstr "Castellanu (España)"
#. AXKJF
-#: svtools/inc/langtab.hrc:165
+#: svtools/inc/langtab.hrc:166
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Mexico)"
msgstr "Castellanu (Méxicu)"
#. 4ExjA
-#: svtools/inc/langtab.hrc:166
+#: svtools/inc/langtab.hrc:167
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Guatemala)"
msgstr "Castellanu (Guatemala)"
#. ndaNA
-#: svtools/inc/langtab.hrc:167
+#: svtools/inc/langtab.hrc:168
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Costa Rica)"
msgstr "Castellanu (Costa Rica)"
#. rAYvf
-#: svtools/inc/langtab.hrc:168
+#: svtools/inc/langtab.hrc:169
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Panama)"
msgstr "Castellanu (Panamá)"
#. rwjDV
-#: svtools/inc/langtab.hrc:169
+#: svtools/inc/langtab.hrc:170
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Dom. Rep.)"
msgstr "Castellanu (Rep. Dominicana)"
#. aeV5T
-#: svtools/inc/langtab.hrc:170
+#: svtools/inc/langtab.hrc:171
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Venezuela)"
msgstr "Castellanu (Venezuela)"
#. H4CHi
-#: svtools/inc/langtab.hrc:171
+#: svtools/inc/langtab.hrc:172
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Colombia)"
msgstr "Castellanu (Colombia)"
#. NkaU2
-#: svtools/inc/langtab.hrc:172
+#: svtools/inc/langtab.hrc:173
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Peru)"
msgstr "Castellanu (Perú)"
#. 2yKQy
-#: svtools/inc/langtab.hrc:173
+#: svtools/inc/langtab.hrc:174
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Argentina)"
msgstr "Castellanu (Arxentina)"
#. cTFoB
-#: svtools/inc/langtab.hrc:174
+#: svtools/inc/langtab.hrc:175
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Ecuador)"
msgstr "Castellanu (Ecuador)"
#. Q7iGB
-#: svtools/inc/langtab.hrc:175
+#: svtools/inc/langtab.hrc:176
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Chile)"
msgstr "Castellanu (Chile)"
#. SQeC3
-#: svtools/inc/langtab.hrc:176
+#: svtools/inc/langtab.hrc:177
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Uruguay)"
msgstr "Castellanu (Uruguái)"
#. EmgTp
-#: svtools/inc/langtab.hrc:177
+#: svtools/inc/langtab.hrc:178
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Paraguay)"
msgstr "Castellanu (Paraguái)"
#. T7rLH
-#: svtools/inc/langtab.hrc:178
+#: svtools/inc/langtab.hrc:179
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Bolivia)"
msgstr "Castellanu (Bolivia)"
#. GNG7W
-#: svtools/inc/langtab.hrc:179
+#: svtools/inc/langtab.hrc:180
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (El Salvador)"
msgstr "Castellanu (El Salvador)"
#. HoGhs
-#: svtools/inc/langtab.hrc:180
+#: svtools/inc/langtab.hrc:181
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Honduras)"
msgstr "Castellanu (Hondures)"
#. KgEGv
-#: svtools/inc/langtab.hrc:181
+#: svtools/inc/langtab.hrc:182
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Nicaragua)"
msgstr "Castellanu (Nicaragua)"
#. uj9QF
-#: svtools/inc/langtab.hrc:182
+#: svtools/inc/langtab.hrc:183
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Puerto Rico)"
msgstr "Castellanu (Puertu Ricu)"
#. 3bTTE
-#: svtools/inc/langtab.hrc:183
+#: svtools/inc/langtab.hrc:184
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Kenya)"
msgstr "Suaḥili (Kenia)"
#. AFhrJ
-#: svtools/inc/langtab.hrc:184
+#: svtools/inc/langtab.hrc:185
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Sweden)"
msgstr "Suecu (Suecia)"
#. BKF86
-#: svtools/inc/langtab.hrc:185
+#: svtools/inc/langtab.hrc:186
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swedish (Finland)"
msgstr "Suecu (Finlandia)"
#. E6Ede
-#: svtools/inc/langtab.hrc:186
+#: svtools/inc/langtab.hrc:187
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tajik"
msgstr "Tayiku"
#. dAFTH
-#: svtools/inc/langtab.hrc:187
+#: svtools/inc/langtab.hrc:188
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tamil"
msgstr "Tamil"
#. RHZbp
-#: svtools/inc/langtab.hrc:188
+#: svtools/inc/langtab.hrc:189
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tatar"
msgstr "Tártaru"
#. pTFA6
-#: svtools/inc/langtab.hrc:189
+#: svtools/inc/langtab.hrc:190
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Telugu"
msgstr "Telugu"
#. 3xQFG
-#: svtools/inc/langtab.hrc:190
+#: svtools/inc/langtab.hrc:191
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Thai"
msgstr "Tailandés"
#. 7SBCF
-#: svtools/inc/langtab.hrc:191
+#: svtools/inc/langtab.hrc:192
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkish"
msgstr "Turcu"
#. jg4Y4
-#: svtools/inc/langtab.hrc:192
+#: svtools/inc/langtab.hrc:193
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (Pakistan)"
msgstr "Urdu (Paquistán)"
#. reDrZ
-#: svtools/inc/langtab.hrc:193
+#: svtools/inc/langtab.hrc:194
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Urdu (India)"
msgstr "Urdu (India)"
#. AciD4
-#: svtools/inc/langtab.hrc:194
+#: svtools/inc/langtab.hrc:195
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ukrainian"
msgstr "Ucraín"
#. 9s6wZ
-#: svtools/inc/langtab.hrc:195
+#: svtools/inc/langtab.hrc:196
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Latin"
msgstr "Uzbecu, llatín"
#. HrnFi
-#: svtools/inc/langtab.hrc:196
+#: svtools/inc/langtab.hrc:197
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uzbek Cyrillic"
msgstr "Uzbecu (cirílicu)"
#. seQBA
-#: svtools/inc/langtab.hrc:197
+#: svtools/inc/langtab.hrc:198
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Welsh"
msgstr "Galés"
#. MyZMt
-#: svtools/inc/langtab.hrc:198
+#: svtools/inc/langtab.hrc:199
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latin"
msgstr "Llatín"
#. UxE47
-#: svtools/inc/langtab.hrc:199
+#: svtools/inc/langtab.hrc:200
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Esperanto"
msgstr "Esperantu"
#. QDEQB
-#: svtools/inc/langtab.hrc:200
+#: svtools/inc/langtab.hrc:201
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kinyarwanda (Rwanda)"
msgstr "Kinyarwanda (Ruanda)"
#. VDEdz
-#: svtools/inc/langtab.hrc:201
+#: svtools/inc/langtab.hrc:202
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maori"
msgstr "Maorí"
#. BCRzB
-#: svtools/inc/langtab.hrc:202
+#: svtools/inc/langtab.hrc:203
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Galician"
msgstr "Gallegu"
#. EJSEG
-#: svtools/inc/langtab.hrc:203
+#: svtools/inc/langtab.hrc:204
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dhivehi"
msgstr "Dhivehi"
#. HyrCw
-#: svtools/inc/langtab.hrc:204
+#: svtools/inc/langtab.hrc:205
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Northern Sotho"
msgstr "Sotho del Norte"
#. iZE5p
-#: svtools/inc/langtab.hrc:205
+#: svtools/inc/langtab.hrc:206
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gaelic (Scotland)"
msgstr "Gaélicu (Escocia)"
#. hUdfG
-#: svtools/inc/langtab.hrc:206
+#: svtools/inc/langtab.hrc:207
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Cyrillic"
msgstr "Mongol (cirílicu)"
#. XSmCF
-#: svtools/inc/langtab.hrc:207
+#: svtools/inc/langtab.hrc:208
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mongolian Mongolian"
msgstr "Mongol (mongol)"
#. SmxD2
-#: svtools/inc/langtab.hrc:208
+#: svtools/inc/langtab.hrc:209
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingua"
msgstr "Interlingua"
#. dBUa9
-#: svtools/inc/langtab.hrc:209
+#: svtools/inc/langtab.hrc:210
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bosnian"
msgstr "Bosniu"
#. c29GE
-#: svtools/inc/langtab.hrc:210
+#: svtools/inc/langtab.hrc:211
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bengali (Bangladesh)"
msgstr "Bengalín (Bangladex)"
#. 9CTyH
-#: svtools/inc/langtab.hrc:211
+#: svtools/inc/langtab.hrc:212
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Occitan"
msgstr "Occitanu"
#. wRpTQ
-#: svtools/inc/langtab.hrc:212
+#: svtools/inc/langtab.hrc:213
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khmer"
msgstr "Ḥemer"
#. 6C2PP
-#: svtools/inc/langtab.hrc:213
+#: svtools/inc/langtab.hrc:214
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Turkey)"
msgstr "Curdu del norte (Turquía)"
#. JBSdg
-#: svtools/inc/langtab.hrc:214
+#: svtools/inc/langtab.hrc:215
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Northern (Syria)"
msgstr "Curdu del norte (Siria)"
#. 7LmT2
-#: svtools/inc/langtab.hrc:215
+#: svtools/inc/langtab.hrc:216
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iraq)"
msgstr "Curdu central (Iraq)"
#. rzDHD
-#: svtools/inc/langtab.hrc:216
+#: svtools/inc/langtab.hrc:217
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Central (Iran)"
msgstr "Curdu central (Irán)"
#. CeAFw
-#: svtools/inc/langtab.hrc:217
+#: svtools/inc/langtab.hrc:218
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iran)"
msgstr "Curdu del sur (Irán)"
#. epbri
-#: svtools/inc/langtab.hrc:218
+#: svtools/inc/langtab.hrc:219
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kurdish, Southern (Iraq)"
msgstr "Curdu del sur (Iraq)"
#. 2KhAB
-#: svtools/inc/langtab.hrc:219
+#: svtools/inc/langtab.hrc:220
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian"
msgstr "Sardu"
#. 3sZxr
-#: svtools/inc/langtab.hrc:220
+#: svtools/inc/langtab.hrc:221
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dzongkha"
msgstr "Dzongkha"
#. NdNMD
-#: svtools/inc/langtab.hrc:221
+#: svtools/inc/langtab.hrc:222
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swahili (Tanzania)"
msgstr "Suaḥili (Tanzania)"
#. ywH3p
-#: svtools/inc/langtab.hrc:222
+#: svtools/inc/langtab.hrc:223
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lao"
msgstr "Laosianu"
#. HNY5w
-#: svtools/inc/langtab.hrc:223
+#: svtools/inc/langtab.hrc:224
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Irish"
msgstr "Irlandés"
#. oGuLJ
-#: svtools/inc/langtab.hrc:224
+#: svtools/inc/langtab.hrc:225
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (PR China)"
msgstr "Tibetanu (RP China)"
#. DpbUS
-#: svtools/inc/langtab.hrc:225
+#: svtools/inc/langtab.hrc:226
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Georgian"
msgstr "Xeorxanu"
#. vXTTC
-#: svtools/inc/langtab.hrc:226
+#: svtools/inc/langtab.hrc:227
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Frisian"
msgstr "Frisón"
#. hYSBQ
-#: svtools/inc/langtab.hrc:227
+#: svtools/inc/langtab.hrc:228
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (South Africa)"
msgstr "Tswana (Suráfrica)"
#. iBrft
-#: svtools/inc/langtab.hrc:228
+#: svtools/inc/langtab.hrc:229
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Zulu"
msgstr "Zulú"
#. efx7v
-#: svtools/inc/langtab.hrc:229
+#: svtools/inc/langtab.hrc:230
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vietnamese"
msgstr "Vietnamita"
#. uik8N
-#: svtools/inc/langtab.hrc:230
+#: svtools/inc/langtab.hrc:231
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Breton"
msgstr "Bretón"
#. UuDPF
-#: svtools/inc/langtab.hrc:231
+#: svtools/inc/langtab.hrc:232
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kalaallisut"
msgstr "Groenlandés"
#. h8yi2
-#: svtools/inc/langtab.hrc:232
+#: svtools/inc/langtab.hrc:233
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ndebele, South"
msgstr "Ndebele del sur"
#. GAkRJ
-#: svtools/inc/langtab.hrc:233
+#: svtools/inc/langtab.hrc:234
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Southern Sotho"
msgstr "Sotho sur"
#. 2beka
-#: svtools/inc/langtab.hrc:234
+#: svtools/inc/langtab.hrc:235
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Swazi"
msgstr "Swazi"
#. GFCYC
-#: svtools/inc/langtab.hrc:235
+#: svtools/inc/langtab.hrc:236
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsonga"
msgstr "Tsonga"
#. Fd3yC
-#: svtools/inc/langtab.hrc:236
+#: svtools/inc/langtab.hrc:237
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venda"
msgstr "Venda"
#. BQkT8
-#: svtools/inc/langtab.hrc:237
+#: svtools/inc/langtab.hrc:238
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tswana (Botswana)"
msgstr "Tswana (Botswana)"
#. aCLs3
-#: svtools/inc/langtab.hrc:238
+#: svtools/inc/langtab.hrc:239
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xhosa"
msgstr "Xhosa"
#. 8tGkA
-#: svtools/inc/langtab.hrc:239
+#: svtools/inc/langtab.hrc:240
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sinhala"
msgstr "Singalés"
#. MyZBb
-#: svtools/inc/langtab.hrc:240
+#: svtools/inc/langtab.hrc:241
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moore"
msgstr "Mooré"
#. MuwMr
-#: svtools/inc/langtab.hrc:241
+#: svtools/inc/langtab.hrc:242
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bambara"
msgstr "Bambara"
#. ohYHE
-#: svtools/inc/langtab.hrc:242
+#: svtools/inc/langtab.hrc:243
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Akan"
msgstr "Akan"
#. Rpc24
-#: svtools/inc/langtab.hrc:243
+#: svtools/inc/langtab.hrc:244
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Luxembourgish"
msgstr "Lluxemburgués"
#. TPr9P
-#: svtools/inc/langtab.hrc:244
+#: svtools/inc/langtab.hrc:245
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Friulian"
msgstr "Friulianu"
#. XFeaU
-#: svtools/inc/langtab.hrc:245
+#: svtools/inc/langtab.hrc:246
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fijian"
msgstr "Fixanu"
#. DmEsD
-#: svtools/inc/langtab.hrc:246
+#: svtools/inc/langtab.hrc:247
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Afrikaans (Namibia)"
msgstr "Africáans (Namibia)"
#. 2dS3j
-#: svtools/inc/langtab.hrc:247
+#: svtools/inc/langtab.hrc:248
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Namibia)"
msgstr "Inglés (Namibia)"
#. pxpQo
-#: svtools/inc/langtab.hrc:248
+#: svtools/inc/langtab.hrc:249
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Walloon"
msgstr "Valón"
#. uSw8S
-#: svtools/inc/langtab.hrc:249
+#: svtools/inc/langtab.hrc:250
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Coptic"
msgstr "Cópticu"
#. cXUkb
-#: svtools/inc/langtab.hrc:250
+#: svtools/inc/langtab.hrc:251
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Eritrea)"
msgstr "Tigrinya (Eritrea)"
#. 4X4SP
-#: svtools/inc/langtab.hrc:251
+#: svtools/inc/langtab.hrc:252
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tigrigna (Ethiopia)"
msgstr "Tigrinya (Etiopía)"
#. vebCw
-#: svtools/inc/langtab.hrc:252
+#: svtools/inc/langtab.hrc:253
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Amharic"
msgstr "Amháricu"
#. wVfCr
-#: svtools/inc/langtab.hrc:253
+#: svtools/inc/langtab.hrc:254
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kirghiz"
msgstr "Kirghiz"
#. zCrUd
-#: svtools/inc/langtab.hrc:254
+#: svtools/inc/langtab.hrc:255
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "German (Belgium)"
msgstr "Alemán (Bélxica)"
#. bZjgG
-#: svtools/inc/langtab.hrc:255
+#: svtools/inc/langtab.hrc:256
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Chuvash"
msgstr "Chuvash"
#. Hhf2V
-#: svtools/inc/langtab.hrc:256
+#: svtools/inc/langtab.hrc:257
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Burmese"
msgstr "Birmanu"
#. YCarY
-#: svtools/inc/langtab.hrc:257
+#: svtools/inc/langtab.hrc:258
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Nigeria)"
msgstr "Hausa (Nixeria)"
#. JXCmu
-#: svtools/inc/langtab.hrc:258
+#: svtools/inc/langtab.hrc:259
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hausa (Ghana)"
msgstr "Hausa (Ghana)"
#. 7jrGb
-#: svtools/inc/langtab.hrc:259
+#: svtools/inc/langtab.hrc:260
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Éwé"
msgstr "Éwé"
#. QWBZG
-#: svtools/inc/langtab.hrc:260
+#: svtools/inc/langtab.hrc:261
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Ghana)"
msgstr "Inglés (Ghana)"
#. pAEtz
-#: svtools/inc/langtab.hrc:261
+#: svtools/inc/langtab.hrc:262
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sango"
msgstr "Sangu"
#. L9sDt
-#: svtools/inc/langtab.hrc:262
+#: svtools/inc/langtab.hrc:263
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tagalog"
msgstr "Tagalés"
#. iFSZs
-#: svtools/inc/langtab.hrc:263
+#: svtools/inc/langtab.hrc:264
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ganda"
msgstr "Ganda"
#. Gdbhz
-#: svtools/inc/langtab.hrc:264
+#: svtools/inc/langtab.hrc:265
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lingala"
msgstr "Lingala"
#. TnDKB
-#: svtools/inc/langtab.hrc:265
+#: svtools/inc/langtab.hrc:266
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Low German"
msgstr "Baxu alemán"
#. Yr5hK
-#: svtools/inc/langtab.hrc:266
+#: svtools/inc/langtab.hrc:267
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hiligaynon"
msgstr "Hiligaynon"
#. nF96G
-#: svtools/inc/langtab.hrc:267
+#: svtools/inc/langtab.hrc:268
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nyanja"
msgstr "Nianja"
#. v4jmr
-#: svtools/inc/langtab.hrc:268
+#: svtools/inc/langtab.hrc:269
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kashubian"
msgstr "Kashubianu"
#. nbEp5
-#: svtools/inc/langtab.hrc:269
+#: svtools/inc/langtab.hrc:270
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Spanish (Cuba)"
msgstr "Castellanu (Cuba)"
#. CGkDF
-#: svtools/inc/langtab.hrc:270
+#: svtools/inc/langtab.hrc:271
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Indonesia)"
msgstr "Tetun (Indonesia)"
#. yXqvC
-#: svtools/inc/langtab.hrc:271
+#: svtools/inc/langtab.hrc:272
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, North)"
msgstr "Quechua (Norte de Bolivia)"
#. V3XMi
-#: svtools/inc/langtab.hrc:272
+#: svtools/inc/langtab.hrc:273
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Bolivia, South)"
msgstr "Quechua (Sur de Bolivia)"
#. 3WCP7
-#: svtools/inc/langtab.hrc:273
+#: svtools/inc/langtab.hrc:274
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Somali"
msgstr "Somalí"
#. zFoBp
-#: svtools/inc/langtab.hrc:274
+#: svtools/inc/langtab.hrc:275
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Inari (Finland)"
msgstr "Sami, Inari (Finlandia)"
#. FJAQR
-#: svtools/inc/langtab.hrc:275
+#: svtools/inc/langtab.hrc:276
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Norway)"
msgstr "Sami, Lule (Noruega)"
#. yBxW5
-#: svtools/inc/langtab.hrc:276
+#: svtools/inc/langtab.hrc:277
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Sweden)"
msgstr "Sami, Lule (Suecia)"
#. 8yPLy
-#: svtools/inc/langtab.hrc:277
+#: svtools/inc/langtab.hrc:278
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Finland)"
msgstr "Sami, Northern (Finlandia)"
#. SQTD9
-#: svtools/inc/langtab.hrc:278
+#: svtools/inc/langtab.hrc:279
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Norway)"
msgstr "Sami, Northern (Noruega)"
#. BHGpD
-#: svtools/inc/langtab.hrc:279
+#: svtools/inc/langtab.hrc:280
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Northern (Sweden)"
msgstr "Sami, Northern (Suecia)"
#. cdYkC
-#: svtools/inc/langtab.hrc:280
+#: svtools/inc/langtab.hrc:281
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Skolt (Finland)"
msgstr "Sami, Skolt (Finlandia)"
#. od3Hp
-#: svtools/inc/langtab.hrc:281
+#: svtools/inc/langtab.hrc:282
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Norway)"
msgstr "Sami, Southern (Noruega)"
#. 5Ueff
-#: svtools/inc/langtab.hrc:282
+#: svtools/inc/langtab.hrc:283
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Southern (Sweden)"
msgstr "Sami, Southern (Suecia)"
#. 7x4mU
-#: svtools/inc/langtab.hrc:283
+#: svtools/inc/langtab.hrc:284
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Kildin (Russia)"
msgstr "Sami, Kildin (Rusia)"
#. A5Crw
-#: svtools/inc/langtab.hrc:284
+#: svtools/inc/langtab.hrc:285
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guarani (Paraguay)"
msgstr "Guaraní (Paraguái)"
#. ESc5d
-#: svtools/inc/langtab.hrc:285
+#: svtools/inc/langtab.hrc:286
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bodo"
msgstr "Bodo"
#. sSAvV
-#: svtools/inc/langtab.hrc:286
+#: svtools/inc/langtab.hrc:287
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dogri"
msgstr "Dogri"
#. f2nfh
-#: svtools/inc/langtab.hrc:287
+#: svtools/inc/langtab.hrc:288
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maithili"
msgstr "Maithili"
#. Rm94B
-#: svtools/inc/langtab.hrc:288
+#: svtools/inc/langtab.hrc:289
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Santali"
msgstr "Santali"
#. C7EGu
-#: svtools/inc/langtab.hrc:289
+#: svtools/inc/langtab.hrc:290
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tetun (Timor-Leste)"
msgstr "Tetun (República Democrática de Timor-Leste)"
#. JzTF8
-#: svtools/inc/langtab.hrc:290
+#: svtools/inc/langtab.hrc:291
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Turkmen"
msgstr "Turkmenu"
#. XbECR
-#: svtools/inc/langtab.hrc:291
+#: svtools/inc/langtab.hrc:292
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maltese"
msgstr "Maltés"
#. PJ6DF
-#: svtools/inc/langtab.hrc:292
+#: svtools/inc/langtab.hrc:293
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tok Pisin"
msgstr "Tok pisin"
#. kAWUo
-#: svtools/inc/langtab.hrc:293
+#: svtools/inc/langtab.hrc:294
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Shuswap"
msgstr "Shuswap"
#. sBWQv
-#: svtools/inc/langtab.hrc:294
+#: svtools/inc/langtab.hrc:295
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Oromo"
msgstr "Oromo"
#. jYDYi
-#: svtools/inc/langtab.hrc:295
+#: svtools/inc/langtab.hrc:296
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek, Ancient"
msgstr "Griegu, Antiguu"
#. WY8GH
-#: svtools/inc/langtab.hrc:296
+#: svtools/inc/langtab.hrc:297
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (Israel)"
msgstr "Yídix (Israel)"
#. VAWnd
-#: svtools/inc/langtab.hrc:297
+#: svtools/inc/langtab.hrc:298
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Quechua (Ecuador)"
msgstr "Quechua (Ecuador)"
#. UDB2F
-#: svtools/inc/langtab.hrc:298
+#: svtools/inc/langtab.hrc:299
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Uyghur"
msgstr "Uyghur"
#. XAu8x
-#: svtools/inc/langtab.hrc:299
+#: svtools/inc/langtab.hrc:300
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Asturian"
msgstr "Asturianu"
#. hwM5p
-#: svtools/inc/langtab.hrc:300
+#: svtools/inc/langtab.hrc:301
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Upper"
msgstr "Sorbianés, Altu"
#. iGTFG
-#: svtools/inc/langtab.hrc:301
+#: svtools/inc/langtab.hrc:302
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sorbian, Lower"
msgstr "Sorbianés, Baxu"
#. RvdrP
-#: svtools/inc/langtab.hrc:302
+#: svtools/inc/langtab.hrc:303
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Latgalian"
msgstr "Latgaliu"
#. 94i7A
-#: svtools/inc/langtab.hrc:303
+#: svtools/inc/langtab.hrc:304
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maore"
msgstr "Maore"
#. FeuXJ
-#: svtools/inc/langtab.hrc:304
+#: svtools/inc/langtab.hrc:305
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bushi"
msgstr "Bushi"
#. CWFtg
-#: svtools/inc/langtab.hrc:305
+#: svtools/inc/langtab.hrc:306
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tahitian"
msgstr "Taitianu"
#. TDoMB
-#: svtools/inc/langtab.hrc:306
+#: svtools/inc/langtab.hrc:307
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malagasy, Plateau"
msgstr "Malgache, Plateau"
#. EVG88
-#: svtools/inc/langtab.hrc:307
+#: svtools/inc/langtab.hrc:308
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamentu (Netherlands Antilles)"
msgstr "Papiamento (Antilles Neerlandeses)"
#. fbGn8
-#: svtools/inc/langtab.hrc:308
+#: svtools/inc/langtab.hrc:309
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Aruba)"
msgstr "Papiamento (Aruba)"
#. 9XBNE
-#: svtools/inc/langtab.hrc:309
+#: svtools/inc/langtab.hrc:310
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Campidanese"
msgstr "Sardu campidanés"
#. d2kAw
-#: svtools/inc/langtab.hrc:310
+#: svtools/inc/langtab.hrc:311
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Gallurese"
msgstr "Sardu gallurés"
#. cJATX
-#: svtools/inc/langtab.hrc:311
+#: svtools/inc/langtab.hrc:312
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Logudorese"
msgstr "Sardu logudorés"
#. PJFYt
-#: svtools/inc/langtab.hrc:312
+#: svtools/inc/langtab.hrc:313
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sardinian, Sassarese"
msgstr "Sardu sasarés"
#. oDLAc
-#: svtools/inc/langtab.hrc:313
+#: svtools/inc/langtab.hrc:314
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bafia"
msgstr "Bafia"
#. 598zD
-#: svtools/inc/langtab.hrc:314
+#: svtools/inc/langtab.hrc:315
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Gikuyu"
msgstr "Gikuyu"
#. PFxrW
-#: svtools/inc/langtab.hrc:315
+#: svtools/inc/langtab.hrc:316
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yoruba"
msgstr "Yoruba"
#. jajFo
-#: svtools/inc/langtab.hrc:316
+#: svtools/inc/langtab.hrc:317
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Ukraine)"
msgstr "Rusín (Ucraína)"
#. PpWdM
-#: svtools/inc/langtab.hrc:317
+#: svtools/inc/langtab.hrc:318
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Rusyn (Slovakia)"
msgstr "Rusín (Eslovaquia)"
#. Wgo9k
-#: svtools/inc/langtab.hrc:318
+#: svtools/inc/langtab.hrc:319
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabyle Latin"
msgstr "Cabileñu en llatín"
#. MSnHB
-#: svtools/inc/langtab.hrc:319
+#: svtools/inc/langtab.hrc:320
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yiddish (USA)"
msgstr "Yídix (EE.XX.)"
#. uYMRX
-#: svtools/inc/langtab.hrc:320
+#: svtools/inc/langtab.hrc:321
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hawaiian"
msgstr "Hawaianu"
#. DyEGX
-#: svtools/inc/langtab.hrc:321
+#: svtools/inc/langtab.hrc:322
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Limbu"
msgstr "Limbu"
#. 3jGCz
-#: svtools/inc/langtab.hrc:322
+#: svtools/inc/langtab.hrc:323
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lojban"
msgstr "Lojban"
#. Ec3C4
-#: svtools/inc/langtab.hrc:323
+#: svtools/inc/langtab.hrc:324
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Haitian"
msgstr "Haitianu"
#. D3Xoy
-#: svtools/inc/langtab.hrc:324
+#: svtools/inc/langtab.hrc:325
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Beembe"
msgstr "Beembe"
#. 6Pkbr
-#: svtools/inc/langtab.hrc:325
+#: svtools/inc/langtab.hrc:326
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bekwel"
msgstr "Bekwel"
#. 8WjqB
-#: svtools/inc/langtab.hrc:326
+#: svtools/inc/langtab.hrc:327
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Congo)"
msgstr ""
#. hCFcE
-#: svtools/inc/langtab.hrc:327
+#: svtools/inc/langtab.hrc:328
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lari"
msgstr "Lari"
#. KxXpB
-#: svtools/inc/langtab.hrc:328
+#: svtools/inc/langtab.hrc:329
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mbochi"
msgstr "Mbochi"
#. 6FdTq
-#: svtools/inc/langtab.hrc:329
+#: svtools/inc/langtab.hrc:330
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Eboo"
msgstr "Teke-Eboo"
#. FeBzA
-#: svtools/inc/langtab.hrc:330
+#: svtools/inc/langtab.hrc:331
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Ibali"
msgstr "Teke-Ibali"
#. LKetF
-#: svtools/inc/langtab.hrc:331
+#: svtools/inc/langtab.hrc:332
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Tyee"
msgstr "Teke-Tyee"
#. DfVqj
-#: svtools/inc/langtab.hrc:332
+#: svtools/inc/langtab.hrc:333
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Vili"
msgstr "Vili"
#. uBEkT
-#: svtools/inc/langtab.hrc:333
+#: svtools/inc/langtab.hrc:334
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "KeyID"
msgstr "KeyID"
#. maAoG
-#: svtools/inc/langtab.hrc:334
+#: svtools/inc/langtab.hrc:335
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Latin"
msgstr "Pali Latin"
#. eDDSm
-#: svtools/inc/langtab.hrc:335
+#: svtools/inc/langtab.hrc:336
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kyrgyz (China)"
msgstr "Kirguistanín (China)"
#. RCmma
-#: svtools/inc/langtab.hrc:336
+#: svtools/inc/langtab.hrc:337
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Zyrian"
msgstr "Komi-Zyrian"
#. DLxCK
-#: svtools/inc/langtab.hrc:337
+#: svtools/inc/langtab.hrc:338
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Komi-Permyak"
msgstr "Komi-Permyak"
#. zRJy3
-#: svtools/inc/langtab.hrc:338
+#: svtools/inc/langtab.hrc:339
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pitjantjatjara"
msgstr "Pitjantjatjara"
#. X2WLD
-#: svtools/inc/langtab.hrc:339
+#: svtools/inc/langtab.hrc:340
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malawi)"
msgstr "Inglés (Malawi)"
#. BNve6
-#: svtools/inc/langtab.hrc:340
+#: svtools/inc/langtab.hrc:341
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Erzya"
msgstr "Erzya"
#. bS6vy
-#: svtools/inc/langtab.hrc:341
+#: svtools/inc/langtab.hrc:342
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Meadow"
msgstr "Mari, Meadow"
#. 2YjMT
-#: svtools/inc/langtab.hrc:342
+#: svtools/inc/langtab.hrc:343
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Curaçao)"
msgstr "Papiamento (Curaçao)"
#. QA2V4
-#: svtools/inc/langtab.hrc:343
+#: svtools/inc/langtab.hrc:344
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Papiamento (Bonaire)"
msgstr "Papiamento (Bonaire)"
#. vozw6
-#: svtools/inc/langtab.hrc:344
+#: svtools/inc/langtab.hrc:345
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Khanty"
msgstr "Khanty"
#. MBtJM
-#: svtools/inc/langtab.hrc:345
+#: svtools/inc/langtab.hrc:346
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Livonian"
msgstr "Livoniu"
#. wNkoh
-#: svtools/inc/langtab.hrc:346
+#: svtools/inc/langtab.hrc:347
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Moksha"
msgstr "Moksha"
#. uCDU6
-#: svtools/inc/langtab.hrc:347
+#: svtools/inc/langtab.hrc:348
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Hill"
msgstr "Mari, Hill"
#. JEhY4
-#: svtools/inc/langtab.hrc:348
+#: svtools/inc/langtab.hrc:349
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nganasan"
msgstr "Nganasan"
#. hr4pq
-#: svtools/inc/langtab.hrc:349
+#: svtools/inc/langtab.hrc:350
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Olonets"
msgstr "Olonets"
#. Arpn4
-#: svtools/inc/langtab.hrc:350
+#: svtools/inc/langtab.hrc:351
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Veps"
msgstr "Veps"
#. fJ3Ss
-#: svtools/inc/langtab.hrc:351
+#: svtools/inc/langtab.hrc:352
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Võro"
msgstr "Võro"
#. HuWCs
-#: svtools/inc/langtab.hrc:352
+#: svtools/inc/langtab.hrc:353
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nenets"
msgstr "Nenets"
#. 5Zxgd
-#: svtools/inc/langtab.hrc:353
+#: svtools/inc/langtab.hrc:354
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Central African Republic)"
msgstr ""
#. oBDBe
-#: svtools/inc/langtab.hrc:354
+#: svtools/inc/langtab.hrc:355
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Congo)"
msgstr "Aka (Congo)"
#. GRKCD
-#: svtools/inc/langtab.hrc:355
+#: svtools/inc/langtab.hrc:356
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dibole"
msgstr "Dibole"
#. cgMCr
-#: svtools/inc/langtab.hrc:356
+#: svtools/inc/langtab.hrc:357
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Doondo"
msgstr "Doondo"
#. FmhF6
-#: svtools/inc/langtab.hrc:357
+#: svtools/inc/langtab.hrc:358
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kaamba"
msgstr "Kaamba"
#. BBf4G
-#: svtools/inc/langtab.hrc:358
+#: svtools/inc/langtab.hrc:359
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Koongo (Congo)"
msgstr "Koongo (Congo)"
#. HbeaC
-#: svtools/inc/langtab.hrc:359
+#: svtools/inc/langtab.hrc:360
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kunyi"
msgstr "Kunyi"
#. wLxHD
-#: svtools/inc/langtab.hrc:360
+#: svtools/inc/langtab.hrc:361
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngungwel"
msgstr "Ngungwel"
#. 7cvAe
-#: svtools/inc/langtab.hrc:361
+#: svtools/inc/langtab.hrc:362
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
msgstr "Njyem (Congo)"
#. G2SG8
-#: svtools/inc/langtab.hrc:362
+#: svtools/inc/langtab.hrc:363
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punu"
msgstr "Punu"
#. WjBVL
-#: svtools/inc/langtab.hrc:363
+#: svtools/inc/langtab.hrc:364
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Suundi"
msgstr "Suundi"
#. 9nAA2
-#: svtools/inc/langtab.hrc:364
+#: svtools/inc/langtab.hrc:365
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Kukuya"
msgstr "Teke-Kukuya"
#. dwdUH
-#: svtools/inc/langtab.hrc:365
+#: svtools/inc/langtab.hrc:366
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsaangi"
msgstr "Tsaangi"
#. otqzC
-#: svtools/inc/langtab.hrc:366
+#: svtools/inc/langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Congo)"
msgstr ""
#. JuMFF
-#: svtools/inc/langtab.hrc:367
+#: svtools/inc/langtab.hrc:368
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Democratic Republic of the Congo)"
msgstr ""
#. NDjGL
-#: svtools/inc/langtab.hrc:368
+#: svtools/inc/langtab.hrc:369
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yombe (Congo)"
msgstr "Yombe (Congo)"
#. MvwFr
-#: svtools/inc/langtab.hrc:369
+#: svtools/inc/langtab.hrc:370
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "N'ko"
msgstr "N'ko"
#. WFc6C
-#: svtools/inc/langtab.hrc:370
+#: svtools/inc/langtab.hrc:371
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Udmurt"
msgstr "Udmurtu"
#. hEtfX
-#: svtools/inc/langtab.hrc:371
+#: svtools/inc/langtab.hrc:372
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (India)"
msgstr "Tibetanu (India)"
#. Agf93
-#: svtools/inc/langtab.hrc:372
+#: svtools/inc/langtab.hrc:373
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cornish"
msgstr "Córnicu"
#. EtH3H
-#: svtools/inc/langtab.hrc:373
+#: svtools/inc/langtab.hrc:374
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Pite (Sweden)"
msgstr "Sami, Pite (Suecia)"
#. jp6C9
-#: svtools/inc/langtab.hrc:374
+#: svtools/inc/langtab.hrc:375
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngäbere"
msgstr "Ngäbere"
#. 3nTLx
-#: svtools/inc/langtab.hrc:375
+#: svtools/inc/langtab.hrc:376
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kumyk"
msgstr "Kumyk"
#. c56C9
-#: svtools/inc/langtab.hrc:376
+#: svtools/inc/langtab.hrc:377
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nogai"
msgstr "Nogai"
#. CBiiA
-#: svtools/inc/langtab.hrc:377
+#: svtools/inc/langtab.hrc:378
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Karakalpak Latin"
msgstr "Karakalpak (llatín)"
#. CkEC7
-#: svtools/inc/langtab.hrc:378
+#: svtools/inc/langtab.hrc:379
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ladin"
msgstr "Ladinu"
#. XAiVE
-#: svtools/inc/langtab.hrc:379
+#: svtools/inc/langtab.hrc:380
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Burkina Faso)"
msgstr "Francés (Burkina Fasu)"
#. EGzhe
-#: svtools/inc/langtab.hrc:380
+#: svtools/inc/langtab.hrc:381
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Puinave"
msgstr "Puinave"
#. HNcxe
-#: svtools/inc/langtab.hrc:381
+#: svtools/inc/langtab.hrc:382
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Maninkakan, Eastern, Latin"
msgstr ""
#. Kxi9E
-#: svtools/inc/langtab.hrc:382
+#: svtools/inc/langtab.hrc:383
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Avar"
msgstr ""
#. zumBa
-#: svtools/inc/langtab.hrc:383
+#: svtools/inc/langtab.hrc:384
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Latin"
msgstr ""
#. PQqU7
-#: svtools/inc/langtab.hrc:384
+#: svtools/inc/langtab.hrc:385
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cree, Plains, Syllabics"
msgstr ""
#. kewgf
-#: svtools/inc/langtab.hrc:385
+#: svtools/inc/langtab.hrc:386
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lengo"
msgstr ""
#. KtBfE
-#: svtools/inc/langtab.hrc:386
+#: svtools/inc/langtab.hrc:387
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Côte d'Ivoire)"
msgstr "Francés (Costa de Marfil)"
#. DTuEL
-#: svtools/inc/langtab.hrc:387
+#: svtools/inc/langtab.hrc:388
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mali)"
msgstr "Francés (Malí)"
#. LFLk6
-#: svtools/inc/langtab.hrc:388
+#: svtools/inc/langtab.hrc:389
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Senegal)"
msgstr "Francés (Senegal)"
#. mSK3x
-#: svtools/inc/langtab.hrc:389
+#: svtools/inc/langtab.hrc:390
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Benin)"
msgstr "Francés (Benín)"
#. tM6qQ
-#: svtools/inc/langtab.hrc:390
+#: svtools/inc/langtab.hrc:391
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Niger)"
msgstr "Francés (Níxer)"
#. nCq6f
-#: svtools/inc/langtab.hrc:391
+#: svtools/inc/langtab.hrc:392
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Togo)"
msgstr "Francés (Togu)"
#. oCBvK
-#: svtools/inc/langtab.hrc:392
+#: svtools/inc/langtab.hrc:393
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kven Finnish"
msgstr ""
#. zjNcC
-#: svtools/inc/langtab.hrc:393
+#: svtools/inc/langtab.hrc:394
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venetian"
msgstr "Vénetu"
#. 8EbCs
-#: svtools/inc/langtab.hrc:394
+#: svtools/inc/langtab.hrc:395
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Gambia)"
msgstr "Inglés (Gambia)"
#. gEd8L
-#: svtools/inc/langtab.hrc:395
+#: svtools/inc/langtab.hrc:396
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aranese"
msgstr "Aranés"
#. TaEzQ
-#: svtools/inc/langtab.hrc:396
+#: svtools/inc/langtab.hrc:397
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (France)"
msgstr "Arpetán (Francia)"
#. s4yFD
-#: svtools/inc/langtab.hrc:397
+#: svtools/inc/langtab.hrc:398
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Italy)"
msgstr "Arpetán (Italia)"
#. FvPLF
-#: svtools/inc/langtab.hrc:398
+#: svtools/inc/langtab.hrc:399
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arpitan (Switzerland)"
msgstr "Arpetán (Suiza)"
#. GgwXq
-#: svtools/inc/langtab.hrc:399
+#: svtools/inc/langtab.hrc:400
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Botswana)"
msgstr "Inglés (Botsuana)"
#. GZfWN
-#: svtools/inc/langtab.hrc:400
+#: svtools/inc/langtab.hrc:401
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interlingue Occidental"
msgstr ""
#. FFkaK
-#: svtools/inc/langtab.hrc:401
+#: svtools/inc/langtab.hrc:402
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Apatani"
msgstr ""
#. EHHtS
-#: svtools/inc/langtab.hrc:402
+#: svtools/inc/langtab.hrc:403
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Mauritius)"
msgstr "Inglés (Mauriciu)"
#. atcMq
-#: svtools/inc/langtab.hrc:403
+#: svtools/inc/langtab.hrc:404
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mauritius)"
msgstr "Francés (Mauriciu)"
#. UZ4Pn
-#: svtools/inc/langtab.hrc:404
+#: svtools/inc/langtab.hrc:405
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Silesian"
msgstr "Silesiu"
#. RJDLA
-#: svtools/inc/langtab.hrc:405
+#: svtools/inc/langtab.hrc:406
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Hungarian (Szekely-Hungarian Rovas)"
msgstr ""
#. v3WK8
-#: svtools/inc/langtab.hrc:406
+#: svtools/inc/langtab.hrc:407
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Malaysia)"
msgstr "Inglés (Malasia)"
#. 4sBjT
-#: svtools/inc/langtab.hrc:407
+#: svtools/inc/langtab.hrc:408
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Manchu"
msgstr ""
#. XH3fY
-#: svtools/inc/langtab.hrc:408
+#: svtools/inc/langtab.hrc:409
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Xibe"
msgstr ""
#. oGNdE
-#: svtools/inc/langtab.hrc:409
+#: svtools/inc/langtab.hrc:410
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kituba (Democratic Republic of the Congo)"
msgstr ""
#. jQF7C
-#: svtools/inc/langtab.hrc:410
+#: svtools/inc/langtab.hrc:411
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Fon"
msgstr "Fon"
#. cAPXF
-#: svtools/inc/langtab.hrc:411
+#: svtools/inc/langtab.hrc:412
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Plautdietsch"
msgstr "Baxu alemán menonita"
#. 8LY2A
-#: svtools/inc/langtab.hrc:412
+#: svtools/inc/langtab.hrc:413
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Russia)"
msgstr "Armeniu, oriental (Rusia)"
#. ieGNR
-#: svtools/inc/langtab.hrc:413
+#: svtools/inc/langtab.hrc:414
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Iran)"
msgstr "Armeniu, oriental (Irán)"
#. US8Ga
-#: svtools/inc/langtab.hrc:414
+#: svtools/inc/langtab.hrc:415
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Western (Armenia)"
msgstr "Armeniu, occidental (Armenia)"
#. nzbrZ
-#: svtools/inc/langtab.hrc:415
+#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Classical (Armenia)"
msgstr "Armeniu, clásicu (Armenia)"
#. BDKAa
-#: svtools/inc/langtab.hrc:416
+#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Malaysia)"
msgstr ""
#. AnrGG
-#: svtools/inc/langtab.hrc:417
+#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Brunei Darussalam)"
msgstr ""
#. utBog
-#: svtools/inc/langtab.hrc:418
+#: svtools/inc/langtab.hrc:419
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
msgstr ""
#. jPaAH
-#: svtools/inc/langtab.hrc:419
+#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
msgstr ""
#. mMVAF
-#: svtools/inc/langtab.hrc:420
+#: svtools/inc/langtab.hrc:421
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
msgstr ""
#. AzGAy
-#: svtools/inc/langtab.hrc:421
+#: svtools/inc/langtab.hrc:422
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
msgstr "Inglés (Zambia)"
#. 7kkKy
-#: svtools/inc/langtab.hrc:422
+#: svtools/inc/langtab.hrc:423
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Sri Lanka)"
msgstr "Inglés (Sri Lanka)"
#. xFPXp
-#: svtools/inc/langtab.hrc:423
+#: svtools/inc/langtab.hrc:424
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Nigeria)"
msgstr "Inglés (Nixeria)"
#. Up6ab
-#: svtools/inc/langtab.hrc:424
+#: svtools/inc/langtab.hrc:425
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kabardian"
msgstr "Cabardianu"
#. BiDsR
-#: svtools/inc/langtab.hrc:425
+#: svtools/inc/langtab.hrc:426
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Guadeloupean Creole French"
msgstr ""
#. 2b2P4
-#: svtools/inc/langtab.hrc:426
+#: svtools/inc/langtab.hrc:427
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ligurian"
msgstr ""
#. 3LvEE
-#: svtools/inc/langtab.hrc:427
+#: svtools/inc/langtab.hrc:428
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Minangkabau"
msgstr ""
#. nDkKR
-#: svtools/inc/langtab.hrc:428
+#: svtools/inc/langtab.hrc:429
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sundanese"
msgstr ""
#. wGEAB
-#: svtools/inc/langtab.hrc:429
+#: svtools/inc/langtab.hrc:430
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Hong Kong)"
msgstr "Inglés (Ḥong Kong)"
#. qTMB2
-#: svtools/inc/langtab.hrc:430
+#: svtools/inc/langtab.hrc:431
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Kenya)"
msgstr ""
#. SgQ2p
-#: svtools/inc/langtab.hrc:431
+#: svtools/inc/langtab.hrc:432
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pali Thai"
msgstr ""
#. DGeeF
-#: svtools/inc/langtab.hrc:432
+#: svtools/inc/langtab.hrc:433
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cabécar"
msgstr ""
#. xHCtG
-#: svtools/inc/langtab.hrc:433
+#: svtools/inc/langtab.hrc:434
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Bribri"
msgstr ""
#. 2GFgR
-#: svtools/inc/langtab.hrc:434
+#: svtools/inc/langtab.hrc:435
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Denmark)"
msgstr "Inglés (Dinamarca)"
#. gmE6U
-#: svtools/inc/langtab.hrc:435
+#: svtools/inc/langtab.hrc:436
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sesotho"
msgstr ""
#. BkKJX
-#: svtools/inc/langtab.hrc:436
+#: svtools/inc/langtab.hrc:437
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Klingon"
msgstr "Klingon"
#. xFYhC
-#: svtools/inc/langtab.hrc:437
+#: svtools/inc/langtab.hrc:438
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Israel)"
msgstr ""
#. Bryjh
-#: svtools/inc/langtab.hrc:438
+#: svtools/inc/langtab.hrc:439
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Latin"
msgstr ""
#. DZBAE
-#: svtools/inc/langtab.hrc:439
+#: svtools/inc/langtab.hrc:440
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Interslavic Cyrillic"
msgstr ""
#. 4eEDW
-#: svtools/inc/langtab.hrc:440
+#: svtools/inc/langtab.hrc:441
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Pennsylvania Dutch"
msgstr "Alemán de Pennsylvania"
@@ -5260,7 +5260,7 @@ msgstr "Profundidá de color"
#: svtools/uiconfig/ui/graphicexport.ui:385
msgctxt "graphicexport|losslesscb"
msgid "Lossless"
-msgstr ""
+msgstr "Ensin perdes"
#. QKNme
#: svtools/uiconfig/ui/graphicexport.ui:394
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 68dfed4968c..b313ecb8143 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: 2022-02-18 12:17+0100\n"
-"PO-Revision-Date: 2022-02-16 08:40+0000\n"
+"POT-Creation-Date: 2022-03-21 12:32+0100\n"
+"PO-Revision-Date: 2022-04-04 09:51+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"
@@ -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.11.2\n"
"X-POOTLE-MTIME: 1542022499.000000\n"
#. 3GkZj
@@ -34,3050 +34,3056 @@ msgctxt "STR_ObjNameSingulGRUP"
msgid "Group object"
msgstr "Oxetu de grupu"
-#. tC4qm
+#. nsYcw
#: include/svx/strings.hrc:28
+msgctxt "STR_ObjNameSingulDIAGRAM"
+msgid "Diagram"
+msgstr "Diagrama"
+
+#. tC4qm
+#: include/svx/strings.hrc:29
msgctxt "STR_ObjNamePluralGRUP"
msgid "Group objects"
msgstr "Oxetos de grupu"
#. piV8E
-#: include/svx/strings.hrc:29
+#: include/svx/strings.hrc:30
msgctxt "STR_ObjNameSingulGRUPEMPTY"
msgid "Blank group object"
msgstr "Oxetu de grupu baleru"
#. BBEPU
-#: include/svx/strings.hrc:30
+#: include/svx/strings.hrc:31
msgctxt "STR_ObjNamePluralGRUPEMPTY"
msgid "Blank group objects"
msgstr "Oxetos de grupu vacíos"
#. NVHmC
-#: include/svx/strings.hrc:31
+#: include/svx/strings.hrc:32
msgctxt "STR_ObjNameSingulLINE"
msgid "Line"
msgstr "Llinia"
#. SD2Wy
-#: include/svx/strings.hrc:32
+#: include/svx/strings.hrc:33
msgctxt "STR_ObjNameSingulLINE_Hori"
msgid "Horizontal line"
msgstr "Llinia horizontal"
#. 3dPEH
-#: include/svx/strings.hrc:33
+#: include/svx/strings.hrc:34
msgctxt "STR_ObjNameSingulLINE_Vert"
msgid "Vertical line"
msgstr "Llinia vertical"
#. JzFtj
-#: include/svx/strings.hrc:34
+#: include/svx/strings.hrc:35
msgctxt "STR_ObjNameSingulLINE_Diag"
msgid "Diagonal line"
msgstr "Llinia diagonal"
#. YPAoe
-#: include/svx/strings.hrc:35
+#: include/svx/strings.hrc:36
msgctxt "STR_ObjNamePluralLINE"
msgid "Lines"
msgstr "Llinies"
#. yS2nC
-#: include/svx/strings.hrc:36
+#: include/svx/strings.hrc:37
msgctxt "STR_ObjNameSingulRECT"
msgid "Rectangle"
msgstr "Reutángulu"
#. TDTj8
-#: include/svx/strings.hrc:37
+#: include/svx/strings.hrc:38
msgctxt "STR_ObjNamePluralRECT"
msgid "Rectangles"
msgstr "Reutángulos"
#. fnV49
-#: include/svx/strings.hrc:38
+#: include/svx/strings.hrc:39
msgctxt "STR_ObjNameSingulQUAD"
msgid "Square"
msgstr "Cuadráu"
#. XkEHU
-#: include/svx/strings.hrc:39
+#: include/svx/strings.hrc:40
msgctxt "STR_ObjNamePluralQUAD"
msgid "Squares"
msgstr "Cuadraos"
#. vw4Ut
-#: include/svx/strings.hrc:40
+#: include/svx/strings.hrc:41
msgctxt "STR_ObjNameSingulPARAL"
msgid "Parallelogram"
msgstr "Paralelogramu"
#. yCpvs
-#: include/svx/strings.hrc:41
+#: include/svx/strings.hrc:42
msgctxt "STR_ObjNamePluralPARAL"
msgid "Parallelograms"
msgstr "Paralelogramos"
#. SfDZQ
-#: include/svx/strings.hrc:42
+#: include/svx/strings.hrc:43
msgctxt "STR_ObjNameSingulRECTRND"
msgid "Rounded rectangle"
msgstr "Rectángulu redondiáu"
#. PYAii
-#: include/svx/strings.hrc:43
+#: include/svx/strings.hrc:44
msgctxt "STR_ObjNamePluralRECTRND"
msgid "Rounded Rectangles"
msgstr "Rectángulos redondiaos"
#. xQAn8
-#: include/svx/strings.hrc:44
+#: include/svx/strings.hrc:45
msgctxt "STR_ObjNameSingulQUADRND"
msgid "rounded square"
msgstr "cuadráu redondiáu"
#. JHxon
-#: include/svx/strings.hrc:45
+#: include/svx/strings.hrc:46
msgctxt "STR_ObjNamePluralQUADRND"
msgid "Rounded Squares"
msgstr "Cuadraos redondiaos"
#. 89eHB
-#: include/svx/strings.hrc:46
+#: include/svx/strings.hrc:47
msgctxt "STR_ObjNameSingulPARALRND"
msgid "Rounded Parallelogram"
msgstr "Paralelogramu redondiáu"
#. WvCRG
-#: include/svx/strings.hrc:47
+#: include/svx/strings.hrc:48
msgctxt "STR_ObjNamePluralPARALRND"
msgid "Rounded parallelograms"
msgstr "Paralelogramos redondiaos"
#. NDXG6
-#: include/svx/strings.hrc:48
+#: include/svx/strings.hrc:49
msgctxt "STR_ObjNameSingulCIRC"
msgid "Circle"
msgstr "Círculu"
#. Bzk99
-#: include/svx/strings.hrc:49
+#: include/svx/strings.hrc:50
msgctxt "STR_ObjNamePluralCIRC"
msgid "Circles"
msgstr "Círculos"
#. 2CxVR
-#: include/svx/strings.hrc:50
+#: include/svx/strings.hrc:51
msgctxt "STR_ObjNameSingulSECT"
msgid "Circle sector"
msgstr "Seutor de círculu"
#. djBb7
-#: include/svx/strings.hrc:51
+#: include/svx/strings.hrc:52
msgctxt "STR_ObjNamePluralSECT"
msgid "Circle sectors"
msgstr "Seutores de círculu"
#. KAhqG
-#: include/svx/strings.hrc:52
+#: include/svx/strings.hrc:53
msgctxt "STR_ObjNameSingulCARC"
msgid "Arc"
msgstr "Arcu"
#. ZtPEx
-#: include/svx/strings.hrc:53
+#: include/svx/strings.hrc:54
msgctxt "STR_ObjNamePluralCARC"
msgid "Arcs"
msgstr "Arcos"
#. 7mXtq
-#: include/svx/strings.hrc:54
+#: include/svx/strings.hrc:55
msgctxt "STR_ObjNameSingulCCUT"
msgid "Circle segment"
msgstr "Segmentu de círculu"
#. YkhbA
-#: include/svx/strings.hrc:55
+#: include/svx/strings.hrc:56
msgctxt "STR_ObjNamePluralCCUT"
msgid "Circle segments"
msgstr "Segmentos de círculu"
#. QsEuy
-#: include/svx/strings.hrc:56
+#: include/svx/strings.hrc:57
msgctxt "STR_ObjNameSingulCIRCE"
msgid "Ellipse"
msgstr "Elipse"
#. rUFxb
-#: include/svx/strings.hrc:57
+#: include/svx/strings.hrc:58
msgctxt "STR_ObjNamePluralCIRCE"
msgid "Ellipses"
msgstr "Elipses"
#. UADGo
-#: include/svx/strings.hrc:58
+#: include/svx/strings.hrc:59
msgctxt "STR_ObjNameSingulSECTE"
msgid "Ellipse Pie"
msgstr "Seutor d'elipse"
#. afCit
-#: include/svx/strings.hrc:59
+#: include/svx/strings.hrc:60
msgctxt "STR_ObjNamePluralSECTE"
msgid "Ellipse Pies"
msgstr "Seutores d'elipse"
#. 7FXAW
-#: include/svx/strings.hrc:60
+#: include/svx/strings.hrc:61
msgctxt "STR_ObjNameSingulCARCE"
msgid "Elliptical arc"
msgstr "Arcu d'elipse"
#. KdtfM
-#: include/svx/strings.hrc:61
+#: include/svx/strings.hrc:62
msgctxt "STR_ObjNamePluralCARCE"
msgid "Elliptical arcs"
msgstr "Arcos d'elipse"
#. C4jME
-#: include/svx/strings.hrc:62
+#: include/svx/strings.hrc:63
msgctxt "STR_ObjNameSingulCCUTE"
msgid "Ellipse Segment"
msgstr "Segmentu elípticu"
#. wKC5F
-#: include/svx/strings.hrc:63
+#: include/svx/strings.hrc:64
msgctxt "STR_ObjNamePluralCCUTE"
msgid "Ellipse Segments"
msgstr "Segmentos elípticos"
#. ibJ55
-#: include/svx/strings.hrc:64
+#: include/svx/strings.hrc:65
msgctxt "STR_ObjNameSingulPOLY"
msgid "Polygon"
msgstr "Polígonu"
#. AZFuB
-#: include/svx/strings.hrc:65
+#: include/svx/strings.hrc:66
msgctxt "STR_ObjNameSingulPOLY_PointCount"
msgid "Polygon %2 corners"
msgstr "Polígonu de %2 esquines"
#. a6z8j
-#: include/svx/strings.hrc:66
+#: include/svx/strings.hrc:67
msgctxt "STR_ObjNamePluralPOLY"
msgid "Polygons"
msgstr "Polígonos"
#. WSEL3
-#: include/svx/strings.hrc:67
+#: include/svx/strings.hrc:68
msgctxt "STR_ObjNameSingulPLIN"
msgid "Polyline"
msgstr "Polillinia"
#. eBhxV
-#: include/svx/strings.hrc:68
+#: include/svx/strings.hrc:69
msgctxt "STR_ObjNameSingulPLIN_PointCount"
msgid "Polyline with %2 corners"
msgstr "Polillinia con %2 esquines"
#. NjP7U
-#: include/svx/strings.hrc:69
+#: include/svx/strings.hrc:70
msgctxt "STR_ObjNamePluralPLIN"
msgid "Polylines"
msgstr "Polillinies"
#. KNPXt
-#: include/svx/strings.hrc:70
+#: include/svx/strings.hrc:71
msgctxt "STR_ObjNameSingulPATHLINE"
msgid "Bézier curve"
msgstr "Curva Bézier"
#. BhTAu
-#: include/svx/strings.hrc:71
+#: include/svx/strings.hrc:72
msgctxt "STR_ObjNamePluralPATHLINE"
msgid "Bézier curves"
msgstr "Curves Bézier"
#. LU3AK
-#: include/svx/strings.hrc:72
+#: include/svx/strings.hrc:73
msgctxt "STR_ObjNameSingulPATHFILL"
msgid "Bézier curve"
msgstr "Curva Bézier"
#. vLAWh
-#: include/svx/strings.hrc:73
+#: include/svx/strings.hrc:74
msgctxt "STR_ObjNamePluralPATHFILL"
msgid "Bézier curves"
msgstr "Curves Bézier"
#. FQeae
-#: include/svx/strings.hrc:74
+#: include/svx/strings.hrc:75
msgctxt "STR_ObjNameSingulFREELINE"
msgid "Freeform Line"
msgstr "Llinia de forma llibre"
#. c8gFR
-#: include/svx/strings.hrc:75
+#: include/svx/strings.hrc:76
msgctxt "STR_ObjNamePluralFREELINE"
msgid "Freeform Lines"
msgstr "Llinies de forma llibre"
#. GSmPG
-#: include/svx/strings.hrc:76
+#: include/svx/strings.hrc:77
msgctxt "STR_ObjNameSingulFREEFILL"
msgid "Freeform Line"
msgstr "Llinia de forma llibre"
#. 8k7tC
-#: include/svx/strings.hrc:77
+#: include/svx/strings.hrc:78
msgctxt "STR_ObjNamePluralFREEFILL"
msgid "Freeform Lines"
msgstr "Llinies de forma llibre"
#. iwxqj
-#: include/svx/strings.hrc:78
+#: include/svx/strings.hrc:79
msgctxt "STR_ObjNameSingulCOMBLINE"
msgid "Curve"
msgstr "Curva"
#. CjzRc
-#: include/svx/strings.hrc:79
+#: include/svx/strings.hrc:80
msgctxt "STR_ObjNameSingulNATSPLN"
msgid "Natural Spline"
msgstr "Spline natural"
#. CSFGL
-#: include/svx/strings.hrc:80
+#: include/svx/strings.hrc:81
msgctxt "STR_ObjNamePluralNATSPLN"
msgid "Natural Splines"
msgstr "Splines naturales"
#. jpijx
-#: include/svx/strings.hrc:81
+#: include/svx/strings.hrc:82
msgctxt "STR_ObjNameSingulPERSPLN"
msgid "Periodic Spline"
msgstr "Spline Periódica"
#. A2GLR
-#: include/svx/strings.hrc:82
+#: include/svx/strings.hrc:83
msgctxt "STR_ObjNamePluralPERSPLN"
msgid "Periodic Splines"
msgstr "Splines Periódiques"
#. efEFM
-#: include/svx/strings.hrc:83
+#: include/svx/strings.hrc:84
msgctxt "STR_ObjNameSingulTEXT"
msgid "Text Frame"
msgstr "Marcu de testu"
#. MdV7N
-#: include/svx/strings.hrc:84
+#: include/svx/strings.hrc:85
msgctxt "STR_ObjNamePluralTEXT"
msgid "Text Frame"
msgstr "Marcu de testu"
#. 3Pvnw
-#: include/svx/strings.hrc:85
+#: include/svx/strings.hrc:86
msgctxt "STR_ObjNameSingulTEXTLNK"
msgid "Linked text frame"
msgstr "Marcu de testu enllazáu"
#. EtTZB
-#: include/svx/strings.hrc:86
+#: include/svx/strings.hrc:87
msgctxt "STR_ObjNamePluralTEXTLNK"
msgid "Linked text frames"
msgstr "Marcos de testu enllazáu"
#. mw75y
-#: include/svx/strings.hrc:87
+#: include/svx/strings.hrc:88
msgctxt "STR_ObjNameSingulTITLETEXT"
msgid "Title text"
msgstr "Testu de títulu"
#. aAKEp
-#: include/svx/strings.hrc:88
+#: include/svx/strings.hrc:89
msgctxt "STR_ObjNamePluralTITLETEXT"
msgid "Title texts"
msgstr "Testos de títulu"
#. 3DMmh
-#: include/svx/strings.hrc:89
+#: include/svx/strings.hrc:90
msgctxt "STR_ObjNameSingulOUTLINETEXT"
msgid "Outline Text"
msgstr "Testu del esquema"
#. PDZGm
-#: include/svx/strings.hrc:90
+#: include/svx/strings.hrc:91
msgctxt "STR_ObjNamePluralOUTLINETEXT"
msgid "Outline Texts"
msgstr "Testos del esquema"
#. HspAE
-#: include/svx/strings.hrc:91
+#: include/svx/strings.hrc:92
msgctxt "STR_ObjNameSingulGRAF"
msgid "Image"
msgstr "Imaxe"
#. DzfeY
-#: include/svx/strings.hrc:92
+#: include/svx/strings.hrc:93
msgctxt "STR_ObjNamePluralGRAF"
msgid "Images"
msgstr "Imaxes"
#. E9w8q
-#: include/svx/strings.hrc:93
+#: include/svx/strings.hrc:94
msgctxt "STR_ObjNameSingulGRAFLNK"
msgid "Linked image"
msgstr "Imaxe enllazada"
#. YopD6
-#: include/svx/strings.hrc:94
+#: include/svx/strings.hrc:95
msgctxt "STR_ObjNamePluralGRAFLNK"
msgid "Linked images"
msgstr "Enllaces enllazaes"
#. wWACk
-#: include/svx/strings.hrc:95
+#: include/svx/strings.hrc:96
msgctxt "STR_ObjNameSingulGRAFNONE"
msgid "Blank image object"
msgstr ""
#. uzsE4
-#: include/svx/strings.hrc:96
+#: include/svx/strings.hrc:97
msgctxt "STR_ObjNamePluralGRAFNONE"
msgid "Blank image objects"
msgstr ""
#. 8Za3o
-#: include/svx/strings.hrc:97
+#: include/svx/strings.hrc:98
msgctxt "STR_ObjNameSingulGRAFNONELNK"
msgid "Blank linked image"
msgstr ""
#. 8W5JS
-#: include/svx/strings.hrc:98
+#: include/svx/strings.hrc:99
msgctxt "STR_ObjNamePluralGRAFNONELNK"
msgid "Blank linked images"
msgstr ""
#. kUuBg
-#: include/svx/strings.hrc:99
+#: include/svx/strings.hrc:100
msgctxt "STR_ObjNameSingulGRAFMTF"
msgid "Metafile"
msgstr "Metaficheru"
#. w5ykB
-#: include/svx/strings.hrc:100
+#: include/svx/strings.hrc:101
msgctxt "STR_ObjNamePluralGRAFMTF"
msgid "Metafiles"
msgstr "Metaficheros"
#. XBDAB
-#: include/svx/strings.hrc:101
+#: include/svx/strings.hrc:102
msgctxt "STR_ObjNameSingulGRAFMTFLNK"
msgid "Linked Metafile"
msgstr "Metaficheru enllazáu"
#. ACpDE
-#: include/svx/strings.hrc:102
+#: include/svx/strings.hrc:103
msgctxt "STR_ObjNamePluralGRAFMTFLNK"
msgid "Linked Metafiles"
msgstr "Metaficheros enllazaos"
#. Pbmqw
-#: include/svx/strings.hrc:103
+#: include/svx/strings.hrc:104
msgctxt "STR_ObjNameSingulGRAFBMP"
msgid "Image"
msgstr "Imaxe"
#. WdAhn
-#: include/svx/strings.hrc:104
+#: include/svx/strings.hrc:105
msgctxt "STR_ObjNameSingulGRAFBMPTRANS"
msgid "Image with transparency"
msgstr "Imaxe con tresparencia"
#. 3FkK6
-#: include/svx/strings.hrc:105
+#: include/svx/strings.hrc:106
msgctxt "STR_ObjNameSingulGRAFBMPLNK"
msgid "Linked Image"
msgstr "Imaxe enllazada"
#. ydd77
-#: include/svx/strings.hrc:106
+#: include/svx/strings.hrc:107
msgctxt "STR_ObjNameSingulGRAFBMPTRANSLNK"
msgid "Linked image with transparency"
msgstr "Imaxe enllazada con tresparencia"
#. FVJeA
-#: include/svx/strings.hrc:107
+#: include/svx/strings.hrc:108
msgctxt "STR_ObjNamePluralGRAFBMP"
msgid "Images"
msgstr "Imaxes"
#. mjfjF
-#: include/svx/strings.hrc:108
+#: include/svx/strings.hrc:109
msgctxt "STR_ObjNamePluralGRAFBMPTRANS"
msgid "Images with transparency"
msgstr "Imaxes con tresparencia"
#. 8kaaN
-#: include/svx/strings.hrc:109
+#: include/svx/strings.hrc:110
msgctxt "STR_ObjNamePluralGRAFBMPLNK"
msgid "Linked images"
msgstr ""
#. DKMiE
-#: include/svx/strings.hrc:110
+#: include/svx/strings.hrc:111
msgctxt "STR_ObjNamePluralGRAFBMPTRANSLNK"
msgid "Linked images with transparency"
msgstr "Imaxes enllazaes con tresparencia"
#. aeEoK
-#: include/svx/strings.hrc:111
+#: include/svx/strings.hrc:112
msgctxt "STR_ObjNameSingulCUSTOMSHAPE"
msgid "Shape"
msgstr "Forma"
#. BZmgL
-#: include/svx/strings.hrc:112
+#: include/svx/strings.hrc:113
msgctxt "STR_ObjNamePluralCUSTOMSHAPE"
msgid "Shapes"
msgstr "Formes"
#. HBYSq
-#: include/svx/strings.hrc:113
+#: include/svx/strings.hrc:114
msgctxt "STR_ObjNameSingulGRAFSVG"
msgid "SVG"
msgstr "SVG"
#. pzxhb
-#: include/svx/strings.hrc:114
+#: include/svx/strings.hrc:115
msgctxt "STR_ObjNamePluralGRAFSVG"
msgid "SVGs"
msgstr "SVG"
#. v2DTg
-#: include/svx/strings.hrc:115
+#: include/svx/strings.hrc:116
msgctxt "STR_ObjNameSingulGRAFWMF"
msgid "WMF"
msgstr ""
#. LR2x6
-#: include/svx/strings.hrc:116
+#: include/svx/strings.hrc:117
msgctxt "STR_ObjNamePluralGRAFWMF"
msgid "WMFs"
msgstr ""
#. XcDs2
-#: include/svx/strings.hrc:117
+#: include/svx/strings.hrc:118
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "EMF"
msgstr ""
#. JtdP2
-#: include/svx/strings.hrc:118
+#: include/svx/strings.hrc:119
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "EMFs"
msgstr ""
#. H2FkB
-#: include/svx/strings.hrc:119
+#: include/svx/strings.hrc:120
msgctxt "STR_ObjNameSingulGRAFEMF"
msgid "PDF"
msgstr ""
#. tc3Jb
-#: include/svx/strings.hrc:120
+#: include/svx/strings.hrc:121
msgctxt "STR_ObjNamePluralGRAFEMF"
msgid "PDFs"
msgstr ""
#. b3os5
-#: include/svx/strings.hrc:121
+#: include/svx/strings.hrc:122
msgctxt "STR_ObjNameSingulOLE2"
msgid "embedded object (OLE)"
msgstr "oxetu incorporáu (OLE)"
#. QMF8w
-#: include/svx/strings.hrc:122
+#: include/svx/strings.hrc:123
msgctxt "STR_ObjNamePluralOLE2"
msgid "Embedded objects (OLE)"
msgstr "Oxetos incorporaos (OLE)"
#. mAAWu
-#: include/svx/strings.hrc:123
+#: include/svx/strings.hrc:124
msgctxt "STR_ObjNameSingulUno"
msgid "Control"
msgstr "Control"
#. KrTeo
-#: include/svx/strings.hrc:124
+#: include/svx/strings.hrc:125
msgctxt "STR_ObjNamePluralUno"
msgid "Controls"
msgstr "Controles"
#. wfVg2
-#: include/svx/strings.hrc:125
+#: include/svx/strings.hrc:126
msgctxt "STR_ObjNameSingulFrame"
msgid "Frame"
msgstr "Marcu"
#. q72EC
-#: include/svx/strings.hrc:126
+#: include/svx/strings.hrc:127
msgctxt "STR_ObjNamePluralFrame"
msgid "Frames"
msgstr "Marcos"
#. gYhqY
-#: include/svx/strings.hrc:127
+#: include/svx/strings.hrc:128
msgctxt "STR_ObjNameSingulEDGE"
msgid "Object Connectors"
msgstr "Coneutores d'oxetu"
#. 9XiCG
-#: include/svx/strings.hrc:128
+#: include/svx/strings.hrc:129
msgctxt "STR_ObjNamePluralEDGE"
msgid "Object Connectors"
msgstr "Coneutores d'oxetu"
#. HSDBo
-#: include/svx/strings.hrc:129
+#: include/svx/strings.hrc:130
msgctxt "STR_ObjNameSingulCAPTION"
msgid "Callout"
msgstr "Llamada"
#. BdAJu
-#: include/svx/strings.hrc:130
+#: include/svx/strings.hrc:131
msgctxt "STR_ObjNamePluralCAPTION"
msgid "Callouts"
msgstr "Llamaes"
#. Ezpif
-#: include/svx/strings.hrc:131
+#: include/svx/strings.hrc:132
msgctxt "STR_ObjNameSingulPAGE"
msgid "Preview object"
msgstr "Oxetu de previsualización"
#. UCECt
-#: include/svx/strings.hrc:132
+#: include/svx/strings.hrc:133
msgctxt "STR_ObjNamePluralPAGE"
msgid "Preview objects"
msgstr "Oxetos de previsualización"
#. GCVKi
-#: include/svx/strings.hrc:133
+#: include/svx/strings.hrc:134
msgctxt "STR_ObjNameSingulMEASURE"
msgid "Dimension line"
msgstr "Llinia de cota"
#. DokjU
-#: include/svx/strings.hrc:134
+#: include/svx/strings.hrc:135
msgctxt "STR_ObjNamePluralMEASURE"
msgid "Dimensioning objects"
msgstr "Acotar oxetos"
#. iBQEy
-#: include/svx/strings.hrc:135
+#: include/svx/strings.hrc:136
msgctxt "STR_ObjNamePlural"
msgid "Drawing objects"
msgstr "Oxetos de dibuxu"
#. xHrgo
-#: include/svx/strings.hrc:136
+#: include/svx/strings.hrc:137
msgctxt "STR_ObjNameNoObj"
msgid "No draw object"
msgstr "Dengún oxetu de dibuxu"
#. EEKnk
-#: include/svx/strings.hrc:137
+#: include/svx/strings.hrc:138
#, fuzzy
msgctxt "STR_ObjNameSingulPlural"
msgid "Draw object(s)"
msgstr "oxetu(os) de dibuxu"
#. LYyRP
-#: include/svx/strings.hrc:138
+#: include/svx/strings.hrc:139
msgctxt "STR_ObjNameSingulCube3d"
msgid "3D cube"
msgstr "Cubu 3D"
#. ZsF4T
-#: include/svx/strings.hrc:139
+#: include/svx/strings.hrc:140
msgctxt "STR_ObjNamePluralCube3d"
msgid "3D cubes"
msgstr "Cubos 3D"
#. h9hf7
-#: include/svx/strings.hrc:140
+#: include/svx/strings.hrc:141
msgctxt "STR_ObjNameSingulExtrude3d"
msgid "Extrusion object"
msgstr "Oxetu d'estrusión"
#. Ag6Pu
-#: include/svx/strings.hrc:141
+#: include/svx/strings.hrc:142
msgctxt "STR_ObjNamePluralExtrude3d"
msgid "Extrusion objects"
msgstr "Oxetos d'estrusión"
#. L3B8v
-#: include/svx/strings.hrc:142
+#: include/svx/strings.hrc:143
#, fuzzy
msgctxt "STR_ObjNameSingulLathe3d"
msgid "Rotation object"
msgstr "oxetu de rotación"
#. e3vFm
-#: include/svx/strings.hrc:143
+#: include/svx/strings.hrc:144
#, fuzzy
msgctxt "STR_ObjNamePluralLathe3d"
msgid "Rotation objects"
msgstr "oxetos de rotación"
#. CE5Gk
-#: include/svx/strings.hrc:144
+#: include/svx/strings.hrc:145
msgctxt "STR_ObjNameSingulObj3d"
msgid "3D object"
msgstr "oxetu 3D"
#. pECo3
-#: include/svx/strings.hrc:145
+#: include/svx/strings.hrc:146
msgctxt "STR_ObjNamePluralObj3d"
msgid "3D objects"
msgstr "oxetos 3D"
#. Wuqvb
-#: include/svx/strings.hrc:146
+#: include/svx/strings.hrc:147
msgctxt "STR_ObjNameSingulScene3d"
msgid "3D scene"
msgstr "Escena 3D"
#. tH8BD
-#: include/svx/strings.hrc:147
+#: include/svx/strings.hrc:148
msgctxt "STR_ObjNamePluralScene3d"
msgid "3D scenes"
msgstr "Escenes 3D"
#. WdWuw
-#: include/svx/strings.hrc:148
+#: include/svx/strings.hrc:149
#, fuzzy
msgctxt "STR_ObjNameSingulSphere3d"
msgid "Sphere"
msgstr "esfera"
#. YNXv5
-#: include/svx/strings.hrc:149
+#: include/svx/strings.hrc:150
#, fuzzy
msgctxt "STR_ObjNamePluralSphere3d"
msgid "Spheres"
msgstr "esferes"
#. h4GBf
-#: include/svx/strings.hrc:150
+#: include/svx/strings.hrc:151
msgctxt "STR_EditWithCopy"
msgid "with copy"
msgstr "con copia"
#. NrVyW
-#: include/svx/strings.hrc:151
+#: include/svx/strings.hrc:152
msgctxt "STR_EditPosSize"
msgid "Set position and size for %1"
msgstr "Afitar posición y tamañu de %1"
#. ac4yY
-#: include/svx/strings.hrc:152
+#: include/svx/strings.hrc:153
msgctxt "STR_EditDelete"
msgid "Delete %1"
msgstr "Desaniciar %1"
#. AweBA
-#: include/svx/strings.hrc:153
+#: include/svx/strings.hrc:154
msgctxt "STR_EditMovToTop"
msgid "Move %1 forward"
msgstr "Mover %1 alantre"
#. G7EUR
-#: include/svx/strings.hrc:154
+#: include/svx/strings.hrc:155
msgctxt "STR_EditMovToBtm"
msgid "Move %1 further back"
msgstr "Mover %1 más atrás"
#. B83UQ
-#: include/svx/strings.hrc:155
+#: include/svx/strings.hrc:156
msgctxt "STR_EditPutToTop"
msgid "Move %1 to front"
msgstr "Mover %1 al frente"
#. aHzgz
-#: include/svx/strings.hrc:156
+#: include/svx/strings.hrc:157
msgctxt "STR_EditPutToBtm"
msgid "Move %1 to back"
msgstr "Mover %1 atrás"
#. Q6nSk
-#: include/svx/strings.hrc:157
+#: include/svx/strings.hrc:158
msgctxt "STR_EditRevOrder"
msgid "Reverse order of %1"
msgstr "Orde inversu de %1"
#. rpJs7
-#: include/svx/strings.hrc:158
+#: include/svx/strings.hrc:159
msgctxt "STR_SortShapes"
msgid "Sort shapes"
msgstr ""
#. cALbH
-#: include/svx/strings.hrc:159
+#: include/svx/strings.hrc:160
msgctxt "STR_EditMove"
msgid "Move %1"
msgstr "Mover %1"
#. dskGp
-#: include/svx/strings.hrc:160
+#: include/svx/strings.hrc:161
msgctxt "STR_EditResize"
msgid "Resize %1"
msgstr "Redimensionar %1"
#. 5QxCS
-#: include/svx/strings.hrc:161
+#: include/svx/strings.hrc:162
msgctxt "STR_EditRotate"
msgid "Rotate %1"
msgstr "Rotación %1"
#. BD8aF
-#: include/svx/strings.hrc:162
+#: include/svx/strings.hrc:163
msgctxt "STR_EditMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Reflexar %1 horizontalmente"
#. g7Qgy
-#: include/svx/strings.hrc:163
+#: include/svx/strings.hrc:164
msgctxt "STR_EditMirrorVert"
msgid "Flip %1 vertical"
msgstr "Reflexar %1 verticalmente"
#. 8MR5T
-#: include/svx/strings.hrc:164
+#: include/svx/strings.hrc:165
msgctxt "STR_EditMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Reflexar %1 diagonalmente"
#. zDbgU
-#: include/svx/strings.hrc:165
+#: include/svx/strings.hrc:166
msgctxt "STR_EditMirrorFree"
msgid "Flip %1 freehand"
msgstr "Reflexar %1 llibremente"
#. AFUeA
-#: include/svx/strings.hrc:166
+#: include/svx/strings.hrc:167
msgctxt "STR_EditShear"
msgid "Distort %1 (slant)"
msgstr "Deformar %1 (inclinar)"
#. QRoy3
-#: include/svx/strings.hrc:167
+#: include/svx/strings.hrc:168
msgctxt "STR_EditCrook"
msgid "Arrange %1 in circle"
msgstr "Colocar en cículu %1"
#. wvGVC
-#: include/svx/strings.hrc:168
+#: include/svx/strings.hrc:169
msgctxt "STR_EditCrookContortion"
msgid "Curve %1 in circle"
msgstr "Curvar %1 en círculu"
#. iUJAq
-#: include/svx/strings.hrc:169
+#: include/svx/strings.hrc:170
msgctxt "STR_EditDistort"
msgid "Distort %1"
msgstr "Distorsionar %1"
#. GRiqx
-#: include/svx/strings.hrc:170
+#: include/svx/strings.hrc:171
msgctxt "STR_EditRipUp"
msgid "Undo %1"
msgstr "Desfacer %1"
#. sE8PU
-#: include/svx/strings.hrc:171
+#: include/svx/strings.hrc:172
msgctxt "STR_EditSetPointsSmooth"
msgid "Modify bézier properties of %1"
msgstr "Camudar les propiedaes bézier de %1"
#. CzVVY
-#: include/svx/strings.hrc:172
+#: include/svx/strings.hrc:173
msgctxt "STR_EditSetSegmentsKind"
msgid "Modify bézier properties of %1"
msgstr "Camudar les propiedaes bézier de %1"
#. 5KcDa
-#: include/svx/strings.hrc:173
+#: include/svx/strings.hrc:174
msgctxt "STR_EditSetGlueEscDir"
msgid "Set exit direction for %1"
msgstr "Afitar la direición de salida de %1"
#. Gbbmq
-#: include/svx/strings.hrc:174
+#: include/svx/strings.hrc:175
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
msgstr "Afitar atributu relativu en %1"
#. Auc4o
-#: include/svx/strings.hrc:175
+#: include/svx/strings.hrc:176
msgctxt "STR_EditSetGlueAlign"
msgid "Set reference point for %1"
msgstr "Afitar puntu de referencia de %1"
#. M5Jac
-#: include/svx/strings.hrc:176
+#: include/svx/strings.hrc:177
msgctxt "STR_EditGroup"
msgid "Group %1"
msgstr "Axuntar %1"
#. wEEok
-#: include/svx/strings.hrc:177
+#: include/svx/strings.hrc:178
msgctxt "STR_EditUngroup"
msgid "Ungroup %1"
msgstr "Desaxuntar %1"
#. XochA
-#: include/svx/strings.hrc:178
+#: include/svx/strings.hrc:179
msgctxt "STR_EditSetAttributes"
msgid "Apply attributes to %1"
msgstr "Aplicar atributos a %1"
#. kzth3
-#: include/svx/strings.hrc:179
+#: include/svx/strings.hrc:180
msgctxt "STR_EditSetStylesheet"
msgid "Apply Styles to %1"
msgstr "Aplica-y estilos a %1"
#. PDT8V
-#: include/svx/strings.hrc:180
+#: include/svx/strings.hrc:181
msgctxt "STR_EditDelStylesheet"
msgid "Remove Style from %1"
msgstr "Quitar estilu de %1"
#. 5DwCY
-#: include/svx/strings.hrc:181
+#: include/svx/strings.hrc:182
msgctxt "STR_EditConvToPoly"
msgid "Convert %1 to polygon"
msgstr "Convertir %1 en polígonu"
#. TPv7Q
-#: include/svx/strings.hrc:182
+#: include/svx/strings.hrc:183
msgctxt "STR_EditConvToPolys"
msgid "Convert %1 to polygons"
msgstr "Convertir %1 en polígonos"
#. ompqC
-#: include/svx/strings.hrc:183
+#: include/svx/strings.hrc:184
msgctxt "STR_EditConvToCurve"
msgid "Convert %1 to curve"
msgstr "Convertir %1 en curva"
#. gax8J
-#: include/svx/strings.hrc:184
+#: include/svx/strings.hrc:185
msgctxt "STR_EditConvToCurves"
msgid "Convert %1 to curves"
msgstr "Convertir %1 en curves"
#. s96Mt
-#: include/svx/strings.hrc:185
+#: include/svx/strings.hrc:186
msgctxt "STR_EditConvToContour"
msgid "Convert %1 to contour"
msgstr "Convertir %1 en contornu"
#. LAyEj
-#: include/svx/strings.hrc:186
+#: include/svx/strings.hrc:187
msgctxt "STR_EditConvToContours"
msgid "Convert %1 to contours"
msgstr "Convertir %1 en contornos"
#. jzxvB
-#: include/svx/strings.hrc:187
+#: include/svx/strings.hrc:188
msgctxt "STR_EditAlign"
msgid "Align %1"
msgstr "Alliniar %1"
#. jocJd
-#: include/svx/strings.hrc:188
+#: include/svx/strings.hrc:189
msgctxt "STR_EditAlignVTop"
msgid "Align %1 to top"
msgstr "Alliniar %1 no cimero"
#. WFGbz
-#: include/svx/strings.hrc:189
+#: include/svx/strings.hrc:190
msgctxt "STR_EditAlignVBottom"
msgid "Align %1 to bottom"
msgstr "Alliniar %1 nel pie de páxina"
#. SyXzE
-#: include/svx/strings.hrc:190
+#: include/svx/strings.hrc:191
msgctxt "STR_EditAlignVCenter"
msgid "Horizontally center %1"
msgstr "Centrar %1 horizontalmente"
#. TgGUN
-#: include/svx/strings.hrc:191
+#: include/svx/strings.hrc:192
msgctxt "STR_EditAlignHLeft"
msgid "Align %1 to left"
msgstr "Alliniar %1 a la esquierda"
#. s3Erz
-#: include/svx/strings.hrc:192
+#: include/svx/strings.hrc:193
msgctxt "STR_EditAlignHRight"
msgid "Align %1 to right"
msgstr "Alliniar %1 a la drecha"
#. apfuW
-#: include/svx/strings.hrc:193
+#: include/svx/strings.hrc:194
msgctxt "STR_EditAlignHCenter"
msgid "Vertically center %1"
msgstr "Centrar %1 verticalmente"
#. ttEmT
-#: include/svx/strings.hrc:194
+#: include/svx/strings.hrc:195
msgctxt "STR_EditAlignCenter"
msgid "Center %1"
msgstr "Centrar %1"
#. xkGug
-#: include/svx/strings.hrc:195
+#: include/svx/strings.hrc:196
msgctxt "STR_EditTransform"
msgid "Transform %1"
msgstr "Tresformar %1"
#. smiFA
-#: include/svx/strings.hrc:196
+#: include/svx/strings.hrc:197
msgctxt "STR_EditCombine_PolyPoly"
msgid "Combine %1"
msgstr "Combinar %1"
#. PypoU
-#: include/svx/strings.hrc:197
+#: include/svx/strings.hrc:198
msgctxt "STR_EditMergeMergePoly"
msgid "Merge %1"
msgstr "Mecer %1"
#. 2KfaD
-#: include/svx/strings.hrc:198
+#: include/svx/strings.hrc:199
msgctxt "STR_EditMergeSubstractPoly"
msgid "Subtract %1"
msgstr "Restar %1"
#. gKFow
-#: include/svx/strings.hrc:199
+#: include/svx/strings.hrc:200
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
msgstr "Interseición de %1"
#. M8onz
-#: include/svx/strings.hrc:200
+#: include/svx/strings.hrc:201
msgctxt "STR_DistributeMarkedObjects"
msgid "Distribute selected objects"
msgstr "Repartir los oxetos escoyíos"
#. CnGYu
-#: include/svx/strings.hrc:201
+#: include/svx/strings.hrc:202
msgctxt "STR_EqualizeWidthMarkedObjects"
msgid "Equalize Width %1"
msgstr ""
#. zBTZe
-#: include/svx/strings.hrc:202
+#: include/svx/strings.hrc:203
msgctxt "STR_EqualizeHeightMarkedObjects"
msgid "Equalize Height %1"
msgstr ""
#. JWmM2
-#: include/svx/strings.hrc:203
+#: include/svx/strings.hrc:204
msgctxt "STR_EditCombine_OnePoly"
msgid "Combine %1"
msgstr "Combinar %1"
#. k5kFN
-#: include/svx/strings.hrc:204
+#: include/svx/strings.hrc:205
msgctxt "STR_EditDismantle_Polys"
msgid "Split %1"
msgstr "Frañir %1"
#. weAmr
-#: include/svx/strings.hrc:205
+#: include/svx/strings.hrc:206
msgctxt "STR_EditDismantle_Lines"
msgid "Split %1"
msgstr "Frañir %1"
#. Yofeq
-#: include/svx/strings.hrc:206
+#: include/svx/strings.hrc:207
msgctxt "STR_EditImportMtf"
msgid "Split %1"
msgstr "Frañir %1"
#. hWuuR
-#: include/svx/strings.hrc:207
+#: include/svx/strings.hrc:208
msgctxt "STR_ExchangePaste"
msgid "Insert object(s)"
msgstr "Inxertar oxetu(os)"
#. EaVu8
-#: include/svx/strings.hrc:208
+#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertPoint"
msgid "Insert point to %1"
msgstr "Inxerta-y puntu a %1"
#. G3DCW
-#: include/svx/strings.hrc:209
+#: include/svx/strings.hrc:210
msgctxt "STR_DragInsertGluePoint"
msgid "Insert gluepoint to %1"
msgstr ""
#. 6JqED
-#: include/svx/strings.hrc:210
+#: include/svx/strings.hrc:211
msgctxt "STR_DragMethMovHdl"
msgid "Move reference-point"
msgstr "Mover puntu de referencia"
#. o8CAF
-#: include/svx/strings.hrc:211
+#: include/svx/strings.hrc:212
msgctxt "STR_DragMethObjOwn"
msgid "Geometrically change %1"
msgstr "Cambear xeométricamente %1"
#. ghkib
-#: include/svx/strings.hrc:212
+#: include/svx/strings.hrc:213
msgctxt "STR_DragMethMove"
msgid "Move %1"
msgstr "Mover %1"
#. BCrkD
-#: include/svx/strings.hrc:213
+#: include/svx/strings.hrc:214
msgctxt "STR_DragMethResize"
msgid "Resize %1"
msgstr "Redimensionar %1"
#. xonh6
-#: include/svx/strings.hrc:214
+#: include/svx/strings.hrc:215
msgctxt "STR_DragMethRotate"
msgid "Rotate %1"
msgstr "Rotación %1"
#. kBYzN
-#: include/svx/strings.hrc:215
+#: include/svx/strings.hrc:216
msgctxt "STR_DragMethMirrorHori"
msgid "Flip %1 horizontal"
msgstr "Reflexar %1 horizontalmente"
#. CBBXE
-#: include/svx/strings.hrc:216
+#: include/svx/strings.hrc:217
msgctxt "STR_DragMethMirrorVert"
msgid "Flip %1 vertical"
msgstr "Reflexar %1 verticalmente"
#. uHCGD
-#: include/svx/strings.hrc:217
+#: include/svx/strings.hrc:218
msgctxt "STR_DragMethMirrorDiag"
msgid "Flip %1 diagonal"
msgstr "Reflexar %1 diagonalmente"
#. vRwXA
-#: include/svx/strings.hrc:218
+#: include/svx/strings.hrc:219
msgctxt "STR_DragMethMirrorFree"
msgid "Flip %1 freehand"
msgstr "Reflexar %1 llibremente"
#. 9xhJw
-#: include/svx/strings.hrc:219
+#: include/svx/strings.hrc:220
msgctxt "STR_DragMethGradient"
msgid "Interactive gradient for %1"
msgstr "Dilíu interactivu pa %1"
#. Fst87
-#: include/svx/strings.hrc:220
+#: include/svx/strings.hrc:221
msgctxt "STR_DragMethTransparence"
msgid "Interactive transparency for %1"
msgstr "Tresparencia interactiva pa %1"
#. jgbKK
-#: include/svx/strings.hrc:221
+#: include/svx/strings.hrc:222
msgctxt "STR_DragMethShear"
msgid "Distort %1 (slant)"
msgstr "Deformar %1 (inclinar)"
#. Eo8H6
-#: include/svx/strings.hrc:222
+#: include/svx/strings.hrc:223
msgctxt "STR_DragMethCrook"
msgid "Arrange %1 in circle"
msgstr "Colocar en cículu %1"
#. stAcK
-#: include/svx/strings.hrc:223
+#: include/svx/strings.hrc:224
msgctxt "STR_DragMethCrookContortion"
msgid "Curve %1 in circle"
msgstr "Curvar %1 en círculu"
#. VbA6t
-#: include/svx/strings.hrc:224
+#: include/svx/strings.hrc:225
msgctxt "STR_DragMethDistort"
msgid "Distort %1"
msgstr "Distorsionar %1"
#. YjghP
-#: include/svx/strings.hrc:225
+#: include/svx/strings.hrc:226
#, fuzzy
msgctxt "STR_DragMethCrop"
msgid "Crop %1"
msgstr "Axuntar %1"
#. ViifK
-#: include/svx/strings.hrc:226
+#: include/svx/strings.hrc:227
msgctxt "STR_DragRectEckRad"
msgid "Alter radius by %1"
msgstr "Camudar radiu d'ángulu en %1"
#. usEq4
-#: include/svx/strings.hrc:227
+#: include/svx/strings.hrc:228
msgctxt "STR_DragPathObj"
msgid "Change %1"
msgstr "Camudar %1"
#. X4GFU
-#: include/svx/strings.hrc:228
+#: include/svx/strings.hrc:229
msgctxt "STR_DragRectResize"
msgid "Resize %1"
msgstr "Redimensionar %1"
#. qF4Px
-#: include/svx/strings.hrc:229
+#: include/svx/strings.hrc:230
msgctxt "STR_DragCaptFram"
msgid "Move %1"
msgstr "Mover %1"
#. fKuKa
-#: include/svx/strings.hrc:230
+#: include/svx/strings.hrc:231
msgctxt "STR_DragCaptTail"
msgid "Move end point of %1"
msgstr "Mover el puntu final de %1"
#. ewcHx
-#: include/svx/strings.hrc:231
+#: include/svx/strings.hrc:232
msgctxt "STR_DragCircAngle"
msgid "Adjust angle by %1"
msgstr "Camudar ángulu de %1"
#. L8rCz
-#: include/svx/strings.hrc:232
+#: include/svx/strings.hrc:233
msgctxt "STR_DragEdgeTail"
msgid "Change %1"
msgstr "Camudar %1"
#. UxCCc
-#: include/svx/strings.hrc:233
+#: include/svx/strings.hrc:234
msgctxt "STR_ViewTextEdit"
msgid "TextEdit: Paragraph %1, Row %2, Column %3"
msgstr "TextEdit : Párrafu %1, Filera %2, Columna %3"
#. 23tL7
-#: include/svx/strings.hrc:234
+#: include/svx/strings.hrc:235
msgctxt "STR_ViewMarked"
msgid "%1 selected"
msgstr "%1 escoyíu"
#. yQkFZ
-#: include/svx/strings.hrc:235
+#: include/svx/strings.hrc:236
msgctxt "STR_ViewMarkedPoint"
msgid "Point from %1"
msgstr "Puntu de %1"
#. RGnTk
-#: include/svx/strings.hrc:236
+#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedPoints"
msgid "%2 points from %1"
msgstr "%2 puntos de %1"
#. YxpLB
-#: include/svx/strings.hrc:237
+#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoint"
msgid "Gluepoint from %1"
msgstr ""
#. qCFmV
-#: include/svx/strings.hrc:238
+#: include/svx/strings.hrc:239
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 gluepoints from %1"
msgstr ""
#. CDqRQ
-#: include/svx/strings.hrc:239
+#: include/svx/strings.hrc:240
msgctxt "STR_ViewMarkObjs"
msgid "Mark objects"
msgstr "Marcar oxetos"
#. SLrPJ
-#: include/svx/strings.hrc:240
+#: include/svx/strings.hrc:241
msgctxt "STR_ViewMarkMoreObjs"
msgid "Mark additional objects"
msgstr "Escoyer oxetos suplementarios"
#. hczKZ
-#: include/svx/strings.hrc:241
+#: include/svx/strings.hrc:242
msgctxt "STR_ViewMarkPoints"
msgid "Mark points"
msgstr "Marcar puntos"
#. 778bF
-#: include/svx/strings.hrc:242
+#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkMorePoints"
msgid "Mark additional points"
msgstr "Escoyer puntos suplementarios"
#. BLEE8
-#: include/svx/strings.hrc:243
+#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark gluepoints"
msgstr ""
#. eH9Vs
-#: include/svx/strings.hrc:244
+#: include/svx/strings.hrc:245
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional gluepoints"
msgstr ""
#. D5ZZA
-#: include/svx/strings.hrc:245
+#: include/svx/strings.hrc:246
msgctxt "STR_ViewCreateObj"
msgid "Create %1"
msgstr "Crear %1"
#. 7FoxD
-#: include/svx/strings.hrc:246
+#: include/svx/strings.hrc:247
msgctxt "STR_UndoInsertObj"
msgid "Insert %1"
msgstr "Inxertar %1"
#. 9hXBp
-#: include/svx/strings.hrc:247
+#: include/svx/strings.hrc:248
msgctxt "STR_UndoCopyObj"
msgid "Copy %1"
msgstr "Copiar %1"
#. arzhD
-#: include/svx/strings.hrc:248
+#: include/svx/strings.hrc:249
msgctxt "STR_UndoObjOrdNum"
msgid "Change object order of %1"
msgstr "Camudar l'orde d'oxetu de %1"
#. QTZxE
-#: include/svx/strings.hrc:249
+#: include/svx/strings.hrc:250
msgctxt "STR_UndoObjSetText"
msgid "Edit text of %1"
msgstr "Editar testu de %1"
#. un957
-#: include/svx/strings.hrc:250
+#: include/svx/strings.hrc:251
msgctxt "STR_UndoNewPage"
msgid "Insert page"
msgstr "Inxertar páxina"
#. vBvUC
-#: include/svx/strings.hrc:251
+#: include/svx/strings.hrc:252
msgctxt "STR_UndoDelPage"
msgid "Delete page"
msgstr "Desaniciar páxina"
#. rFgUQ
-#: include/svx/strings.hrc:252
+#: include/svx/strings.hrc:253
msgctxt "STR_UndoCopPage"
msgid "Copy page"
msgstr "Copiar páxina"
#. EYfZc
-#: include/svx/strings.hrc:253
+#: include/svx/strings.hrc:254
msgctxt "STR_UndoMovPage"
msgid "Change order of pages"
msgstr "Camudar l'orde de les páxines"
#. BQRVo
-#: include/svx/strings.hrc:254
+#: include/svx/strings.hrc:255
msgctxt "STR_UndoDelPageMasterDscr"
msgid "Clear background page assignment"
msgstr "Quitar los atributos de la páxina del fondu"
#. 79Cxu
-#: include/svx/strings.hrc:255
+#: include/svx/strings.hrc:256
msgctxt "STR_UndoChgPageMasterDscr"
msgid "Change background page assignment"
msgstr "Camudar los atributos de la páxina d'atrás"
#. 9P8JF
-#: include/svx/strings.hrc:256
+#: include/svx/strings.hrc:257
msgctxt "STR_UndoMergeModel"
msgid "Insert document"
msgstr "Inxertar documentu"
#. w3W7h
-#: include/svx/strings.hrc:257
+#: include/svx/strings.hrc:258
msgctxt "STR_UndoNewLayer"
msgid "Insert Layer"
msgstr "Inxertar capa"
#. 7pifL
-#: include/svx/strings.hrc:258
+#: include/svx/strings.hrc:259
msgctxt "STR_UndoDelLayer"
msgid "Delete layer"
msgstr "Desaniciar capa"
#. MFCAk
#. Undo/Redo for setting object's name (#i73249#)
-#: include/svx/strings.hrc:260
+#: include/svx/strings.hrc:261
msgctxt "STR_UndoObjName"
msgid "Change object name of %1 to"
msgstr "Camudar nome d'oxetu de %1 a"
#. D4AsZ
-#: include/svx/strings.hrc:261
+#: include/svx/strings.hrc:262
msgctxt "STR_UndoObjTitle"
msgid "Change object title of %1"
msgstr "Camudar el títulu d'oxetu de %1"
#. tqeMT
-#: include/svx/strings.hrc:262
+#: include/svx/strings.hrc:263
msgctxt "STR_UndoObjDescription"
msgid "Change object description of %1"
msgstr "Camudar descripción d'oxetu de %1"
#. XcY5w
-#: include/svx/strings.hrc:263
+#: include/svx/strings.hrc:264
msgctxt "STR_ItemValON"
msgid "on"
msgstr "activáu"
#. e6RAB
-#: include/svx/strings.hrc:264
+#: include/svx/strings.hrc:265
msgctxt "STR_ItemValOFF"
msgid "off"
msgstr "desactiváu"
#. gaXKQ
-#: include/svx/strings.hrc:265
+#: include/svx/strings.hrc:266
msgctxt "STR_ItemValYES"
msgid "yes"
msgstr "sí"
#. 65SoV
-#: include/svx/strings.hrc:266
+#: include/svx/strings.hrc:267
msgctxt "STR_ItemValNO"
msgid "No"
msgstr "Non"
#. aeEuB
-#: include/svx/strings.hrc:267
+#: include/svx/strings.hrc:268
msgctxt "STR_ItemValCAPTIONTYPE1"
msgid "Type 1"
msgstr "Triba 1"
#. BFaLY
-#: include/svx/strings.hrc:268
+#: include/svx/strings.hrc:269
msgctxt "STR_ItemValCAPTIONTYPE2"
msgid "Type 2"
msgstr "Triba 2"
#. KFMjw
-#: include/svx/strings.hrc:269
+#: include/svx/strings.hrc:270
msgctxt "STR_ItemValCAPTIONTYPE3"
msgid "Type 3"
msgstr "Triba 3"
#. 48UKA
-#: include/svx/strings.hrc:270
+#: include/svx/strings.hrc:271
msgctxt "STR_ItemValCAPTIONTYPE4"
msgid "Type 4"
msgstr "Triba 4"
#. DVm64
-#: include/svx/strings.hrc:271
+#: include/svx/strings.hrc:272
msgctxt "STR_ItemValCAPTIONESCHORI"
msgid "Horizontal"
msgstr "Horizontal"
#. ZYYeS
-#: include/svx/strings.hrc:272
+#: include/svx/strings.hrc:273
msgctxt "STR_ItemValCAPTIONESCVERT"
msgid "Vertical"
msgstr "Vertical"
#. HcoYN
-#: include/svx/strings.hrc:273
+#: include/svx/strings.hrc:274
msgctxt "STR_ItemValCAPTIONESCBESTFIT"
msgid "Automatic"
msgstr "Automáticu"
#. uZNFq
-#: include/svx/strings.hrc:274
+#: include/svx/strings.hrc:275
msgctxt "STR_ItemValFITTOSIZENONE"
msgid "Off"
msgstr "Desactiváu"
#. 2ZQvA
-#: include/svx/strings.hrc:275
+#: include/svx/strings.hrc:276
msgctxt "STR_ItemValFITTOSIZEPROP"
msgid "Proportional"
msgstr "Proporcional"
#. Ej4Ya
-#: include/svx/strings.hrc:276
+#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZEALLLINES"
msgid "Fit to size (all rows separately) "
msgstr "Adautar al tamañu (toles fileres por separtao) "
#. Wr4kE
-#: include/svx/strings.hrc:277
+#: include/svx/strings.hrc:278
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
msgstr "Usar atributos fixos"
#. 73uL2
-#: include/svx/strings.hrc:278
+#: include/svx/strings.hrc:279
msgctxt "STR_ItemValTEXTVADJTOP"
msgid "Top"
msgstr "Cimero"
#. 3Cde5
-#: include/svx/strings.hrc:279
+#: include/svx/strings.hrc:280
msgctxt "STR_ItemValTEXTVADJCENTER"
msgid "Center"
msgstr "Centru"
#. AR3n7
-#: include/svx/strings.hrc:280
+#: include/svx/strings.hrc:281
msgctxt "STR_ItemValTEXTVADJBOTTOM"
msgid "Bottom"
msgstr "Fondero"
#. UmBBe
-#: include/svx/strings.hrc:281
+#: include/svx/strings.hrc:282
msgctxt "STR_ItemValTEXTVADJBLOCK"
msgid "Use entire height"
msgstr "Usar l'altor enteru"
#. dRtWD
-#: include/svx/strings.hrc:282
+#: include/svx/strings.hrc:283
msgctxt "STR_ItemValTEXTVADJSTRETCH"
msgid "Stretched"
msgstr "Terriu"
#. kGXVu
-#: include/svx/strings.hrc:283
+#: include/svx/strings.hrc:284
msgctxt "STR_ItemValTEXTHADJLEFT"
msgid "Left"
msgstr "Izquierda"
#. bDPBk
-#: include/svx/strings.hrc:284
+#: include/svx/strings.hrc:285
msgctxt "STR_ItemValTEXTHADJCENTER"
msgid "Center"
msgstr "Centru"
#. tVhNN
-#: include/svx/strings.hrc:285
+#: include/svx/strings.hrc:286
msgctxt "STR_ItemValTEXTHADJRIGHT"
msgid "Right"
msgstr "Drecha"
#. K8NiD
-#: include/svx/strings.hrc:286
+#: include/svx/strings.hrc:287
msgctxt "STR_ItemValTEXTHADJBLOCK"
msgid "Use entire width"
msgstr "Usar el llargor enteru"
#. H7dgd
-#: include/svx/strings.hrc:287
+#: include/svx/strings.hrc:288
msgctxt "STR_ItemValTEXTHADJSTRETCH"
msgid "Stretched"
msgstr "Terriu"
#. q5eQw
-#: include/svx/strings.hrc:288
+#: include/svx/strings.hrc:289
msgctxt "STR_ItemValTEXTANI_NONE"
msgid "off"
msgstr "desactiváu"
#. Roba3
-#: include/svx/strings.hrc:289
+#: include/svx/strings.hrc:290
msgctxt "STR_ItemValTEXTANI_BLINK"
msgid "flash"
msgstr "intermitente"
#. UDFFC
-#: include/svx/strings.hrc:290
+#: include/svx/strings.hrc:291
msgctxt "STR_ItemValTEXTANI_SCROLL"
msgid "Scroll Through"
msgstr "Continuu"
#. A9BQL
-#: include/svx/strings.hrc:291
+#: include/svx/strings.hrc:292
msgctxt "STR_ItemValTEXTANI_ALTERNATE"
msgid "alternating"
msgstr "alternando"
#. EkPkn
-#: include/svx/strings.hrc:292
+#: include/svx/strings.hrc:293
msgctxt "STR_ItemValTEXTANI_SLIDE"
msgid "Scroll In"
msgstr "Entrar"
#. x3Yd5
-#: include/svx/strings.hrc:293
+#: include/svx/strings.hrc:294
msgctxt "STR_ItemValTEXTANI_LEFT"
msgid "left"
msgstr "izquierda"
#. w7PTQ
-#: include/svx/strings.hrc:294
+#: include/svx/strings.hrc:295
msgctxt "STR_ItemValTEXTANI_UP"
msgid "up"
msgstr "arriba"
#. oMaiF
-#: include/svx/strings.hrc:295
+#: include/svx/strings.hrc:296
msgctxt "STR_ItemValTEXTANI_RIGHT"
msgid "right"
msgstr "drecha"
#. tQTCd
-#: include/svx/strings.hrc:296
+#: include/svx/strings.hrc:297
msgctxt "STR_ItemValTEXTANI_DOWN"
msgid "down"
msgstr "abaxo"
#. 6MMYx
-#: include/svx/strings.hrc:297
+#: include/svx/strings.hrc:298
msgctxt "STR_ItemValEDGE_ORTHOLINES"
msgid "Standard Connector"
msgstr "Coneutor estándar"
#. SLdM8
-#: include/svx/strings.hrc:298
+#: include/svx/strings.hrc:299
msgctxt "STR_ItemValEDGE_THREELINES"
msgid "Line Connector"
msgstr "Coneutor llinial"
#. ZAtDC
-#: include/svx/strings.hrc:299
+#: include/svx/strings.hrc:300
msgctxt "STR_ItemValEDGE_ONELINE"
msgid "Straight Connector"
msgstr "Conector reutu"
#. 9qXds
-#: include/svx/strings.hrc:300
+#: include/svx/strings.hrc:301
msgctxt "STR_ItemValEDGE_BEZIER"
msgid "Curved Connector"
msgstr "Conector curvu"
#. MGEse
-#: include/svx/strings.hrc:301
+#: include/svx/strings.hrc:302
msgctxt "STR_ItemValMEASURE_STD"
msgid "Standard"
msgstr "Estándar"
#. sNziy
-#: include/svx/strings.hrc:302
+#: include/svx/strings.hrc:303
msgctxt "STR_ItemValMEASURE_RADIUS"
msgid "Radius"
msgstr "Radiu"
#. zGpyM
-#: include/svx/strings.hrc:303
+#: include/svx/strings.hrc:304
msgctxt "STR_ItemValMEASURE_TEXTVAUTO"
msgid "automatic"
msgstr "automáticu"
#. jA4pb
-#: include/svx/strings.hrc:304
+#: include/svx/strings.hrc:305
msgctxt "STR_ItemValMEASURE_ABOVE"
msgid "on the line"
msgstr "na llinia"
#. iqYjg
-#: include/svx/strings.hrc:305
+#: include/svx/strings.hrc:306
msgctxt "STR_ItemValMEASURETEXT_BREAKEDLINE"
msgid "broken line"
msgstr "llinia cortada"
#. h8npu
-#: include/svx/strings.hrc:306
+#: include/svx/strings.hrc:307
msgctxt "STR_ItemValMEASURE_BELOW"
msgid "below the line"
msgstr "baxo la llinia"
#. WL8XG
-#: include/svx/strings.hrc:307
+#: include/svx/strings.hrc:308
msgctxt "STR_ItemValMEASURETEXT_VERTICALCEN"
msgid "centered"
msgstr "centráu"
#. hy9eX
-#: include/svx/strings.hrc:308
+#: include/svx/strings.hrc:309
msgctxt "STR_ItemValCIRC_FULL"
msgid "full circle"
msgstr "círculu completu"
#. 6BdZt
-#: include/svx/strings.hrc:309
+#: include/svx/strings.hrc:310
msgctxt "STR_ItemValCIRC_SECT"
msgid "Circle Pie"
msgstr "Seutor de círculu"
#. j6Bc3
-#: include/svx/strings.hrc:310
+#: include/svx/strings.hrc:311
msgctxt "STR_ItemValCIRC_CUT"
msgid "Circle segment"
msgstr "Segmentu de círculu"
#. 7sN8d
-#: include/svx/strings.hrc:311
+#: include/svx/strings.hrc:312
msgctxt "STR_ItemValCIRC_ARC"
msgid "Arc"
msgstr "Arcu"
#. CiXKC
#. Strings for the templates dialog
-#: include/svx/strings.hrc:313
+#: include/svx/strings.hrc:314
msgctxt "SIP_UNKNOWN_ATTR"
msgid "Unknown attribute"
msgstr "Atributu desconocíu"
#. ehWkk
#. Strings for the templates dialog
-#: include/svx/strings.hrc:315
+#: include/svx/strings.hrc:316
msgctxt "SIP_XA_LINESTYLE"
msgid "Line style"
msgstr "Estilu de llinia"
#. BbP7X
-#: include/svx/strings.hrc:316
+#: include/svx/strings.hrc:317
msgctxt "SIP_XA_LINEDASH"
msgid "Line pattern"
msgstr "Diseñu de llinia"
#. 4NCnS
-#: include/svx/strings.hrc:317
+#: include/svx/strings.hrc:318
msgctxt "SIP_XA_LINEWIDTH"
msgid "Line width"
msgstr "Espesor del trazu"
#. NuJkv
-#: include/svx/strings.hrc:318
+#: include/svx/strings.hrc:319
msgctxt "SIP_XA_LINECOLOR"
msgid "Line color"
msgstr "Color de la llinia"
#. NgaPV
-#: include/svx/strings.hrc:319
+#: include/svx/strings.hrc:320
msgctxt "SIP_XA_LINESTART"
msgid "Line head"
msgstr "Entamu de llinia"
#. UYBDU
-#: include/svx/strings.hrc:320
+#: include/svx/strings.hrc:321
msgctxt "SIP_XA_LINEEND"
msgid "Line end"
msgstr "Fin de la llinia"
#. DJkAF
-#: include/svx/strings.hrc:321
+#: include/svx/strings.hrc:322
msgctxt "SIP_XA_LINESTARTWIDTH"
msgid "Line head width"
msgstr "Anchor d'entamu de llinia"
#. QqA6b
-#: include/svx/strings.hrc:322
+#: include/svx/strings.hrc:323
msgctxt "SIP_XA_LINEENDWIDTH"
msgid "Line end width"
msgstr "Anchor de fin de llinia"
#. FcHDB
-#: include/svx/strings.hrc:323
+#: include/svx/strings.hrc:324
msgctxt "SIP_XA_LINESTARTCENTER"
msgid "Center arrowhead"
msgstr "Entamu de llinia, centráu"
#. KnFtT
-#: include/svx/strings.hrc:324
+#: include/svx/strings.hrc:325
msgctxt "SIP_XA_LINEENDCENTER"
msgid "Center arrowend"
msgstr "Fin de llinia, centráu"
#. 2UZUA
-#: include/svx/strings.hrc:325
+#: include/svx/strings.hrc:326
msgctxt "SIP_XA_LINETRANSPARENCE"
msgid "Line transparency"
msgstr "Tresparencia de llinia"
#. 5MLYD
-#: include/svx/strings.hrc:326
+#: include/svx/strings.hrc:327
msgctxt "SIP_XA_LINEJOINT"
msgid "Line joint"
msgstr "Xunta de llinies"
#. ArqSC
-#: include/svx/strings.hrc:327
+#: include/svx/strings.hrc:328
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
msgstr "Atributos de llinia"
#. dufaT
-#: include/svx/strings.hrc:328
+#: include/svx/strings.hrc:329
msgctxt "SIP_XA_FILLSTYLE"
msgid "Fill style"
msgstr "Estilu de rellenu"
#. RDcH6
-#: include/svx/strings.hrc:329
+#: include/svx/strings.hrc:330
msgctxt "SIP_XA_FILLCOLOR"
msgid "Fillcolor"
msgstr "Color de rellenu"
#. DJM9B
-#: include/svx/strings.hrc:330
+#: include/svx/strings.hrc:331
msgctxt "SIP_XA_FILLGRADIENT"
msgid "Gradient"
msgstr "Dilíu"
#. gbABb
-#: include/svx/strings.hrc:331
+#: include/svx/strings.hrc:332
msgctxt "SIP_XA_FILLHATCH"
msgid "Hatching"
msgstr "Trama"
#. GE68t
-#: include/svx/strings.hrc:332
+#: include/svx/strings.hrc:333
msgctxt "SIP_XA_FILLBITMAP"
msgid "Fillbitmap"
msgstr "Bitmap de rellenu"
#. DV2Ss
-#: include/svx/strings.hrc:333
+#: include/svx/strings.hrc:334
msgctxt "SIP_XA_FILLTRANSPARENCE"
msgid "Transparency"
msgstr "Tresparencia"
#. eK8kh
-#: include/svx/strings.hrc:334
+#: include/svx/strings.hrc:335
msgctxt "SIP_XA_GRADIENTSTEPCOUNT"
msgid "Number of gradient steps"
msgstr "Incrementu"
#. AVtYF
-#: include/svx/strings.hrc:335
+#: include/svx/strings.hrc:336
msgctxt "SIP_XA_FILLBMP_TILE"
msgid "Tile fill"
msgstr "Rellenu de mosaicu"
#. D7T2o
-#: include/svx/strings.hrc:336
+#: include/svx/strings.hrc:337
msgctxt "SIP_XA_FILLBMP_POS"
msgid "Fillbitmap position"
msgstr "Posición bitmap de rellenu"
#. NVLGP
-#: include/svx/strings.hrc:337
+#: include/svx/strings.hrc:338
msgctxt "SIP_XA_FILLBMP_SIZEX"
msgid "Fillbitmap width"
msgstr "Anchor bitmap de rellenu"
#. PSCTE
-#: include/svx/strings.hrc:338
+#: include/svx/strings.hrc:339
msgctxt "SIP_XA_FILLBMP_SIZEY"
msgid "Height of fillbitmap"
msgstr "Altor de bitmap de rellenu"
#. zW4zt
-#: include/svx/strings.hrc:339
+#: include/svx/strings.hrc:340
msgctxt "SIP_XA_FILLFLOATTRANSPARENCE"
msgid "Transparent gradient"
msgstr "Dilíu tresparente"
#. DBBgQ
-#: include/svx/strings.hrc:340
+#: include/svx/strings.hrc:341
msgctxt "SIP_XA_SECONDARYFILLCOLOR"
msgid "Fill reserved for 2"
msgstr "Rellenu reserva 2"
#. PaSqp
-#: include/svx/strings.hrc:341
+#: include/svx/strings.hrc:342
msgctxt "SIP_XA_FILLBMP_SIZELOG"
msgid "Tile size not in %"
msgstr "Tamañu de mosaicu en %"
#. fwikV
-#: include/svx/strings.hrc:342
+#: include/svx/strings.hrc:343
msgctxt "SIP_XA_FILLBMP_TILEOFFSETX"
msgid "Tile offset X in %"
msgstr "Desplazamientu del mosaicu en %"
#. FQgvE
-#: include/svx/strings.hrc:343
+#: include/svx/strings.hrc:344
msgctxt "SIP_XA_FILLBMP_TILEOFFSETY"
msgid "Tile offset Y in %"
msgstr "Desplazamientu del mosaicu Y en %"
#. NUEGF
-#: include/svx/strings.hrc:344
+#: include/svx/strings.hrc:345
msgctxt "SIP_XA_FILLBMP_STRETCH"
msgid "Bitmap scaling"
msgstr "Redimensionamientu de bitmap"
#. pc9yk
-#: include/svx/strings.hrc:345
+#: include/svx/strings.hrc:346
msgctxt "SIP_XA_FILLBMP_POSOFFSETX"
msgid "Tile position X in %"
msgstr "Posición del mosaicu X en %"
#. DH43F
-#: include/svx/strings.hrc:346
+#: include/svx/strings.hrc:347
msgctxt "SIP_XA_FILLBMP_POSOFFSETY"
msgid "Tile position Y in %"
msgstr "Posición del mosaicu Y en %"
#. 8GFpS
-#: include/svx/strings.hrc:347
+#: include/svx/strings.hrc:348
msgctxt "SIP_XA_FILLBACKGROUND"
msgid "Background fill"
msgstr "Rellenu de fondu"
#. 2SvhA
-#: include/svx/strings.hrc:348
+#: include/svx/strings.hrc:349
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
msgstr "Atributos de rellenu"
#. TE8CS
-#: include/svx/strings.hrc:349
+#: include/svx/strings.hrc:350
msgctxt "SIP_XA_FORMTXTSTYLE"
msgid "Fontwork style"
msgstr "Estilu de Fontwork"
#. qMnRZ
-#: include/svx/strings.hrc:350
+#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FORMTXTADJUST"
msgid "Fontwork alignment"
msgstr "Alliniamientu Fontwork"
#. fpGEZ
-#: include/svx/strings.hrc:351
+#: include/svx/strings.hrc:352
msgctxt "SIP_XA_FORMTXTDISTANCE"
msgid "Fontwork spacing"
msgstr "Espaciu de Fontwork"
#. CUBXL
-#: include/svx/strings.hrc:352
+#: include/svx/strings.hrc:353
msgctxt "SIP_XA_FORMTXTSTART"
msgid "Fontwork font begin"
msgstr "Entamu de fonte Fontwork"
#. JSVHo
-#: include/svx/strings.hrc:353
+#: include/svx/strings.hrc:354
msgctxt "SIP_XA_FORMTXTMIRROR"
msgid "Fontwork mirror"
msgstr "Espeyu Fontwork"
#. P5W29
-#: include/svx/strings.hrc:354
+#: include/svx/strings.hrc:355
msgctxt "SIP_XA_FORMTXTOUTLINE"
msgid "Fontwork outline"
msgstr "Contornu Fontwork"
#. LKCDD
-#: include/svx/strings.hrc:355
+#: include/svx/strings.hrc:356
msgctxt "SIP_XA_FORMTXTSHADOW"
msgid "Fontwork shadow"
msgstr "Solombra Fontwork"
#. oDiYn
-#: include/svx/strings.hrc:356
+#: include/svx/strings.hrc:357
msgctxt "SIP_XA_FORMTXTSHDWCOLOR"
msgid "Fontwork shadow color"
msgstr "Color de solombra Fontwork"
#. sFLRA
-#: include/svx/strings.hrc:357
+#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTSHDWXVAL"
msgid "Fontwork shadow offset X"
msgstr "Desplazamientu solombra de Fontwork X"
#. daERW
-#: include/svx/strings.hrc:358
+#: include/svx/strings.hrc:359
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
msgstr "Desplazamientu solombra de Fontwork Y"
#. LdeJZ
-#: include/svx/strings.hrc:359
+#: include/svx/strings.hrc:360
msgctxt "SIP_XA_FORMTXTHIDEFORM"
msgid "Hide fontwork outline"
-msgstr "Tapecer contornu de fontwork"
+msgstr "Anubrir contornu de Fontwork"
#. 3sPPg
-#: include/svx/strings.hrc:360
+#: include/svx/strings.hrc:361
msgctxt "SIP_XA_FORMTXTSHDWTRANSP"
msgid "Fontwork shadow transparency"
msgstr "Tresparencia de solombra de fontwork"
#. q6MHs
-#: include/svx/strings.hrc:361
+#: include/svx/strings.hrc:362
msgctxt "SIP_SA_SHADOW"
msgid "Shadow"
msgstr "Solombra"
#. dSwen
-#: include/svx/strings.hrc:362
+#: include/svx/strings.hrc:363
msgctxt "SIP_SA_SHADOWCOLOR"
msgid "Shadow color"
msgstr "Color solombra"
#. HcLrC
-#: include/svx/strings.hrc:363
+#: include/svx/strings.hrc:364
msgctxt "SIP_SA_SHADOWXDIST"
msgid "Shadow spacing X"
msgstr "Distancia de solombra X"
#. TMGmk
-#: include/svx/strings.hrc:364
+#: include/svx/strings.hrc:365
msgctxt "SIP_SA_SHADOWYDIST"
msgid "Shadow spacing Y"
msgstr "Distancia de solombra Y"
#. u5baB
-#: include/svx/strings.hrc:365
+#: include/svx/strings.hrc:366
msgctxt "SIP_SA_SHADOWTRANSPARENCE"
msgid "Shadow transparency"
msgstr "Tresparencia de la solombra"
#. AtDxf
-#: include/svx/strings.hrc:366
+#: include/svx/strings.hrc:367
msgctxt "SIP_SA_SHADOWBLUR"
msgid "Shadow blur"
msgstr "Desenfoque de solombra"
#. sDFuG
-#: include/svx/strings.hrc:367
+#: include/svx/strings.hrc:368
msgctxt "SIP_SA_SHADOW3D"
msgid "3D shadow"
msgstr "Solombra 3D"
#. FGU8f
-#: include/svx/strings.hrc:368
+#: include/svx/strings.hrc:369
msgctxt "SIP_SA_SHADOWPERSP"
msgid "Perspective shadow"
msgstr "Solombra en perspeutiva"
#. MV529
-#: include/svx/strings.hrc:369
+#: include/svx/strings.hrc:370
msgctxt "SIP_SA_CAPTIONTYPE"
msgid "Type of legend"
msgstr "Triba de lleenda"
#. GAtWb
-#: include/svx/strings.hrc:370
+#: include/svx/strings.hrc:371
msgctxt "SIP_SA_CAPTIONFIXEDANGLE"
msgid "Fixed legend angle"
msgstr "Fixación ángulu de lleenda"
#. SgHKq
-#: include/svx/strings.hrc:371
+#: include/svx/strings.hrc:372
msgctxt "SIP_SA_CAPTIONANGLE"
msgid "Legend angle"
msgstr "Ángulu de lleenda"
#. gwcQp
-#: include/svx/strings.hrc:372
+#: include/svx/strings.hrc:373
msgctxt "SIP_SA_CAPTIONGAP"
msgid "Legend lines spacing"
msgstr "Distancia llinia de lleenda"
#. 6uEae
-#: include/svx/strings.hrc:373
+#: include/svx/strings.hrc:374
msgctxt "SIP_SA_CAPTIONESCDIR"
msgid "Legend exit alignment"
msgstr "Direición salida de lleenda"
#. TXjGv
-#: include/svx/strings.hrc:374
+#: include/svx/strings.hrc:375
msgctxt "SIP_SA_CAPTIONESCISREL"
msgid "Relative exit legend"
msgstr "Salida relativa de lleenda"
#. Z5bQB
-#: include/svx/strings.hrc:375
+#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCREL"
msgid "Relative exit legend"
msgstr "Salida relativa de lleenda"
#. 4TmFK
-#: include/svx/strings.hrc:376
+#: include/svx/strings.hrc:377
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
msgstr "Salida dafechu de lleenda"
#. V9TG8
-#: include/svx/strings.hrc:377
+#: include/svx/strings.hrc:378
msgctxt "SIP_SA_CAPTIONLINELEN"
msgid "Legend line length"
msgstr "Llargor de llinia de lleenda"
#. haQgi
-#: include/svx/strings.hrc:378
+#: include/svx/strings.hrc:379
msgctxt "SIP_SA_CAPTIONFITLINELEN"
msgid "AutoLength of legend lines"
msgstr "Llargor de llinia de lleenda, automáticu"
#. 8sDXi
-#: include/svx/strings.hrc:379
+#: include/svx/strings.hrc:380
msgctxt "SIP_SA_CORNER_RADIUS"
msgid "Corner radius"
msgstr ""
#. GEA3m
-#: include/svx/strings.hrc:380
+#: include/svx/strings.hrc:381
msgctxt "SIP_SA_TEXT_MINFRAMEHEIGHT"
msgid "Minimal frame height"
msgstr "Altor de marcu mínimu"
#. 3jdRR
-#: include/svx/strings.hrc:381
+#: include/svx/strings.hrc:382
msgctxt "SIP_SA_TEXT_AUTOGROWHEIGHT"
msgid "AutoFit height"
msgstr "Axuste d'altor automáticu"
#. NoJR4
-#: include/svx/strings.hrc:382
+#: include/svx/strings.hrc:383
msgctxt "SIP_SA_TEXT_FITTOSIZE"
msgid "Fit text to frame"
msgstr "Axustar testu al marcu"
#. EexDC
-#: include/svx/strings.hrc:383
+#: include/svx/strings.hrc:384
msgctxt "SIP_SA_TEXT_LEFTDIST"
msgid "Left text frame spacing"
msgstr "Distancia izquierda al marcu de testu"
#. 3thvB
-#: include/svx/strings.hrc:384
+#: include/svx/strings.hrc:385
msgctxt "SIP_SA_TEXT_RIGHTDIST"
msgid "Right text frame spacing"
msgstr "Distancia drecha al marcu de testu"
#. 8x2Xa
-#: include/svx/strings.hrc:385
+#: include/svx/strings.hrc:386
msgctxt "SIP_SA_TEXT_UPPERDIST"
msgid "Upper text frame spacing"
msgstr "Distancia cimera al marcu de testu"
#. WyymX
-#: include/svx/strings.hrc:386
+#: include/svx/strings.hrc:387
msgctxt "SIP_SA_TEXT_LOWERDIST"
msgid "Lower text frame spacing"
msgstr "Distancia baxera al marcu de testu"
#. vdbvB
-#: include/svx/strings.hrc:387
+#: include/svx/strings.hrc:388
msgctxt "SIP_SA_TEXT_VERTADJUST"
msgid "Vertical text anchor"
msgstr "Anchor vertical del testu"
#. QzTNc
-#: include/svx/strings.hrc:388
+#: include/svx/strings.hrc:389
msgctxt "SIP_SA_TEXT_MAXFRAMEHEIGHT"
msgid "Maximal frame height"
msgstr "Altor de marcu máximu"
#. CcAnR
-#: include/svx/strings.hrc:389
+#: include/svx/strings.hrc:390
msgctxt "SIP_SA_TEXT_MINFRAMEWIDTH"
msgid "Minimal frame width"
msgstr "Altor de marcu mínimu"
#. i6nqD
-#: include/svx/strings.hrc:390
+#: include/svx/strings.hrc:391
msgctxt "SIP_SA_TEXT_MAXFRAMEWIDTH"
msgid "Maximal frame width"
msgstr "Altor de marcu máximu"
#. irtVb
-#: include/svx/strings.hrc:391
+#: include/svx/strings.hrc:392
msgctxt "SIP_SA_TEXT_AUTOGROWWIDTH"
msgid "AutoFit width"
msgstr "Axuste automáticu d'anchor"
#. BGR8n
-#: include/svx/strings.hrc:392
+#: include/svx/strings.hrc:393
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "Anchor horizontal del testu"
#. ruk5J
-#: include/svx/strings.hrc:393
+#: include/svx/strings.hrc:394
msgctxt "SIP_SA_TEXT_ANIKIND"
msgid "Ticker"
msgstr "Indicador"
#. cvDiA
-#: include/svx/strings.hrc:394
+#: include/svx/strings.hrc:395
msgctxt "SIP_SA_TEXT_ANIDIRECTION"
msgid "Ticker direction"
msgstr "Direición de l'animación de testu"
#. GuCC5
-#: include/svx/strings.hrc:395
+#: include/svx/strings.hrc:396
msgctxt "SIP_SA_TEXT_ANISTARTINSIDE"
msgid "Ticker start inside"
msgstr "Entamu de l'animación en"
#. ipog5
-#: include/svx/strings.hrc:396
+#: include/svx/strings.hrc:397
msgctxt "SIP_SA_TEXT_ANISTOPINSIDE"
msgid "Ticker stop inside"
msgstr "Parada d'animación en"
#. pWAHL
-#: include/svx/strings.hrc:397
+#: include/svx/strings.hrc:398
msgctxt "SIP_SA_TEXT_ANICOUNT"
msgid "Number of ticker runs"
msgstr "Cantidá d'animaciones"
#. vGEjP
-#: include/svx/strings.hrc:398
+#: include/svx/strings.hrc:399
msgctxt "SIP_SA_TEXT_ANIDELAY"
msgid "Speed of ticker"
msgstr "Incrementu d'animación"
#. SdHEU
-#: include/svx/strings.hrc:399
+#: include/svx/strings.hrc:400
msgctxt "SIP_SA_TEXT_ANIAMOUNT"
msgid "Ticker step size"
msgstr "Retardu de l'animación"
#. LzoA5
-#: include/svx/strings.hrc:400
+#: include/svx/strings.hrc:401
msgctxt "SIP_SA_TEXT_CONTOURFRAME"
msgid "Outline text flow"
msgstr "Fluxu de tetu de contornu"
#. tNbcC
-#: include/svx/strings.hrc:401
+#: include/svx/strings.hrc:402
msgctxt "SIP_SA_TEXTCOLUMNS_NUMBER"
msgid "Columns number"
msgstr ""
#. DxZkZ
-#: include/svx/strings.hrc:402
+#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXTCOLUMNS_SPACING"
msgid "Columns spacing"
msgstr ""
#. HDtDf
-#: include/svx/strings.hrc:403
+#: include/svx/strings.hrc:404
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
msgstr "Atributos definíos pol usuariu"
#. F9FzF
-#: include/svx/strings.hrc:404
+#: include/svx/strings.hrc:405
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
msgid "Use font-independent line spacing"
msgstr "Usar espaciáu entre llinies independientemente de la fonte"
#. jTAhz
-#: include/svx/strings.hrc:405
+#: include/svx/strings.hrc:406
msgctxt "SIP_SA_WORDWRAP"
msgid "Word wrap text in shape"
msgstr "Axuste de llinia na forma"
#. QDaB6
-#: include/svx/strings.hrc:406
+#: include/svx/strings.hrc:407
msgctxt "SIP_SA_CHAINNEXTNAME"
msgid "Next link in text chain"
msgstr ""
#. BA5dh
-#: include/svx/strings.hrc:407
+#: include/svx/strings.hrc:408
msgctxt "SIP_SA_EDGEKIND"
msgid "Type of connector"
msgstr "Triba de coneutor"
#. CoYH2
-#: include/svx/strings.hrc:408
+#: include/svx/strings.hrc:409
msgctxt "SIP_SA_EDGENODE1HORZDIST"
msgid "Horz. spacing object 1"
msgstr "Distancia horz. oxetu 1"
#. xdvs2
-#: include/svx/strings.hrc:409
+#: include/svx/strings.hrc:410
msgctxt "SIP_SA_EDGENODE1VERTDIST"
msgid "Vert. spacing object 1"
msgstr "Distancia vert. oxetu 1"
#. FB4Cj
-#: include/svx/strings.hrc:410
+#: include/svx/strings.hrc:411
msgctxt "SIP_SA_EDGENODE2HORZDIST"
msgid "Horz. spacing object 2"
msgstr "Distancia hor. oxetu 2"
#. uGKvj
-#: include/svx/strings.hrc:411
+#: include/svx/strings.hrc:412
msgctxt "SIP_SA_EDGENODE2VERTDIST"
msgid "Vert. spacing object 2"
msgstr "Distancia vert. oxetu 2"
#. FSkBP
-#: include/svx/strings.hrc:412
+#: include/svx/strings.hrc:413
msgctxt "SIP_SA_EDGENODE1GLUEDIST"
msgid "Glue spacing object 1"
msgstr "Distancia apegáu oxetu 1"
#. 845KH
-#: include/svx/strings.hrc:413
+#: include/svx/strings.hrc:414
msgctxt "SIP_SA_EDGENODE2GLUEDIST"
msgid "Glue spacing object 2"
msgstr "Distancia apegáu oxetu 2"
#. FEDAf
-#: include/svx/strings.hrc:414
+#: include/svx/strings.hrc:415
msgctxt "SIP_SA_EDGELINEDELTACOUNT"
msgid "Number of movable lines"
msgstr "Númb. llinies movibles"
#. EnGaG
-#: include/svx/strings.hrc:415
+#: include/svx/strings.hrc:416
msgctxt "SIP_SA_EDGELINE1DELTA"
msgid "Offset line 1"
msgstr "Desplazamientu llinia 1"
#. 5XFzK
-#: include/svx/strings.hrc:416
+#: include/svx/strings.hrc:417
msgctxt "SIP_SA_EDGELINE2DELTA"
msgid "Offset line 2"
msgstr "Desplazamientu llinia 2"
#. nBFrd
-#: include/svx/strings.hrc:417
+#: include/svx/strings.hrc:418
msgctxt "SIP_SA_EDGELINE3DELTA"
msgid "Offset line 3"
msgstr "Desplazamientu llinia 3"
#. x7oEC
-#: include/svx/strings.hrc:418
+#: include/svx/strings.hrc:419
msgctxt "SIP_SA_MEASUREKIND"
msgid "Type of dimensioning"
msgstr "Triba d'acotación"
#. 2XCPo
-#: include/svx/strings.hrc:419
+#: include/svx/strings.hrc:420
msgctxt "SIP_SA_MEASURETEXTHPOS"
msgid "Dimension value - horizontal position"
msgstr "Valor de la cota - posición horizontal"
#. DxA8Z
-#: include/svx/strings.hrc:420
+#: include/svx/strings.hrc:421
msgctxt "SIP_SA_MEASURETEXTVPOS"
msgid "Dimension value - vertical position"
msgstr "Valor de la cota - posición vertical"
#. LQCsj
-#: include/svx/strings.hrc:421
+#: include/svx/strings.hrc:422
msgctxt "SIP_SA_MEASURELINEDIST"
msgid "Dimension line space"
msgstr "Distancia llinies de cota"
#. jZBoK
-#: include/svx/strings.hrc:422
+#: include/svx/strings.hrc:423
msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG"
msgid "Dimension help line overhang"
msgstr "Guíes sobresalientes"
#. Bhboy
-#: include/svx/strings.hrc:423
+#: include/svx/strings.hrc:424
msgctxt "SIP_SA_MEASUREHELPLINEDIST"
msgid "Dimension help line spacing"
msgstr "Distancia entre guíes"
#. jw9E7
-#: include/svx/strings.hrc:424
+#: include/svx/strings.hrc:425
msgctxt "SIP_SA_MEASUREHELPLINE1LEN"
msgid "Backlog of dimension help line 1"
msgstr "Atrasu de llinia de cota aux. 1"
#. CYFg6
-#: include/svx/strings.hrc:425
+#: include/svx/strings.hrc:426
msgctxt "SIP_SA_MEASUREHELPLINE2LEN"
msgid "Backlog of dimension help line 2"
msgstr "Atrasu de llinia de cota aux. 2"
#. ocvCK
-#: include/svx/strings.hrc:426
+#: include/svx/strings.hrc:427
msgctxt "SIP_SA_MEASUREBELOWREFEDGE"
msgid "Lower edge dimensioning"
msgstr "Dimensiones borde baxeru"
#. cFVVA
-#: include/svx/strings.hrc:427
+#: include/svx/strings.hrc:428
msgctxt "SIP_SA_MEASURETEXTROTA90"
msgid "Dimension value across dimension line"
msgstr "Dimens. de testu peles llinies"
#. VVAgC
-#: include/svx/strings.hrc:428
+#: include/svx/strings.hrc:429
msgctxt "SIP_SA_MEASURETEXTUPSIDEDOWN"
msgid "Rotate dimension value by 180 degree"
msgstr "Xirar valor de la cota 180 graos"
#. iFX7y
-#: include/svx/strings.hrc:429
+#: include/svx/strings.hrc:430
msgctxt "SIP_SA_MEASUREOVERHANG"
msgid "Dimension line overhang"
msgstr "Resalta llinies de dimensión"
#. DoBGo
-#: include/svx/strings.hrc:430
+#: include/svx/strings.hrc:431
msgctxt "SIP_SA_MEASUREUNIT"
msgid "Measure unit"
msgstr "Unidá de midida"
#. 2NBMp
-#: include/svx/strings.hrc:431
+#: include/svx/strings.hrc:432
msgctxt "SIP_SA_MEASURESCALE"
msgid "Additional scale factor"
msgstr "Factor adicional d'escala"
#. 4yTAW
-#: include/svx/strings.hrc:432
+#: include/svx/strings.hrc:433
msgctxt "SIP_SA_MEASURESHOWUNIT"
msgid "Measure unit display"
msgstr "Vista unidaes de midida"
#. NFDC3
-#: include/svx/strings.hrc:433
+#: include/svx/strings.hrc:434
msgctxt "SIP_SA_MEASUREFORMATSTRING"
msgid "Dimension value format"
msgstr "Formatu de testu de la cota"
#. UBjQk
-#: include/svx/strings.hrc:434
+#: include/svx/strings.hrc:435
msgctxt "SIP_SA_MEASURETEXTAUTOANGLE"
msgid "AutoPositioning of the dimension value"
msgstr "Allugamientu automáticu del valor de la cota"
#. GDQC3
-#: include/svx/strings.hrc:435
+#: include/svx/strings.hrc:436
msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW"
msgid "Angle for the automatic positioning of the dimension value"
msgstr "Ángulu de posicionamentu automáticu del valor de la cota"
#. DB243
-#: include/svx/strings.hrc:436
+#: include/svx/strings.hrc:437
msgctxt "SIP_SA_MEASURETEXTISFIXEDANGLE"
msgid "Determination of the dimension value angle"
msgstr "Definición del ángulu del valor de la cota"
#. i3Bah
-#: include/svx/strings.hrc:437
+#: include/svx/strings.hrc:438
msgctxt "SIP_SA_MEASURETEXTFIXEDANGLE"
msgid "Angle of the dimension value"
msgstr "Ángulu del valor de la cota"
#. qWKC7
-#: include/svx/strings.hrc:438
+#: include/svx/strings.hrc:439
msgctxt "SIP_SA_MEASUREDECIMALPLACES"
msgid "Decimal places"
msgstr "Decimales"
#. wkrNX
-#: include/svx/strings.hrc:439
+#: include/svx/strings.hrc:440
msgctxt "SIP_SA_CIRCKIND"
msgid "Type of circle"
msgstr "Triba de círculu"
#. FRFU8
-#: include/svx/strings.hrc:440
+#: include/svx/strings.hrc:441
msgctxt "SIP_SA_CIRCSTARTANGLE"
msgid "Start angle"
msgstr "Ángulu d'aniciu"
#. FmSKG
-#: include/svx/strings.hrc:441
+#: include/svx/strings.hrc:442
msgctxt "SIP_SA_CIRCENDANGLE"
msgid "End angle"
msgstr "Ángulu final"
#. ejn6F
-#: include/svx/strings.hrc:442
+#: include/svx/strings.hrc:443
msgctxt "SIP_SA_OBJMOVEPROTECT"
msgid "Protected object position"
msgstr "Allugamientu del oxetu protexida"
#. ZPEB9
-#: include/svx/strings.hrc:443
+#: include/svx/strings.hrc:444
msgctxt "SIP_SA_OBJSIZEPROTECT"
msgid "Protected object size"
msgstr "Tamañu del oxetu protexíu"
#. BN5CM
-#: include/svx/strings.hrc:444
+#: include/svx/strings.hrc:445
msgctxt "SIP_SA_OBJPRINTABLE"
msgid "Object, printable"
msgstr "Oxetu, imprentable"
#. 3Digj
-#: include/svx/strings.hrc:445
+#: include/svx/strings.hrc:446
msgctxt "SIP_SA_OBJVISIBLE"
msgid "Object, visible"
msgstr "Oxetu visible"
#. nZLtM
-#: include/svx/strings.hrc:446
+#: include/svx/strings.hrc:447
msgctxt "SIP_SA_LAYERID"
msgid "Level ID"
msgstr "ID del nivel"
#. f3ed2
-#: include/svx/strings.hrc:447
+#: include/svx/strings.hrc:448
msgctxt "SIP_SA_LAYERNAME"
msgid "Layer"
msgstr "Capa"
#. rb6GC
-#: include/svx/strings.hrc:448
+#: include/svx/strings.hrc:449
msgctxt "SIP_SA_OBJECTNAME"
msgid "Object name"
msgstr "Nome d'oxetu"
#. 5zRFi
-#: include/svx/strings.hrc:449
+#: include/svx/strings.hrc:450
msgctxt "SIP_SA_ALLPOSITIONX"
msgid "Position X, complete"
msgstr "Posición X, too"
#. 5enZ7
-#: include/svx/strings.hrc:450
+#: include/svx/strings.hrc:451
msgctxt "SIP_SA_ALLPOSITIONY"
msgid "Position Y, complete"
msgstr "Posición Y, too"
#. 2V5Mn
-#: include/svx/strings.hrc:451
+#: include/svx/strings.hrc:452
msgctxt "SIP_SA_ALLSIZEWIDTH"
msgid "Total Width"
msgstr "Anchor, too"
#. P6Y6W
-#: include/svx/strings.hrc:452
+#: include/svx/strings.hrc:453
msgctxt "SIP_SA_ALLSIZEHEIGHT"
msgid "Height, complete"
msgstr "Altor, too"
#. yFnnC
-#: include/svx/strings.hrc:453
+#: include/svx/strings.hrc:454
msgctxt "SIP_SA_ONEPOSITIONX"
msgid "Single position X"
msgstr "Posición X, individual"
#. jEGfd
-#: include/svx/strings.hrc:454
+#: include/svx/strings.hrc:455
msgctxt "SIP_SA_ONEPOSITIONY"
msgid "Single position Y"
msgstr "Posición Y, individual"
#. YJFnY
-#: include/svx/strings.hrc:455
+#: include/svx/strings.hrc:456
msgctxt "SIP_SA_ONESIZEWIDTH"
msgid "Single width"
msgstr "Anchor, individual"
#. bZFkM
-#: include/svx/strings.hrc:456
+#: include/svx/strings.hrc:457
msgctxt "SIP_SA_ONESIZEHEIGHT"
msgid "Single height"
msgstr "Altor, individual"
#. K5Xuq
-#: include/svx/strings.hrc:457
+#: include/svx/strings.hrc:458
msgctxt "SIP_SA_LOGICSIZEWIDTH"
msgid "Logical width"
msgstr "Anchor, lóxicu"
#. 9Niyk
-#: include/svx/strings.hrc:458
+#: include/svx/strings.hrc:459
msgctxt "SIP_SA_LOGICSIZEHEIGHT"
msgid "Logical height"
msgstr "Altor, lóxicu"
#. yFmvh
-#: include/svx/strings.hrc:459
+#: include/svx/strings.hrc:460
msgctxt "SIP_SA_ROTATEANGLE"
msgid "Single rotation angle"
msgstr "Ángulu de rotación, individual"
#. zNyKY
-#: include/svx/strings.hrc:460
+#: include/svx/strings.hrc:461
msgctxt "SIP_SA_SHEARANGLE"
msgid "Single shear angle"
msgstr "Ángulu de desviación, individual"
#. bJv8D
-#: include/svx/strings.hrc:461
+#: include/svx/strings.hrc:462
msgctxt "SIP_SA_MOVEX"
msgid "Move horizontally"
msgstr "Mover horizontalmente"
#. z7EPp
-#: include/svx/strings.hrc:462
+#: include/svx/strings.hrc:463
msgctxt "SIP_SA_MOVEY"
msgid "Move vertically"
msgstr "Mover verticalmente"
#. Qn4GS
-#: include/svx/strings.hrc:463
+#: include/svx/strings.hrc:464
msgctxt "SIP_SA_RESIZEXONE"
msgid "Resize X, single"
msgstr "Redimensión X, individual"
#. VCtZa
-#: include/svx/strings.hrc:464
+#: include/svx/strings.hrc:465
msgctxt "SIP_SA_RESIZEYONE"
msgid "Resize Y, single"
msgstr "Redimensión Y, individual"
#. NxatH
-#: include/svx/strings.hrc:465
+#: include/svx/strings.hrc:466
msgctxt "SIP_SA_ROTATEONE"
msgid "Single rotation"
msgstr "Rotación, individual"
#. gNVw9
-#: include/svx/strings.hrc:466
+#: include/svx/strings.hrc:467
msgctxt "SIP_SA_HORZSHEARONE"
msgid "Single horizontal shear"
msgstr "Cortar horiz., individual"
#. iCzED
-#: include/svx/strings.hrc:467
+#: include/svx/strings.hrc:468
msgctxt "SIP_SA_VERTSHEARONE"
msgid "Single vertical shear"
msgstr "Cortar vert., individual"
#. HQcJt
-#: include/svx/strings.hrc:468
+#: include/svx/strings.hrc:469
msgctxt "SIP_SA_RESIZEXALL"
msgid "Resize X, complete"
msgstr "Redimensión X, too"
#. VcK8z
-#: include/svx/strings.hrc:469
+#: include/svx/strings.hrc:470
msgctxt "SIP_SA_RESIZEYALL"
msgid "Resize Y, complete"
msgstr "Redimensión Y, too"
#. vgGU4
-#: include/svx/strings.hrc:470
+#: include/svx/strings.hrc:471
msgctxt "SIP_SA_ROTATEALL"
msgid "Rotate all"
msgstr "Rodar, too"
#. 3faE4
-#: include/svx/strings.hrc:471
+#: include/svx/strings.hrc:472
msgctxt "SIP_SA_HORZSHEARALL"
msgid "Shear horizontal, complete"
msgstr "Cortar horiz., too"
#. RAEPz
-#: include/svx/strings.hrc:472
+#: include/svx/strings.hrc:473
msgctxt "SIP_SA_VERTSHEARALL"
msgid "Shear vertical, complete"
msgstr "Cortar vert., too"
#. gtXM3
-#: include/svx/strings.hrc:473
+#: include/svx/strings.hrc:474
msgctxt "SIP_SA_TRANSFORMREF1X"
msgid "Reference point 1 X"
msgstr "Puntu de referencia 1 X"
#. YpQDc
-#: include/svx/strings.hrc:474
+#: include/svx/strings.hrc:475
msgctxt "SIP_SA_TRANSFORMREF1Y"
msgid "Reference point 1 Y"
msgstr "Puntu de referencia 1 Y"
#. Hp5EK
-#: include/svx/strings.hrc:475
+#: include/svx/strings.hrc:476
msgctxt "SIP_SA_TRANSFORMREF2X"
msgid "Reference point 2 X"
msgstr "Puntu de referencia 2 X"
#. Rty4j
-#: include/svx/strings.hrc:476
+#: include/svx/strings.hrc:477
msgctxt "SIP_SA_TRANSFORMREF2Y"
msgid "Reference point 2 Y"
msgstr "Puntu de referencia 2 Y"
#. JdeqL
-#: include/svx/strings.hrc:477
+#: include/svx/strings.hrc:478
msgctxt "SIP_EE_PARA_HYPHENATE"
msgid "Hyphenation"
msgstr "Guionáu"
#. HMmA6
-#: include/svx/strings.hrc:478
+#: include/svx/strings.hrc:479
msgctxt "SIP_EE_PARA_BULLETSTATE"
msgid "Display bullets"
msgstr "Amosar viñeta"
#. 8Q88u
-#: include/svx/strings.hrc:479
+#: include/svx/strings.hrc:480
msgctxt "SIP_EE_PARA_OUTLLRSPACE"
msgid "Numbering indents"
msgstr "Sangría en enumberación"
#. inGxX
-#: include/svx/strings.hrc:480
+#: include/svx/strings.hrc:481
msgctxt "SIP_EE_PARA_OUTLLEVEL"
msgid "Numbering level"
msgstr "Nivel de enumberación"
#. 2CtLK
-#: include/svx/strings.hrc:481
+#: include/svx/strings.hrc:482
msgctxt "SIP_EE_PARA_BULLET"
msgid "Bullets and Numberings"
msgstr "Viñeta"
#. hCE5d
-#: include/svx/strings.hrc:482
+#: include/svx/strings.hrc:483
msgctxt "SIP_EE_PARA_LRSPACE"
msgid "Indents"
msgstr "Sangríes"
#. Y5YFm
-#: include/svx/strings.hrc:483
+#: include/svx/strings.hrc:484
msgctxt "SIP_EE_PARA_ULSPACE"
msgid "Paragraph spacing"
msgstr "Espacios ente párrafos"
#. feirn
-#: include/svx/strings.hrc:484
+#: include/svx/strings.hrc:485
msgctxt "SIP_EE_PARA_SBL"
msgid "Line spacing"
msgstr "Espaciáu ente llinies"
#. gjAVE
-#: include/svx/strings.hrc:485
+#: include/svx/strings.hrc:486
msgctxt "SIP_EE_PARA_JUST"
msgid "Paragraph alignment"
msgstr "Alliniamientu de párrafu"
#. offnT
-#: include/svx/strings.hrc:486
+#: include/svx/strings.hrc:487
msgctxt "SIP_EE_PARA_TABS"
msgid "Tabulators"
msgstr "Tabuladores"
#. kpiTD
-#: include/svx/strings.hrc:487
+#: include/svx/strings.hrc:488
msgctxt "SIP_EE_CHAR_COLOR"
msgid "Font color"
msgstr "Collor fonte"
#. X535C
-#: include/svx/strings.hrc:488
+#: include/svx/strings.hrc:489
msgctxt "SIP_EE_CHAR_FONTINFO"
msgid "Character set"
msgstr "Xuegu de caráuteres"
#. AEbEz
-#: include/svx/strings.hrc:489
+#: include/svx/strings.hrc:490
msgctxt "SIP_EE_CHAR_FONTHEIGHT"
msgid "Font size"
msgstr "Tamañu de fonte"
#. UKHSM
-#: include/svx/strings.hrc:490
+#: include/svx/strings.hrc:491
msgctxt "SIP_EE_CHAR_FONTWIDTH"
msgid "Font width"
msgstr "Anchor de fonte"
#. SQWpD
-#: include/svx/strings.hrc:491
+#: include/svx/strings.hrc:492
msgctxt "SIP_EE_CHAR_WEIGHT"
msgid "Bold (thickness)"
msgstr "Negrina (gruesu)"
#. AUR7N
-#: include/svx/strings.hrc:492
+#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_UNDERLINE"
msgid "Underline"
msgstr "Solliñáu"
#. v2AEJ
-#: include/svx/strings.hrc:493
+#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_OVERLINE"
msgid "Overline"
msgstr "Sobrellinia"
#. ARvwR
-#: include/svx/strings.hrc:494
+#: include/svx/strings.hrc:495
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
msgstr "Tacháu"
#. gcVzb
-#: include/svx/strings.hrc:495
+#: include/svx/strings.hrc:496
msgctxt "SIP_EE_CHAR_ITALIC"
msgid "Italic"
msgstr "Cursiva"
#. kJVaV
-#: include/svx/strings.hrc:496
+#: include/svx/strings.hrc:497
msgctxt "SIP_EE_CHAR_OUTLINE"
msgid "Outline"
msgstr "Contornu"
#. CZR4e
-#: include/svx/strings.hrc:497
+#: include/svx/strings.hrc:498
msgctxt "SIP_EE_CHAR_SHADOW"
msgid "Font shadow"
msgstr "Solombra"
#. PFSUR
-#: include/svx/strings.hrc:498
+#: include/svx/strings.hrc:499
msgctxt "SIP_EE_CHAR_ESCAPEMENT"
msgid "Superscript/subscript"
msgstr "Super/subíndiz"
#. DrBio
-#: include/svx/strings.hrc:499
+#: include/svx/strings.hrc:500
msgctxt "SIP_EE_CHAR_PAIRKERNING"
msgid "Kerning"
msgstr "Axuste ente caráuteres"
#. tUVvP
-#: include/svx/strings.hrc:500
+#: include/svx/strings.hrc:501
msgctxt "SIP_EE_CHAR_KERNING"
msgid "Manual kerning"
msgstr "Axuste ente caráuteres, manual"
#. S9QCU
-#: include/svx/strings.hrc:501
+#: include/svx/strings.hrc:502
msgctxt "SIP_EE_CHAR_WLM"
msgid "No underline for spaces"
msgstr "Nun sorrayar espacios baleros"
#. GuTzF
-#: include/svx/strings.hrc:502
+#: include/svx/strings.hrc:503
msgctxt "SIP_EE_FEATURE_TAB"
msgid "Tabulator"
msgstr "Tabulador"
#. U4qgA
-#: include/svx/strings.hrc:503
+#: include/svx/strings.hrc:504
msgctxt "SIP_EE_FEATURE_LINEBR"
msgid "Optional line break"
msgstr "Saltu de ringlera opcional"
#. jzBEA
-#: include/svx/strings.hrc:504
+#: include/svx/strings.hrc:505
msgctxt "SIP_EE_FEATURE_NOTCONV"
msgid "Non-convertible character"
msgstr "Caráuter non convertible"
#. tZd9C
-#: include/svx/strings.hrc:505
+#: include/svx/strings.hrc:506
msgctxt "SIP_EE_FEATURE_FIELD"
msgid "Fields"
msgstr "Campos"
#. GeKPD
-#: include/svx/strings.hrc:506
+#: include/svx/strings.hrc:507
msgctxt "SIP_SA_GRAFRED"
msgid "Red"
msgstr "Bermeyu"
#. EzAu7
-#: include/svx/strings.hrc:507
+#: include/svx/strings.hrc:508
msgctxt "SIP_SA_GRAFGREEN"
msgid "Green"
msgstr "Verde"
#. TmBML
-#: include/svx/strings.hrc:508
+#: include/svx/strings.hrc:509
msgctxt "SIP_SA_GRAFBLUE"
msgid "Blue"
msgstr "Azul"
#. 7Gqzs
-#: include/svx/strings.hrc:509
+#: include/svx/strings.hrc:510
msgctxt "SIP_SA_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Rellumu"
#. rziVW
-#: include/svx/strings.hrc:510
+#: include/svx/strings.hrc:511
msgctxt "SIP_SA_GRAFCONTRAST"
msgid "Contrast"
msgstr "Contraste"
#. CHepz
-#: include/svx/strings.hrc:511
+#: include/svx/strings.hrc:512
msgctxt "SIP_SA_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. 2ESVA
-#: include/svx/strings.hrc:512
+#: include/svx/strings.hrc:513
msgctxt "SIP_SA_GRAFTRANSPARENCE"
msgid "Transparency"
msgstr "Tresparencia"
#. uZYFG
-#: include/svx/strings.hrc:513
+#: include/svx/strings.hrc:514
msgctxt "SIP_SA_GRAFINVERT"
msgid "Invert"
msgstr "Invertir"
#. 6aFx2
-#: include/svx/strings.hrc:514
+#: include/svx/strings.hrc:515
#, fuzzy
msgctxt "SIP_SA_GRAFMODE"
msgid "Image mode"
msgstr "Mou d'imaxe"
#. Ni9KZ
-#: include/svx/strings.hrc:515
+#: include/svx/strings.hrc:516
msgctxt "SIP_SA_GRAFCROP"
msgid "Crop"
msgstr "Recortar"
#. kVnke
-#: include/svx/strings.hrc:516
+#: include/svx/strings.hrc:517
msgctxt "SIP_SA_GLOW_RADIUS"
msgid "Radius of glow effect"
msgstr ""
#. 3hvai
-#: include/svx/strings.hrc:517
+#: include/svx/strings.hrc:518
msgctxt "SIP_SA_GLOW_COLOR"
msgid "Color of glow effect"
msgstr ""
#. eCSE2
-#: include/svx/strings.hrc:518
+#: include/svx/strings.hrc:519
msgctxt "SIP_SA_GLOW_TRANSPARENCY"
msgid "Transparency of glow effect"
msgstr ""
#. 8qNHk
-#: include/svx/strings.hrc:519
+#: include/svx/strings.hrc:520
msgctxt "SIP_SA_SOFTEDGE_RADIUS"
msgid "Radius of soft edge effect"
msgstr ""
#. nVcjU
-#: include/svx/strings.hrc:520
+#: include/svx/strings.hrc:521
msgctxt "STR_ObjNameSingulMEDIA"
msgid "Media object"
msgstr "Oxetu de medios"
#. nbHgw
-#: include/svx/strings.hrc:521
+#: include/svx/strings.hrc:522
msgctxt "STR_ObjNamePluralMEDIA"
msgid "Media objects"
msgstr "Oxetos de medios"
#. YpmrX
#. drawing layer table strings
-#: include/svx/strings.hrc:523
+#: include/svx/strings.hrc:524
msgctxt "STR_TABLE_INSCOL"
msgid "Insert column"
msgstr "Inxertar columna"
#. SAmd8
-#: include/svx/strings.hrc:524
+#: include/svx/strings.hrc:525
msgctxt "STR_TABLE_INSROW"
msgid "Insert row"
msgstr "Inxertar filera"
#. yFDYp
-#: include/svx/strings.hrc:525
+#: include/svx/strings.hrc:526
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Desaniciar columna"
#. 9SF9L
-#: include/svx/strings.hrc:526
+#: include/svx/strings.hrc:527
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Desaniciar filera"
#. iBbtT
-#: include/svx/strings.hrc:527
+#: include/svx/strings.hrc:528
msgctxt "STR_TABLE_SPLIT"
msgid "Split cells"
msgstr "Dixebrar caxelles"
#. vmzqf
-#: include/svx/strings.hrc:528
+#: include/svx/strings.hrc:529
msgctxt "STR_TABLE_MERGE"
msgid "Merge cells"
msgstr "Xunir caxelles"
#. 3VVmF
-#: include/svx/strings.hrc:529
+#: include/svx/strings.hrc:530
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formatu de caxella"
#. pSCJC
-#: include/svx/strings.hrc:530
+#: include/svx/strings.hrc:531
msgctxt "STR_TABLE_DISTRIBUTE_ROWS"
msgid "Distribute rows"
msgstr "Distribuyir fileres"
#. GdLHf
-#: include/svx/strings.hrc:531
+#: include/svx/strings.hrc:532
msgctxt "STR_TABLE_DISTRIBUTE_COLUMNS"
msgid "Distribute columns"
msgstr "Distribuyir columnes"
#. fGNto
-#: include/svx/strings.hrc:532
+#: include/svx/strings.hrc:533
#, fuzzy
msgctxt "STR_TABLE_DELETE_CELL_CONTENTS"
msgid "Delete cell contents"
msgstr "Desaniciar conteníu"
#. B33Cb
-#: include/svx/strings.hrc:533
+#: include/svx/strings.hrc:534
msgctxt "STR_TABLE_STYLE"
msgid "Table style"
msgstr "Estilu de tabla"
#. ZHBAC
-#: include/svx/strings.hrc:534
+#: include/svx/strings.hrc:535
msgctxt "STR_TABLE_STYLE_SETTINGS"
msgid "Table style settings"
msgstr "Axustes d'estilu de tabla"
#. eERmE
-#: include/svx/strings.hrc:535
+#: include/svx/strings.hrc:536
msgctxt "STR_ObjNameSingulTable"
msgid "Table"
msgstr "Tabla"
#. XjgSV
-#: include/svx/strings.hrc:536
+#: include/svx/strings.hrc:537
msgctxt "STR_ObjNamePluralTable"
msgid "Tables"
msgstr "Tablas"
#. mLDqP
-#: include/svx/strings.hrc:537
+#: include/svx/strings.hrc:538
#, fuzzy
msgctxt "STR_ObjNameSingulFONTWORK"
msgid "Font work"
@@ -3085,257 +3091,257 @@ msgstr "trabayu orixinal"
#. FgChT
#. Strings for the Draw-Dialog --------------------------------------------
-#: include/svx/strings.hrc:539
+#: include/svx/strings.hrc:540
msgctxt "RID_SVXSTR_SOLID"
msgid "Continuous"
msgstr "Continuu"
#. uNL7M
-#: include/svx/strings.hrc:540
+#: include/svx/strings.hrc:541
msgctxt "RID_SVXSTR_GRADIENT"
msgid "Gradient"
msgstr "Dilíu"
#. a8YoL
-#: include/svx/strings.hrc:541
+#: include/svx/strings.hrc:542
msgctxt "RID_SVXSTR_BITMAP"
msgid "Bitmap"
msgstr "Mapa de bits"
#. FDmra
-#: include/svx/strings.hrc:542
+#: include/svx/strings.hrc:543
msgctxt "RID_SVXSTR_PATTERN"
msgid "Pattern"
msgstr "Patrón"
#. HcGBQ
-#: include/svx/strings.hrc:543
+#: include/svx/strings.hrc:544
msgctxt "RID_SVXSTR_PATTERN_UNTITLED"
msgid "Untitled Pattern"
msgstr ""
#. GHj4Q
-#: include/svx/strings.hrc:544
+#: include/svx/strings.hrc:545
msgctxt "RID_SVXSTR_LINESTYLE"
msgid "Line Style"
msgstr "Estilu de llinia"
#. fa7EG
-#: include/svx/strings.hrc:545
+#: include/svx/strings.hrc:546
msgctxt "RID_SVXSTR_INVISIBLE"
msgid "None"
msgstr "Denguna"
#. mrTdk
-#: include/svx/strings.hrc:546
+#: include/svx/strings.hrc:547
msgctxt "RID_SVXSTR_COLOR"
msgid "Color"
msgstr "Color"
#. 5bjE5
-#: include/svx/strings.hrc:547
+#: include/svx/strings.hrc:548
msgctxt "RID_SVXSTR_HATCH"
msgid "Hatching"
msgstr "Trama"
#. yGRGW
-#: include/svx/strings.hrc:548
+#: include/svx/strings.hrc:549
msgctxt "RID_SVXSTR_LINEEND"
msgid "Arrowheads"
msgstr "Puntes de flecha"
#. snuCi
-#: include/svx/strings.hrc:549
+#: include/svx/strings.hrc:550
msgctxt "RID_SVXSTR_ARROW"
msgid "Arrow"
msgstr "Flecha"
#. 6EvQ7
-#: include/svx/strings.hrc:550
+#: include/svx/strings.hrc:551
msgctxt "RID_SVXSTR_SQUARE"
msgid "Square"
msgstr "Cuadráu"
#. i6cva
-#: include/svx/strings.hrc:551
+#: include/svx/strings.hrc:552
msgctxt "RID_SVXSTR_CIRCLE"
msgid "Circle"
msgstr "Círculu"
#. emz9g
-#: include/svx/strings.hrc:552
+#: include/svx/strings.hrc:553
msgctxt "RID_SVXSTR_NONE"
msgid "- none -"
msgstr "- dengún -"
#. hGaEK
-#: include/svx/strings.hrc:553
+#: include/svx/strings.hrc:554
msgctxt "RID_SVXSTR_TRANSPARENCE"
msgid "Transparency"
msgstr "Tresparencia"
#. X4EFw
-#: include/svx/strings.hrc:554
+#: include/svx/strings.hrc:555
msgctxt "RID_SVXSTR_CENTERED"
msgid "Centered"
msgstr "Centráu"
#. FFe8m
-#: include/svx/strings.hrc:555
+#: include/svx/strings.hrc:556
msgctxt "RID_SVXSTR_NOTCENTERED"
msgid "Not centered"
msgstr "Non centráu"
#. hFhmH
-#: include/svx/strings.hrc:556
+#: include/svx/strings.hrc:557
msgctxt "RID_SVXSTR_GRAFMODE_STANDARD"
msgid "Default"
msgstr "Predetermináu"
#. DdAzc
-#: include/svx/strings.hrc:557
+#: include/svx/strings.hrc:558
msgctxt "RID_SVXSTR_GRAFMODE_GREYS"
msgid "Grayscale"
msgstr "Escala de buxos"
#. RHEXM
-#: include/svx/strings.hrc:558
+#: include/svx/strings.hrc:559
msgctxt "RID_SVXSTR_GRAFMODE_MONO"
msgid "Black/White"
msgstr "Prietu/Blancu"
#. bcXbA
-#: include/svx/strings.hrc:559
+#: include/svx/strings.hrc:560
msgctxt "RID_SVXSTR_GRAFMODE_WATERMARK"
msgid "Watermark"
msgstr "Marca d'agua"
#. ZWz8Y
-#: include/svx/strings.hrc:560
+#: include/svx/strings.hrc:561
msgctxt "RID_SVXSTR_COLORBAR"
msgid "Left click to apply as background color, right click to set line color"
msgstr ""
#. mFU2A
#. Default colors
-#: include/svx/strings.hrc:562
+#: include/svx/strings.hrc:563
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FONTCOLOR"
msgid "Dark Red 2"
msgstr ""
#. Rw7nG
-#: include/svx/strings.hrc:563
+#: include/svx/strings.hrc:564
msgctxt "RID_SVXSTR_COLOR_DEFAULT_FRAMELINE"
msgid "Blue"
msgstr "Azul"
#. UdEYr
-#: include/svx/strings.hrc:564
+#: include/svx/strings.hrc:565
msgctxt "RID_SVXSTR_COLOR_DEFAULT_HIGHLIGHT"
msgid "Yellow"
msgstr "Mariellu"
#. 9AUDK
-#: include/svx/strings.hrc:565
+#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_STROKE"
msgid "Dark Blue 1"
msgstr ""
#. aSWwv
-#: include/svx/strings.hrc:566
+#: include/svx/strings.hrc:567
msgctxt "RID_SVXSTR_COLOR_DEFAULT_SHAPE_FILLING"
msgid "Light Blue 2"
msgstr ""
#. 5gwhz
#. Elements of the standard color palette
-#: include/svx/strings.hrc:568
+#: include/svx/strings.hrc:569
msgctxt "RID_SVXSTR_COLOR_BLACK"
msgid "Black"
msgstr "Prietu"
#. PwGvV
-#: include/svx/strings.hrc:569
+#: include/svx/strings.hrc:570
msgctxt "RID_SVXSTR_COLOR_GREY"
msgid "Gray"
msgstr "Buxu"
#. Dp9Az
-#: include/svx/strings.hrc:570
+#: include/svx/strings.hrc:571
msgctxt "RID_SVXSTR_COLOR_WHITE"
msgid "White"
msgstr "Blancu"
#. TGLmD
-#: include/svx/strings.hrc:571
+#: include/svx/strings.hrc:572
msgctxt "RID_SVXSTR_COLOR_YELLOW"
msgid "Yellow"
msgstr "Mariellu"
#. YpDke
-#: include/svx/strings.hrc:572
+#: include/svx/strings.hrc:573
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_GOLD"
msgid "Gold"
msgstr "Oru"
#. 7aJCZ
-#: include/svx/strings.hrc:573
+#: include/svx/strings.hrc:574
msgctxt "RID_SVXSTR_COLOR_ORANGE"
msgid "Orange"
msgstr "Naranxa"
#. mZMFN
-#: include/svx/strings.hrc:574
+#: include/svx/strings.hrc:575
msgctxt "RID_SVXSTR_COLOR_BRICK"
msgid "Brick"
msgstr ""
#. juJeM
-#: include/svx/strings.hrc:575
+#: include/svx/strings.hrc:576
msgctxt "RID_SVXSTR_COLOR_RED"
msgid "Red"
msgstr "Coloráu"
#. 7xMrN
-#: include/svx/strings.hrc:576
+#: include/svx/strings.hrc:577
msgctxt "RID_SVXSTR_COLOR_MAGENTA"
msgid "Magenta"
msgstr "Maxenta"
#. ELXiM
-#: include/svx/strings.hrc:577
+#: include/svx/strings.hrc:578
msgctxt "RID_SVXSTR_COLOR_PURPLE"
msgid "Purple"
msgstr "Púrpura"
#. UTexf
-#: include/svx/strings.hrc:578
+#: include/svx/strings.hrc:579
msgctxt "RID_SVXSTR_COLOR_INDIGO"
msgid "Indigo"
msgstr ""
#. qbcF9
-#: include/svx/strings.hrc:579
+#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_BLUE"
msgid "Blue"
msgstr "Azul"
#. hQ44j
-#: include/svx/strings.hrc:580
+#: include/svx/strings.hrc:581
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_TEAL"
msgid "Teal"
msgstr "xade"
#. JpxBr
-#: include/svx/strings.hrc:581
+#: include/svx/strings.hrc:582
msgctxt "RID_SVXSTR_COLOR_GREEN"
msgid "Green"
msgstr "Verde"
#. A3aCJ
-#: include/svx/strings.hrc:582
+#: include/svx/strings.hrc:583
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIME"
msgid "Lime"
@@ -3343,3386 +3349,3386 @@ msgstr "Llinia"
#. wVMiq
#. Light variants of the standard color palette
-#: include/svx/strings.hrc:584
+#: include/svx/strings.hrc:585
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_LIGHTGRAY"
msgid "Light Gray"
msgstr "Buxu claru"
#. YF2ud
-#: include/svx/strings.hrc:585
+#: include/svx/strings.hrc:586
msgctxt "RID_SVXSTR_COLOR_LIGHTYELLOW"
msgid "Light Yellow"
msgstr ""
#. BaXBj
-#: include/svx/strings.hrc:586
+#: include/svx/strings.hrc:587
msgctxt "RID_SVXSTR_COLOR_LIGHTGOLD"
msgid "Light Gold"
msgstr ""
#. masPL
-#: include/svx/strings.hrc:587
+#: include/svx/strings.hrc:588
msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE"
msgid "Light Orange"
msgstr ""
#. k5GY4
-#: include/svx/strings.hrc:588
+#: include/svx/strings.hrc:589
msgctxt "RID_SVXSTR_COLOR_LIGHTBRICK"
msgid "Light Brick"
msgstr ""
#. KGDDj
-#: include/svx/strings.hrc:589
+#: include/svx/strings.hrc:590
msgctxt "RID_SVXSTR_COLOR_LIGHTRED"
msgid "Light Red"
msgstr "Bermeyu claru"
#. nvB2W
-#: include/svx/strings.hrc:590
+#: include/svx/strings.hrc:591
msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
msgid "Light Magenta"
msgstr ""
#. y96HS
-#: include/svx/strings.hrc:591
+#: include/svx/strings.hrc:592
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
msgid "Light Purple"
msgstr ""
#. 8Bg8h
-#: include/svx/strings.hrc:592
+#: include/svx/strings.hrc:593
msgctxt "RID_SVXSTR_COLOR_LIGHTINDIGO"
msgid "Light Indigo"
msgstr ""
#. suGUh
-#: include/svx/strings.hrc:593
+#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_LIGHTBLUE"
msgid "Light Blue"
msgstr "Azul claru"
#. 5VFSV
-#: include/svx/strings.hrc:594
+#: include/svx/strings.hrc:595
msgctxt "RID_SVXSTR_COLOR_LIGHTTEAL"
msgid "Light Teal"
msgstr ""
#. 3Z7KA
-#: include/svx/strings.hrc:595
+#: include/svx/strings.hrc:596
msgctxt "RID_SVXSTR_COLOR_LIGHTGREEN"
msgid "Light Green"
msgstr "Verde claru"
#. HVPnD
-#: include/svx/strings.hrc:596
+#: include/svx/strings.hrc:597
msgctxt "RID_SVXSTR_COLOR_LIGHTLIME"
msgid "Light Lime"
msgstr ""
#. J6DDx
#. Dark variants of the standard color palette
-#: include/svx/strings.hrc:598
+#: include/svx/strings.hrc:599
msgctxt "RID_SVXSTR_COLOR_DARKGRAY"
msgid "Dark Gray"
msgstr ""
#. EaFik
-#: include/svx/strings.hrc:599
+#: include/svx/strings.hrc:600
msgctxt "RID_SVXSTR_COLOR_DARKYELLOW"
msgid "Dark Yellow"
msgstr ""
#. AFByn
-#: include/svx/strings.hrc:600
+#: include/svx/strings.hrc:601
msgctxt "RID_SVXSTR_COLOR_DARKGOLD"
msgid "Dark Gold"
msgstr ""
#. qAGnF
-#: include/svx/strings.hrc:601
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_DARKORANGE"
msgid "Dark Orange"
msgstr ""
#. NC62Q
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_DARKBRICK"
msgid "Dark Brick"
msgstr ""
#. st4Zy
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
#, fuzzy
msgctxt "RID_SVXSTR_COLOR_DARKRED"
msgid "Dark Red"
msgstr "Colloráu buxu"
#. indkC
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
msgid "Dark Magenta"
msgstr ""
#. AE9Ya
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
msgid "Dark Purple"
msgstr ""
#. VFKuJ
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_DARKINDIGO"
msgid "Dark Indigo"
msgstr ""
#. U3qfW
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_DARKBLUE"
msgid "Dark Blue"
msgstr ""
#. dYdEW
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_DARKTEAL"
msgid "Dark Teal"
msgstr ""
#. qFAAB
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_DARKGREEN"
msgid "Dark Green"
msgstr ""
#. C3U7v
-#: include/svx/strings.hrc:610
+#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_DARKLIME"
msgid "Dark Lime"
msgstr ""
#. VWKSb
#. Elements of the Tonal color palette
-#: include/svx/strings.hrc:612
+#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_VIOLET"
msgid "Violet"
msgstr "Violeta"
#. GgboW
-#: include/svx/strings.hrc:613
+#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
#. mz3Eo
-#: include/svx/strings.hrc:614
+#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
#. SGvfY
-#: include/svx/strings.hrc:615
+#: include/svx/strings.hrc:616
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
#. dYBjC
-#: include/svx/strings.hrc:616
+#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
#. GCcWR
-#: include/svx/strings.hrc:617
+#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
#. DLuCh
-#: include/svx/strings.hrc:618
+#: include/svx/strings.hrc:619
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
#. s3ZaC
-#: include/svx/strings.hrc:619
+#: include/svx/strings.hrc:620
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
#. A8i2G
-#: include/svx/strings.hrc:620
+#: include/svx/strings.hrc:621
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
#. j4oEv
-#: include/svx/strings.hrc:621
+#: include/svx/strings.hrc:622
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
#. qBpvR
-#: include/svx/strings.hrc:622
+#: include/svx/strings.hrc:623
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
msgstr ""
#. Y6vVA
-#: include/svx/strings.hrc:623
+#: include/svx/strings.hrc:624
msgctxt "RID_SVXSTR_COLOR_CYAN"
msgid "Cyan"
msgstr "Cian"
#. 583vY
-#: include/svx/strings.hrc:624
+#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
msgstr ""
#. jtKm8
-#: include/svx/strings.hrc:625
+#: include/svx/strings.hrc:626
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
msgstr ""
#. RkAmE
-#: include/svx/strings.hrc:626
+#: include/svx/strings.hrc:627
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
msgstr ""
#. BZGUS
#. Elements of the Material color palette
-#: include/svx/strings.hrc:628
+#: include/svx/strings.hrc:629
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
msgstr ""
#. 3b7sB
-#: include/svx/strings.hrc:629
+#: include/svx/strings.hrc:630
msgctxt "RID_SVXSTR_COLOR_MATERIAL_YELLOW_A"
msgid "Yellow A"
msgstr ""
#. DbqvY
-#: include/svx/strings.hrc:630
+#: include/svx/strings.hrc:631
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER_A"
msgid "Amber A"
msgstr ""
#. nFENC
-#: include/svx/strings.hrc:631
+#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_AMBER"
msgid "Amber"
msgstr ""
#. i8Tx3
-#: include/svx/strings.hrc:632
+#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
msgstr ""
#. DMVTT
-#: include/svx/strings.hrc:633
+#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
msgstr ""
#. LgNfg
-#: include/svx/strings.hrc:634
+#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
msgstr ""
#. A4JAB
-#: include/svx/strings.hrc:635
+#: include/svx/strings.hrc:636
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
msgstr ""
#. jsEPc
-#: include/svx/strings.hrc:636
+#: include/svx/strings.hrc:637
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PINK_A"
msgid "Pink A"
msgstr ""
#. cFBzv
-#: include/svx/strings.hrc:637
+#: include/svx/strings.hrc:638
msgctxt "RID_SVXSTR_COLOR_MATERIAL_PURPLE_A"
msgid "Purple A"
msgstr ""
#. p6AAX
-#: include/svx/strings.hrc:638
+#: include/svx/strings.hrc:639
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE_A"
msgid "Deep Purple A"
msgstr ""
#. WcMy9
-#: include/svx/strings.hrc:639
+#: include/svx/strings.hrc:640
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_PURPLE"
msgid "Deep Purple"
msgstr ""
#. e4rqj
-#: include/svx/strings.hrc:640
+#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_INDIGO_A"
msgid "Indigo A"
msgstr ""
#. r3rtQ
-#: include/svx/strings.hrc:641
+#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
msgstr ""
#. dDQEi
-#: include/svx/strings.hrc:642
+#: include/svx/strings.hrc:643
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
msgstr ""
#. BepQT
-#: include/svx/strings.hrc:643
+#: include/svx/strings.hrc:644
msgctxt "RID_SVXSTR_COLOR_MATERIAL_CYAN_A"
msgid "Cyan A"
msgstr ""
#. PvkCw
-#: include/svx/strings.hrc:644
+#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_TEAL_A"
msgid "Teal A"
msgstr ""
#. znZyu
-#: include/svx/strings.hrc:645
+#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
msgstr ""
#. nZDMp
-#: include/svx/strings.hrc:646
+#: include/svx/strings.hrc:647
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
msgstr ""
#. 7RWqh
-#: include/svx/strings.hrc:647
+#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIME_A"
msgid "Lime A"
msgstr ""
#. vuq8i
-#: include/svx/strings.hrc:648
+#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
msgstr "Marrón A"
#. wcNMK
-#: include/svx/strings.hrc:649
+#: include/svx/strings.hrc:650
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
msgstr "Marrón"
#. RA8KB
-#: include/svx/strings.hrc:650
+#: include/svx/strings.hrc:651
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY_A"
msgid "Blue Gray A"
msgstr ""
#. yXhED
-#: include/svx/strings.hrc:651
+#: include/svx/strings.hrc:652
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_GRAY"
msgid "Blue Gray"
msgstr ""
#. mCkpS
#. Old default color names, probably often used in saved files
-#: include/svx/strings.hrc:653
+#: include/svx/strings.hrc:654
msgctxt "RID_SVXSTR_COLOR_BLUE_CLASSIC"
msgid "Blue classic"
msgstr "Azul clásicu"
#. CWbzY
-#: include/svx/strings.hrc:654
+#: include/svx/strings.hrc:655
msgctxt "RID_SVXSTR_COLOR_BLUEGREY"
msgid "Blue gray"
msgstr "Azul verdín"
#. DkKFF
-#: include/svx/strings.hrc:655
+#: include/svx/strings.hrc:656
msgctxt "RID_SVXSTR_COLOR_BORDEAUX"
msgid "Bordeaux"
msgstr "Burdeos"
#. 5hZu8
-#: include/svx/strings.hrc:656
+#: include/svx/strings.hrc:657
msgctxt "RID_SVXSTR_COLOR_PALE_YELLOW"
msgid "Pale yellow"
msgstr "Mariellu pálidu"
#. wSEGQ
-#: include/svx/strings.hrc:657
+#: include/svx/strings.hrc:658
msgctxt "RID_SVXSTR_COLOR_PALE_GREEN"
msgid "Pale green"
msgstr "Verde pálidu"
#. pUEkF
-#: include/svx/strings.hrc:658
+#: include/svx/strings.hrc:659
msgctxt "RID_SVXSTR_COLOR_DARKVIOLET"
msgid "Dark violet"
msgstr "Violeta escuru"
#. qVhW9
-#: include/svx/strings.hrc:659
+#: include/svx/strings.hrc:660
msgctxt "RID_SVXSTR_COLOR_SALMON"
msgid "Salmon"
msgstr "Salmón"
#. QV77P
-#: include/svx/strings.hrc:660
+#: include/svx/strings.hrc:661
msgctxt "RID_SVXSTR_COLOR_SEABLUE"
msgid "Sea blue"
msgstr "Azul marín"
#. gYFV6
-#: include/svx/strings.hrc:661
+#: include/svx/strings.hrc:662
msgctxt "RID_SVXSTR_COLOR_CHART"
msgid "Chart"
msgstr "Gráficu"
#. LXcFL
-#: include/svx/strings.hrc:662
+#: include/svx/strings.hrc:663
msgctxt "RID_SVXSTR_COLOR_SKYBLUE"
msgid "Sky blue"
msgstr "Azul celeste"
#. QbGU3
-#: include/svx/strings.hrc:663
+#: include/svx/strings.hrc:664
msgctxt "RID_SVXSTR_COLOR_YELLOWGREEN"
msgid "Yellow green"
msgstr "Mariellu verdosu"
#. UDfTh
-#: include/svx/strings.hrc:664
+#: include/svx/strings.hrc:665
msgctxt "RID_SVXSTR_COLOR_PINK"
msgid "Pink"
msgstr "Rosa"
#. FXDuA
-#: include/svx/strings.hrc:665
+#: include/svx/strings.hrc:666
msgctxt "RID_SVXSTR_COLOR_TURQUOISE"
msgid "Turquoise"
msgstr "Turquesa"
#. 4gHhZ
#. 16 old AutoFormat Table Styles
-#: include/svx/strings.hrc:667
+#: include/svx/strings.hrc:668
msgctxt "RID_SVXSTR_TBLAFMT_3D"
msgid "3D"
msgstr "3D"
#. GtMuR
-#: include/svx/strings.hrc:668
+#: include/svx/strings.hrc:669
msgctxt "RID_SVXSTR_TBLAFMT_BLACK1"
msgid "Black 1"
msgstr "Prietu 1"
#. AhPLy
-#: include/svx/strings.hrc:669
+#: include/svx/strings.hrc:670
msgctxt "RID_SVXSTR_TBLAFMT_BLACK2"
msgid "Black 2"
msgstr "Prietu 2"
#. jVxFC
-#: include/svx/strings.hrc:670
+#: include/svx/strings.hrc:671
msgctxt "RID_SVXSTR_TBLAFMT_BLUE"
msgid "Blue"
msgstr "Azul"
#. FacjB
-#: include/svx/strings.hrc:671
+#: include/svx/strings.hrc:672
msgctxt "RID_SVXSTR_TBLAFMT_BROWN"
msgid "Brown"
msgstr "Marrón"
#. uQSDF
-#: include/svx/strings.hrc:672
+#: include/svx/strings.hrc:673
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY"
msgid "Currency"
msgstr "Moneda"
#. sQpNL
-#: include/svx/strings.hrc:673
+#: include/svx/strings.hrc:674
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_3D"
msgid "Currency 3D"
msgstr "Moneda 3D"
#. ACACr
-#: include/svx/strings.hrc:674
+#: include/svx/strings.hrc:675
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_GRAY"
msgid "Currency Gray"
msgstr "Moneda gris"
#. yy7mJ
-#: include/svx/strings.hrc:675
+#: include/svx/strings.hrc:676
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_LAVENDER"
msgid "Currency Lavender"
msgstr "Moneda llavanda"
#. 4THUt
-#: include/svx/strings.hrc:676
+#: include/svx/strings.hrc:677
msgctxt "RID_SVXSTR_TBLAFMT_CURRENCY_TURQUOISE"
msgid "Currency Turquoise"
msgstr "Moneda Turca"
#. a8AGf
-#: include/svx/strings.hrc:677
+#: include/svx/strings.hrc:678
msgctxt "RID_SVXSTR_TBLAFMT_GRAY"
msgid "Gray"
msgstr "Buxu"
#. B4e9f
-#: include/svx/strings.hrc:678
+#: include/svx/strings.hrc:679
msgctxt "RID_SVXSTR_TBLAFMT_GREEN"
msgid "Green"
msgstr "Verde"
#. 3mz4G
-#: include/svx/strings.hrc:679
+#: include/svx/strings.hrc:680
msgctxt "RID_SVXSTR_TBLAFMT_LAVENDER"
msgid "Lavender"
msgstr "Espliegu"
#. gdfFF
-#: include/svx/strings.hrc:680
+#: include/svx/strings.hrc:681
msgctxt "RID_SVXSTR_TBLAFMT_RED"
msgid "Red"
msgstr "Coloráu"
#. GsAVb
-#: include/svx/strings.hrc:681
+#: include/svx/strings.hrc:682
msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE"
msgid "Turquoise"
msgstr "Turquesa"
#. sZbit
-#: include/svx/strings.hrc:682
+#: include/svx/strings.hrc:683
msgctxt "RID_SVXSTR_TBLAFMT_YELLOW"
msgid "Yellow"
msgstr "Mariellu"
#. deE8o
#. 10 new AutoFormat Table Styles since LibreOffice 6.0
-#: include/svx/strings.hrc:684
+#: include/svx/strings.hrc:685
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ACADEMIC"
msgid "Academic"
msgstr ""
#. CYMbi
-#: include/svx/strings.hrc:685
+#: include/svx/strings.hrc:686
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_BLUE"
msgid "Box List Blue"
msgstr ""
#. njUDn
-#: include/svx/strings.hrc:686
+#: include/svx/strings.hrc:687
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_GREEN"
msgid "Box List Green"
msgstr ""
#. GUk5r
-#: include/svx/strings.hrc:687
+#: include/svx/strings.hrc:688
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_RED"
msgid "Box List Red"
msgstr ""
#. oNMgD
-#: include/svx/strings.hrc:688
+#: include/svx/strings.hrc:689
msgctxt "RID_SVXSTR_TBLAFMT_LO6_BOX_LIST_YELLOW"
msgid "Box List Yellow"
msgstr ""
#. YVY2f
-#: include/svx/strings.hrc:689
+#: include/svx/strings.hrc:690
msgctxt "RID_SVXSTR_TBLAFMT_LO6_ELEGANT"
msgid "Elegant"
msgstr "Elegante"
#. Q9rDT
-#: include/svx/strings.hrc:690
+#: include/svx/strings.hrc:691
#, fuzzy
msgctxt "RID_SVXSTR_TBLAFMT_LO6_FINANCIAL"
msgid "Financial"
msgstr "Finances"
#. 3qSCd
-#: include/svx/strings.hrc:691
+#: include/svx/strings.hrc:692
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_COLUMNS"
msgid "Simple Grid Columns"
msgstr ""
#. hksaM
-#: include/svx/strings.hrc:692
+#: include/svx/strings.hrc:693
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_GRID_ROWS"
msgid "Simple Grid Rows"
msgstr ""
#. CHXkk
-#: include/svx/strings.hrc:693
+#: include/svx/strings.hrc:694
msgctxt "RID_SVXSTR_TBLAFMT_LO6_SIMPLE_LIST_SHADED"
msgid "Simple List Shaded"
msgstr ""
#. XrHFB
-#: include/svx/strings.hrc:694
+#: include/svx/strings.hrc:695
msgctxt "RID_SVXSTR_LINEJOINT_MIDDLE"
msgid "Line joint averaged"
msgstr "Xuntes de llinia media"
#. zbAG7
-#: include/svx/strings.hrc:695
+#: include/svx/strings.hrc:696
msgctxt "RID_SVXSTR_LINEJOINT_BEVEL"
msgid "Line joint bevel"
msgstr "Xuntes de llinia xunida"
#. EtQJT
-#: include/svx/strings.hrc:696
+#: include/svx/strings.hrc:697
msgctxt "RID_SVXSTR_LINEJOINT_MITER"
msgid "Line joint miter"
msgstr "Xuntes de llinia cortada"
#. YUtBv
-#: include/svx/strings.hrc:697
+#: include/svx/strings.hrc:698
msgctxt "RID_SVXSTR_LINEJOINT_ROUND"
msgid "Line joint round"
msgstr "Xuntes de llinia redonda"
#. rKEBC
#. the familiar name for it
-#: include/svx/strings.hrc:699
+#: include/svx/strings.hrc:700
msgctxt "RID_SVXSTR_LINECAP_BUTT"
msgid "Line cap flat"
msgstr "Fin de llinia planu"
#. zKt6C
-#: include/svx/strings.hrc:700
+#: include/svx/strings.hrc:701
msgctxt "RID_SVXSTR_LINECAP_ROUND"
msgid "Line cap round"
msgstr "Fin de llinia redondu"
#. 5Lbx4
-#: include/svx/strings.hrc:701
+#: include/svx/strings.hrc:702
msgctxt "RID_SVXSTR_LINECAP_SQUARE"
msgid "Line cap square"
msgstr "Fin de llinia cuadráu"
#. YXbPg
-#: include/svx/strings.hrc:702
+#: include/svx/strings.hrc:703
msgctxt "RID_SVXSTR_GRDT0"
msgid "Gradient"
msgstr "Dilíu"
#. mZwMD
-#: include/svx/strings.hrc:703
+#: include/svx/strings.hrc:704
msgctxt "RID_SVXSTR_GRDT1"
msgid "Linear blue/white"
msgstr "Llinial azul/blancu"
#. WyGuh
-#: include/svx/strings.hrc:704
+#: include/svx/strings.hrc:705
msgctxt "RID_SVXSTR_GRDT2"
msgid "Linear magenta/green"
msgstr "Llinial maxenta/verde"
#. cLHvA
-#: include/svx/strings.hrc:705
+#: include/svx/strings.hrc:706
msgctxt "RID_SVXSTR_GRDT3"
msgid "Linear yellow/brown"
msgstr "Llinial mariellu/marrón"
#. Kfkbm
-#: include/svx/strings.hrc:706
+#: include/svx/strings.hrc:707
msgctxt "RID_SVXSTR_GRDT4"
msgid "Radial green/black"
msgstr "Radial verde/prietu"
#. uiTTS
-#: include/svx/strings.hrc:707
+#: include/svx/strings.hrc:708
msgctxt "RID_SVXSTR_GRDT5"
msgid "Radial red/yellow"
msgstr "Radial bermeyu/mariellu"
#. SsUvr
-#: include/svx/strings.hrc:708
+#: include/svx/strings.hrc:709
msgctxt "RID_SVXSTR_GRDT6"
msgid "Rectangular red/white"
msgstr "Rectangular bermeyu/blancu"
#. CKwQP
-#: include/svx/strings.hrc:709
+#: include/svx/strings.hrc:710
msgctxt "RID_SVXSTR_GRDT7"
msgid "Square yellow/white"
msgstr "Cuadráu mariellu/blancu"
#. hi3tb
-#: include/svx/strings.hrc:710
+#: include/svx/strings.hrc:711
msgctxt "RID_SVXSTR_GRDT8"
msgid "Ellipsoid blue gray/light blue"
msgstr "Elipsoide azul gris/azul dilíu"
#. b6AwV
-#: include/svx/strings.hrc:711
+#: include/svx/strings.hrc:712
msgctxt "RID_SVXSTR_GRDT9"
msgid "Axial light red/white"
msgstr "Axal bermeyu dilíu/blancu"
#. Adprm
#. l means left
-#: include/svx/strings.hrc:713
+#: include/svx/strings.hrc:714
msgctxt "RID_SVXSTR_GRDT10"
msgid "Diagonal 1l"
msgstr "Diagonal 1i"
#. pJ9QE
#. r means right
-#: include/svx/strings.hrc:715
+#: include/svx/strings.hrc:716
msgctxt "RID_SVXSTR_GRDT11"
msgid "Diagonal 1r"
msgstr "Diagonal 1d"
#. JB95r
#. l means left
-#: include/svx/strings.hrc:717
+#: include/svx/strings.hrc:718
msgctxt "RID_SVXSTR_GRDT12"
msgid "Diagonal 2l"
msgstr "Diagonal 2i"
#. xUpUR
#. r means right
-#: include/svx/strings.hrc:719
+#: include/svx/strings.hrc:720
msgctxt "RID_SVXSTR_GRDT13"
msgid "Diagonal 2r"
msgstr "Diagonal 2d"
#. WCYMT
#. l means left
-#: include/svx/strings.hrc:721
+#: include/svx/strings.hrc:722
msgctxt "RID_SVXSTR_GRDT14"
msgid "Diagonal 3l"
msgstr "Diagonal 3i"
#. 3rJw7
#. r means right
-#: include/svx/strings.hrc:723
+#: include/svx/strings.hrc:724
msgctxt "RID_SVXSTR_GRDT15"
msgid "Diagonal 3r"
msgstr "Diagonal 3d"
#. a6ENF
#. l means left
-#: include/svx/strings.hrc:725
+#: include/svx/strings.hrc:726
msgctxt "RID_SVXSTR_GRDT16"
msgid "Diagonal 4l"
msgstr "Diagonal 4i"
#. Fpctb
#. r means right
-#: include/svx/strings.hrc:727
+#: include/svx/strings.hrc:728
msgctxt "RID_SVXSTR_GRDT17"
msgid "Diagonal 4r"
msgstr "Diagonal 4d"
#. yqda8
-#: include/svx/strings.hrc:728
+#: include/svx/strings.hrc:729
msgctxt "RID_SVXSTR_GRDT18"
msgid "Diagonal Blue"
msgstr "Diagonal Azul"
#. GCtJC
-#: include/svx/strings.hrc:729
+#: include/svx/strings.hrc:730
msgctxt "RID_SVXSTR_GRDT19"
msgid "Diagonal Green"
msgstr "Diagonal Verde"
#. LCQEB
-#: include/svx/strings.hrc:730
+#: include/svx/strings.hrc:731
msgctxt "RID_SVXSTR_GRDT20"
msgid "Diagonal Orange"
msgstr "Diagonal Naranxa"
#. oD7FW
-#: include/svx/strings.hrc:731
+#: include/svx/strings.hrc:732
msgctxt "RID_SVXSTR_GRDT21"
msgid "Diagonal Red"
msgstr "Diagonal Bermeya"
#. vuyUG
-#: include/svx/strings.hrc:732
+#: include/svx/strings.hrc:733
msgctxt "RID_SVXSTR_GRDT22"
msgid "Diagonal Turquoise"
msgstr "Diagonal Turquesa"
#. mGtyc
-#: include/svx/strings.hrc:733
+#: include/svx/strings.hrc:734
msgctxt "RID_SVXSTR_GRDT23"
msgid "Diagonal Violet"
msgstr "Diagonal Viola"
#. cArVy
-#: include/svx/strings.hrc:734
+#: include/svx/strings.hrc:735
msgctxt "RID_SVXSTR_GRDT24"
msgid "From a Corner"
msgstr "D'una esquina"
#. gvXLL
-#: include/svx/strings.hrc:735
+#: include/svx/strings.hrc:736
msgctxt "RID_SVXSTR_GRDT25"
msgid "From a Corner, Blue"
msgstr "D'una esquina, Azul"
#. GaTPh
-#: include/svx/strings.hrc:736
+#: include/svx/strings.hrc:737
msgctxt "RID_SVXSTR_GRDT26"
msgid "From a Corner, Green"
msgstr "D'una esquina, Verde"
#. GE5vm
-#: include/svx/strings.hrc:737
+#: include/svx/strings.hrc:738
msgctxt "RID_SVXSTR_GRDT27"
msgid "From a Corner, Orange"
msgstr "D'una esquina, Naranxa"
#. BFTnr
-#: include/svx/strings.hrc:738
+#: include/svx/strings.hrc:739
msgctxt "RID_SVXSTR_GRDT28"
msgid "From a Corner, Red"
msgstr "D'una esquina, Bermeya"
#. AFKRL
-#: include/svx/strings.hrc:739
+#: include/svx/strings.hrc:740
msgctxt "RID_SVXSTR_GRDT29"
msgid "From a Corner, Turquoise"
msgstr "D'una esquina, Turquesa"
#. djBGe
-#: include/svx/strings.hrc:740
+#: include/svx/strings.hrc:741
msgctxt "RID_SVXSTR_GRDT30"
msgid "From a Corner, Violet"
msgstr "D'una esquina, Viola"
#. pwDuE
-#: include/svx/strings.hrc:741
+#: include/svx/strings.hrc:742
msgctxt "RID_SVXSTR_GRDT31"
msgid "From the Middle"
msgstr "Dende'l mediu"
#. y8qpL
-#: include/svx/strings.hrc:742
+#: include/svx/strings.hrc:743
msgctxt "RID_SVXSTR_GRDT32"
msgid "From the Middle, Blue"
msgstr "Dende'l mediu, Azul"
#. PGt5w
-#: include/svx/strings.hrc:743
+#: include/svx/strings.hrc:744
msgctxt "RID_SVXSTR_GRDT33"
msgid "From the Middle, Green"
msgstr "Dende'l mediu, Verde"
#. CyLXB
-#: include/svx/strings.hrc:744
+#: include/svx/strings.hrc:745
msgctxt "RID_SVXSTR_GRDT34"
msgid "From the Middle, Orange"
msgstr "Dende'l mediu, Naranxa"
#. vkERJ
-#: include/svx/strings.hrc:745
+#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT35"
msgid "From the Middle, Red"
msgstr "Dende'l mediu, Bermeya"
#. Sq2SE
-#: include/svx/strings.hrc:746
+#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT36"
msgid "From the Middle, Turquoise"
msgstr "Dende'l mediu, Turquesa"
#. DoSmH
-#: include/svx/strings.hrc:747
+#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT37"
msgid "From the Middle, Violet"
msgstr "Dende'l mediu, Viola"
#. 9XHkg
-#: include/svx/strings.hrc:748
+#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT38"
msgid "Horizontal"
msgstr "Horizontal"
#. FDG7B
-#: include/svx/strings.hrc:749
+#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT39"
msgid "Horizontal Blue"
msgstr "Horizontal Azul"
#. ZEfzF
-#: include/svx/strings.hrc:750
+#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT40"
msgid "Horizontal Green"
msgstr "Horizontal Verde"
#. GFRCF
-#: include/svx/strings.hrc:751
+#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT41"
msgid "Horizontal Orange"
msgstr "Horizontal Naranxa"
#. iouxG
-#: include/svx/strings.hrc:752
+#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT42"
msgid "Horizontal Red"
msgstr "Horizontal Bermeya"
#. Gta9k
-#: include/svx/strings.hrc:753
+#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT43"
msgid "Horizontal Turquoise"
msgstr "Horizontal Turquesa"
#. Tdpw4
-#: include/svx/strings.hrc:754
+#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT44"
msgid "Horizontal Violet"
msgstr "Horizontal Viola"
#. DyVEP
-#: include/svx/strings.hrc:755
+#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT45"
msgid "Radial"
msgstr "Radial"
#. Uyhuj
-#: include/svx/strings.hrc:756
+#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT46"
msgid "Radial Blue"
msgstr "Radial Azul"
#. MA6Qs
-#: include/svx/strings.hrc:757
+#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT47"
msgid "Radial Green"
msgstr "Radial Verde"
#. Pt24U
-#: include/svx/strings.hrc:758
+#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT48"
msgid "Radial Orange"
msgstr "Radial Naranxa"
#. 37T3A
-#: include/svx/strings.hrc:759
+#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT49"
msgid "Radial Red"
msgstr "Radial Bermeya"
#. gLwZp
-#: include/svx/strings.hrc:760
+#: include/svx/strings.hrc:761
msgctxt "RID_SVXSTR_GRDT50"
msgid "Radial Turquoise"
msgstr "Radial Turquesa"
#. gka9C
-#: include/svx/strings.hrc:761
+#: include/svx/strings.hrc:762
msgctxt "RID_SVXSTR_GRDT51"
msgid "Radial Violet"
msgstr "Radial Viola"
#. BaGs9
-#: include/svx/strings.hrc:762
+#: include/svx/strings.hrc:763
msgctxt "RID_SVXSTR_GRDT52"
msgid "Vertical"
msgstr "Vertical"
#. DqGbG
-#: include/svx/strings.hrc:763
+#: include/svx/strings.hrc:764
msgctxt "RID_SVXSTR_GRDT53"
msgid "Vertical Blue"
msgstr "Vertical Azul"
#. FCa2X
-#: include/svx/strings.hrc:764
+#: include/svx/strings.hrc:765
msgctxt "RID_SVXSTR_GRDT54"
msgid "Vertical Green"
msgstr "Vertical Verde"
#. BNSiE
-#: include/svx/strings.hrc:765
+#: include/svx/strings.hrc:766
msgctxt "RID_SVXSTR_GRDT55"
msgid "Vertical Orange"
msgstr "Vertical Naranxa"
#. DfiaF
-#: include/svx/strings.hrc:766
+#: include/svx/strings.hrc:767
msgctxt "RID_SVXSTR_GRDT56"
msgid "Vertical Red"
msgstr "Vertical Bermeya"
#. 4htXp
-#: include/svx/strings.hrc:767
+#: include/svx/strings.hrc:768
msgctxt "RID_SVXSTR_GRDT57"
msgid "Vertical Turquoise"
msgstr "Vertical Turquesa"
#. FVCCq
-#: include/svx/strings.hrc:768
+#: include/svx/strings.hrc:769
msgctxt "RID_SVXSTR_GRDT58"
msgid "Vertical Violet"
msgstr "Vertical Viola"
#. S3bJ9
#. gradients of unknown provenience
-#: include/svx/strings.hrc:770
+#: include/svx/strings.hrc:771
msgctxt "RID_SVXSTR_GRDT59"
msgid "Gray Gradient"
msgstr "Dilíu de buxu"
#. CDxDN
-#: include/svx/strings.hrc:771
+#: include/svx/strings.hrc:772
msgctxt "RID_SVXSTR_GRDT60"
msgid "Yellow Gradient"
msgstr "Dilíu de mariellu"
#. amMze
-#: include/svx/strings.hrc:772
+#: include/svx/strings.hrc:773
msgctxt "RID_SVXSTR_GRDT61"
msgid "Orange Gradient"
msgstr "Dilíu de naranxa"
#. bodAW
-#: include/svx/strings.hrc:773
+#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_GRDT62"
msgid "Red Gradient"
msgstr "Dilíu de bermeyu"
#. Zn2x3
-#: include/svx/strings.hrc:774
+#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_GRDT63"
msgid "Pink Gradient"
msgstr "Dilíu de rosa"
#. xXMfH
-#: include/svx/strings.hrc:775
+#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_GRDT64"
msgid "Sky"
msgstr "Cielu"
#. RYfTi
-#: include/svx/strings.hrc:776
+#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_GRDT65"
msgid "Cyan Gradient"
msgstr "Dilíu de cian"
#. jAu7g
-#: include/svx/strings.hrc:777
+#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_GRDT66"
msgid "Blue Gradient"
msgstr "Dilíu d'azul"
#. idyKS
-#: include/svx/strings.hrc:778
+#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_GRDT67"
msgid "Purple Pipe"
msgstr "Tubu púrpura"
#. fFZia
-#: include/svx/strings.hrc:779
+#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_GRDT68"
msgid "Night"
msgstr "Nueche"
#. 4ECED
-#: include/svx/strings.hrc:780
+#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_GRDT69"
msgid "Green Gradient"
msgstr "Dilíu de verde"
#. ecDQh
#. actual gradients defined for 6.1
-#: include/svx/strings.hrc:782
+#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
msgstr ""
#. 9BV4L
-#: include/svx/strings.hrc:783
+#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
msgstr ""
#. jEVDi
-#: include/svx/strings.hrc:784
+#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
msgstr ""
#. ZAj48
-#: include/svx/strings.hrc:785
+#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
msgstr ""
#. CJqu3
-#: include/svx/strings.hrc:786
+#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
msgstr ""
#. s6Z54
-#: include/svx/strings.hrc:787
+#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
msgstr ""
#. nk99S
-#: include/svx/strings.hrc:788
+#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
msgstr ""
#. ud3Bc
-#: include/svx/strings.hrc:789
+#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
msgstr ""
#. 3DFV9
-#: include/svx/strings.hrc:790
+#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
msgstr ""
#. beAAG
-#: include/svx/strings.hrc:791
+#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
msgstr ""
#. LCJCH
-#: include/svx/strings.hrc:792
+#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
msgstr ""
#. wiGu5
-#: include/svx/strings.hrc:793
+#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
msgstr ""
#. EGqXT
-#: include/svx/strings.hrc:794
+#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
msgstr ""
#. WCs3M
-#: include/svx/strings.hrc:795
+#: include/svx/strings.hrc:796
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
msgstr ""
#. 99B5Z
-#: include/svx/strings.hrc:796
+#: include/svx/strings.hrc:797
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahogany"
msgstr ""
#. Z8RH9
#. /gradients
-#: include/svx/strings.hrc:798
+#: include/svx/strings.hrc:799
msgctxt "RID_SVXSTR_HATCH0"
msgid "Black 0 Degrees"
msgstr ""
#. BUCv6
-#: include/svx/strings.hrc:799
+#: include/svx/strings.hrc:800
msgctxt "RID_SVXSTR_HATCH1"
msgid "Black 90 Degrees"
msgstr ""
#. gyzNu
-#: include/svx/strings.hrc:800
+#: include/svx/strings.hrc:801
msgctxt "RID_SVXSTR_HATCH2"
msgid "Black 180 Degrees Crossed"
msgstr ""
#. KYmyj
-#: include/svx/strings.hrc:801
+#: include/svx/strings.hrc:802
msgctxt "RID_SVXSTR_HATCH3"
msgid "Blue 45 Degrees"
msgstr ""
#. 2qkyC
-#: include/svx/strings.hrc:802
+#: include/svx/strings.hrc:803
msgctxt "RID_SVXSTR_HATCH4"
msgid "Blue -45 Degrees"
msgstr ""
#. GFqzJ
-#: include/svx/strings.hrc:803
+#: include/svx/strings.hrc:804
msgctxt "RID_SVXSTR_HATCH5"
msgid "Blue 45 Degrees Crossed"
msgstr ""
#. wRXH2
-#: include/svx/strings.hrc:804
+#: include/svx/strings.hrc:805
msgctxt "RID_SVXSTR_HATCH6"
msgid "Green 30 Degrees"
msgstr ""
#. JAkb9
-#: include/svx/strings.hrc:805
+#: include/svx/strings.hrc:806
msgctxt "RID_SVXSTR_HATCH7"
msgid "Green 60 Degrees"
msgstr ""
#. DnKyA
-#: include/svx/strings.hrc:806
+#: include/svx/strings.hrc:807
msgctxt "RID_SVXSTR_HATCH8"
msgid "Green 90 Degrees Triple"
msgstr ""
#. oTAUx
-#: include/svx/strings.hrc:807
+#: include/svx/strings.hrc:808
msgctxt "RID_SVXSTR_HATCH9"
msgid "Red 45 Degrees"
msgstr ""
#. xcHED
-#: include/svx/strings.hrc:808
+#: include/svx/strings.hrc:809
msgctxt "RID_SVXSTR_HATCH10"
msgid "Red 90 Degrees Crossed"
msgstr ""
#. UZM2R
-#: include/svx/strings.hrc:809
+#: include/svx/strings.hrc:810
msgctxt "RID_SVXSTR_HATCH11"
msgid "Red -45 Degrees Triple"
msgstr ""
#. TypfV
-#: include/svx/strings.hrc:810
+#: include/svx/strings.hrc:811
msgctxt "RID_SVXSTR_HATCH12"
msgid "Yellow 45 Degrees"
msgstr ""
#. eRFD8
-#: include/svx/strings.hrc:811
+#: include/svx/strings.hrc:812
msgctxt "RID_SVXSTR_HATCH13"
msgid "Yellow 45 Degrees Crossed"
msgstr ""
#. JhXx3
-#: include/svx/strings.hrc:812
+#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH14"
msgid "Yellow 45 Degrees Triple"
msgstr ""
#. 78jyB
-#: include/svx/strings.hrc:813
+#: include/svx/strings.hrc:814
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
msgstr ""
#. FJati
-#: include/svx/strings.hrc:814
+#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
msgstr "Baleru"
#. Q4jUs
-#: include/svx/strings.hrc:815
+#: include/svx/strings.hrc:816
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
msgstr ""
#. iHX2t
-#: include/svx/strings.hrc:816
+#: include/svx/strings.hrc:817
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
msgstr ""
#. mAyG3
-#: include/svx/strings.hrc:817
+#: include/svx/strings.hrc:818
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
msgstr ""
#. i3ARe
-#: include/svx/strings.hrc:818
+#: include/svx/strings.hrc:819
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
msgstr ""
#. 6izYJ
-#: include/svx/strings.hrc:819
+#: include/svx/strings.hrc:820
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
msgstr "Pergamín"
#. mQCXG
-#: include/svx/strings.hrc:820
+#: include/svx/strings.hrc:821
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
msgstr ""
#. TriUQ
-#: include/svx/strings.hrc:821
+#: include/svx/strings.hrc:822
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
msgstr ""
#. Hp2Gp
-#: include/svx/strings.hrc:822
+#: include/svx/strings.hrc:823
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
msgstr ""
#. 2B5Wr
-#: include/svx/strings.hrc:823
+#: include/svx/strings.hrc:824
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
msgstr ""
#. bAE9x
-#: include/svx/strings.hrc:824
+#: include/svx/strings.hrc:825
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
msgstr ""
#. nqBbP
-#: include/svx/strings.hrc:825
+#: include/svx/strings.hrc:826
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
msgstr ""
#. CQS6y
-#: include/svx/strings.hrc:826
+#: include/svx/strings.hrc:827
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
msgstr ""
#. 2hE6A
-#: include/svx/strings.hrc:827
+#: include/svx/strings.hrc:828
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
msgstr ""
#. KZeGr
-#: include/svx/strings.hrc:828
+#: include/svx/strings.hrc:829
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
msgstr ""
#. wAELs
-#: include/svx/strings.hrc:829
+#: include/svx/strings.hrc:830
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
msgstr ""
#. AVGfC
-#: include/svx/strings.hrc:830
+#: include/svx/strings.hrc:831
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
msgstr ""
#. ZoUmP
-#: include/svx/strings.hrc:831
+#: include/svx/strings.hrc:832
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
msgstr ""
#. 5FiBd
-#: include/svx/strings.hrc:832
+#: include/svx/strings.hrc:833
msgctxt "RID_SVXSTR_BMP18"
msgid "Parchment Studio"
msgstr ""
#. HYfqK
-#: include/svx/strings.hrc:833
+#: include/svx/strings.hrc:834
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
msgstr ""
#. NkYV3
-#: include/svx/strings.hrc:834
+#: include/svx/strings.hrc:835
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
msgstr "Piscina"
#. Co6U3
-#: include/svx/strings.hrc:835
+#: include/svx/strings.hrc:836
msgctxt "RID_SVXSTR_BMP21"
msgid "Bitmap"
msgstr "Mapa de bits"
#. KFEX5
-#: include/svx/strings.hrc:836
+#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP79"
msgid "Invoice Paper"
msgstr ""
#. x5eiA
-#: include/svx/strings.hrc:837
+#: include/svx/strings.hrc:838
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
msgstr ""
#. RxiMA
-#: include/svx/strings.hrc:838
+#: include/svx/strings.hrc:839
msgctxt "RID_SVXSTR_BMP81"
msgid "Brick Wall"
msgstr ""
#. WNEfT
-#: include/svx/strings.hrc:839
+#: include/svx/strings.hrc:840
msgctxt "RID_SVXSTR_BMP82"
msgid "Stone Wall"
msgstr ""
#. dFqW3
-#: include/svx/strings.hrc:840
+#: include/svx/strings.hrc:841
msgctxt "RID_SVXSTR_BMP83"
msgid "Floral"
msgstr ""
#. FzePv
-#: include/svx/strings.hrc:841
+#: include/svx/strings.hrc:842
msgctxt "RID_SVXSTR_BMP84"
msgid "Space"
msgstr ""
#. FzVch
-#: include/svx/strings.hrc:842
+#: include/svx/strings.hrc:843
msgctxt "RID_SVXSTR_BMP85"
msgid "Ice light"
msgstr ""
#. YGtzc
-#: include/svx/strings.hrc:843
+#: include/svx/strings.hrc:844
msgctxt "RID_SVXSTR_BMP86"
msgid "Marble"
msgstr ""
#. Rzgwp
-#: include/svx/strings.hrc:844
+#: include/svx/strings.hrc:845
msgctxt "RID_SVXSTR_BMP87"
msgid "Sand light"
msgstr ""
#. cK72d
-#: include/svx/strings.hrc:845
+#: include/svx/strings.hrc:846
msgctxt "RID_SVXSTR_BMP88"
msgid "Stone"
msgstr ""
#. TnkWd
-#: include/svx/strings.hrc:846
+#: include/svx/strings.hrc:847
msgctxt "RID_SVXSTR_BMP89"
msgid "White Diffusion"
msgstr ""
#. kksvW
-#: include/svx/strings.hrc:847
+#: include/svx/strings.hrc:848
msgctxt "RID_SVXSTR_BMP90"
msgid "Surface"
msgstr ""
#. BQj9p
-#: include/svx/strings.hrc:848
+#: include/svx/strings.hrc:849
msgctxt "RID_SVXSTR_BMP91"
msgid "Cardboard"
msgstr ""
#. poA6e
-#: include/svx/strings.hrc:849
+#: include/svx/strings.hrc:850
msgctxt "RID_SVXSTR_BMP92"
msgid "Studio"
msgstr ""
#. YEbqw
-#: include/svx/strings.hrc:850
+#: include/svx/strings.hrc:851
#, fuzzy
msgctxt "RID_SVXSTR_BMP22"
msgid "5 Percent"
msgstr "Porcentaxe"
#. AAn36
-#: include/svx/strings.hrc:851
+#: include/svx/strings.hrc:852
msgctxt "RID_SVXSTR_BMP23"
msgid "10 Percent"
msgstr ""
#. NLTbt
-#: include/svx/strings.hrc:852
+#: include/svx/strings.hrc:853
msgctxt "RID_SVXSTR_BMP24"
msgid "20 Percent"
msgstr ""
#. vx2XC
-#: include/svx/strings.hrc:853
+#: include/svx/strings.hrc:854
msgctxt "RID_SVXSTR_BMP25"
msgid "25 Percent"
msgstr ""
#. weQqs
-#: include/svx/strings.hrc:854
+#: include/svx/strings.hrc:855
msgctxt "RID_SVXSTR_BMP26"
msgid "30 Percent"
msgstr ""
#. CAdAS
-#: include/svx/strings.hrc:855
+#: include/svx/strings.hrc:856
msgctxt "RID_SVXSTR_BMP27"
msgid "40 Percent"
msgstr ""
#. 5T5vP
-#: include/svx/strings.hrc:856
+#: include/svx/strings.hrc:857
msgctxt "RID_SVXSTR_BMP28"
msgid "50 Percent"
msgstr ""
#. aNdJE
-#: include/svx/strings.hrc:857
+#: include/svx/strings.hrc:858
msgctxt "RID_SVXSTR_BMP29"
msgid "60 Percent"
msgstr ""
#. 3vD8U
-#: include/svx/strings.hrc:858
+#: include/svx/strings.hrc:859
msgctxt "RID_SVXSTR_BMP30"
msgid "70 Percent"
msgstr ""
#. UJmCD
-#: include/svx/strings.hrc:859
+#: include/svx/strings.hrc:860
msgctxt "RID_SVXSTR_BMP31"
msgid "75 Percent"
msgstr ""
#. i9RCR
-#: include/svx/strings.hrc:860
+#: include/svx/strings.hrc:861
msgctxt "RID_SVXSTR_BMP32"
msgid "80 Percent"
msgstr ""
#. 2oEkC
-#: include/svx/strings.hrc:861
+#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_BMP33"
msgid "90 Percent"
msgstr ""
#. a3yZ5
-#: include/svx/strings.hrc:862
+#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_BMP34"
msgid "Light Downward Diagonal"
msgstr ""
#. oiGTx
-#: include/svx/strings.hrc:863
+#: include/svx/strings.hrc:864
msgctxt "RID_SVXSTR_BMP35"
msgid "Light Upward Diagonal"
msgstr ""
#. CGpy7
-#: include/svx/strings.hrc:864
+#: include/svx/strings.hrc:865
msgctxt "RID_SVXSTR_BMP36"
msgid "Dark Downward Diagonal"
msgstr ""
#. cucpa
-#: include/svx/strings.hrc:865
+#: include/svx/strings.hrc:866
msgctxt "RID_SVXSTR_BMP37"
msgid "Dark Upward Diagonal"
msgstr ""
#. EFDcT
-#: include/svx/strings.hrc:866
+#: include/svx/strings.hrc:867
msgctxt "RID_SVXSTR_BMP38"
msgid "Wide Downward Diagonal"
msgstr ""
#. CWmH5
-#: include/svx/strings.hrc:867
+#: include/svx/strings.hrc:868
msgctxt "RID_SVXSTR_BMP39"
msgid "Wide Upward Diagonal"
msgstr ""
#. BZJUK
-#: include/svx/strings.hrc:868
+#: include/svx/strings.hrc:869
msgctxt "RID_SVXSTR_BMP40"
msgid "Light Vertical"
msgstr ""
#. B5FVF
-#: include/svx/strings.hrc:869
+#: include/svx/strings.hrc:870
#, fuzzy
msgctxt "RID_SVXSTR_BMP41"
msgid "Light Horizontal"
msgstr "Inclinar horizontalmente"
#. daP9i
-#: include/svx/strings.hrc:870
+#: include/svx/strings.hrc:871
msgctxt "RID_SVXSTR_BMP42"
msgid "Narrow Vertical"
msgstr ""
#. JD5FJ
-#: include/svx/strings.hrc:871
+#: include/svx/strings.hrc:872
msgctxt "RID_SVXSTR_BMP43"
msgid "Narrow Horizontal"
msgstr ""
#. eB4wk
-#: include/svx/strings.hrc:872
+#: include/svx/strings.hrc:873
msgctxt "RID_SVXSTR_BMP44"
msgid "Dark Vertical"
msgstr ""
#. MeoCx
-#: include/svx/strings.hrc:873
+#: include/svx/strings.hrc:874
#, fuzzy
msgctxt "RID_SVXSTR_BMP45"
msgid "Dark Horizontal"
msgstr "Inclinar horizontalmente"
#. gAqnG
-#: include/svx/strings.hrc:874
+#: include/svx/strings.hrc:875
msgctxt "RID_SVXSTR_BMP46"
msgid "Dashed Downward Diagonal"
msgstr ""
#. DGB5k
-#: include/svx/strings.hrc:875
+#: include/svx/strings.hrc:876
msgctxt "RID_SVXSTR_BMP47"
msgid "Dashed Upward Diagonal"
msgstr ""
#. JC7je
-#: include/svx/strings.hrc:876
+#: include/svx/strings.hrc:877
msgctxt "RID_SVXSTR_BMP48"
msgid "Dashed Horizontal"
msgstr ""
#. iFiBq
-#: include/svx/strings.hrc:877
+#: include/svx/strings.hrc:878
msgctxt "RID_SVXSTR_BMP49"
msgid "Dashed Vertical"
msgstr ""
#. gWDnG
-#: include/svx/strings.hrc:878
+#: include/svx/strings.hrc:879
msgctxt "RID_SVXSTR_BMP50"
msgid "Small Confetti"
msgstr ""
#. vbh6h
-#: include/svx/strings.hrc:879
+#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
msgstr ""
#. XFemm
-#: include/svx/strings.hrc:880
+#: include/svx/strings.hrc:881
msgctxt "RID_SVXSTR_BMP52"
msgid "Zig Zag"
msgstr ""
#. mC3BE
-#: include/svx/strings.hrc:881
+#: include/svx/strings.hrc:882
msgctxt "RID_SVXSTR_BMP53"
msgid "Wave"
msgstr "Onda"
#. icCPR
-#: include/svx/strings.hrc:882
+#: include/svx/strings.hrc:883
msgctxt "RID_SVXSTR_BMP54"
msgid "Diagonal Brick"
msgstr ""
#. 8CqPG
-#: include/svx/strings.hrc:883
+#: include/svx/strings.hrc:884
#, fuzzy
msgctxt "RID_SVXSTR_BMP55"
msgid "Horizontal Brick"
msgstr "llinia horizontal"
#. GFUZF
-#: include/svx/strings.hrc:884
+#: include/svx/strings.hrc:885
#, fuzzy
msgctxt "RID_SVXSTR_BMP56"
msgid "Weave"
msgstr "Onda"
#. bp9ZY
-#: include/svx/strings.hrc:885
+#: include/svx/strings.hrc:886
#, fuzzy
msgctxt "RID_SVXSTR_BMP57"
msgid "Plaid"
msgstr "Planu"
#. ZrVMS
-#: include/svx/strings.hrc:886
+#: include/svx/strings.hrc:887
msgctxt "RID_SVXSTR_BMP58"
msgid "Divot"
msgstr ""
#. tFas9
-#: include/svx/strings.hrc:887
+#: include/svx/strings.hrc:888
msgctxt "RID_SVXSTR_BMP59"
msgid "Dotted Grid"
msgstr ""
#. SECdZ
-#: include/svx/strings.hrc:888
+#: include/svx/strings.hrc:889
msgctxt "RID_SVXSTR_BMP60"
msgid "Dotted Diamond"
msgstr ""
#. ri3Ge
-#: include/svx/strings.hrc:889
+#: include/svx/strings.hrc:890
#, fuzzy
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
msgstr "Simple"
#. jD9er
-#: include/svx/strings.hrc:890
+#: include/svx/strings.hrc:891
msgctxt "RID_SVXSTR_BMP62"
msgid "Trellis"
msgstr ""
#. aemFS
-#: include/svx/strings.hrc:891
+#: include/svx/strings.hrc:892
#, fuzzy
msgctxt "RID_SVXSTR_BMP63"
msgid "Sphere"
msgstr "esfera"
#. Ds8Ae
-#: include/svx/strings.hrc:892
+#: include/svx/strings.hrc:893
msgctxt "RID_SVXSTR_BMP64"
msgid "Small Grid"
msgstr ""
#. a33Ci
-#: include/svx/strings.hrc:893
+#: include/svx/strings.hrc:894
msgctxt "RID_SVXSTR_BMP65"
msgid "Large Grid"
msgstr ""
#. BCSZY
-#: include/svx/strings.hrc:894
+#: include/svx/strings.hrc:895
msgctxt "RID_SVXSTR_BMP66"
msgid "Small Checker Board"
msgstr ""
#. Bgczw
-#: include/svx/strings.hrc:895
+#: include/svx/strings.hrc:896
msgctxt "RID_SVXSTR_BMP67"
msgid "Large Checker Board"
msgstr ""
#. sD7Mf
-#: include/svx/strings.hrc:896
+#: include/svx/strings.hrc:897
msgctxt "RID_SVXSTR_BMP68"
msgid "Outlined Diamond"
msgstr ""
#. RNNkR
-#: include/svx/strings.hrc:897
+#: include/svx/strings.hrc:898
msgctxt "RID_SVXSTR_BMP69"
msgid "Solid Diamond"
msgstr ""
#. HJkgr
-#: include/svx/strings.hrc:898
+#: include/svx/strings.hrc:899
#, fuzzy
msgctxt "RID_SVXSTR_BMP70"
msgid "Vertical"
msgstr "_Vertical:"
#. ED3Ga
-#: include/svx/strings.hrc:899
+#: include/svx/strings.hrc:900
#, fuzzy
msgctxt "RID_SVXSTR_BMP71"
msgid "Horizontal"
msgstr "H_orizontal:"
#. ENYtZ
-#: include/svx/strings.hrc:900
+#: include/svx/strings.hrc:901
msgctxt "RID_SVXSTR_BMP72"
msgid "Downward Diagonal"
msgstr ""
#. mbjPX
-#: include/svx/strings.hrc:901
+#: include/svx/strings.hrc:902
msgctxt "RID_SVXSTR_BMP73"
msgid "Upward Diagonal"
msgstr ""
#. TxAfM
-#: include/svx/strings.hrc:902
+#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
msgstr "Cruce"
#. 4mGJX
-#: include/svx/strings.hrc:903
+#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
msgstr ""
#. J4CJa
-#: include/svx/strings.hrc:904
+#: include/svx/strings.hrc:905
msgctxt "RID_SVXSTR_BMP76"
msgid "Dashed Dotted"
msgstr ""
#. Rno6q
-#: include/svx/strings.hrc:905
+#: include/svx/strings.hrc:906
msgctxt "RID_SVXSTR_BMP77"
msgid "Dashed Dotted Upward Diagonal"
msgstr ""
#. pFZkq
-#: include/svx/strings.hrc:906
+#: include/svx/strings.hrc:907
msgctxt "RID_SVXSTR_BMP78"
msgid "Solid Dotted"
msgstr ""
#. NA5sT
-#: include/svx/strings.hrc:907
+#: include/svx/strings.hrc:908
msgctxt "RID_SVXSTR_DASH0"
msgid "Dot"
msgstr ""
#. nCpL4
-#: include/svx/strings.hrc:908
+#: include/svx/strings.hrc:909
msgctxt "RID_SVXSTR_DASH1"
msgid "Long Dot"
msgstr ""
#. tHgFv
-#: include/svx/strings.hrc:909
+#: include/svx/strings.hrc:910
msgctxt "RID_SVXSTR_DASH2"
msgid "Dot (Rounded)"
msgstr ""
#. 2X7pw
-#: include/svx/strings.hrc:910
+#: include/svx/strings.hrc:911
msgctxt "RID_SVXSTR_DASH3"
msgid "Dash"
msgstr ""
#. A46B5
-#: include/svx/strings.hrc:911
+#: include/svx/strings.hrc:912
msgctxt "RID_SVXSTR_DASH4"
msgid "Long Dash"
msgstr ""
#. axE2r
-#: include/svx/strings.hrc:912
+#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH5"
msgid "Double Dash"
msgstr ""
#. beDTh
-#: include/svx/strings.hrc:913
+#: include/svx/strings.hrc:914
msgctxt "RID_SVXSTR_DASH6"
msgid "Long Dash Dot"
msgstr ""
#. gVPtU
-#: include/svx/strings.hrc:914
+#: include/svx/strings.hrc:915
msgctxt "RID_SVXSTR_DASH7"
msgid "Double Dash Dot"
msgstr ""
#. UFaLC
-#: include/svx/strings.hrc:915
+#: include/svx/strings.hrc:916
msgctxt "RID_SVXSTR_DASH8"
msgid "Double Dash Dot Dot"
msgstr ""
#. F9cPw
-#: include/svx/strings.hrc:916
+#: include/svx/strings.hrc:917
msgctxt "RID_SVXSTR_DASH9"
msgid "Ultrafine Dotted"
msgstr ""
#. s3rBZ
-#: include/svx/strings.hrc:917
+#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_DASH10"
msgid "Fine Dotted"
msgstr ""
#. w7W8j
-#: include/svx/strings.hrc:918
+#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_DASH11"
msgid "Ultrafine Dashed"
msgstr ""
#. xWgiA
-#: include/svx/strings.hrc:919
+#: include/svx/strings.hrc:920
msgctxt "RID_SVXSTR_DASH12"
msgid "Fine Dashed"
msgstr ""
#. u34Ff
-#: include/svx/strings.hrc:920
+#: include/svx/strings.hrc:921
msgctxt "RID_SVXSTR_DASH13"
msgid "Fine Dashed"
msgstr ""
#. hT4CE
-#: include/svx/strings.hrc:921
+#: include/svx/strings.hrc:922
msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
#. T7sVF
-#: include/svx/strings.hrc:922
+#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
msgid "Line Style 9"
msgstr ""
#. evPXr
-#: include/svx/strings.hrc:923
+#: include/svx/strings.hrc:924
msgctxt "RID_SVXSTR_DASH16"
msgid "3 Dashes 3 Dots"
msgstr ""
#. H7iUz
-#: include/svx/strings.hrc:924
+#: include/svx/strings.hrc:925
msgctxt "RID_SVXSTR_DASH17"
msgid "Ultrafine 2 Dots 3 Dashes"
msgstr ""
#. KpCzr
-#: include/svx/strings.hrc:925
+#: include/svx/strings.hrc:926
msgctxt "RID_SVXSTR_DASH18"
msgid "2 Dots 1 Dash"
msgstr ""
#. zbWk3
-#: include/svx/strings.hrc:926
+#: include/svx/strings.hrc:927
msgctxt "RID_SVXSTR_DASH19"
msgid "Line with Fine Dots"
msgstr ""
#. qqS4v
-#: include/svx/strings.hrc:927
+#: include/svx/strings.hrc:928
msgctxt "RID_SVXSTR_DASH20"
msgid "Dash Dot"
msgstr ""
#. 5ZGZy
-#: include/svx/strings.hrc:928
+#: include/svx/strings.hrc:929
msgctxt "RID_SVXSTR_DASH21"
msgid "Long Dot (Rounded)"
msgstr ""
#. Ac2F2
-#: include/svx/strings.hrc:929
+#: include/svx/strings.hrc:930
msgctxt "RID_SVXSTR_DASH22"
msgid "Dash Dot Dot"
msgstr ""
#. mWMXG
-#: include/svx/strings.hrc:930
+#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_DASH23"
msgid "Dash (Rounded)"
msgstr ""
#. B6fd2
-#: include/svx/strings.hrc:931
+#: include/svx/strings.hrc:932
msgctxt "RID_SVXSTR_DASH24"
msgid "Long Dash (Rounded)"
msgstr ""
#. ds2VE
-#: include/svx/strings.hrc:932
+#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_DASH25"
msgid "Double Dash (Rounded)"
msgstr ""
#. qtCkm
-#: include/svx/strings.hrc:933
+#: include/svx/strings.hrc:934
msgctxt "RID_SVXSTR_DASH26"
msgid "Dash Dot (Rounded)"
msgstr ""
#. psNix
-#: include/svx/strings.hrc:934
+#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_DASH27"
msgid "Long Dash Dot (Rounded)"
msgstr ""
#. FWkBJ
-#: include/svx/strings.hrc:935
+#: include/svx/strings.hrc:936
msgctxt "RID_SVXSTR_DASH28"
msgid "Double Dash Dot (Rounded)"
msgstr ""
#. eiCNz
-#: include/svx/strings.hrc:936
+#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_DASH29"
msgid "Dash Dot Dot (Rounded)"
msgstr ""
#. BbE5B
-#: include/svx/strings.hrc:937
+#: include/svx/strings.hrc:938
msgctxt "RID_SVXSTR_DASH30"
msgid "Double Dash Dot Dot (Rounded)"
msgstr ""
#. iKAwD
-#: include/svx/strings.hrc:939
+#: include/svx/strings.hrc:940
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
msgstr "Tolos formatos"
#. UydWB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:941
+#: include/svx/strings.hrc:942
msgctxt "RID_SVXSTR_LEND0"
msgid "Concave short"
msgstr ""
#. grGoP
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:943
+#: include/svx/strings.hrc:944
msgctxt "RID_SVXSTR_LEND1"
msgid "Square 45"
msgstr "Cuadráu 45"
#. Hu6DB
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:945
+#: include/svx/strings.hrc:946
msgctxt "RID_SVXSTR_LEND2"
msgid "Arrow short"
msgstr ""
#. j6u8M
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:947
+#: include/svx/strings.hrc:948
msgctxt "RID_SVXSTR_LEND3"
msgid "Dimension Lines"
msgstr "Llinies de cota"
#. JKxZ6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:949
+#: include/svx/strings.hrc:950
msgctxt "RID_SVXSTR_LEND4"
msgid "Double Arrow"
msgstr "Flecha doble"
#. o38zt
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:951
+#: include/svx/strings.hrc:952
msgctxt "RID_SVXSTR_LEND5"
msgid "Triangle"
msgstr ""
#. XvcqE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:953
+#: include/svx/strings.hrc:954
msgctxt "RID_SVXSTR_LEND6"
msgid "Concave"
msgstr ""
#. JD6qL
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:955
+#: include/svx/strings.hrc:956
msgctxt "RID_SVXSTR_LEND7"
msgid "Arrow large"
msgstr ""
#. 3CPw6
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:957
+#: include/svx/strings.hrc:958
msgctxt "RID_SVXSTR_LEND8"
msgid "Dimension Line"
msgstr "Llinia de cota"
#. EBEY5
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:959
+#: include/svx/strings.hrc:960
msgctxt "RID_SVXSTR_LEND9"
msgid "Circle"
msgstr "Círculu"
#. H9DDA
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:961
+#: include/svx/strings.hrc:962
msgctxt "RID_SVXSTR_LEND10"
msgid "Square"
msgstr "Cuadráu"
#. AWHmD
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:963
+#: include/svx/strings.hrc:964
msgctxt "RID_SVXSTR_LEND11"
msgid "Arrow"
msgstr "Flecha"
#. CXazS
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:965
+#: include/svx/strings.hrc:966
msgctxt "RID_SVXSTR_LEND12"
msgid "Half Circle"
msgstr ""
#. VNaKi
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:967
+#: include/svx/strings.hrc:968
msgctxt "RID_SVXSTR_LEND13"
msgid "Triangle unfilled"
msgstr "Triángulu ensin rellenu"
#. LRmKQ
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:969
+#: include/svx/strings.hrc:970
msgctxt "RID_SVXSTR_LEND14"
msgid "Diamond unfilled"
msgstr "Diamante ensin rellenu"
#. L2kus
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:971
+#: include/svx/strings.hrc:972
msgctxt "RID_SVXSTR_LEND15"
msgid "Diamond"
msgstr "Diamante"
#. P2Raq
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:973
+#: include/svx/strings.hrc:974
msgctxt "RID_SVXSTR_LEND16"
msgid "Circle unfilled"
msgstr "Círculu ensin rellenu"
#. FNaHF
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:975
+#: include/svx/strings.hrc:976
msgctxt "RID_SVXSTR_LEND17"
msgid "Square 45 unfilled"
msgstr "Cuadráu 45 ensin rellenu"
#. ECeBc
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:977
+#: include/svx/strings.hrc:978
msgctxt "RID_SVXSTR_LEND18"
msgid "Square unfilled"
msgstr "Cuadráu ensin rellenu"
#. ALFbk
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:979
+#: include/svx/strings.hrc:980
msgctxt "RID_SVXSTR_LEND19"
msgid "Half Circle unfilled"
msgstr ""
#. mfGCE
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:981
+#: include/svx/strings.hrc:982
msgctxt "RID_SVXSTR_LEND20"
msgid "Dimension Line Arrow"
msgstr ""
#. epSjr
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:983
+#: include/svx/strings.hrc:984
msgctxt "RID_SVXSTR_LEND21"
msgid "Line short"
msgstr ""
#. yVmQp
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:985
+#: include/svx/strings.hrc:986
msgctxt "RID_SVXSTR_LEND22"
msgid "Line"
msgstr ""
#. im8fN
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:987
+#: include/svx/strings.hrc:988
msgctxt "RID_SVXSTR_LEND23"
msgid "Half Arrow left"
msgstr ""
#. EVYD7
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:989
+#: include/svx/strings.hrc:990
msgctxt "RID_SVXSTR_LEND24"
msgid "Half Arrow right"
msgstr ""
#. VZ8vx
#. To translators: this is an arrow head style
-#: include/svx/strings.hrc:991
+#: include/svx/strings.hrc:992
msgctxt "RID_SVXSTR_LEND25"
msgid "Reversed Arrow"
msgstr ""
#. yTXvH
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:993
+#: include/svx/strings.hrc:994
msgctxt "RID_SVXSTR_LEND26"
msgid "CF One"
msgstr ""
#. cF4FB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:995
+#: include/svx/strings.hrc:996
msgctxt "RID_SVXSTR_LEND27"
msgid "CF Only One"
msgstr ""
#. qbpvv
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:997
+#: include/svx/strings.hrc:998
msgctxt "RID_SVXSTR_LEND28"
msgid "CF Many"
msgstr ""
#. 6wQxC
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:999
+#: include/svx/strings.hrc:1000
msgctxt "RID_SVXSTR_LEND29"
msgid "CF Many One"
msgstr ""
#. JzCsB
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1001
+#: include/svx/strings.hrc:1002
msgctxt "RID_SVXSTR_LEND30"
msgid "CF Zero One"
msgstr ""
#. SBCut
#. To translators: this is an arrow head style, CF is Crow's Foot, of Crow's Foot Notation
-#: include/svx/strings.hrc:1003
+#: include/svx/strings.hrc:1004
msgctxt "RID_SVXSTR_LEND31"
msgid "CF Zero Many"
msgstr ""
#. EXsKo
-#: include/svx/strings.hrc:1004
+#: include/svx/strings.hrc:1005
msgctxt "RID_SVXSTR_TRASNGR0"
msgid "Transparency"
msgstr "Tresparencia"
#. hGytB
-#: include/svx/strings.hrc:1005
+#: include/svx/strings.hrc:1006
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_1"
msgid "Green 1 (%PRODUCTNAME Main Color)"
msgstr ""
#. Msh88
-#: include/svx/strings.hrc:1006
+#: include/svx/strings.hrc:1007
msgctxt "RID_SVXSTR_COLOR_LIBRE_GREEN_ACCENT"
msgid "Green Accent"
msgstr "Acentu verde"
#. opj2M
-#: include/svx/strings.hrc:1007
+#: include/svx/strings.hrc:1008
msgctxt "RID_SVXSTR_COLOR_LIBRE_BLUE_ACCENT"
msgid "Blue Accent"
msgstr "Acentu azul"
#. tC5jE
-#: include/svx/strings.hrc:1008
+#: include/svx/strings.hrc:1009
msgctxt "RID_SVXSTR_COLOR_LIBRE_ORANGE_ACCENT"
msgid "Orange Accent"
msgstr "Acentu naranxa"
#. 3T9pJ
-#: include/svx/strings.hrc:1009
+#: include/svx/strings.hrc:1010
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE"
msgid "Purple"
msgstr "Púrpura"
#. N5FWG
-#: include/svx/strings.hrc:1010
+#: include/svx/strings.hrc:1011
msgctxt "RID_SVXSTR_COLOR_LIBRE_PURPLE_ACCENT"
msgid "Purple Accent"
msgstr "Acentu púrpura"
#. Nhtbq
-#: include/svx/strings.hrc:1011
+#: include/svx/strings.hrc:1012
msgctxt "RID_SVXSTR_COLOR_LIBRE_YELLOW_ACCENT"
msgid "Yellow Accent"
msgstr "Acentu mariellu"
#. apBBr
-#: include/svx/strings.hrc:1013
+#: include/svx/strings.hrc:1014
msgctxt "RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
msgstr "Tema de la Galería"
#. BseGn
-#: include/svx/strings.hrc:1014
+#: include/svx/strings.hrc:1015
msgctxt "RID_SVXSTR_SUCCESSRECOV"
msgid "Successfully recovered"
msgstr "Recuperáu dafechu"
#. LfjDh
-#: include/svx/strings.hrc:1015
+#: include/svx/strings.hrc:1016
msgctxt "RID_SVXSTR_ORIGDOCRECOV"
msgid "Original document recovered"
msgstr "Documentu orixinal recuperáu"
#. BEAbm
-#: include/svx/strings.hrc:1016
+#: include/svx/strings.hrc:1017
msgctxt "RID_SVXSTR_RECOVFAILED"
msgid "Recovery failed"
msgstr "Recuperación incorreuta"
#. 5ye7z
-#: include/svx/strings.hrc:1017
+#: include/svx/strings.hrc:1018
msgctxt "RID_SVXSTR_RECOVINPROGR"
msgid "Recovery in progress"
msgstr "Recuperación en cursu"
#. tEbUT
-#: include/svx/strings.hrc:1018
+#: include/svx/strings.hrc:1019
msgctxt "RID_SVXSTR_NOTRECOVYET"
msgid "Not recovered yet"
msgstr "Entá nun se recuperó"
#. EaAMF
-#: include/svx/strings.hrc:1019
+#: include/svx/strings.hrc:1020
#, fuzzy
msgctxt "RID_SVXSTR_RECOVERY_INPROGRESS"
msgid "%PRODUCTNAME %PRODUCTVERSION has begun recovering your documents. Depending on the size of the documents this process can take some time."
msgstr "%PRODUCTNAME %PRODUCTVERSION entama'l procesu de recuperación de documentos. Según el tamañu de los documentos, el procesu puede durar más o menos tiempu."
#. AicJe
-#: include/svx/strings.hrc:1020
+#: include/svx/strings.hrc:1021
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
msgstr "Finó la recuperación de documentos. Calca «Finar» pa ver los documentos."
#. ZbeCG
-#: include/svx/strings.hrc:1021
+#: include/svx/strings.hrc:1022
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
msgid "~Finish"
msgstr "~Finar"
#. BBeKk
-#: include/svx/strings.hrc:1022
+#: include/svx/strings.hrc:1023
#, fuzzy
msgctxt "RID_SVXSTR_WIDTH_LAST_CUSTOM"
msgid "Last Custom Value"
msgstr "Últimos valores personalizaos"
#. mENBU
-#: include/svx/strings.hrc:1023
+#: include/svx/strings.hrc:1024
msgctxt "RID_SVXSTR_PT"
msgid "pt"
msgstr "pt"
#. fRyqX
-#: include/svx/strings.hrc:1025
+#: include/svx/strings.hrc:1026
msgctxt "RID_SVXSTR_EXPORT_GRAPHIC_TITLE"
msgid "Image Export"
msgstr "Esportación d'imaxe"
#. xXhtG
-#: include/svx/strings.hrc:1026
+#: include/svx/strings.hrc:1027
msgctxt "RID_SVXSTR_SAVEAS_IMAGE"
msgid "Save as Image"
msgstr ""
#. jWKoC
#. Strings for the Draw Dialog --------------------------------------------
-#: include/svx/strings.hrc:1029
+#: include/svx/strings.hrc:1030
msgctxt "RID_SVX_3D_UNDO_EXCHANGE_PASTE"
msgid "Insert object(s)"
msgstr "Inxertar oxetu(os)"
#. Heqmn
-#: include/svx/strings.hrc:1030
+#: include/svx/strings.hrc:1031
msgctxt "RID_SVX_3D_UNDO_ROTATE"
msgid "Rotate 3D object"
msgstr "Rotar un oxetu 3D"
#. AC56T
-#: include/svx/strings.hrc:1031
+#: include/svx/strings.hrc:1032
msgctxt "RID_SVX_3D_UNDO_EXTRUDE"
msgid "Create extrusion object"
msgstr "Crear un oxetu d'estrusión"
#. 4DonY
-#: include/svx/strings.hrc:1032
+#: include/svx/strings.hrc:1033
msgctxt "RID_SVX_3D_UNDO_LATHE"
msgid "Create rotation object"
msgstr "Crear cuerpu de rotación"
#. EL9V9
-#: include/svx/strings.hrc:1033
+#: include/svx/strings.hrc:1034
msgctxt "RID_SVX_3D_UNDO_BREAK_LATHE"
msgid "Split 3D object"
msgstr "Dixebrar oxetu 3D"
#. BBZGA
#. Language-Strings ------------------------------------------------------
-#: include/svx/strings.hrc:1036
+#: include/svx/strings.hrc:1037
msgctxt "RID_SVXSTR_LANGUAGE_ALL"
msgid "[All]"
msgstr "[Too]"
#. RZVDm
-#: include/svx/strings.hrc:1038
+#: include/svx/strings.hrc:1039
msgctxt "RID_SVXSTR_GALLERY_FILTER"
msgid "Graphics filter"
msgstr "Peñera d'imaxe"
#. YNjeD
-#: include/svx/strings.hrc:1039
+#: include/svx/strings.hrc:1040
msgctxt "RID_SVXSTR_GALLERY_NEWTHEME"
msgid "New Theme"
msgstr "Tema nuevu"
#. 5uYha
-#: include/svx/strings.hrc:1041
+#: include/svx/strings.hrc:1042
msgctxt "RID_GALLERYSTR_THEME_3D"
msgid "3D Effects"
msgstr "Efeutos 3D"
#. 78DGx
-#: include/svx/strings.hrc:1042
+#: include/svx/strings.hrc:1043
msgctxt "RID_GALLERYSTR_THEME_ANIMATIONS"
msgid "Animations"
msgstr "Animaciones"
#. zGEez
-#: include/svx/strings.hrc:1043
+#: include/svx/strings.hrc:1044
msgctxt "RID_GALLERYSTR_THEME_BULLETS"
msgid "Bullets"
msgstr "Viñetes"
#. MwX9z
-#: include/svx/strings.hrc:1044
+#: include/svx/strings.hrc:1045
msgctxt "RID_GALLERYSTR_THEME_OFFICE"
msgid "Office"
msgstr "Oficina"
#. dAwiC
-#: include/svx/strings.hrc:1045
+#: include/svx/strings.hrc:1046
msgctxt "RID_GALLERYSTR_THEME_FLAGS"
msgid "Flags"
msgstr "Banderes"
#. Ccn8V
-#: include/svx/strings.hrc:1046
+#: include/svx/strings.hrc:1047
msgctxt "RID_GALLERYSTR_THEME_FLOWCHARTS"
msgid "Flow Charts"
msgstr "Diagrames de fluxu"
#. 6ouMS
-#: include/svx/strings.hrc:1047
+#: include/svx/strings.hrc:1048
msgctxt "RID_GALLERYSTR_THEME_EMOTICONS"
msgid "Emoticons"
msgstr "Fustaxes"
#. 8GPFu
-#: include/svx/strings.hrc:1048
+#: include/svx/strings.hrc:1049
msgctxt "RID_GALLERYSTR_THEME_PHOTOS"
msgid "Images"
msgstr "Imaxes"
#. sqh2w
-#: include/svx/strings.hrc:1049
+#: include/svx/strings.hrc:1050
msgctxt "RID_GALLERYSTR_THEME_BACKGROUNDS"
msgid "Backgrounds"
msgstr "Fondos"
#. B3KuT
-#: include/svx/strings.hrc:1050
+#: include/svx/strings.hrc:1051
msgctxt "RID_GALLERYSTR_THEME_HOMEPAGE"
msgid "Homepage"
msgstr "Páxina principal"
#. WR8JQ
-#: include/svx/strings.hrc:1051
+#: include/svx/strings.hrc:1052
msgctxt "RID_GALLERYSTR_THEME_INTERACTION"
msgid "Interaction"
msgstr "Interaición"
#. EbEZ6
-#: include/svx/strings.hrc:1052
+#: include/svx/strings.hrc:1053
msgctxt "RID_GALLERYSTR_THEME_MAPS"
msgid "Maps"
msgstr "Mapes"
#. GALA8
-#: include/svx/strings.hrc:1053
+#: include/svx/strings.hrc:1054
msgctxt "RID_GALLERYSTR_THEME_PEOPLE"
msgid "People"
msgstr "Persones"
#. ZMoiA
-#: include/svx/strings.hrc:1054
+#: include/svx/strings.hrc:1055
msgctxt "RID_GALLERYSTR_THEME_SURFACES"
msgid "Surfaces"
msgstr "Superficies"
#. hNaiH
-#: include/svx/strings.hrc:1055
+#: include/svx/strings.hrc:1056
msgctxt "RID_GALLERYSTR_THEME_COMPUTERS"
msgid "Computers"
msgstr "Ordenador"
#. mrvvG
-#: include/svx/strings.hrc:1056
+#: include/svx/strings.hrc:1057
msgctxt "RID_GALLERYSTR_THEME_DIAGRAMS"
msgid "Diagrams"
msgstr "Diagrames"
#. HhrDx
-#: include/svx/strings.hrc:1057
+#: include/svx/strings.hrc:1058
msgctxt "RID_GALLERYSTR_THEME_ENVIRONMENT"
msgid "Environment"
msgstr "Entornu"
#. 2jVzE
-#: include/svx/strings.hrc:1058
+#: include/svx/strings.hrc:1059
msgctxt "RID_GALLERYSTR_THEME_FINANCE"
msgid "Finance"
msgstr "Finances"
#. cmF3B
-#: include/svx/strings.hrc:1059
+#: include/svx/strings.hrc:1060
msgctxt "RID_GALLERYSTR_THEME_TRANSPORT"
msgid "Transport"
msgstr "Tresporte"
#. as3XM
-#: include/svx/strings.hrc:1060
+#: include/svx/strings.hrc:1061
msgctxt "RID_GALLERYSTR_THEME_TXTSHAPES"
msgid "Textshapes"
msgstr "Formes de testu"
#. gGyFP
-#: include/svx/strings.hrc:1061
+#: include/svx/strings.hrc:1062
msgctxt "RID_GALLERYSTR_THEME_SOUNDS"
msgid "Sounds"
msgstr "Soníos"
#. 5NrPj
-#: include/svx/strings.hrc:1062
+#: include/svx/strings.hrc:1063
msgctxt "RID_GALLERYSTR_THEME_SYMBOLS"
msgid "Symbols"
msgstr "Símbolos"
#. AiXUK
-#: include/svx/strings.hrc:1063
+#: include/svx/strings.hrc:1064
msgctxt "RID_GALLERYSTR_THEME_MYTHEME"
msgid "My Theme"
msgstr "El mio tema"
#. uRxP4
-#: include/svx/strings.hrc:1064
+#: include/svx/strings.hrc:1065
msgctxt "RID_GALLERYSTR_THEME_ARROWS"
msgid "Arrows"
msgstr "Fleches"
#. c3WXh
-#: include/svx/strings.hrc:1065
+#: include/svx/strings.hrc:1066
msgctxt "RID_GALLERYSTR_THEME_BALLOONS"
msgid "Balloons"
msgstr "Llamaes"
#. pmiE7
-#: include/svx/strings.hrc:1066
+#: include/svx/strings.hrc:1067
msgctxt "RID_GALLERYSTR_THEME_KEYBOARD"
msgid "Keyboard"
msgstr "Tecláu"
#. LYdAf
-#: include/svx/strings.hrc:1067
+#: include/svx/strings.hrc:1068
msgctxt "RID_GALLERYSTR_THEME_TIME"
msgid "Time"
msgstr "Tiempu"
#. 4UGrY
-#: include/svx/strings.hrc:1068
+#: include/svx/strings.hrc:1069
msgctxt "RID_GALLERYSTR_THEME_PRESENTATION"
msgid "Presentation"
msgstr "Presentación"
#. a46Xm
-#: include/svx/strings.hrc:1069
+#: include/svx/strings.hrc:1070
msgctxt "RID_GALLERYSTR_THEME_CALENDAR"
msgid "Calendar"
msgstr "Calendariu"
#. YpuGv
-#: include/svx/strings.hrc:1070
+#: include/svx/strings.hrc:1071
msgctxt "RID_GALLERYSTR_THEME_NAVIGATION"
msgid "Navigation"
msgstr "Navegación"
#. gAJH4
-#: include/svx/strings.hrc:1071
+#: include/svx/strings.hrc:1072
msgctxt "RID_GALLERYSTR_THEME_COMMUNICATION"
msgid "Communication"
msgstr "Comunicación"
#. ETEJu
-#: include/svx/strings.hrc:1072
+#: include/svx/strings.hrc:1073
msgctxt "RID_GALLERYSTR_THEME_FINANCES"
msgid "Finances"
msgstr "Finances"
#. rNez6
-#: include/svx/strings.hrc:1073
+#: include/svx/strings.hrc:1074
msgctxt "RID_GALLERYSTR_THEME_COMPUTER"
msgid "Computers"
msgstr "Ordenador"
#. ioX7y
-#: include/svx/strings.hrc:1074
+#: include/svx/strings.hrc:1075
msgctxt "RID_GALLERYSTR_THEME_CLIMA"
msgid "Climate"
msgstr "Clima"
#. MmYFp
-#: include/svx/strings.hrc:1075
+#: include/svx/strings.hrc:1076
msgctxt "RID_GALLERYSTR_THEME_EDUCATION"
msgid "School & University"
msgstr "Escuela y universidá"
#. EKFgg
-#: include/svx/strings.hrc:1076
+#: include/svx/strings.hrc:1077
msgctxt "RID_GALLERYSTR_THEME_TROUBLE"
msgid "Problem Solving"
msgstr "Soluciones de problemes"
#. GgrBp
-#: include/svx/strings.hrc:1077
+#: include/svx/strings.hrc:1078
msgctxt "RID_GALLERYSTR_THEME_SCREENBEANS"
msgid "Screen Beans"
msgstr "Screen Beans"
#. E6onK
-#: include/svx/strings.hrc:1079
+#: include/svx/strings.hrc:1080
msgctxt "RID_SVXSTR_QRY_PRINT_TITLE"
msgid "Printing selection"
msgstr "Imprentación de la escoyeta"
#. HzX9m
-#: include/svx/strings.hrc:1080
+#: include/svx/strings.hrc:1081
msgctxt "RID_SVXSTR_QRY_PRINT_MSG"
msgid "Do you want to print the selection or the entire document?"
msgstr "¿Quies imprentar la seleición o'l documentu ensembre?"
#. 3UyC8
-#: include/svx/strings.hrc:1081
+#: include/svx/strings.hrc:1082
msgctxt "RID_SVXSTR_QRY_PRINT_ALL"
msgid "~All"
msgstr "~Too"
#. UxfS3
-#: include/svx/strings.hrc:1082
+#: include/svx/strings.hrc:1083
msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION"
msgid "~Selection"
msgstr "E~sbilla"
#. KTgDd
-#: include/svx/strings.hrc:1084
+#: include/svx/strings.hrc:1085
msgctxt "RID_SVXSTR_DIRECTION_NW"
msgid "Extrusion North-West"
msgstr "Estrusión haza'l noroeste"
#. N6KLd
-#: include/svx/strings.hrc:1085
+#: include/svx/strings.hrc:1086
msgctxt "RID_SVXSTR_DIRECTION_N"
msgid "Extrusion North"
msgstr "Estrusión haza'l norte"
#. AB6Vj
-#: include/svx/strings.hrc:1086
+#: include/svx/strings.hrc:1087
msgctxt "RID_SVXSTR_DIRECTION_NE"
msgid "Extrusion North-East"
msgstr "Estrusión haza'l noreste"
#. NBBEB
-#: include/svx/strings.hrc:1087
+#: include/svx/strings.hrc:1088
msgctxt "RID_SVXSTR_DIRECTION_W"
msgid "Extrusion West"
msgstr "Estrusión haza l'oeste"
#. d9n5U
-#: include/svx/strings.hrc:1088
+#: include/svx/strings.hrc:1089
msgctxt "RID_SVXSTR_DIRECTION_NONE"
msgid "Extrusion Backwards"
msgstr "Estrusión haza atrás"
#. A2mcf
-#: include/svx/strings.hrc:1089
+#: include/svx/strings.hrc:1090
msgctxt "RID_SVXSTR_DIRECTION_E"
msgid "Extrusion East"
msgstr "Estrusión haza l'este"
#. onGib
-#: include/svx/strings.hrc:1090
+#: include/svx/strings.hrc:1091
msgctxt "RID_SVXSTR_DIRECTION_SW"
msgid "Extrusion South-West"
msgstr "Estrusión haza'l sudoeste"
#. XLQFD
-#: include/svx/strings.hrc:1091
+#: include/svx/strings.hrc:1092
msgctxt "RID_SVXSTR_DIRECTION_S"
msgid "Extrusion South"
msgstr "Estrusión haza'l sur"
#. v5wRm
-#: include/svx/strings.hrc:1092
+#: include/svx/strings.hrc:1093
msgctxt "RID_SVXSTR_DIRECTION_SE"
msgid "Extrusion South-East"
msgstr "Estrusión haza'l sudeste"
#. 4DGjm
-#: include/svx/strings.hrc:1093
+#: include/svx/strings.hrc:1094
msgctxt "RID_SVXSTR_DEPTH_0"
msgid "~0 cm"
msgstr "~0 cm"
#. kRzVE
-#: include/svx/strings.hrc:1094
+#: include/svx/strings.hrc:1095
msgctxt "RID_SVXSTR_DEPTH_1"
msgid "~1 cm"
msgstr "~1 cm"
#. CSmTh
-#: include/svx/strings.hrc:1095
+#: include/svx/strings.hrc:1096
msgctxt "RID_SVXSTR_DEPTH_2"
msgid "~2.5 cm"
msgstr "~2,5 cm"
#. eYrvo
-#: include/svx/strings.hrc:1096
+#: include/svx/strings.hrc:1097
msgctxt "RID_SVXSTR_DEPTH_3"
msgid "~5 cm"
msgstr "~5 cm"
#. G4Ckx
-#: include/svx/strings.hrc:1097
+#: include/svx/strings.hrc:1098
msgctxt "RID_SVXSTR_DEPTH_4"
msgid "10 ~cm"
msgstr "10 ~cm"
#. LGHsL
-#: include/svx/strings.hrc:1098
+#: include/svx/strings.hrc:1099
msgctxt "RID_SVXSTR_DEPTH_0_INCH"
msgid "0 inch"
msgstr "0 pulgaes"
#. HPevm
-#: include/svx/strings.hrc:1099
+#: include/svx/strings.hrc:1100
msgctxt "RID_SVXSTR_DEPTH_1_INCH"
msgid "0.~5 inch"
msgstr "0,~5 pulgaes"
#. GvKjC
-#: include/svx/strings.hrc:1100
+#: include/svx/strings.hrc:1101
msgctxt "RID_SVXSTR_DEPTH_2_INCH"
msgid "~1 inch"
msgstr "~1 pulgada"
#. gmzHb
-#: include/svx/strings.hrc:1101
+#: include/svx/strings.hrc:1102
msgctxt "RID_SVXSTR_DEPTH_3_INCH"
msgid "~2 inch"
msgstr "~2 pulgaes"
#. DE5kt
-#: include/svx/strings.hrc:1102
+#: include/svx/strings.hrc:1103
msgctxt "RID_SVXSTR_DEPTH_4_INCH"
msgid "~4 inch"
msgstr "~4 pulgaes"
#. K5dY9
-#: include/svx/strings.hrc:1104
+#: include/svx/strings.hrc:1105
#, fuzzy
msgctxt "RID_SVXSTR_NOFILL"
msgid "No Fill"
msgstr "Ensin rellenu"
#. TFBK3
-#: include/svx/strings.hrc:1105
+#: include/svx/strings.hrc:1106
msgctxt "RID_SVXSTR_TRANSPARENT"
msgid "Transparent"
msgstr "Tresparente"
#. c7adj
-#: include/svx/strings.hrc:1106
+#: include/svx/strings.hrc:1107
msgctxt "RID_SVXSTR_DEFAULT"
msgid "Default"
msgstr "Predetermináu"
#. djHis
-#: include/svx/strings.hrc:1107
+#: include/svx/strings.hrc:1108
msgctxt "RID_SVXSTR_FRAME"
msgid "Borders"
msgstr "Berbesos"
#. PURr6
-#: include/svx/strings.hrc:1108
+#: include/svx/strings.hrc:1109
msgctxt "RID_SVXSTR_FRAME_STYLE"
msgid "Border Style"
msgstr "Estilu de berbesu"
#. 9Ckww
-#: include/svx/strings.hrc:1109
+#: include/svx/strings.hrc:1110
msgctxt "RID_SVXSTR_MORENUMBERING"
msgid "More Numbering..."
msgstr "Más numberación..."
#. cDG4s
-#: include/svx/strings.hrc:1110
+#: include/svx/strings.hrc:1111
msgctxt "RID_SVXSTR_MOREBULLETS"
msgid "More Bullets..."
msgstr ""
#. uDT6G
-#: include/svx/strings.hrc:1111
+#: include/svx/strings.hrc:1112
#, fuzzy
msgctxt "RID_SVXSTR_BY_AUTHOR"
msgid "By author"
msgstr "Por autor"
#. q2Le9
-#: include/svx/strings.hrc:1112
+#: include/svx/strings.hrc:1113
msgctxt "RID_SVXSTR_PAGES"
msgid "Pages"
msgstr "Páxines"
#. jfL9n
-#: include/svx/strings.hrc:1113
+#: include/svx/strings.hrc:1114
msgctxt "RID_SVXSTR_CLEARFORM"
msgid "Clear formatting"
msgstr "Desaniciar formatu"
#. f6nP8
-#: include/svx/strings.hrc:1114
+#: include/svx/strings.hrc:1115
msgctxt "RID_SVXSTR_MORE_STYLES"
msgid "More Styles..."
msgstr "Más estilos..."
#. DPbrc
-#: include/svx/strings.hrc:1115
+#: include/svx/strings.hrc:1116
msgctxt "RID_SVXSTR_MORE"
msgid "More Options..."
msgstr "Más opciones..."
#. D25BE
#. This is duplicated in GenericCommands.xcu in officecfg.
-#: include/svx/strings.hrc:1117
+#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_CHARFONTNAME"
msgid "Font Name"
msgstr "Nome de fonte"
#. SKCYy
-#: include/svx/strings.hrc:1118
+#: include/svx/strings.hrc:1119
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
msgstr "Nome de la fonte. La fonte actual nun ta disponible y sustituiráse."
#. CVvXU
-#: include/svx/strings.hrc:1119
+#: include/svx/strings.hrc:1120
msgctxt "RID_SVXSTR_CUSTOM_PAL"
msgid "custom"
msgstr "personalizáu"
#. xqzJj
-#: include/svx/strings.hrc:1120
+#: include/svx/strings.hrc:1121
msgctxt "RID_SVXSTR_DOC_COLORS"
msgid "Document colors"
msgstr "Colores del documentu"
#. aVTAG
-#: include/svx/strings.hrc:1121
+#: include/svx/strings.hrc:1122
msgctxt "RID_SVXSTR_THEME_COLORS"
msgid "Theme colors"
msgstr "Colores del tema"
#. 6BoWp
-#: include/svx/strings.hrc:1122
+#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_DOC_COLOR_PREFIX"
msgid "Document Color"
msgstr "Color del documentu"
#. D6gmu
-#: include/svx/strings.hrc:1123
+#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_THEME_COLOR1"
msgid "Background - Dark 1"
msgstr "Fondu escuru 1"
#. JBJhM
-#: include/svx/strings.hrc:1124
+#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_THEME_COLOR2"
msgid "Text - Light 1"
msgstr "Testu claru 1"
#. C7MSY
-#: include/svx/strings.hrc:1125
+#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_THEME_COLOR3"
msgid "Background - Dark 2"
msgstr "Fondu escuru 2"
#. YdMAB
-#: include/svx/strings.hrc:1126
+#: include/svx/strings.hrc:1127
msgctxt "RID_SVXSTR_THEME_COLOR4"
msgid "Text - Light 2"
msgstr "Testu claru 2"
#. NAAZJ
-#: include/svx/strings.hrc:1127
+#: include/svx/strings.hrc:1128
msgctxt "RID_SVXSTR_THEME_COLOR5"
msgid "Accent 1"
msgstr "Acentu 1"
#. 6txaB
-#: include/svx/strings.hrc:1128
+#: include/svx/strings.hrc:1129
msgctxt "RID_SVXSTR_THEME_COLOR6"
msgid "Accent 2"
msgstr "Acentu 2"
#. fECsk
-#: include/svx/strings.hrc:1129
+#: include/svx/strings.hrc:1130
msgctxt "RID_SVXSTR_THEME_COLOR7"
msgid "Accent 3"
msgstr "Acentu 3"
#. 4DH3P
-#: include/svx/strings.hrc:1130
+#: include/svx/strings.hrc:1131
msgctxt "RID_SVXSTR_THEME_COLOR8"
msgid "Accent 4"
msgstr "Acentu 4"
#. dUUDX
-#: include/svx/strings.hrc:1131
+#: include/svx/strings.hrc:1132
msgctxt "RID_SVXSTR_THEME_COLOR9"
msgid "Accent 5"
msgstr "Acentu 5"
#. 73ZEk
-#: include/svx/strings.hrc:1132
+#: include/svx/strings.hrc:1133
msgctxt "RID_SVXSTR_THEME_COLOR10"
msgid "Accent 6"
msgstr "Acentu 6"
#. VKjfB
-#: include/svx/strings.hrc:1133
+#: include/svx/strings.hrc:1134
msgctxt "RID_SVXSTR_THEME_COLOR11"
msgid "Hyperlink"
msgstr "Hiperenllaz"
#. DBfXC
-#: include/svx/strings.hrc:1134
+#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_THEME_COLOR12"
msgid "Followed Hyperlink"
msgstr "Hiperenllaz andáu"
#. sNGoN
-#: include/svx/strings.hrc:1135
+#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_THEME_EFFECT1"
msgid "%1, 80% Lighter"
msgstr "%1, 80% más claru"
#. uQBgP
-#: include/svx/strings.hrc:1136
+#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_THEME_EFFECT2"
msgid "%1, 60% Lighter"
msgstr "%1, 60% más claru"
#. sEpvU
-#: include/svx/strings.hrc:1137
+#: include/svx/strings.hrc:1138
msgctxt "RID_SVXSTR_THEME_EFFECT3"
msgid "%1, 40% Lighter"
msgstr "%1, 40% más claru"
#. XSfNG
-#: include/svx/strings.hrc:1138
+#: include/svx/strings.hrc:1139
msgctxt "RID_SVXSTR_THEME_EFFECT4"
msgid "%1, 25% Darker"
msgstr "%1, 25% más escuru"
#. 3xjEA
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVXSTR_THEME_EFFECT5"
msgid "%1, 50% Darker"
msgstr "%1, 50% más escuru"
#. DJGyY
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Estrusión"
#. TyWTi
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Activar o desactivar estrusión"
#. DKFYE
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Enclinar haza abaxo"
#. 2Rrxc
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Enclinar haza arriba"
#. eDpJK
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Enclinar haza la esquierda"
#. CWDSN
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Enclinar haza la drecha"
#. CxYgt
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Cambiar profundidá d'estrusión"
#. c5JCp
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Cambiar orientación"
#. KDSyh
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Cambiar triba de proyeición"
#. JpzeS
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Cambiar illuminación"
#. j4AR9
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Cambiar brillu"
#. yA2xm
-#: include/svx/strings.hrc:1152
+#: include/svx/strings.hrc:1153
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "Cambiar superficie d'estrusión"
#. DFEZP
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Cambiar color d'estrusión"
#. uPyWe
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "B:"
#. UMMJN
-#: include/svx/strings.hrc:1156
+#: include/svx/strings.hrc:1157
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "V:"
#. ocdkG
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "A:"
#. L962H
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Fontwork"
#. 7RVov
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Aplicar forma de Fontwork"
#. h3CLw
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Aplicar mesmu altor de lletres de Fontwork"
#. 6h2dG
-#: include/svx/strings.hrc:1162
+#: include/svx/strings.hrc:1163
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Aplicar alliniación de Fontwork"
#. eKHcV
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "Aplicar espaciu ente caráuteres de Fontwork"
#. oo88Y
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "con"
#. 4sz83
-#: include/svx/strings.hrc:1166
+#: include/svx/strings.hrc:1167
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Estilu"
#. fEHXC
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "y"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "Control d'esquines"
#. CUEEW
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Seleición d'un puntu de la esquina."
#. cQmVp
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Arriba a la esquierda"
#. TtnJn
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "Centráu enriba"
#. UERVC
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Arriba a la drecha"
#. CznfN
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "Centráu a la esquierda"
#. jvzC7
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Centráu"
#. HPtYD
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "Centráu a la drecha"
#. v4SqB
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Abaxo a la esquierda"
#. daA8a
-#: include/svx/strings.hrc:1178
+#: include/svx/strings.hrc:1179
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "Centráu abaxo"
#. DGWf8
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Abaxo a la drecha"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "Elementu de control del contornu"
#. aMva8
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Equí ye onde pues editar el contornu."
#. DXEuF
-#: include/svx/strings.hrc:1183
+#: include/svx/strings.hrc:1184
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Escoyeta de símbolos"
#. JfRzP
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "Esbilla los caráuteres especiales nesti área."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Códigu de caráuter "
#. HECeC
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Ye obligatoria una entrada nel campu «#». Escribi un valor."
#. w4wm8
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Formularios"
#. cz8aS
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Dengún control escoyíu"
#. JG7Es
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Propiedaes: "
#. YQvBF
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Propiedaes del formulariu"
#. qS9Rn
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Restolador de formulariu"
#. PzEVD
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Formulariu"
#. FWPxF
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "Anubríu"
#. DnoDH
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Formulariu"
#. Ba4Gy
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Control anubríu"
#. wtZqP
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Elementu de control"
#. HvXRK
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Rexistru"
#. HmTfB
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "de"
#. NZ68L
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Amestar campu:"
#. vGXiw
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Fallu al rexistrar datos na base de datos"
#. zzFRi
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Hebo un fallu al analizar la espresión de la consulta"
#. fS8JJ
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "Quies desaniciar 1 rexistru de datos."
#. Qb4Gk
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# rexistros se desaniciarán."
#. zSJQe
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6732,337 +6738,337 @@ msgstr ""
"¿Quier siguir de toles maneres?"
#. Kb7sF
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Barra de navegación"
#. pKEQb
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Columna"
#. FXRKA
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Afitar propiedá «#»"
#. hXjTN
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Inxertar nel contenedor"
#. BWpyC
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Desaniciar #"
#. ZeaDk
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Desaniciar # oxetos"
#. VgGrE
-#: include/svx/strings.hrc:1213
+#: include/svx/strings.hrc:1214
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Camudar un elementu contenedor"
#. FoXgt
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Camudar campu de control"
#. ZGDAr
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "Campu de testu"
#. CBmAL
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Caxella de verificación"
#. xwuJF
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "Campu combináu"
#. WiNUf
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Llistáu"
#. a7gAj
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Campu de data"
#. EaBTj
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Campu de tiempu"
#. DWfsm
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Campu numbéricu"
#. TYjnr
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Campu de moneda"
#. B6MEP
-#: include/svx/strings.hrc:1224
+#: include/svx/strings.hrc:1225
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Campu mazcaritáu"
#. DEn9D
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "Campu formatiáu"
#. V4iMu
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "Botón pa calcar"
#. TreFC
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "Campu d'opción"
#. NFysA
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "Campu d'etiqueta"
#. E5mMK
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "Marcu de grupu"
#. 5474w
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "Botón gráficu"
#. qT2Ed
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "Control d'imaxe"
#. 6Qvho
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "Esbilla de ficheros"
#. uEYBR
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Control de tables "
#. 3SUEn
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "Barra de desplazamientu"
#. VtEN6
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Botón de Escoyeta"
#. eGgm4
-#: include/svx/strings.hrc:1237
+#: include/svx/strings.hrc:1238
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Barra de navegación"
#. yME46
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Esbilla múltiple"
#. s94UU
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr ""
#. PzA5d
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "¡Nel formulariu actual nun existen controles asociaos con datos!"
#. ZyBEz
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Data)"
#. guA5u
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Hora)"
#. 2wgdY
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Restolador de peñeres"
#. BUYuD
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Peñerar por"
#. AcTBB
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "O"
#. 6RPtu
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "El formulariu actual nun caltién controles válidos que se puedan usar na vista de tabla."
#. iEoGb
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<Campu automáticu>"
#. Da6gx
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Fallu de sintaxis na espresión SQL"
#. ZoEuu
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "El valor #1 nun se pue usar con LIKE."
#. 75ECE
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "LIKE nun se pue usar con esti campu."
#. tzFv5
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "El valor especificáu nun ye una data válida. Pon una data con un formatu válidu, por exemplu, MM/DD/AA."
#. y6Z26
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "El campu nun puede comparase con un enteru."
#. F8FgA
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "La base datos nun contién una tabla denomada «#»."
#. EDcU7
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "La base de datos nun contién una tabla nin una consulta denomada «#»."
#. YBFF5
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "La base datos yá contién una tabla o vista denomada «#»."
#. cECTG
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "La base datos yá caltién una consulta denomada «#»."
#. VkeLY
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "La columna «#1» nun se reconoz na tabla «#2»."
#. z9bf9
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "El campu nun se pue comparar con un númberu de coma flotante."
#. CEg85
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "El criteriu indicáu nun se pue comparar con esti campu."
#. ZGAAQ
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Restolador de datos"
#. W4uM2
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (namái llectura)"
#. DgfNh
-#: include/svx/strings.hrc:1264
+#: include/svx/strings.hrc:1265
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "El ficheru yá existe. ¿Quies reemplazalu?"
#. dSYCi
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "etiqueta #object#"
#. JpaM6
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
@@ -7073,7 +7079,7 @@ msgstr ""
"¿De verdá quies desaniciar esti modelu?"
#. y5Dyt
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
@@ -7084,7 +7090,7 @@ msgstr ""
"¿De verdá quies desaniciar esta instancia?"
#. VEzGF
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -7094,13 +7100,13 @@ msgstr ""
"¿Bramente quies desaniciar esti elementu?"
#. 3hF6H
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "¿De verdá quies desaniciar l'atributu «$ATTRIBUTENAME»?"
#. AWEbJ
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
@@ -7113,7 +7119,7 @@ msgstr ""
"¿Quies bramente desaniciar esti unviu?"
#. SGiK5
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
#, fuzzy
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
@@ -7126,1021 +7132,1021 @@ msgstr ""
"¿Quies bramente desaniciar esti enllaz?"
#. 2zzHP
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "El nome «%1» nun val en XML. Escribi un nome distintu."
#. 4nAtc
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "El prefixu «%1» nun val en XML. Escribi un prefixu distintu."
#. qrFQD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Yá esiste'l nome «%1». Escribi un nome nuevu."
#. DKkaw
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "L'unvíu tien de tener asignáu un nome."
#. xcAaD
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "Put"
#. tkRR3
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "Get"
#. fsyAL
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
#, fuzzy
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Denguna"
#. Bjxmg
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
#, fuzzy
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "~Instancies"
#. affmF
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Documentu"
#. gJLHj
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Enllaz: "
#. AEHco
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Referencia: "
#. iLaBC
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Actuación: "
#. HBV5Q
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Métodu: "
#. dAN2F
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Trocar: "
#. QMiqA
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Amestar elementu"
#. C9YBB
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Editar elementu"
#. XAh7B
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Desaniciar elementu"
#. CLHER
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Amestar atributu"
#. 6Ycoo
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Editar atributu"
#. 6dSAd
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Desaniciar atributu"
#. Ljhja
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "Amestar enllaz"
#. CHTrw
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "Editar enllaz"
#. yYwEG
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "Desaniciar enllaz"
#. yVch8
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "Amestar unviu"
#. AX58u
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "Editar unviu"
#. DFxmD
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "Desaniciar unviu"
#. qvvD7
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Elementu"
#. U4Btb
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Atributu"
#. Prceg
-#: include/svx/strings.hrc:1302
+#: include/svx/strings.hrc:1303
#, fuzzy
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Enllaces"
#. iFARB
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "Espresión d'enllaz"
#. BTmNa
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
#, fuzzy
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "¿Seguro que quier encaboxar la recuperación de documentos de %PRODUCTNAME?"
#. 5WjQZ
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Esquierda"
#. JC7pc
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Mandrecha"
#. MhfuC
-#: include/svx/strings.hrc:1309
+#: include/svx/strings.hrc:1310
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Centrar"
#. kX7GR
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Decimal"
#. 7vecp
-#: include/svx/strings.hrc:1312
+#: include/svx/strings.hrc:1313
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr ""
#. ZCWNC
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr ""
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "Sobrescribir"
#. qqCSF
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "Inxertar"
#. 2BBEb
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Robla dixital: La robla del documentu ye correuta."
#. xZprv
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Robla dixital: La robla del documentu ye correuta, pero nun se pudieron validar los certificaos."
#. Yydkh
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Robla Dixital: El documentu nun tien robla."
#. BRmFY
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "Robla dixital: La robla del documentu y el certificáu son correutos, pero nun tan roblaes toles partes del documentu."
#. Swq5S
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
#, fuzzy
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "El documentu camudó. Fai doble click pa guardalu."
#. tRWKa
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "El documentu nun camudó dende'l caberu guardáu."
#. 7C8GH
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Cargando'l documentu..."
#. YbNsP
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "Nun pudieron cargase tolos oxetos de SmartArt. Guardar en Microsoft Office 2010 o posterior va evitar esti problema."
#. Bc5Sg
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr ""
#. HCjAM
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Agrandar"
#. 2YBJE
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Amenorgar"
#. n9EyG
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Tola páxina"
#. 2UBAF
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Anchor de páxina"
#. YBg9X
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
#, fuzzy
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "Meyor vista"
#. Wi5Fy
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Incluyendo estilos"
#. BJSzf
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
#, fuzzy
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Estilos de párrafu"
#. ARuQM
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
#, fuzzy
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Estilos de caxella"
#. 7ChAu
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr ""
#. K6Ave
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr ""
#. USdBy
-#: include/svx/strings.hrc:1346
+#: include/svx/strings.hrc:1347
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr ""
#. CVSwo
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr ""
#. yCJzd
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr ""
#. Diftw
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Clave de busca non atopada"
#. xACuY
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "Nun s'alcontró l'elementu de navegación"
#. CGo5w
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr ""
#. nDCC4
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr ""
#. FNdxE
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "Paleta de colores"
#. sDL47
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "Trocador de colores"
#. 7FcWA
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr "Efeutos 3D"
#. j6dA6
-#: include/svx/strings.hrc:1361
+#: include/svx/strings.hrc:1362
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Contraseña incorreuta"
#. JGJ9F
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Les contraseñes nun concasen"
#. VHTRb
-#: include/svx/strings.hrc:1364
+#: include/svx/strings.hrc:1365
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Viñetes pequeñes sólides circulares"
#. AiNrB
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Viñetes grandes sólides circulares"
#. Vtk8J
-#: include/svx/strings.hrc:1366
+#: include/svx/strings.hrc:1367
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Viñetes sólides con forma de rombu"
#. bQFBw
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Viñetes grandes sólides cuadraes"
#. 5eJDd
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Viñetes en forma de flecha a la drecha"
#. D8zQC
-#: include/svx/strings.hrc:1369
+#: include/svx/strings.hrc:1370
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Viñetes en forma de flecha a la drecha"
#. QCULV
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
#, fuzzy
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Númberu (1) (2) (3)"
#. P2aKH
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Númberu 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Númberu (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Númberu romanu en mayúscules I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Lletra mayúscula A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Lletra minúscula a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1378
+#: include/svx/strings.hrc:1379
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Lletra minúscula (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1379
+#: include/svx/strings.hrc:1380
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Númberu romanu en minúscules i. ii. iii."
#. oDTBg
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numbéricu, numbéricu, lletres minúscules, viñetes pequeñes sólides circulares"
#. m56fN
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Numeric, lowercase letters, solid small circular bullet"
msgstr "Numbéricu, lletres minúscules, viñetes pequeñes sólides circulares"
#. RyTLW
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric, lowercase letters, lowercase Roman, uppercase letters, solid small circular bullet"
msgstr "Numbéricu, lletres minúscules, númberos romanos en minúscules, lletres mayúscules, viñeta pequeña sólida circular"
#. GAfTp
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric"
msgstr "Numbéricu"
#. gjEgN
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase Roman, uppercase letters, lowercase Roman, lowercase letters, solid small circular bullet"
msgstr "Lletres llatines mayúscules, lletres mayúscules, lletres llatines minúscules, lletres minúscules, viñetes pequeñes sólides circulares"
#. DZ2kE
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Lletres mayúscules, lletres llatines mayúscules, lletres minúscules, lletres llatines minúscules, viñetes pequeñes sólides circulares"
#. TV9Mc
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numbéricu con tolos subniveles"
#. tiXu5
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Viñeta hacia la drecha, viñeta en forma de flecha a la drecha, viñeta sólida en forma de rombu, viñeta pequeña sólida circular"
#. nEJiF
-#: include/svx/strings.hrc:1389
+#: include/svx/strings.hrc:1390
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "Nun pudo crease'l ficheru ZIP."
#. CC6Sw
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "Estilos de diseñu de tables"
#. c69eB
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "Aiciones que desfacer: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "Aiciones que desfacer: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "Aiciones que refacer: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "Aiciones que refacer: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1398
+#: include/svx/strings.hrc:1399
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Guetar"
#. WbEFL
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "Concasar mayúscules y minúscules"
#. 59ENV
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr ""
#. vYw6p
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) x $(HEIGHT) ($(WIDTH_IN_PX) x $(HEIGHT_IN_PX) px)"
#. JEkzY
-#: include/svx/strings.hrc:1403
+#: include/svx/strings.hrc:1404
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) x $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) × $(HEIGHT) a $(DPI) PPP"
#. n8VBe
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
msgstr "$(CAPACITY) kiB"
#. Xgeqc
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)"
msgstr ""
#. 8GqWz
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "STR_IMAGE_GIF"
msgid "Gif image"
msgstr ""
#. G2q7M
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "STR_IMAGE_JPEG"
msgid "Jpeg image"
msgstr ""
#. oGKBg
-#: include/svx/strings.hrc:1408
+#: include/svx/strings.hrc:1409
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "Imaxe PNG"
#. Fkrjs
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "Imaxe TIFF"
#. VWyEb
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "Imaxe WMF"
#. pCpoE
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "Imaxe MET"
#. DELaB
-#: include/svx/strings.hrc:1412
+#: include/svx/strings.hrc:1413
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "Imaxe PCT"
#. 3AZAG
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "Imaxe SVG"
#. aCEJW
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "Imaxe BMP"
#. NBoWH
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr "Imaxe WebP"
#. p2L8C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "Desconocíu"
#. 8LBFX
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "Conmutar"
#. xLF42
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "Mou d'imaxe"
#. fw5hA
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Coloráu"
#. CiQvY
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Verde"
#. BhvBe
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Azul"
#. HSP36
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Rellumu"
#. w5BYP
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Contraste"
#. EZUjS
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. ernMB
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Tresparencia"
#. LdkNB
-#: include/svx/strings.hrc:1428
+#: include/svx/strings.hrc:1429
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Recortar"
#. TJmBu
-#: include/svx/strings.hrc:1430
+#: include/svx/strings.hrc:1431
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Orientación predeterminada"
#. WQqju
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "D'arriba haza abaxo"
#. ipfz6
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "D'abaxo haza arriba"
#. MLR44
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "Apiláu"
#. vUDeh
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Marxe esquierdu: "
#. EFBbE
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Marxe superior: "
#. 7HeyP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Marxe drechu: "
#. HCuWQ
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Marxe inferior: "
#. zD9BB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Descripción de la páxina: "
#. a4eSJ
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Mayúscules"
#. DuQGP
-#: include/svx/strings.hrc:1440
+#: include/svx/strings.hrc:1441
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Minúscules"
#. nWQ7R
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Mayúscules romanes"
#. PxkPZ
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Minúscules romanes"
#. B7YEa
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Árabe"
#. vPbGB
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Dengún"
#. akGGo
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Apaisáu"
#. bbcaZ
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Retratu"
#. BQtGg
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Esquierda"
#. JWFLj
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Drecha"
#. bxvGx
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Too"
#. S3nm4
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "Espeyau"
#. dcvEJ
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Autor: "
#. 2siC9
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Data: "
#. pWoLe
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Testu: "
#. pAABc
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Fondu de caráuter"
#. Deknh
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Paleta de colores"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8148,2131 +8154,2131 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Llatín básicu"
#. bcjRA
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Llatín-1"
#. h6THj
-#: include/svx/strings.hrc:1466
+#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Llatín Estendíu A"
#. o4EF9
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Llatín Estendíu B"
#. W3CGs
-#: include/svx/strings.hrc:1468
+#: include/svx/strings.hrc:1469
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "Estensiones IPA"
#. yZjF6
-#: include/svx/strings.hrc:1469
+#: include/svx/strings.hrc:1470
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "Lletres modificadores d'espaciáu"
#. EASZR
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "Combinación de caráuteres diacríticos"
#. wBjC4
-#: include/svx/strings.hrc:1471
+#: include/svx/strings.hrc:1472
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Griegu básicu"
#. Dh8Es
-#: include/svx/strings.hrc:1472
+#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Símbolos Griegos y Coptu"
#. jGT5E
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Cirílicu"
#. DQgLS
-#: include/svx/strings.hrc:1474
+#: include/svx/strings.hrc:1475
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armeniu"
#. kXEQY
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Hebréu básicu"
#. Cb8g4
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Hebréu estendíu"
#. ZmDCd
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Árabe Básicu"
#. hZDFV
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabe Estendíu"
#. c3CqD
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
#. EfVnG
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengalí"
#. iWzLc
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
#. omacG
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Guyarati"
#. Cdwzw
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
#. BhEGN
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
#. 6YkEo
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Telugu"
#. J5qn4
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malayalam"
#. C5yzo
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Tailandés"
#. EvjbD
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Laosianu"
#. HqFTh
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Xorxanu básicu"
#. npAc8
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Xorxanu Estendíu"
#. AHAB4
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangul Jamo"
#. gMEFL
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additionals"
msgstr "Llatín estendíu adicional"
#. uVYXp
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Griegu estendíu"
#. LEQg6
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "Puntuación xeneral"
#. D9KFj
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Superíndices y subíndices"
#. yaxYV
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Símbolos monetarios"
#. jzA5i
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "Combinación de símbolos diacríticos"
#. CHNBZ
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Símbolos asemeyaos a lletres"
#. cDkEd
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Símbolos numbéricos"
#. j25Fp
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Fleches"
#. p5Tbx
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Operadores matemáticos"
#. ckgof
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Dellos caráuteres téunicos"
#. 8rXdw
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "Imaxes de control"
#. D4J8A
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "Reconocimientu ópticu de caráuteres"
#. hXwgf
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Alfanumbéricos axuntos"
#. AD9HJ
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Dibuxos de marcu"
#. vViaR
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Elementos de bloque"
#. ok7ks
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Formes xeométriques"
#. sKty5
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Dellos símbolos"
#. yDpNT
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "Símbolos y puntuación CJK"
#. Bo4iK
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofu"
#. F9UFG
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Jamo con compatibilidá Hangul"
#. yeRDE
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "Dellos caráuteres CJK"
#. kPFs9
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "Caráuteres y meses incluyíos en CJK"
#. 6tAx6
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "CJK Compatibilidá"
#. VakXP
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangul"
#. XzS6D
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "Ideografíes unificaes CJK"
#. JVCP5
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "Ideogrames CJK unificaos estensión A"
#. Y33VK
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Área d'usu priváu"
#. 8yYiM
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "Ideogrames de compatibilidá CJK"
#. BEfFQ
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Formes de presentación alfabética"
#. NCsAG
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Formes de presentación árabes A"
#. adi8G
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Marques intermedies combinantes"
#. vLBhn
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "Formes de compatibilidá CJK"
#. i6R3B
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Variantes de formes pequeñes"
#. 7EDCh
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Formes de presentación árabes B"
#. WWoWx
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "Formes anches y mediu anches"
#. dkDXh
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Especiales"
#. GQSEx
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Sílabes Yi"
#. BL66x
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Radicales yi"
#. cuQ2k
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Itálicu antiguu"
#. wtKAB
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Góticu"
#. GPFqC
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret"
#. 7AovD
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Símbolos musicales bizantinos"
#. G3GQF
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "Símbolos musicales"
#. YzBDD
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "Símbolos matemáticos alfanuméricos"
#. 3XZRw
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "Estensiones ideográfiques unificaes CJK B"
#. nZnQc
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "Estensiones ideográfiques unificaes CJK C"
#. HBwZE
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "Estensiones ideográfiques unificaes CJK D"
#. TTFkh
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "Suplementu de compatibilidá ideográfica CJK"
#. 2jALB
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Etiquetes"
#. 2iHJN
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Suplementu cirílicu"
#. ABgr9
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "Selectores de variación"
#. a4q6S
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "Área d'usu priváu suplementaria A"
#. k638K
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "Área d'usu priváu suplementaria B"
#. pKFTg
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Limbu"
#. TJHGp
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Tai Le"
#. nujxa
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Símbolos ḥemeres"
#. neD93
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Estensiones fonétiques"
#. C6LwC
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "Símbolos y fleches diversos"
#. giR4r
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Símbolos d'hexagrama Yijing"
#. EqFxm
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Sílabariu llinial B"
#. VeZNe
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Ideogrames lliniales B"
#. Tvkgh
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Númberos exeos"
#. CuThH
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugaríticu"
#. nBtk5
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shavianu"
#. vvMNk
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmanya"
#. aiySp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Singalés"
#. PEGiu
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetanu"
#. tRBTP
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Birmanu"
#. 8sgGF
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Ḥemer"
#. CdXvH
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
#. jFWRQ
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Rúnicu"
#. jhzoc
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Siriu"
#. B66QG
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
#. j8cuG
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Etíope"
#. AE5wq
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cheroki"
#. 9mgNF
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Sílabes aboríxenes canadienses"
#. d5JWE
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongol"
#. XnzyB
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Dellos símbolos matemáticos A"
#. R5W9H
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "Fleches suplementaries A"
#. QYf7A
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Patrones Braille"
#. 63BBg
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "Fleches suplementaries B"
#. ykowm
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Dellos símbolos matemáticos B"
#. GGdze
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "Radicales suplementarios de CJK"
#. WLLAP
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Radicales Kangxi"
#. EyZR2
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Caráuteres de descripción d'ideogrames"
#. o3AQ6
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalu"
#. BVieL
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
#. DwAEz
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
#. 3GDP5
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
#. BfGBm
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
#. cL7Vo
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofu estendíu"
#. MQoBs
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Fonética de Katakana"
#. fCpRM
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "Trazos CJK"
#. zyW2q
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Silabariu chipriota"
#. GWxb8
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Símbolos Tai Xuan Jing"
#. 8ZJmr
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Suplementu de selectores de variación"
#. RR6Er
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Escritura musical griega antigua"
#. K3GsF
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Númberos griegos antiguos"
#. y4HCg
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Suplementu del árabe"
#. KUnXb
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Buxinés"
#. zDaXa
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "Suplementu de signos diacríticos pa combinar"
#. 9Z24A
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Cópticu"
#. CANHf
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "Etíope estendíu"
#. X8DEc
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "Suplementu etíope"
#. fYpFz
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Suplementu xeorxanu"
#. 3Gzxx
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagolíticu"
#. zKCVG
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "Lletres que camuden la entonación"
#. B2yF8
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "Tai Lue nuevu"
#. J4KdA
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Persa antiguu"
#. eGPjC
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Suplementu d'estensiones fonétiques"
#. XboFE
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Puntuación suplementaria"
#. tBJi3
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Formes verticales"
#. ihUDF
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Nko"
#. Z3AAi
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Balinés"
#. 428ER
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Llatín estendíu-C"
#. SqFfT
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Llatín estendíu-D"
#. yMmow
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phags-Pa"
#. V6CsB
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Feniciu"
#. GNBwz
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Cuneiforme"
#. VBPZE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Númberos y puntuación cuneiformes"
#. 9msGJ
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Numberales de contéu Rod"
#. i6Gx9
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Sundanés"
#. WrXXX
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Cirílicu estendíu A"
#. ZkKwE
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Cirílicu estendíu B"
#. GoQpd
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Cham"
#. qYaAV
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Símbolos antiguos"
#. At8Tk
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Discu de Festos"
#. ryGAF
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Liciu"
#. EYLa8
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Carianu"
#. TPN6m
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lidiu"
#. G5GLd
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Fiches de Mahjong"
#. EyMaF
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Fiches de dominó"
#. r2YQs
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Samaritanu"
#. feZ2Q
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Sílabes aboríxenes canadienses estendíes"
#. H4FpF
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Estensiones védiques"
#. bVNYf
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu"
#. riEM3
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamum"
#. CQMqK
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Formes numbériques comúnes del índicu"
#. gDEUp
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari estendíu"
#. UsAq2
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul Jamo estendíu-A"
#. g5H7j
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Xavanés"
#. upBjC
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Myanmar estendíu-A"
#. GQ3XX
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul Jamo estendíu-B"
#. RTxUc
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Araméu imperial"
#. 7E6G8
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Árabe antiguu del sur"
#. Ab3wu
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Avestanu"
#. 5gN8e
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Partu inscripcional"
#. D7rcV
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Pahlavi inscripcional"
#. d44Dq
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Turcu antiguu"
#. CLuJC
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Símbolos numbéricos rumi"
#. FpFeH
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Xeroglíficos exipcios"
#. bMYVC
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Suplementu alfa-numbéricu axuntu"
#. Dqcpa
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Suplementu ideográficu axuntu"
#. 8eCZn
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaicu"
#. 8LVFp
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Etíope estendíu A"
#. cQEzt
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Suplementu Bamum"
#. xibkG
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Suplementu Kana"
#. xyswt
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Xuegu de cartes"
#. TqExt
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "Símbolos y pictogrames variaos"
#. wtMts
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "Fustaxes"
#. WgGuX
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "Símbolos de tresporte y mapes"
#. fBitP
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "Símbolos d'alquimia"
#. CWvjP
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Árabe estendíu A"
#. D7mEf
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "Símbolos alfabéticos matemáticos árabes"
#. 8ouWH
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Estensiones Meitei Mayek"
#. mFAeA
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Cursives meroítiques"
#. b5m8K
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Xeroglíficos meroíticos"
#. Xrkei
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sora Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Suplementu de sundanés"
#. pTsMT
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "Suplementu de signos diacríticos pa combinar"
#. 8TGuM
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Llatín Estendíu A"
#. wNozk
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Llinial"
#. SjAev
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Mou"
#. jC4Ue
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Myanmar estendíu-A"
#. y7tCX
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Árabe antiguu del sur"
#. EZADa
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Fleches suplementaries A"
#. iGUzh
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "Ideogrames CJK unificaos estensión A"
#. ho93C
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Cirílicu estendíu A"
#. S69GG
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Suplementu xeorxanu"
#. RTgGA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Nuevu"
#. JJrpR
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Utilización"
#. o3qMt
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "Ideogrames CJK unificaos estensión A"
#. DH39v
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Myanmar estendíu-A"
#. jPSFu
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Suplementu cirílicu"
#. rbMNp
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr ""
#. BYA5Y
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. 9UAmW
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr ""
#. QFLaj
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr ""
#. CYEeS
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr ""
#. ABqB6
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr ""
#. DmagG
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr ""
#. tjuhJ
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr ""
#. naYAA
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr ""
#. JGVtT
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr ""
#. pkBYF
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr ""
#. SEVKT
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr ""
#. NpBis
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr "Alfabetu de Vithkuq"
#. ssh5F
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr "Notación musical «znamenny»"
#. BGGvD
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr ""
#. Ct9UG
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr ""
#. XFhAz
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr ""
#. b6Guf
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr ""
#. yQGoC
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr ""
#. k7B2r
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
#. DF4B8
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr "Fontwork"
#. Eg8QT
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr "Roblólu dixitalmente:"
#. NyP2E
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr "Data: %1"
#. gsDhD
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr "Tresparencia:"
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Dengún berbesu"
#. LzhYZ
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1806
+#: include/svx/strings.hrc:1807
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1812
+#: include/svx/strings.hrc:1813
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Berbesos entecruzaos"
#. hTi3j
-#: include/svx/strings.hrc:1814
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Tolos cuatro berbesos"
#. o8fB8
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
#. 6NnM2
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
#. fRcEu
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr ""
#. uqzE7
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr ""
#. 6ecLB
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr ""
#. B6KZc
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
@@ -10281,19 +10287,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Comprobación del tamañu de la imaxe"
#. D66VS
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "La imaxe «%NAME%» tien bien pocos píxeles pal tamañu actual (%DPIX% × %DPIY% ppp)"
#. Q2kMw
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "La imaxe «%NAME%» tien píxeles enforma pal tamañu actual (%DPIX% × %DPIY% ppp)"
@@ -10708,454 +10714,454 @@ msgid "Vertical text alignment"
msgstr "Alliniación vertical del testu"
#. DPZws
-#: svx/inc/fieldunit.hrc:30
+#: svx/inc/fieldunit.hrc:31
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Millimeter"
msgstr "Milímetru"
#. RWGZH
-#: svx/inc/fieldunit.hrc:31
+#: svx/inc/fieldunit.hrc:32
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Centimeter"
msgstr "Centímetru"
#. Uy6BJ
-#: svx/inc/fieldunit.hrc:32
+#: svx/inc/fieldunit.hrc:33
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Meter"
msgstr "Metru"
#. ej2m5
-#: svx/inc/fieldunit.hrc:33
+#: svx/inc/fieldunit.hrc:34
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Kilometer"
msgstr "Kilómetru"
#. EFSC2
-#: svx/inc/fieldunit.hrc:34
+#: svx/inc/fieldunit.hrc:35
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Inch"
msgstr "Pulgada"
#. pcGHS
-#: svx/inc/fieldunit.hrc:35
+#: svx/inc/fieldunit.hrc:36
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Foot"
msgstr "Pie"
#. 5a3Dq
-#: svx/inc/fieldunit.hrc:36
+#: svx/inc/fieldunit.hrc:37
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Miles"
msgstr "Milles"
#. zpCki
-#: svx/inc/fieldunit.hrc:37
+#: svx/inc/fieldunit.hrc:38
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Pica"
msgstr "Pica"
#. aTBVj
-#: svx/inc/fieldunit.hrc:38
+#: svx/inc/fieldunit.hrc:39
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Point"
msgstr "Puntu"
#. tkSdX
-#: svx/inc/fieldunit.hrc:39
+#: svx/inc/fieldunit.hrc:40
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Char"
msgstr "Car"
#. DyFjJ
-#: svx/inc/fieldunit.hrc:40
+#: svx/inc/fieldunit.hrc:41
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
msgid "Line"
msgstr "Llinia"
#. QYjeZ
-#: svx/inc/fmstring.hrc:27
+#: svx/inc/fmstring.hrc:29
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "LIKE"
msgstr "COMO"
#. iRDFU
-#: svx/inc/fmstring.hrc:28
+#: svx/inc/fmstring.hrc:30
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "NOT"
msgstr "NON"
#. JBngM
-#: svx/inc/fmstring.hrc:29
+#: svx/inc/fmstring.hrc:31
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "EMPTY"
msgstr "BALERU"
#. zpTCG
-#: svx/inc/fmstring.hrc:30
+#: svx/inc/fmstring.hrc:32
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "TRUE"
msgstr "VERDADERU"
#. DYBeJ
-#: svx/inc/fmstring.hrc:31
+#: svx/inc/fmstring.hrc:33
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "FALSE"
msgstr "FALSU"
#. mtAA5
-#: svx/inc/fmstring.hrc:32
+#: svx/inc/fmstring.hrc:34
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "IS"
msgstr "YE"
#. YWtNJ
-#: svx/inc/fmstring.hrc:33
+#: svx/inc/fmstring.hrc:35
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "BETWEEN"
msgstr "ENTE"
#. 47bZX
-#: svx/inc/fmstring.hrc:34
+#: svx/inc/fmstring.hrc:36
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "OR"
msgstr "O"
#. 9ZBAf
-#: svx/inc/fmstring.hrc:35
+#: svx/inc/fmstring.hrc:37
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "AND"
msgstr "Y"
#. xZ65E
-#: svx/inc/fmstring.hrc:36
+#: svx/inc/fmstring.hrc:38
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Average"
msgstr "Promediu"
#. cTfDS
-#: svx/inc/fmstring.hrc:37
+#: svx/inc/fmstring.hrc:39
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Count"
msgstr "Cuenta"
#. TFaGE
-#: svx/inc/fmstring.hrc:38
+#: svx/inc/fmstring.hrc:40
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Maximum"
msgstr "Máximu"
#. gGpDF
-#: svx/inc/fmstring.hrc:39
+#: svx/inc/fmstring.hrc:41
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Minimum"
msgstr "Mínimu"
#. 3YcTD
-#: svx/inc/fmstring.hrc:40
+#: svx/inc/fmstring.hrc:42
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Sum"
msgstr "Suma"
#. GwMS7
-#: svx/inc/fmstring.hrc:41
+#: svx/inc/fmstring.hrc:43
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Every"
msgstr "Too"
#. M6DCS
-#: svx/inc/fmstring.hrc:42
+#: svx/inc/fmstring.hrc:44
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Any"
msgstr "Cualesquier"
#. AyNgd
-#: svx/inc/fmstring.hrc:43
+#: svx/inc/fmstring.hrc:45
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Some"
msgstr "Dalgún"
#. QYQ2c
-#: svx/inc/fmstring.hrc:44
+#: svx/inc/fmstring.hrc:46
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_POP"
msgstr "STDDEV_POP"
#. DsDPW
-#: svx/inc/fmstring.hrc:45
+#: svx/inc/fmstring.hrc:47
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "STDDEV_SAMP"
msgstr "STDDEV_SAMP"
#. RqHwF
-#: svx/inc/fmstring.hrc:46
+#: svx/inc/fmstring.hrc:48
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_SAMP"
msgstr "VAR_SAMP"
#. id43S
-#: svx/inc/fmstring.hrc:47
+#: svx/inc/fmstring.hrc:49
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "VAR_POP"
msgstr "VAR_POP"
#. mjjoD
-#: svx/inc/fmstring.hrc:48
+#: svx/inc/fmstring.hrc:50
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Collect"
msgstr "Recoyer"
#. GcZBA
-#: svx/inc/fmstring.hrc:49
+#: svx/inc/fmstring.hrc:51
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Fusion"
msgstr "Fusión"
#. gpKQz
-#: svx/inc/fmstring.hrc:50
+#: svx/inc/fmstring.hrc:52
#, fuzzy
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Intersection"
msgstr "Interaición"
#. 8DMsd
-#: svx/inc/formnavi.hrc:27
+#: svx/inc/formnavi.hrc:29
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToEdit"
msgid "~Text Box"
msgstr ""
#. LaRik
-#: svx/inc/formnavi.hrc:28
+#: svx/inc/formnavi.hrc:30
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToButton"
msgid "~Button"
msgstr ""
#. qjKaG
-#: svx/inc/formnavi.hrc:29
+#: svx/inc/formnavi.hrc:31
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFixed"
msgid "La~bel field"
msgstr ""
#. sq3AT
-#: svx/inc/formnavi.hrc:30
+#: svx/inc/formnavi.hrc:32
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToList"
msgid "L~ist Box"
msgstr ""
#. agpbk
-#: svx/inc/formnavi.hrc:31
+#: svx/inc/formnavi.hrc:33
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCheckBox"
msgid "~Check Box"
msgstr ""
#. 9WA4B
-#: svx/inc/formnavi.hrc:32
+#: svx/inc/formnavi.hrc:34
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToRadio"
msgid "~Radio Button"
msgstr ""
#. PpgmW
-#: svx/inc/formnavi.hrc:33
+#: svx/inc/formnavi.hrc:35
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToGroup"
msgid "G~roup Box"
msgstr ""
#. A8Dbz
-#: svx/inc/formnavi.hrc:34
+#: svx/inc/formnavi.hrc:36
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCombo"
msgid "Combo Bo~x"
msgstr ""
#. HRAoH
-#: svx/inc/formnavi.hrc:35
+#: svx/inc/formnavi.hrc:37
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageBtn"
msgid "I~mage Button"
msgstr ""
#. gZZqq
-#: svx/inc/formnavi.hrc:36
+#: svx/inc/formnavi.hrc:38
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFileControl"
msgid "~File Selection"
msgstr ""
#. EEADE
-#: svx/inc/formnavi.hrc:37
+#: svx/inc/formnavi.hrc:39
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToDate"
msgid "~Date Field"
msgstr ""
#. gDr8N
-#: svx/inc/formnavi.hrc:38
+#: svx/inc/formnavi.hrc:40
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToTime"
msgid "Tim~e Field"
msgstr ""
#. jAbfP
-#: svx/inc/formnavi.hrc:39
+#: svx/inc/formnavi.hrc:41
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNumeric"
msgid "~Numerical Field"
msgstr ""
#. ryXjj
-#: svx/inc/formnavi.hrc:40
+#: svx/inc/formnavi.hrc:42
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToCurrency"
msgid "C~urrency Field"
msgstr ""
#. GXHFr
-#: svx/inc/formnavi.hrc:41
+#: svx/inc/formnavi.hrc:43
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToPattern"
msgid "~Pattern Field"
-msgstr ""
+msgstr "Campu ~mazcaritáu"
#. a7jCc
-#: svx/inc/formnavi.hrc:42
+#: svx/inc/formnavi.hrc:44
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToImageControl"
msgid "Ima~ge Control"
msgstr ""
#. WDsBh
-#: svx/inc/formnavi.hrc:43
+#: svx/inc/formnavi.hrc:45
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted"
msgid "Fo~rmatted Field"
msgstr ""
#. aEXn5
-#: svx/inc/formnavi.hrc:44
+#: svx/inc/formnavi.hrc:46
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar"
msgid "Scroll bar"
msgstr ""
#. cGxjA
-#: svx/inc/formnavi.hrc:45
+#: svx/inc/formnavi.hrc:47
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton"
msgid "Spin Button"
msgstr ""
#. HYbc6
-#: svx/inc/formnavi.hrc:46
+#: svx/inc/formnavi.hrc:48
msgctxt "RID_SVXSW_CONVERTMENU|ConvertToNavigationBar"
msgid "Navigation Bar"
msgstr "Barra de navegación"
#. d7vkX
-#: svx/inc/frmsel.hrc:30
+#: svx/inc/frmsel.hrc:31
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Border setting"
msgstr "Configuración del berbesu"
#. CBSYv
-#: svx/inc/frmsel.hrc:31
+#: svx/inc/frmsel.hrc:32
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Left border line"
msgstr "Berbesu esquierdu"
#. YAWUD
-#: svx/inc/frmsel.hrc:32
+#: svx/inc/frmsel.hrc:33
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Right border line"
msgstr "Berbesu drechu"
#. VH67W
-#: svx/inc/frmsel.hrc:33
+#: svx/inc/frmsel.hrc:34
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Top border line"
msgstr "Berbesu cimeru"
#. MLMaA
-#: svx/inc/frmsel.hrc:34
+#: svx/inc/frmsel.hrc:35
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Bottom border line"
msgstr "Berbesu baxeru"
#. ZqTGF
-#: svx/inc/frmsel.hrc:35
+#: svx/inc/frmsel.hrc:36
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Horizontal border line"
msgstr "Berbesu horizontal"
#. jzGHA
-#: svx/inc/frmsel.hrc:36
+#: svx/inc/frmsel.hrc:37
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Vertical border line"
msgstr "Berbesu vertical"
#. DodCu
-#: svx/inc/frmsel.hrc:37
+#: svx/inc/frmsel.hrc:38
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from top left to bottom right"
msgstr "Llinia de berbesu diagonal dende enriba a la isquierda hasta embaxo a la drecha"
#. wfJ23
-#: svx/inc/frmsel.hrc:38
+#: svx/inc/frmsel.hrc:39
msgctxt "RID_SVXSTR_FRMSEL_TEXTS"
msgid "Diagonal border line from bottom left to top right"
msgstr "Llinia de borde diagonal dende embaxo a la esquierda hasta enriba a la drecha"
#. dTBRy
-#: svx/inc/frmsel.hrc:43
+#: svx/inc/frmsel.hrc:44
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Border setting"
msgstr "Configuración del berbesu"
#. LhEua
-#: svx/inc/frmsel.hrc:44
+#: svx/inc/frmsel.hrc:45
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Left border line"
msgstr "Berbesu esquierdu"
#. DAuHi
-#: svx/inc/frmsel.hrc:45
+#: svx/inc/frmsel.hrc:46
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Right border line"
msgstr "Berbesu drechu"
#. BYUTR
-#: svx/inc/frmsel.hrc:46
+#: svx/inc/frmsel.hrc:47
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Top border line"
msgstr "Berbesu cimeru"
#. QAnid
-#: svx/inc/frmsel.hrc:47
+#: svx/inc/frmsel.hrc:48
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Bottom border line"
msgstr "Berbesu baxeru"
#. kDBDR
-#: svx/inc/frmsel.hrc:48
+#: svx/inc/frmsel.hrc:49
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Horizontal border line"
msgstr "Berbesu horizontal"
#. Em9YX
-#: svx/inc/frmsel.hrc:49
+#: svx/inc/frmsel.hrc:50
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Vertical border line"
msgstr "Berbesu vertical"
#. oDFKb
-#: svx/inc/frmsel.hrc:50
+#: svx/inc/frmsel.hrc:51
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from top left to bottom right"
msgstr "Llinia de berbesu diagonal dende enriba a la isquierda hasta embaxo a la drecha"
#. 5EYDA
-#: svx/inc/frmsel.hrc:51
+#: svx/inc/frmsel.hrc:52
msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS"
msgid "Diagonal border line from bottom left to top right"
msgstr "Llinia de borde diagonal dende embaxo a la esquierda hasta enriba a la drecha"
@@ -11197,7 +11203,7 @@ msgstr ""
#. hPpj7
#. SVX_NUM_NUMBER_NONE
-#: svx/inc/numberingtype.hrc:29
+#: svx/inc/numberingtype.hrc:31
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "None"
@@ -11205,7 +11211,7 @@ msgstr "Denguna"
#. dQWBh
#. SVX_NUM_CHAR_SPECIAL
-#: svx/inc/numberingtype.hrc:30
+#: svx/inc/numberingtype.hrc:32
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Bullet"
@@ -11213,14 +11219,14 @@ msgstr "Viñetes"
#. GfQQK
#. SVX_NUM_BITMAP
-#: svx/inc/numberingtype.hrc:31
+#: svx/inc/numberingtype.hrc:33
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Graphics"
msgstr "Gráficos"
#. DfEKa
#. SVX_NUM_BITMAP|0x80
-#: svx/inc/numberingtype.hrc:32
+#: svx/inc/numberingtype.hrc:34
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Linked graphics"
@@ -11228,63 +11234,63 @@ msgstr "Gráficos enllazaos"
#. AF3ts
#. SVX_NUM_ARABIC
-#: svx/inc/numberingtype.hrc:33
+#: svx/inc/numberingtype.hrc:35
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1, 2, 3, ..."
msgstr "1, 2, 3, ..."
#. bBGa7
#. SVX_NUM_CHARS_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:34
+#: svx/inc/numberingtype.hrc:36
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, B, C, ..."
msgstr "A, B, C, ..."
#. 5MDDu
#. SVX_NUM_CHARS_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:35
+#: svx/inc/numberingtype.hrc:37
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, b, c, ..."
msgstr "a, b, c, ..."
#. qGL48
#. SVX_NUM_ROMAN_UPPER
-#: svx/inc/numberingtype.hrc:36
+#: svx/inc/numberingtype.hrc:38
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "I, II, III, ..."
msgstr "I, II, III, ..."
#. tZAzS
#. SVX_NUM_ROMAN_LOWER
-#: svx/inc/numberingtype.hrc:37
+#: svx/inc/numberingtype.hrc:39
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "i, ii, iii, ..."
msgstr "i, ii, iii, ..."
#. hbCEG
#. TEXT_NUMBER
-#: svx/inc/numberingtype.hrc:38
+#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
msgstr "1ᵘ, 2ᵘ, 3ᵘ, ..."
#. ymefj
#. TEXT_CARDINAL
-#: svx/inc/numberingtype.hrc:39
+#: svx/inc/numberingtype.hrc:41
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
msgstr ""
#. uPBZs
#. TEXT_ORDINAL
-#: svx/inc/numberingtype.hrc:40
+#: svx/inc/numberingtype.hrc:42
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
msgstr "Primer, segundu, tercer, ..."
#. 2QoAG
#. SVX_NUM_CHARS_UPPER_LETTER_N
-#: svx/inc/numberingtype.hrc:41
+#: svx/inc/numberingtype.hrc:43
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "A, .., AA, .., AAA, ..."
@@ -11292,7 +11298,7 @@ msgstr "A, .., AA, .., AAA, ..."
#. 7Snqt
#. SVX_NUM_CHARS_LOWER_LETTER_N
-#: svx/inc/numberingtype.hrc:42
+#: svx/inc/numberingtype.hrc:44
#, fuzzy
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "a, .., aa, .., aaa, ..."
@@ -11300,402 +11306,402 @@ msgstr "a, .., aa, .., aaa, ..."
#. 2jYQi
#. SYMBOL_CHICAGO
-#: svx/inc/numberingtype.hrc:43
+#: svx/inc/numberingtype.hrc:45
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "*, †, ‡, §, **, ††, ..."
msgstr "*, †, ‡, §, **, ††, ..."
#. GG8gr
#. NATIVE_NUMBERING
-#: svx/inc/numberingtype.hrc:44
+#: svx/inc/numberingtype.hrc:46
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Native Numbering"
msgstr "Numberación nativa"
#. yLB7R
#. CHARS_CYRILLIC_UPPER_LETTER_BG
-#: svx/inc/numberingtype.hrc:45
+#: svx/inc/numberingtype.hrc:47
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Аб, ... (búlgaru)"
#. JHskj
#. CHARS_CYRILLIC_LOWER_LETTER_BG
-#: svx/inc/numberingtype.hrc:46
+#: svx/inc/numberingtype.hrc:48
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Bulgarian)"
msgstr "а, б, .., аа, аб, ... (búlgaru)"
#. sqKyt
#. CHARS_CYRILLIC_UPPER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:47
+#: svx/inc/numberingtype.hrc:49
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Bulgarian)"
msgstr "А, Б, .., Аа, Бб, ... (búlgaru)"
#. QtcCE
#. CHARS_CYRILLIC_LOWER_LETTER_N_BG
-#: svx/inc/numberingtype.hrc:48
+#: svx/inc/numberingtype.hrc:50
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Bulgarian)"
msgstr "а, б, .., аа, бб, ... (búlgaru)"
#. DeUDb
#. CHARS_CYRILLIC_UPPER_LETTER_RU
-#: svx/inc/numberingtype.hrc:49
+#: svx/inc/numberingtype.hrc:51
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Russian)"
msgstr "А, Б, .., Аа, Аб, ... (rusu)"
#. kAHJb
#. CHARS_CYRILLIC_LOWER_LETTER_RU
-#: svx/inc/numberingtype.hrc:50
+#: svx/inc/numberingtype.hrc:52
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Russian)"
msgstr "а, б, .., аа, аб, ... (rusu)"
#. kHAr7
#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:51
+#: svx/inc/numberingtype.hrc:53
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Russian)"
msgstr "А, Б, .., Аа, Бб, ... (rusu)"
#. Dkve7
#. CHARS_CYRILLIC_LOWER_LETTER_N_RU
-#: svx/inc/numberingtype.hrc:52
+#: svx/inc/numberingtype.hrc:54
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Russian)"
msgstr "а, б, .., аа, бб, ... (rusu)"
#. EdfYn
#. CHARS_CYRILLIC_UPPER_LETTER_SR
-#: svx/inc/numberingtype.hrc:53
+#: svx/inc/numberingtype.hrc:55
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Аб, ... (Serbian)"
msgstr "А, Б, .., Аа, Аб, ... (serbiu)"
#. oFJkn
#. CHARS_CYRILLIC_LOWER_LETTER_SR
-#: svx/inc/numberingtype.hrc:54
+#: svx/inc/numberingtype.hrc:56
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Serbian)"
msgstr "а, б, .., аа, аб, ... (serbiu)"
#. oA7CM
#. CHARS_CYRILLIC_UPPER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:55
+#: svx/inc/numberingtype.hrc:57
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "А, Б, .., Аа, Бб, ... (Serbian)"
msgstr "А, Б, .., Аа, Бб, ... (serbiu)"
#. Eom7M
#. CHARS_CYRILLIC_LOWER_LETTER_N_SR
-#: svx/inc/numberingtype.hrc:56
+#: svx/inc/numberingtype.hrc:58
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, бб, ... (Serbian)"
msgstr "а, б, .., аа, бб, ... (serbiu)"
#. SDSQ6
#. CHARS_GREEK_UPPER_LETTER
-#: svx/inc/numberingtype.hrc:57
+#: svx/inc/numberingtype.hrc:59
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "Α, Β, Γ, ... (Greek)"
msgstr "Α, Β, Γ, ... (griegu)"
#. CMFjw
#. CHARS_GREEK_LOWER_LETTER
-#: svx/inc/numberingtype.hrc:58
+#: svx/inc/numberingtype.hrc:60
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "α, β, γ, ... (Greek)"
msgstr "α, β, γ, ... (griegu)"
#. 8Cxkk
#. NUMBER_HEBREW
-#: svx/inc/numberingtype.hrc:59
+#: svx/inc/numberingtype.hrc:61
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...י, יא...כ, ..."
msgstr ""
#. n2sV8
#. CHARS_HEBREW
-#: svx/inc/numberingtype.hrc:60
+#: svx/inc/numberingtype.hrc:62
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "א...ת, אא...תת, ..."
msgstr ""
#. nR8RG
#. NUMBER_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:61
+#: svx/inc/numberingtype.hrc:63
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "١, ٢, ٣, ٤, ... (Arabic)"
msgstr ""
#. jEE4r
#. NUMBER_EAST_ARABIC_INDIC
-#: svx/inc/numberingtype.hrc:62
+#: svx/inc/numberingtype.hrc:64
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "۱, ۲, ۳, ۴, ... (Farsi)"
msgstr ""
#. YFYp2
#. NUMBER_INDIC_DEVANAGARI
-#: svx/inc/numberingtype.hrc:63
+#: svx/inc/numberingtype.hrc:65
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "१, २, ३, ..."
msgstr ""
#. Vd6uV
#. enum SvxRotateMode ----------------------------------------------------
-#: svx/inc/rotationstrings.hrc:18
+#: svx/inc/rotationstrings.hrc:20
msgctxt "RID_SVXITEMS_ROTATE_MODE_STANDARD"
msgid "Rotation only within cell"
msgstr ""
#. r8WzF
-#: svx/inc/rotationstrings.hrc:19
+#: svx/inc/rotationstrings.hrc:21
msgctxt "RID_SVXITEMS_ROTATE_MODE_TOP"
msgid "From upper cell edge"
msgstr ""
#. E7EVi
-#: svx/inc/rotationstrings.hrc:20
+#: svx/inc/rotationstrings.hrc:22
msgctxt "RID_SVXITEMS_ROTATE_MODE_CENTER"
msgid "From vertical middle cell"
msgstr ""
#. NEwyu
-#: svx/inc/rotationstrings.hrc:21
+#: svx/inc/rotationstrings.hrc:23
msgctxt "RID_SVXITEMS_ROTATE_MODE_BOTTOM"
msgid "From lower cell edge"
msgstr ""
#. Je56M
-#: svx/inc/samecontent.hrc:18
+#: svx/inc/samecontent.hrc:20
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
msgstr "Toles páxines"
#. kKCQR
-#: svx/inc/samecontent.hrc:19
+#: svx/inc/samecontent.hrc:21
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First Page"
msgstr "Primer páxina"
#. MHuCA
-#: svx/inc/samecontent.hrc:20
+#: svx/inc/samecontent.hrc:22
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "Left and Right Pages"
msgstr "Páxines izquierdes y dereches"
#. XH8p4
-#: svx/inc/samecontent.hrc:21
+#: svx/inc/samecontent.hrc:23
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First, Left and Right Pages"
msgstr ""
#. F9hHK
-#: svx/inc/spacing.hrc:24
+#: svx/inc/spacing.hrc:26
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "None"
msgstr ""
#. GAuJk
-#: svx/inc/spacing.hrc:25
+#: svx/inc/spacing.hrc:27
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. DB9aM
-#: svx/inc/spacing.hrc:26
+#: svx/inc/spacing.hrc:28
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small (1/8″)"
msgstr ""
#. 5PhsT
-#: svx/inc/spacing.hrc:27
+#: svx/inc/spacing.hrc:29
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. 3LSyH
-#: svx/inc/spacing.hrc:28
+#: svx/inc/spacing.hrc:30
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. NzRZJ
-#: svx/inc/spacing.hrc:29
+#: svx/inc/spacing.hrc:31
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. JBwJZ
-#: svx/inc/spacing.hrc:30
+#: svx/inc/spacing.hrc:32
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Large (3/4″)"
msgstr ""
#. AwWUq
-#: svx/inc/spacing.hrc:31
+#: svx/inc/spacing.hrc:33
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. SGERK
-#: svx/inc/spacing.hrc:38
+#: svx/inc/spacing.hrc:40
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "None"
msgstr ""
#. ZAZbV
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:40
+#: svx/inc/spacing.hrc:42
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Small (%1)"
msgstr ""
#. DJAZx
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:42
+#: svx/inc/spacing.hrc:44
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small (%1)"
msgstr ""
#. scXTX
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:44
+#: svx/inc/spacing.hrc:46
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small Medium (%1)"
msgstr ""
#. zN8GJ
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:46
+#: svx/inc/spacing.hrc:48
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium (%1)"
msgstr ""
#. cbhBF
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:48
+#: svx/inc/spacing.hrc:50
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Medium Large (%1)"
msgstr ""
#. 8kTDK
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:50
+#: svx/inc/spacing.hrc:52
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Large (%1)"
msgstr ""
#. etG35
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:52
+#: svx/inc/spacing.hrc:54
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Extra Large (%1)"
msgstr ""
#. F7GxF
-#: svx/inc/spacing.hrc:59
+#: svx/inc/spacing.hrc:61
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "None"
msgstr ""
#. ZNunF
-#: svx/inc/spacing.hrc:60
+#: svx/inc/spacing.hrc:62
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16″)"
msgstr ""
#. BUnaC
-#: svx/inc/spacing.hrc:61
+#: svx/inc/spacing.hrc:63
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small (1/8″)"
msgstr ""
#. oBhFP
-#: svx/inc/spacing.hrc:62
+#: svx/inc/spacing.hrc:64
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4″)"
msgstr ""
#. tDBA3
-#: svx/inc/spacing.hrc:63
+#: svx/inc/spacing.hrc:65
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8″)"
msgstr ""
#. fDRCW
-#: svx/inc/spacing.hrc:64
+#: svx/inc/spacing.hrc:66
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2″)"
msgstr ""
#. Ls2Jq
-#: svx/inc/spacing.hrc:65
+#: svx/inc/spacing.hrc:67
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4″)"
msgstr ""
#. DLXcU
-#: svx/inc/spacing.hrc:66
+#: svx/inc/spacing.hrc:68
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1″)"
msgstr ""
#. phGfi
-#: svx/inc/spacing.hrc:73
+#: svx/inc/spacing.hrc:75
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "None"
msgstr ""
#. XVMbm
#. Extra Small (0.16 cm)
-#: svx/inc/spacing.hrc:75
+#: svx/inc/spacing.hrc:77
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Small (%1)"
msgstr ""
#. L3BfG
#. Small (0.32 cm)
-#: svx/inc/spacing.hrc:77
+#: svx/inc/spacing.hrc:79
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small (%1)"
msgstr ""
#. 2VGHi
#. Small Medium (0.64 cm)
-#: svx/inc/spacing.hrc:79
+#: svx/inc/spacing.hrc:81
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small Medium (%1)"
msgstr ""
#. Z7Wot
#. Medium (0.95 cm)
-#: svx/inc/spacing.hrc:81
+#: svx/inc/spacing.hrc:83
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium (%1)"
msgstr ""
#. CS6Zz
#. Medium Large (1.27 cm)
-#: svx/inc/spacing.hrc:83
+#: svx/inc/spacing.hrc:85
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Medium Large (%1)"
msgstr ""
#. BaS7j
#. Large (1.9 cm)
-#: svx/inc/spacing.hrc:85
+#: svx/inc/spacing.hrc:87
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Large (%1)"
msgstr ""
#. gAc3E
#. Extra Large (2.54 cm)
-#: svx/inc/spacing.hrc:87
+#: svx/inc/spacing.hrc:89
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Extra Large (%1)"
msgstr ""
@@ -11820,1137 +11826,1137 @@ msgstr ""
"¿Quies guardar el documentu ensin proteición por contraseña?"
#. xnBAZ
-#: svx/inc/swframeposstrings.hrc:28
+#: svx/inc/swframeposstrings.hrc:30
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left"
msgstr "Esquierda"
#. GHBGu
-#: svx/inc/swframeposstrings.hrc:29
+#: svx/inc/swframeposstrings.hrc:31
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right"
msgstr "Mandrecha"
#. aEeds
-#: svx/inc/swframeposstrings.hrc:30
+#: svx/inc/swframeposstrings.hrc:32
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From left"
msgstr "Dende la esquierda"
#. ivTxP
-#: svx/inc/swframeposstrings.hrc:31
+#: svx/inc/swframeposstrings.hrc:33
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inside"
msgstr "Adientro"
#. U5FyC
-#: svx/inc/swframeposstrings.hrc:32
+#: svx/inc/swframeposstrings.hrc:34
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outside"
msgstr "Afuera"
#. 67K4H
-#: svx/inc/swframeposstrings.hrc:33
+#: svx/inc/swframeposstrings.hrc:35
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From inside"
msgstr "Dende dientro"
#. W2X2D
-#: svx/inc/swframeposstrings.hrc:34
+#: svx/inc/swframeposstrings.hrc:36
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph area"
msgstr "Área de párrafu"
#. CrRe5
-#: svx/inc/swframeposstrings.hrc:35 svx/inc/swframeposstrings.hrc:52
+#: svx/inc/swframeposstrings.hrc:37 svx/inc/swframeposstrings.hrc:54
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Paragraph text area"
msgstr "Área de testu de párrafu"
#. MT34e
-#: svx/inc/swframeposstrings.hrc:36
+#: svx/inc/swframeposstrings.hrc:38
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left page border"
msgstr "Berbesu esquierdu de páxina"
#. edC8Z
-#: svx/inc/swframeposstrings.hrc:37
+#: svx/inc/swframeposstrings.hrc:39
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right page border"
msgstr "Berbesu drechu de páxina"
#. dCGE9
-#: svx/inc/swframeposstrings.hrc:38
+#: svx/inc/swframeposstrings.hrc:40
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left paragraph border"
msgstr "Berbesu esquierdu de párrafu"
#. 3pAVN
-#: svx/inc/swframeposstrings.hrc:39
+#: svx/inc/swframeposstrings.hrc:41
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right paragraph border"
msgstr "Berbesu drechu del párrafu"
#. qvFns
-#: svx/inc/swframeposstrings.hrc:40
+#: svx/inc/swframeposstrings.hrc:42
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner page border"
msgstr "Berbesu interior de páxina"
#. XwtPT
-#: svx/inc/swframeposstrings.hrc:41
+#: svx/inc/swframeposstrings.hrc:43
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer page border"
msgstr "Berbesu esterior de páxina"
#. oF2mP
-#: svx/inc/swframeposstrings.hrc:42
+#: svx/inc/swframeposstrings.hrc:44
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner paragraph border"
msgstr "Berbesu interior de párrafu"
#. Hffsf
-#: svx/inc/swframeposstrings.hrc:43
+#: svx/inc/swframeposstrings.hrc:45
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer paragraph border"
msgstr "Berbesu esterior del párrafu"
#. ey4rc
-#: svx/inc/swframeposstrings.hrc:44
+#: svx/inc/swframeposstrings.hrc:46
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire page"
msgstr "Tola páxina"
#. WJocu
-#: svx/inc/swframeposstrings.hrc:45
+#: svx/inc/swframeposstrings.hrc:47
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area"
msgstr "Área de testu de páxina"
#. jY8xQ
-#: svx/inc/swframeposstrings.hrc:46
+#: svx/inc/swframeposstrings.hrc:48
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area top"
msgstr ""
#. vWEe2
-#: svx/inc/swframeposstrings.hrc:47
+#: svx/inc/swframeposstrings.hrc:49
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Page text area bottom"
msgstr ""
#. XG9Bj
-#: svx/inc/swframeposstrings.hrc:48
+#: svx/inc/swframeposstrings.hrc:50
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Base line"
msgstr "Llinia base"
#. A3DbQ
-#: svx/inc/swframeposstrings.hrc:49
+#: svx/inc/swframeposstrings.hrc:51
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Character"
msgstr "Caráuter"
#. Qyopb
-#: svx/inc/swframeposstrings.hrc:50
+#: svx/inc/swframeposstrings.hrc:52
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Row"
msgstr "Filera"
#. PPkKE
-#: svx/inc/swframeposstrings.hrc:51
+#: svx/inc/swframeposstrings.hrc:53
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Margin"
msgstr "Marxe"
#. FCKGJ
-#: svx/inc/swframeposstrings.hrc:53
+#: svx/inc/swframeposstrings.hrc:55
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Left frame border"
msgstr "Berbesu del marcu esquierdu"
#. dvJgp
-#: svx/inc/swframeposstrings.hrc:54
+#: svx/inc/swframeposstrings.hrc:56
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right frame border"
msgstr "Berbesu del marcu drechu"
#. 8wUyB
-#: svx/inc/swframeposstrings.hrc:55
+#: svx/inc/swframeposstrings.hrc:57
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Entire frame"
msgstr "Marcu completu"
#. FRNBs
-#: svx/inc/swframeposstrings.hrc:56
+#: svx/inc/swframeposstrings.hrc:58
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Frame text area"
msgstr "Área de testu de marcu"
#. CEgLN
-#: svx/inc/swframeposstrings.hrc:57
+#: svx/inc/swframeposstrings.hrc:59
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Inner frame border"
msgstr "Borde del marcu interior"
#. UroG3
-#: svx/inc/swframeposstrings.hrc:58
+#: svx/inc/swframeposstrings.hrc:60
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Outer frame border"
msgstr "Borde del marcu esterior"
#. hMCeD
-#: svx/inc/swframeposstrings.hrc:59
+#: svx/inc/swframeposstrings.hrc:61
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top"
msgstr "Enriba"
#. zvKGF
-#: svx/inc/swframeposstrings.hrc:60
+#: svx/inc/swframeposstrings.hrc:62
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom"
msgstr "Embaxo"
#. zLzw8
-#: svx/inc/swframeposstrings.hrc:61 svx/inc/swframeposstrings.hrc:62
+#: svx/inc/swframeposstrings.hrc:63 svx/inc/swframeposstrings.hrc:64
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Center"
msgstr "Centrar"
#. HKRAf
-#: svx/inc/swframeposstrings.hrc:63
+#: svx/inc/swframeposstrings.hrc:65
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From top"
msgstr "Dende arriba"
#. o7Td5
-#: svx/inc/swframeposstrings.hrc:64
+#: svx/inc/swframeposstrings.hrc:66
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From bottom"
msgstr "Dende abaxo"
#. bF2Nd
-#: svx/inc/swframeposstrings.hrc:65
+#: svx/inc/swframeposstrings.hrc:67
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Below"
msgstr "Embaxo"
#. Q9AZn
-#: svx/inc/swframeposstrings.hrc:66
+#: svx/inc/swframeposstrings.hrc:68
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "From right"
msgstr "Dende la drecha"
#. Y6y4s
-#: svx/inc/swframeposstrings.hrc:67
+#: svx/inc/swframeposstrings.hrc:69
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top page border"
msgstr "Berbesu cimeru de la páxina"
#. ZyAri
-#: svx/inc/swframeposstrings.hrc:68
+#: svx/inc/swframeposstrings.hrc:70
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom page border"
msgstr "Borde baxeru de la páxina"
#. 2vRtm
-#: svx/inc/swframeposstrings.hrc:69
+#: svx/inc/swframeposstrings.hrc:71
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Top paragraph border"
msgstr "Berbesu cimeru del párrafu"
#. AAFLn
-#: svx/inc/swframeposstrings.hrc:70
+#: svx/inc/swframeposstrings.hrc:72
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Bottom paragraph border"
msgstr "Berbesu baxeru del párrafu"
#. dmVNj
-#: svx/inc/swframeposstrings.hrc:71
+#: svx/inc/swframeposstrings.hrc:73
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Line of text"
msgstr "Llinia de testu"
#. gKq8G
-#: svx/inc/tabwin.hrc:27
+#: svx/inc/tabwin.hrc:29
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Table"
msgstr "Tabla"
#. 4mnUW
-#: svx/inc/tabwin.hrc:28
+#: svx/inc/tabwin.hrc:30
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "Query"
msgstr "Consulta"
#. rfs4A
-#: svx/inc/tabwin.hrc:29
+#: svx/inc/tabwin.hrc:31
msgctxt "RID_RSC_TABWIN_PREFIX"
msgid "SQL"
msgstr "SQL"
#. QF2ZT
-#: svx/inc/txenctab.hrc:32
+#: svx/inc/txenctab.hrc:33
#, fuzzy
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Windows-1252/WinLatin 1)"
msgstr "Europa occidental (Windows-1252/WinLatin 1)"
#. VbWZR
-#: svx/inc/txenctab.hrc:33
+#: svx/inc/txenctab.hrc:34
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh)"
msgstr "Europa occidental (Apple Macintosh)"
#. 5yMG7
-#: svx/inc/txenctab.hrc:34
+#: svx/inc/txenctab.hrc:35
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-850/International)"
msgstr "Europa occidental (DOS/OS2-850/Internacional)"
#. KYDEk
-#: svx/inc/txenctab.hrc:35
+#: svx/inc/txenctab.hrc:36
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-437/US)"
msgstr "Europa occidental (DOS/OS2-437/EE.XX.)"
#. 3MbrA
-#: svx/inc/txenctab.hrc:36
+#: svx/inc/txenctab.hrc:37
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-860/Portuguese)"
msgstr "Europa occidental (DOS/OS2-860/Portugués)"
#. bdxAU
-#: svx/inc/txenctab.hrc:37
+#: svx/inc/txenctab.hrc:38
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-861/Icelandic)"
msgstr "Europa occidental (DOS/OS2-861/Islandés)"
#. kMQ9X
-#: svx/inc/txenctab.hrc:38
+#: svx/inc/txenctab.hrc:39
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-863/French (Can.))"
msgstr "Europa occidental (DOS/OS2-863/Francés (Canadá))"
#. YTGtN
-#: svx/inc/txenctab.hrc:39
+#: svx/inc/txenctab.hrc:40
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (DOS/OS2-865/Nordic)"
msgstr "Europa occidental (DOS/OS2-865/Nórdicu)"
#. 7f2UV
-#: svx/inc/txenctab.hrc:40
+#: svx/inc/txenctab.hrc:41
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ASCII/US)"
msgstr "Europa occidental (ASCII/EE.XX.)"
#. Hksxs
-#: svx/inc/txenctab.hrc:41
+#: svx/inc/txenctab.hrc:42
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-1)"
msgstr "Europa occidental (ISO-8859-1)"
#. PBDdu
-#: svx/inc/txenctab.hrc:42
+#: svx/inc/txenctab.hrc:43
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-2)"
msgstr "Europa oriental (ISO-8859-2)"
#. MFqWF
-#: svx/inc/txenctab.hrc:43
+#: svx/inc/txenctab.hrc:44
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Latin 3 (ISO-8859-3)"
msgstr "Llatín 3 (ISO-8859-3)"
#. WBkLV
-#: svx/inc/txenctab.hrc:44
+#: svx/inc/txenctab.hrc:45
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (ISO-8859-4)"
msgstr "Bálticu (ISO-8859-4)"
#. b5SPH
-#: svx/inc/txenctab.hrc:45
+#: svx/inc/txenctab.hrc:46
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (ISO-8859-5)"
msgstr "Cirílicu (ISO-8859-5)"
#. wFCbj
-#: svx/inc/txenctab.hrc:46
+#: svx/inc/txenctab.hrc:47
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (ISO-8859-6)"
msgstr "Árabe (ISO-8859-6)"
#. qTzCE
-#: svx/inc/txenctab.hrc:47
+#: svx/inc/txenctab.hrc:48
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (ISO-8859-7)"
msgstr "Griegu (ISO-8859-7)"
#. MmChj
-#: svx/inc/txenctab.hrc:48
+#: svx/inc/txenctab.hrc:49
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (ISO-8859-8)"
msgstr "Hebréu (ISO-8859-8)"
#. 3bHAV
-#: svx/inc/txenctab.hrc:49
+#: svx/inc/txenctab.hrc:50
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (ISO-8859-9)"
msgstr "Turcu (ISO-8859-9)"
#. phdte
-#: svx/inc/txenctab.hrc:50
+#: svx/inc/txenctab.hrc:51
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-14)"
msgstr "Europa occidental (ISO-8859-14)"
#. MpHUZ
-#: svx/inc/txenctab.hrc:51
+#: svx/inc/txenctab.hrc:52
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (ISO-8859-15/EURO)"
msgstr "Europa occidental (ISO-8859-15/EURO)"
#. JgVnj
-#: svx/inc/txenctab.hrc:52
+#: svx/inc/txenctab.hrc:53
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-737)"
msgstr "Griegu (DOS/OS2-737)"
#. EQi6s
-#: svx/inc/txenctab.hrc:53
+#: svx/inc/txenctab.hrc:54
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (DOS/OS2-775)"
msgstr "Bálticu (DOS/OS2-775)"
#. SDvMf
-#: svx/inc/txenctab.hrc:54
+#: svx/inc/txenctab.hrc:55
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (DOS/OS2-852)"
msgstr "Europa oriental (DOS/OS2-852)"
#. 3FrUC
-#: svx/inc/txenctab.hrc:55
+#: svx/inc/txenctab.hrc:56
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-855)"
msgstr "Cirílicu (DOS/OS2-855)"
#. G8q5c
-#: svx/inc/txenctab.hrc:56
+#: svx/inc/txenctab.hrc:57
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (DOS/OS2-857)"
msgstr "Turcu (DOS/OS2-857)"
#. kBvdY
-#: svx/inc/txenctab.hrc:57
+#: svx/inc/txenctab.hrc:58
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (DOS/OS2-862)"
msgstr "Hebréu (DOS/OS2-862)"
#. to6H6
-#: svx/inc/txenctab.hrc:58
+#: svx/inc/txenctab.hrc:59
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (DOS/OS2-864)"
msgstr "Árabe (DOS/OS2-864)"
#. BH6K4
-#: svx/inc/txenctab.hrc:59
+#: svx/inc/txenctab.hrc:60
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (DOS/OS2-866/Russian)"
msgstr "Cirílicu (DOS/OS2-866/Rusu)"
#. ms8Dk
-#: svx/inc/txenctab.hrc:60
+#: svx/inc/txenctab.hrc:61
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-869/Modern)"
msgstr "Griegu (DOS/OS2-869/Modernu)"
#. U9RbL
-#: svx/inc/txenctab.hrc:61
+#: svx/inc/txenctab.hrc:62
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Windows-1250/WinLatin 2)"
msgstr "Europa oriental (Windows-1250/WinLatin 2)"
#. fRRMB
-#: svx/inc/txenctab.hrc:62
+#: svx/inc/txenctab.hrc:63
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Windows-1251)"
msgstr "Cirílicu (Windows-1251)"
#. 7D9eT
-#: svx/inc/txenctab.hrc:63
+#: svx/inc/txenctab.hrc:64
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Windows-1253)"
msgstr "Griegu (Windows-1253)"
#. sa8W8
-#: svx/inc/txenctab.hrc:64
+#: svx/inc/txenctab.hrc:65
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Windows-1254)"
msgstr "Turcu (Windows-1254)"
#. ZxMJy
-#: svx/inc/txenctab.hrc:65
+#: svx/inc/txenctab.hrc:66
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Hebrew (Windows-1255)"
msgstr "Hebréu (Windows-1255)"
#. 4GLZX
-#: svx/inc/txenctab.hrc:66
+#: svx/inc/txenctab.hrc:67
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Arabic (Windows-1256)"
msgstr "Árabe (Windows-1256)"
#. errzy
-#: svx/inc/txenctab.hrc:67
+#: svx/inc/txenctab.hrc:68
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Baltic (Windows-1257)"
msgstr "Bálticu (Windows-1257)"
#. SSo9X
-#: svx/inc/txenctab.hrc:68
+#: svx/inc/txenctab.hrc:69
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Vietnamese (Windows-1258)"
msgstr ""
#. udrZT
-#: svx/inc/txenctab.hrc:69
+#: svx/inc/txenctab.hrc:70
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh)"
msgstr "Europa oriental (Apple Macintosh)"
#. g2Z7z
-#: svx/inc/txenctab.hrc:70
+#: svx/inc/txenctab.hrc:71
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Croatian)"
msgstr "Europa oriental (Apple Macintosh/Croata)"
#. 9jpM6
-#: svx/inc/txenctab.hrc:71
+#: svx/inc/txenctab.hrc:72
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh)"
msgstr "Cirílicu (Apple Macintosh)"
#. YB8BU
-#: svx/inc/txenctab.hrc:72
+#: svx/inc/txenctab.hrc:73
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Apple Macintosh)"
msgstr "Griegu (Apple Macintosh)"
#. rEWLF
-#: svx/inc/txenctab.hrc:73
+#: svx/inc/txenctab.hrc:74
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh/Icelandic)"
msgstr "Europa occidental (Apple Macintosh/Islandés)"
#. eCAET
-#: svx/inc/txenctab.hrc:74
+#: svx/inc/txenctab.hrc:75
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Romanian)"
msgstr "Europa oriental (Apple Macintosh/Rumanu)"
#. T4VVK
-#: svx/inc/txenctab.hrc:75
+#: svx/inc/txenctab.hrc:76
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Apple Macintosh)"
msgstr "Turcu (Apple Macintosh)"
#. a8GDk
-#: svx/inc/txenctab.hrc:76
+#: svx/inc/txenctab.hrc:77
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (Apple Macintosh/Ukrainian)"
msgstr "Cirílicu (Apple Macintosh/Ucranianu)"
#. 4RBWC
-#: svx/inc/txenctab.hrc:77
+#: svx/inc/txenctab.hrc:78
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Apple Macintosh)"
msgstr "Chinu simplificáu (Apple Macintosh)"
#. 6WCbw
-#: svx/inc/txenctab.hrc:78
+#: svx/inc/txenctab.hrc:79
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Apple Macintosh)"
msgstr "Chinu tradicional (Apple Macintosh)"
#. DyADW
-#: svx/inc/txenctab.hrc:79
+#: svx/inc/txenctab.hrc:80
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Apple Macintosh)"
msgstr "Xaponés (Apple Macintosh)"
#. BXQq2
-#: svx/inc/txenctab.hrc:80
+#: svx/inc/txenctab.hrc:81
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Apple Macintosh)"
msgstr "Coreanu (Apple Macintosh)"
#. 6eezP
-#: svx/inc/txenctab.hrc:81
+#: svx/inc/txenctab.hrc:82
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Windows-932)"
msgstr "Xaponés (Windows-932)"
#. FuA86
-#: svx/inc/txenctab.hrc:82
+#: svx/inc/txenctab.hrc:83
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (Windows-936)"
msgstr "Chinu simplificáu (Windows-936)"
#. Rgvx2
-#: svx/inc/txenctab.hrc:83
+#: svx/inc/txenctab.hrc:84
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-949)"
msgstr "Coreanu (Windows-949)"
#. VrtX4
-#: svx/inc/txenctab.hrc:84
+#: svx/inc/txenctab.hrc:85
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Windows-950)"
msgstr "Chinu tradicional (Windows-950)"
#. XYyEd
-#: svx/inc/txenctab.hrc:85
+#: svx/inc/txenctab.hrc:86
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (Shift-JIS)"
msgstr "Xaponés (Shift-JIS)"
#. k5M56
-#: svx/inc/txenctab.hrc:86
+#: svx/inc/txenctab.hrc:87
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-2312)"
msgstr "Chinu simplificáu (GB-2312)"
#. PFzZY
-#: svx/inc/txenctab.hrc:87
+#: svx/inc/txenctab.hrc:88
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GB-18030)"
msgstr "Chinu simplificáu (GB-18030)"
#. gb9bm
-#: svx/inc/txenctab.hrc:88
+#: svx/inc/txenctab.hrc:89
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (GBT-12345)"
msgstr "Chinu tradicional (GBT-12345)"
#. C69XX
-#: svx/inc/txenctab.hrc:89
+#: svx/inc/txenctab.hrc:90
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (GBK/GB-2312-80)"
msgstr "Chinu simplificáu (GBK/GB-2312-80)"
#. UP3uw
-#: svx/inc/txenctab.hrc:90
+#: svx/inc/txenctab.hrc:91
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (Big5)"
msgstr "Chinu tradicional (Big5)"
#. DaFZR
-#: svx/inc/txenctab.hrc:91
+#: svx/inc/txenctab.hrc:92
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (BIG5-HKSCS)"
msgstr "Chinu tradicional (BIG5-HKSCS)"
#. qEQVA
-#: svx/inc/txenctab.hrc:92
+#: svx/inc/txenctab.hrc:93
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (EUC-JP)"
msgstr "Xaponés (EUC-JP)"
#. auzHg
-#: svx/inc/txenctab.hrc:93
+#: svx/inc/txenctab.hrc:94
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (EUC-CN)"
msgstr "Chinu simplificáu (EUC-CN)"
#. ndTrZ
-#: svx/inc/txenctab.hrc:94
+#: svx/inc/txenctab.hrc:95
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese traditional (EUC-TW)"
msgstr "Chinu tradicional (EUC-TW)"
#. 6pPLL
-#: svx/inc/txenctab.hrc:95
+#: svx/inc/txenctab.hrc:96
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Japanese (ISO-2022-JP)"
msgstr "Xaponés (ISO-2022-JP)"
#. tWf3P
-#: svx/inc/txenctab.hrc:96
+#: svx/inc/txenctab.hrc:97
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Chinese simplified (ISO-2022-CN)"
msgstr "Chinu simplificáu (ISO-2022-CN)"
#. XMFCL
-#: svx/inc/txenctab.hrc:97
+#: svx/inc/txenctab.hrc:98
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-R)"
msgstr "Cirílicu (KOI8-R)"
#. 2pFce
-#: svx/inc/txenctab.hrc:98
+#: svx/inc/txenctab.hrc:99
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-7)"
msgstr "Unicode (UTF-7)"
#. FXEDd
-#: svx/inc/txenctab.hrc:99
+#: svx/inc/txenctab.hrc:100
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-8)"
msgstr "Unicode (UTF-8)"
#. PKDvB
-#: svx/inc/txenctab.hrc:100
+#: svx/inc/txenctab.hrc:101
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-10)"
msgstr "Europa oriental (ISO-8859-10)"
#. QGYqt
-#: svx/inc/txenctab.hrc:101
+#: svx/inc/txenctab.hrc:102
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-13)"
msgstr "Europa oriental (ISO-8859-13)"
#. Vx6bY
-#: svx/inc/txenctab.hrc:102
+#: svx/inc/txenctab.hrc:103
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (EUC-KR)"
msgstr "Coreanu (EUC-KR)"
#. 5CBHm
-#: svx/inc/txenctab.hrc:103
+#: svx/inc/txenctab.hrc:104
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (ISO-2022-KR)"
msgstr "Coreanu (ISO-2022-KR)"
#. nLGik
-#: svx/inc/txenctab.hrc:104
+#: svx/inc/txenctab.hrc:105
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Korean (Windows-Johab-1361)"
msgstr "Coreanu (Windows-Johab-1361)"
#. QBgZo
-#: svx/inc/txenctab.hrc:105
+#: svx/inc/txenctab.hrc:106
#, fuzzy
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Unicode (UTF-16)"
msgstr "Unicode (UTF-7)"
#. JGdVV
-#: svx/inc/txenctab.hrc:106
+#: svx/inc/txenctab.hrc:107
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (ISO-8859-11/TIS-620)"
msgstr "Thai (ISO-8859-11/TIS-620)"
#. monLB
-#: svx/inc/txenctab.hrc:107
+#: svx/inc/txenctab.hrc:108
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Thai (Windows-874)"
msgstr "Thai (Windows-874)"
#. USeUF
-#: svx/inc/txenctab.hrc:108
+#: svx/inc/txenctab.hrc:109
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (KOI8-U)"
msgstr "Cirílicu (KOI8-U)"
#. vrLQe
-#: svx/inc/txenctab.hrc:109
+#: svx/inc/txenctab.hrc:110
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Cyrillic (PT154)"
msgstr "Cirílicu (PT154)"
#. rKPau
-#: svx/source/dialog/page.hrc:30
+#: svx/source/dialog/page.hrc:31
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A6"
msgstr "A6"
#. URac3
-#: svx/source/dialog/page.hrc:31
+#: svx/source/dialog/page.hrc:32
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A5"
msgstr "A5"
#. EPudF
-#: svx/source/dialog/page.hrc:32
+#: svx/source/dialog/page.hrc:33
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A4"
msgstr "A4"
#. qdkCd
-#: svx/source/dialog/page.hrc:33
+#: svx/source/dialog/page.hrc:34
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "A3"
msgstr "A3"
#. HTZUv
-#: svx/source/dialog/page.hrc:34
+#: svx/source/dialog/page.hrc:35
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. cCYrf
-#: svx/source/dialog/page.hrc:35
+#: svx/source/dialog/page.hrc:36
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. xXp6C
-#: svx/source/dialog/page.hrc:36
+#: svx/source/dialog/page.hrc:37
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. A5BnL
-#: svx/source/dialog/page.hrc:37
+#: svx/source/dialog/page.hrc:38
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Letter"
msgstr "Carta"
#. sx5cV
-#: svx/source/dialog/page.hrc:38
+#: svx/source/dialog/page.hrc:39
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Legal"
msgstr "Llegal"
#. Pkxcm
-#: svx/source/dialog/page.hrc:39
+#: svx/source/dialog/page.hrc:40
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Long Bond"
msgstr "Oficiu"
#. JMsqY
-#: svx/source/dialog/page.hrc:40
+#: svx/source/dialog/page.hrc:41
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Tabloid"
msgstr "Tabloide"
#. UBtQK
-#: svx/source/dialog/page.hrc:41
+#: svx/source/dialog/page.hrc:42
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. Ruu59
-#: svx/source/dialog/page.hrc:42
+#: svx/source/dialog/page.hrc:43
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. CFdsg
-#: svx/source/dialog/page.hrc:43
+#: svx/source/dialog/page.hrc:44
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. PCV4H
-#: svx/source/dialog/page.hrc:44
+#: svx/source/dialog/page.hrc:45
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "16 Kai"
msgstr "16 Kai"
#. GfVjG
-#: svx/source/dialog/page.hrc:45
+#: svx/source/dialog/page.hrc:46
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "32 Kai"
msgstr "32 Kai"
#. FJBrB
-#: svx/source/dialog/page.hrc:46
+#: svx/source/dialog/page.hrc:47
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Big 32 Kai"
msgstr "Kai 32 grande"
#. by7kM
-#: svx/source/dialog/page.hrc:47
+#: svx/source/dialog/page.hrc:48
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "User"
msgstr "Usuariu"
#. EGzYq
-#: svx/source/dialog/page.hrc:48
+#: svx/source/dialog/page.hrc:49
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "DL Envelope"
msgstr "Sobre DL"
#. YFzCy
-#: svx/source/dialog/page.hrc:49
+#: svx/source/dialog/page.hrc:50
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6 Envelope"
msgstr "Sobre C6"
#. Vcc7P
-#: svx/source/dialog/page.hrc:50
+#: svx/source/dialog/page.hrc:51
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6/5 Envelope"
msgstr "Sobre C6/5"
#. XsMRE
-#: svx/source/dialog/page.hrc:51
+#: svx/source/dialog/page.hrc:52
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C5 Envelope"
msgstr "Sobre C5"
#. uFwGu
-#: svx/source/dialog/page.hrc:52
+#: svx/source/dialog/page.hrc:53
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C4 Envelope"
msgstr "Sobre C4"
#. dCpd2
-#: svx/source/dialog/page.hrc:53
+#: svx/source/dialog/page.hrc:54
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#6¾ Envelope"
msgstr "Sobre nᵘ 6 ¾"
#. zy6rP
-#: svx/source/dialog/page.hrc:54
+#: svx/source/dialog/page.hrc:55
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#7¾ (Monarch) Envelope"
msgstr "Sobre nᵘ 7 ¾ (Monarca)"
#. m4N6Q
-#: svx/source/dialog/page.hrc:55
+#: svx/source/dialog/page.hrc:56
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#9 Envelope"
msgstr "Sobre nᵘ 9"
#. JsBkZ
-#: svx/source/dialog/page.hrc:56
+#: svx/source/dialog/page.hrc:57
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#10 Envelope"
msgstr "Sobre nᵘ 10"
#. 7FeU9
-#: svx/source/dialog/page.hrc:57
+#: svx/source/dialog/page.hrc:58
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#11 Envelope"
msgstr "Sobre nᵘ 11"
#. 6sqhV
-#: svx/source/dialog/page.hrc:58
+#: svx/source/dialog/page.hrc:59
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#12 Envelope"
msgstr "Sobre nᵘ 12"
#. 8uXDq
-#: svx/source/dialog/page.hrc:59
+#: svx/source/dialog/page.hrc:60
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Japanese Postcard"
msgstr "Tarxeta postal xaponesa"
#. N2J2b
-#: svx/source/dialog/page.hrc:64
+#: svx/source/dialog/page.hrc:65
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A6"
msgstr "A6"
#. 78f4A
-#: svx/source/dialog/page.hrc:65
+#: svx/source/dialog/page.hrc:66
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A5"
msgstr "A5"
#. i6x38
-#: svx/source/dialog/page.hrc:66
+#: svx/source/dialog/page.hrc:67
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A4"
msgstr "A4"
#. Dmqus
-#: svx/source/dialog/page.hrc:67
+#: svx/source/dialog/page.hrc:68
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A3"
msgstr "A3"
#. XjWtg
-#: svx/source/dialog/page.hrc:68
+#: svx/source/dialog/page.hrc:69
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A2"
msgstr "A2"
#. yqBrH
-#: svx/source/dialog/page.hrc:69
+#: svx/source/dialog/page.hrc:70
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A1"
msgstr "A1"
#. Ao3sz
-#: svx/source/dialog/page.hrc:70
+#: svx/source/dialog/page.hrc:71
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A0"
msgstr "A0"
#. jvpHD
-#: svx/source/dialog/page.hrc:71
+#: svx/source/dialog/page.hrc:72
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (ISO)"
msgstr "B6 (ISO)"
#. DGqE3
-#: svx/source/dialog/page.hrc:72
+#: svx/source/dialog/page.hrc:73
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (ISO)"
msgstr "B5 (ISO)"
#. JrZiW
-#: svx/source/dialog/page.hrc:73
+#: svx/source/dialog/page.hrc:74
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (ISO)"
msgstr "B4 (ISO)"
#. 8zZQc
-#: svx/source/dialog/page.hrc:74
+#: svx/source/dialog/page.hrc:75
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Letter"
msgstr "Carta"
#. NKMub
-#: svx/source/dialog/page.hrc:75
+#: svx/source/dialog/page.hrc:76
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Legal"
msgstr "Llegal"
#. GyH6H
-#: svx/source/dialog/page.hrc:76
+#: svx/source/dialog/page.hrc:77
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Long Bond"
msgstr "Oficiu"
#. gWjE2
-#: svx/source/dialog/page.hrc:77
+#: svx/source/dialog/page.hrc:78
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Tabloid"
msgstr "Tabloide"
#. 5Dddp
-#: svx/source/dialog/page.hrc:78
+#: svx/source/dialog/page.hrc:79
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (JIS)"
msgstr "B6 (JIS)"
#. sYcjZ
-#: svx/source/dialog/page.hrc:79
+#: svx/source/dialog/page.hrc:80
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (JIS)"
msgstr "B5 (JIS)"
#. f9tD2
-#: svx/source/dialog/page.hrc:80
+#: svx/source/dialog/page.hrc:81
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (JIS)"
msgstr "B4 (JIS)"
#. DGFbZ
-#: svx/source/dialog/page.hrc:81
+#: svx/source/dialog/page.hrc:82
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "16 Kai"
msgstr "16 Kai"
#. JbFMy
-#: svx/source/dialog/page.hrc:82
+#: svx/source/dialog/page.hrc:83
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "32 Kai"
msgstr "32 Kai"
#. E3CDE
-#: svx/source/dialog/page.hrc:83
+#: svx/source/dialog/page.hrc:84
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Big 32 Kai"
msgstr "Kai 32 grande"
#. rSAv7
-#: svx/source/dialog/page.hrc:84
+#: svx/source/dialog/page.hrc:85
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "User"
msgstr "Usuariu"
#. z3HXV
-#: svx/source/dialog/page.hrc:85
+#: svx/source/dialog/page.hrc:86
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "DL Envelope"
msgstr "Sobre DL"
#. k2HBd
-#: svx/source/dialog/page.hrc:86
+#: svx/source/dialog/page.hrc:87
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6 Envelope"
msgstr "Sobre C6"
#. t43Ta
-#: svx/source/dialog/page.hrc:87
+#: svx/source/dialog/page.hrc:88
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6/5 Envelope"
msgstr "Sobre C6/5"
#. jfDNz
-#: svx/source/dialog/page.hrc:88
+#: svx/source/dialog/page.hrc:89
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C5 Envelope"
msgstr "Sobre C5"
#. h2cDh
-#: svx/source/dialog/page.hrc:89
+#: svx/source/dialog/page.hrc:90
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C4 Envelope"
msgstr "Sobre C4"
#. j4Hms
-#: svx/source/dialog/page.hrc:90
+#: svx/source/dialog/page.hrc:91
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Dia Slide"
msgstr "Diapositiva Dia"
#. ePYVT
-#: svx/source/dialog/page.hrc:91
+#: svx/source/dialog/page.hrc:92
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 4:3"
msgstr "Pantalla 4:3"
#. pWa4A
-#: svx/source/dialog/page.hrc:92
+#: svx/source/dialog/page.hrc:93
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:9"
msgstr "Pantalla 16:9"
#. T62Dx
-#: svx/source/dialog/page.hrc:93
+#: svx/source/dialog/page.hrc:94
#, fuzzy
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:10"
msgstr "Pantalla 16:10"
#. hwMzF
-#: svx/source/dialog/page.hrc:94
+#: svx/source/dialog/page.hrc:95
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Widescreen"
msgstr ""
#. HqpFJ
-#: svx/source/dialog/page.hrc:95
+#: svx/source/dialog/page.hrc:96
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (4:3)"
msgstr ""
#. PFU8U
-#: svx/source/dialog/page.hrc:96
+#: svx/source/dialog/page.hrc:97
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:9)"
msgstr ""
#. 48LFY
-#: svx/source/dialog/page.hrc:97
+#: svx/source/dialog/page.hrc:98
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "On-screen Show (16:10)"
msgstr ""
#. ryFz3
-#: svx/source/dialog/page.hrc:98
+#: svx/source/dialog/page.hrc:99
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Japanese Postcard"
msgstr "Tarxeta postal xaponesa"
@@ -14741,7 +14747,6 @@ msgstr ""
#. LKo3e
#: svx/uiconfig/ui/docking3deffects.ui:422
-#, fuzzy
msgctxt "docking3deffects|label1"
msgid "Geometry"
msgstr "Xeometría"
@@ -15618,7 +15623,6 @@ msgstr ""
#. HxxSF
#: svx/uiconfig/ui/docking3deffects.ui:2445
-#, fuzzy
msgctxt "docking3deffects|geometry|tooltip_text"
msgid "Geometry"
msgstr "Xeometría"
@@ -16551,19 +16555,19 @@ msgid "Direction:"
msgstr ""
#. GPC8q
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1009
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1013
msgctxt "findreplacedialog-mobile|rows"
msgid "Ro_ws"
msgstr ""
#. xCeTz
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1028
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1032
msgctxt "findreplacedialog-mobile|cols"
msgid "Colum_ns"
msgstr ""
#. fPE4f
-#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1072
+#: svx/uiconfig/ui/findreplacedialog-mobile.ui:1076
msgctxt "findreplacedialog-mobile|label3"
msgid "Other _options"
msgstr ""
@@ -16904,57 +16908,57 @@ msgid "Search i_n:"
msgstr "Re_stolar en"
#. GGhEA
-#: svx/uiconfig/ui/findreplacedialog.ui:1069
+#: svx/uiconfig/ui/findreplacedialog.ui:1070
msgctxt "findreplacedialog|calcsearchin"
msgid "Formulas"
msgstr "Fórmules"
#. bpBeC
-#: svx/uiconfig/ui/findreplacedialog.ui:1070
+#: svx/uiconfig/ui/findreplacedialog.ui:1071
msgctxt "findreplacedialog|calcsearchin"
msgid "Values"
msgstr "Valores"
#. zSUYq
-#: svx/uiconfig/ui/findreplacedialog.ui:1071
+#: svx/uiconfig/ui/findreplacedialog.ui:1072
msgctxt "findreplacedialog|calcsearchin"
msgid "Comments"
msgstr "Comentarios"
#. K4WuW
-#: svx/uiconfig/ui/findreplacedialog.ui:1096
+#: svx/uiconfig/ui/findreplacedialog.ui:1097
msgctxt "findreplacedialog|searchdir"
msgid "Direction:"
msgstr "Direición:"
#. p2HBA
-#: svx/uiconfig/ui/findreplacedialog.ui:1113
+#: svx/uiconfig/ui/findreplacedialog.ui:1119
msgctxt "findreplacedialog|rows"
msgid "Ro_ws"
msgstr "_Fileres"
#. uib5F
-#: svx/uiconfig/ui/findreplacedialog.ui:1132
+#: svx/uiconfig/ui/findreplacedialog.ui:1138
#, fuzzy
msgctxt "findreplacedialog|cols"
msgid "Colum_ns"
msgstr "Columnes"
#. Q6fG8
-#: svx/uiconfig/ui/findreplacedialog.ui:1176
+#: svx/uiconfig/ui/findreplacedialog.ui:1182
#, fuzzy
msgctxt "findreplacedialog|label3"
msgid "Other _options"
msgstr "_Otres opciones"
#. CPpFA
-#: svx/uiconfig/ui/findreplacedialog.ui:1183
+#: svx/uiconfig/ui/findreplacedialog.ui:1189
msgctxt "findreplacedialog|extended_tip|label3"
msgid "Shows more or fewer search options. Click this label again to hide the extended search options."
msgstr ""
#. YpLau
-#: svx/uiconfig/ui/findreplacedialog.ui:1219
+#: svx/uiconfig/ui/findreplacedialog.ui:1222
msgctxt "findreplacedialog|extended_tip|FindReplaceDialog"
msgid "Finds or replaces text or formats in the current document."
msgstr ""
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index febf63a8045..63a85301418 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: 2022-02-09 16:46+0100\n"
-"PO-Revision-Date: 2022-02-21 07:40+0000\n"
+"POT-Creation-Date: 2022-04-01 00:20+0200\n"
+"PO-Revision-Date: 2022-04-04 09:50+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"
@@ -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: Weblate 4.11.2\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. v3oJv
@@ -190,193 +190,193 @@ msgid "_Yes"
msgstr "_Sí"
#. DdjvG
-#: sw/inc/app.hrc:29
+#: sw/inc/app.hrc:31
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "All Styles"
msgstr "Tolos estilos"
#. aF6kb
-#: sw/inc/app.hrc:30
+#: sw/inc/app.hrc:32
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Estilos anubríos"
#. Sn6Pr
-#: sw/inc/app.hrc:31
+#: sw/inc/app.hrc:33
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaos"
#. dPsnN
-#: sw/inc/app.hrc:32
+#: sw/inc/app.hrc:34
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaos"
#. LL8tn
-#: sw/inc/app.hrc:33
+#: sw/inc/app.hrc:35
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Automatic"
msgstr "Automático"
#. W2ZFq
-#: sw/inc/app.hrc:34
+#: sw/inc/app.hrc:36
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Text Styles"
msgstr "Estilos de testu"
#. j6CkD
-#: sw/inc/app.hrc:35
+#: sw/inc/app.hrc:37
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Chapter Styles"
msgstr "Estilos de capítulu"
#. KgUsu
-#: sw/inc/app.hrc:36
+#: sw/inc/app.hrc:38
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "List Styles"
msgstr "Estilos de llista"
#. ZYAsP
-#: sw/inc/app.hrc:37
+#: sw/inc/app.hrc:39
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Index Styles"
msgstr "Estilos d'índiz"
#. CXarp
-#: sw/inc/app.hrc:38
+#: sw/inc/app.hrc:40
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Special Styles"
msgstr "Estilos especiales"
#. M9it7
-#: sw/inc/app.hrc:39
+#: sw/inc/app.hrc:41
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "HTML Styles"
msgstr "Estilos de HTML"
#. TeuD3
-#: sw/inc/app.hrc:40
+#: sw/inc/app.hrc:42
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
msgid "Conditional Styles"
msgstr "Estilos condicionales"
#. EBcnz
-#: sw/inc/app.hrc:46
+#: sw/inc/app.hrc:48
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "All Styles"
msgstr "Tolos estilos"
#. vmFjs
-#: sw/inc/app.hrc:47
+#: sw/inc/app.hrc:49
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Estilos anubríos"
#. NG33n
-#: sw/inc/app.hrc:48
+#: sw/inc/app.hrc:50
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaos"
#. yubqD
-#: sw/inc/app.hrc:49
+#: sw/inc/app.hrc:51
msgctxt "RID_CHARACTERSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaos"
#. hPACX
-#: sw/inc/app.hrc:55
+#: sw/inc/app.hrc:57
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "All Styles"
msgstr "Tolos estilos"
#. NPGpT
-#: sw/inc/app.hrc:56
+#: sw/inc/app.hrc:58
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Estilos anubríos"
#. R8bb3
-#: sw/inc/app.hrc:57
+#: sw/inc/app.hrc:59
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaos"
#. RFmiE
-#: sw/inc/app.hrc:58
+#: sw/inc/app.hrc:60
msgctxt "RID_FRAMESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaos"
#. ADhCx
-#: sw/inc/app.hrc:64
+#: sw/inc/app.hrc:66
msgctxt "RID_PAGESTYLEFAMILY"
msgid "All Styles"
msgstr "Tolos estilos"
#. kGzjB
-#: sw/inc/app.hrc:65
+#: sw/inc/app.hrc:67
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Estilos anubríos"
#. CAEy6
-#: sw/inc/app.hrc:66
+#: sw/inc/app.hrc:68
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaos"
#. jQvqy
-#: sw/inc/app.hrc:67
+#: sw/inc/app.hrc:69
msgctxt "RID_PAGESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaos"
#. xFSbd
-#: sw/inc/app.hrc:73
+#: sw/inc/app.hrc:75
msgctxt "RID_LISTSTYLEFAMILY"
msgid "All Styles"
msgstr "Tolos estilos"
#. DCRLB
-#: sw/inc/app.hrc:74
+#: sw/inc/app.hrc:76
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Estilos anubríos"
#. 4BdCR
-#: sw/inc/app.hrc:75
+#: sw/inc/app.hrc:77
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaos"
#. A4VNy
-#: sw/inc/app.hrc:76
+#: sw/inc/app.hrc:78
msgctxt "RID_LISTSTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaos"
#. DwpVB
-#: sw/inc/app.hrc:82
+#: sw/inc/app.hrc:84
msgctxt "RID_TABLESTYLEFAMILY"
msgid "All Styles"
msgstr "Tolos estilos"
#. TPRKY
-#: sw/inc/app.hrc:83
+#: sw/inc/app.hrc:85
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Hidden Styles"
msgstr "Estilos anubríos"
#. Y9EKT
-#: sw/inc/app.hrc:84
+#: sw/inc/app.hrc:86
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Applied Styles"
msgstr "Estilos aplicaos"
#. UFVRD
-#: sw/inc/app.hrc:85
+#: sw/inc/app.hrc:87
msgctxt "RID_TABLESTYLEFAMILY"
msgid "Custom Styles"
msgstr "Estilos personalizaos"
@@ -633,55 +633,55 @@ msgstr ""
"Nun se guardaron polos axustes d'esportación actuales."
#. daCFp
-#: sw/inc/flddinf.hrc:27
+#: sw/inc/flddinf.hrc:29
msgctxt "flddocinfopage|liststore1"
msgid "Author"
msgstr "Autor"
#. syKG4
-#: sw/inc/flddinf.hrc:28
+#: sw/inc/flddinf.hrc:30
msgctxt "flddocinfopage|liststore1"
msgid "Time"
msgstr "Hora"
#. YVmE7
-#: sw/inc/flddinf.hrc:29
+#: sw/inc/flddinf.hrc:31
msgctxt "flddocinfopage|liststore1"
msgid "Date"
msgstr "Data"
#. 2J6uc
-#: sw/inc/flddinf.hrc:30
+#: sw/inc/flddinf.hrc:32
msgctxt "flddocinfopage|liststore1"
msgid "Date Time Author"
msgstr "Data Hora Autor"
#. FzXBo
-#: sw/inc/fldref.hrc:27
+#: sw/inc/fldref.hrc:29
msgctxt "fldrefpage|liststore1"
msgid "Bookmarks"
msgstr "Marcadores"
#. aGQG8
-#: sw/inc/fldref.hrc:28
+#: sw/inc/fldref.hrc:30
msgctxt "fldrefpage|liststore1"
msgid "Footnotes"
msgstr "Notes al pie"
#. DyZeU
-#: sw/inc/fldref.hrc:29
+#: sw/inc/fldref.hrc:31
msgctxt "fldrefpage|liststore1"
msgid "Endnotes"
msgstr "Notes finales"
#. Cit9Z
-#: sw/inc/fldref.hrc:30
+#: sw/inc/fldref.hrc:32
msgctxt "fldrefpage|liststore1"
msgid "Headings"
msgstr "Testeres"
#. 95WGQ
-#: sw/inc/fldref.hrc:31
+#: sw/inc/fldref.hrc:33
msgctxt "fldrefpage|liststore1"
msgid "Numbered Paragraphs"
msgstr "Númberu de párrafos"
@@ -2049,181 +2049,181 @@ msgid "Writing Mode"
msgstr "Mou d'escritura"
#. QBR3s
-#: sw/inc/mmaddressblockpage.hrc:27
+#: sw/inc/mmaddressblockpage.hrc:29
msgctxt "RA_SALUTATION"
msgid "Dear"
msgstr "Queríu/a"
#. xc8LH
-#: sw/inc/mmaddressblockpage.hrc:28
+#: sw/inc/mmaddressblockpage.hrc:30
msgctxt "RA_SALUTATION"
msgid "Hello"
msgstr "Hola"
#. 3dVR9
-#: sw/inc/mmaddressblockpage.hrc:29
+#: sw/inc/mmaddressblockpage.hrc:31
msgctxt "RA_SALUTATION"
msgid "Hi"
msgstr "Bones"
#. G4dAq
-#: sw/inc/mmaddressblockpage.hrc:34
+#: sw/inc/mmaddressblockpage.hrc:36
msgctxt "RA_PUNCTUATION"
msgid ","
msgstr ","
#. xpSNV
-#: sw/inc/mmaddressblockpage.hrc:35
+#: sw/inc/mmaddressblockpage.hrc:37
msgctxt "RA_PUNCTUATION"
msgid ":"
msgstr ":"
#. CBNXb
-#: sw/inc/mmaddressblockpage.hrc:36
+#: sw/inc/mmaddressblockpage.hrc:38
msgctxt "RA_PUNCTUATION"
msgid "!"
msgstr "!"
#. av4Wm
-#: sw/inc/mmaddressblockpage.hrc:37
+#: sw/inc/mmaddressblockpage.hrc:39
msgctxt "RA_PUNCTUATION"
msgid "(none)"
msgstr "(nengún)"
#. ujBVU
-#: sw/inc/optload.hrc:30
+#: sw/inc/optload.hrc:31
msgctxt "STR_ARR_METRIC"
msgid "Millimeter"
msgstr "Milímetru"
#. a9SsD
-#: sw/inc/optload.hrc:31
+#: sw/inc/optload.hrc:32
msgctxt "STR_ARR_METRIC"
msgid "Centimeter"
msgstr "Centímetru"
#. 2RuJU
-#: sw/inc/optload.hrc:32
+#: sw/inc/optload.hrc:33
msgctxt "STR_ARR_METRIC"
msgid "Meter"
msgstr "Metru"
#. s4zrG
-#: sw/inc/optload.hrc:33
+#: sw/inc/optload.hrc:34
msgctxt "STR_ARR_METRIC"
msgid "Kilometer"
msgstr "Kilómetru"
#. SGXPk
-#: sw/inc/optload.hrc:34
+#: sw/inc/optload.hrc:35
msgctxt "STR_ARR_METRIC"
msgid "Inch"
msgstr "Pulgada"
#. 3kDJD
-#: sw/inc/optload.hrc:35
+#: sw/inc/optload.hrc:36
msgctxt "STR_ARR_METRIC"
msgid "Foot"
msgstr "Pie"
#. Z9v2E
-#: sw/inc/optload.hrc:36
+#: sw/inc/optload.hrc:37
msgctxt "STR_ARR_METRIC"
msgid "Miles"
msgstr "Milles"
#. ngFw4
-#: sw/inc/optload.hrc:37
+#: sw/inc/optload.hrc:38
msgctxt "STR_ARR_METRIC"
msgid "Pica"
msgstr "Pica"
#. C2njC
-#: sw/inc/optload.hrc:38
+#: sw/inc/optload.hrc:39
msgctxt "STR_ARR_METRIC"
msgid "Point"
msgstr "Puntu"
#. FcXWG
-#: sw/inc/optload.hrc:39
+#: sw/inc/optload.hrc:40
msgctxt "STR_ARR_METRIC"
msgid "Char"
msgstr "Caráuter"
#. ZZCxd
-#: sw/inc/optload.hrc:40
+#: sw/inc/optload.hrc:41
msgctxt "STR_ARR_METRIC"
msgid "Line"
msgstr "Llinia"
#. qQBCu
-#: sw/inc/outline.hrc:27
+#: sw/inc/outline.hrc:29
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 1"
msgstr "Ensin títulu 1"
#. fJyA3
-#: sw/inc/outline.hrc:28
+#: sw/inc/outline.hrc:30
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 2"
msgstr "Ensin títulu 2"
#. MLeBF
-#: sw/inc/outline.hrc:29
+#: sw/inc/outline.hrc:31
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 3"
msgstr "Ensin títulu 3"
#. reXad
-#: sw/inc/outline.hrc:30
+#: sw/inc/outline.hrc:32
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 4"
msgstr "Ensin títulu 4"
#. Fgpbv
-#: sw/inc/outline.hrc:31
+#: sw/inc/outline.hrc:33
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 5"
msgstr "Ensin títulu 5"
#. Ea4d6
-#: sw/inc/outline.hrc:32
+#: sw/inc/outline.hrc:34
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 6"
msgstr "Ensin títulu 6"
#. UcAcC
-#: sw/inc/outline.hrc:33
+#: sw/inc/outline.hrc:35
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 7"
msgstr "Ensin títulu 7"
#. Dv26U
-#: sw/inc/outline.hrc:34
+#: sw/inc/outline.hrc:36
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 8"
msgstr "Ensin títulu 8"
#. XxC5o
-#: sw/inc/outline.hrc:35
+#: sw/inc/outline.hrc:37
msgctxt "numberingnamedialog|liststore1"
msgid "Untitled 9"
msgstr "Ensin títulu 9"
#. TTBSc
-#: sw/inc/pageformatpanel.hrc:23
+#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
msgstr ""
#. eNMWm
-#: sw/inc/pageformatpanel.hrc:24
+#: sw/inc/pageformatpanel.hrc:26
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
msgstr ""
#. MHtci
-#: sw/inc/pageformatpanel.hrc:25
+#: sw/inc/pageformatpanel.hrc:27
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
msgstr ""
@@ -2232,38 +2232,38 @@ msgstr ""
#. Normal (0.75")
#. Normal (1")
#. Normal (1.25")
-#: sw/inc/pageformatpanel.hrc:27 sw/inc/pageformatpanel.hrc:29
-#: sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:29 sw/inc/pageformatpanel.hrc:31
+#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (%1)"
msgstr ""
#. DjCNK
-#: sw/inc/pageformatpanel.hrc:32
+#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
msgstr ""
#. JDMQe
-#: sw/inc/pageformatpanel.hrc:33
+#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Mirrored"
msgstr ""
#. J9o3y
-#: sw/inc/pageformatpanel.hrc:39
+#: sw/inc/pageformatpanel.hrc:41
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
msgstr ""
#. LxZSX
-#: sw/inc/pageformatpanel.hrc:40
+#: sw/inc/pageformatpanel.hrc:42
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
msgstr ""
#. EDy4U
-#: sw/inc/pageformatpanel.hrc:41
+#: sw/inc/pageformatpanel.hrc:43
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
msgstr ""
@@ -2272,20 +2272,20 @@ msgstr ""
#. Normal (1.9 cm)
#. Normal (2.54 cm)
#. Normal (3.18 cm)
-#: sw/inc/pageformatpanel.hrc:43 sw/inc/pageformatpanel.hrc:45
-#: sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:45 sw/inc/pageformatpanel.hrc:47
+#: sw/inc/pageformatpanel.hrc:49
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (%1)"
msgstr ""
#. oJfxD
-#: sw/inc/pageformatpanel.hrc:48
+#: sw/inc/pageformatpanel.hrc:50
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
msgstr ""
#. H9Qqx
-#: sw/inc/pageformatpanel.hrc:49
+#: sw/inc/pageformatpanel.hrc:51
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
msgstr ""
@@ -6976,7 +6976,7 @@ msgstr "Rempuesta a $1"
#: sw/inc/strings.hrc:840
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
-msgstr "Editar bloque de direiciones"
+msgstr "Editar el bloque de señes"
#. njGGA
#: sw/inc/strings.hrc:841
@@ -7184,7 +7184,7 @@ msgstr ""
#: sw/inc/strings.hrc:876
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
-msgstr ""
+msgstr "Inxertar un bloque de señes"
#. omRZF
#: sw/inc/strings.hrc:877
@@ -9353,280 +9353,292 @@ msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Estilos de párrafu aplicaos"
-#. sgEbW
+#. WghdP
#: sw/inc/strings.hrc:1283
+msgctxt "STR_REDLINE_COMMENT_ADDED"
+msgid "Comment added"
+msgstr ""
+
+#. 2KNu9
+#: sw/inc/strings.hrc:1284
+msgctxt "STR_REDLINE_COMMENT_DELETED"
+msgid "Comment deleted"
+msgstr ""
+
+#. sgEbW
+#: sw/inc/strings.hrc:1285
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Páxina "
#. 3DpEx
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1286
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Páxina %1 de %2"
#. HSbzS
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1287
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 of %2 (Page %3)"
msgstr "Páxina %1 de %2 (p. %3)"
#. a7tDc
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1288
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr "Páxina %1 de %2 (p. %3 de %4 pa impr.)"
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1290
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Párrafu"
#. aAtmp
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1291
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Imaxe"
#. UBDMK
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1292
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "Oxetu OLE"
#. xEWbo
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1293
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Marcu"
#. hfJns
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1294
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabla"
#. GRqNY
-#: sw/inc/strings.hrc:1293
+#: sw/inc/strings.hrc:1295
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Filera de tabla"
#. CDQY4
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1296
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Caxella de la tabla"
#. 2Db9T
-#: sw/inc/strings.hrc:1295
+#: sw/inc/strings.hrc:1297
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Páxina"
#. 63FuG
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1298
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Testera"
#. aDuAY
-#: sw/inc/strings.hrc:1297
+#: sw/inc/strings.hrc:1299
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Pie"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1302
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "Documentu HTML de %PRODUCTNAME %PRODUCTVERSION"
#. y2GBv
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1304
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Títulu"
#. AipGR
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1305
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Separtador"
#. CoSEf
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1306
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Nivel "
#. JdTF4
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1307
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:1306
+#: sw/inc/strings.hrc:1308
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Índiz definíu pol usuariu"
#. t5uWs
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1309
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<Nengún>"
#. vSSnJ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1310
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<Nengún>"
#. NSx98
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1311
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. hK8CX
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1312
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
msgstr "E#"
#. 8EgTx
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. teDm3
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
msgstr "CI"
#. XWaFn
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1317
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "LS"
#. xp6D6
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1318
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1319
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. 5A4jw
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1320
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Chapter number"
msgstr "Númberu capítulu"
#. FH365
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1321
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Entrada"
#. xZjtZ
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1322
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Tabulador parada"
#. aXW8y
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1323
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Testu"
#. MCUd2
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1324
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Númberu páxina"
#. pXqw3
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1325
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Chapter info"
msgstr "Información capítulu"
#. DRBSD
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1326
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Aniciar enllaz"
#. Ytn5g
-#: sw/inc/strings.hrc:1325
+#: sw/inc/strings.hrc:1327
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Fin d'enllaz"
#. hRo3J
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1328
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Entrada bibliográfica: "
#. ZKG5v
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1329
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Estilu de caráuter: "
#. d9BES
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1330
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr ""
#. kwoGP
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1331
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr ""
#. Avm9y
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1332
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr ""
#. 59eRi
-#: sw/inc/strings.hrc:1331